diff --git a/app-admin/collectd/Manifest b/app-admin/collectd/Manifest index 81e7cd7b6c4c..c44ebafc7c6f 100644 --- a/app-admin/collectd/Manifest +++ b/app-admin/collectd/Manifest @@ -1,2 +1,3 @@ DIST collectd-5.4.1.tar.bz2 1521907 SHA256 75452129f271cb0aad28e57f12a49070618bbb7b6a9d64cf869e8766fa2f66e0 SHA512 96289f52d3d1da55c862ae9ee2f57972682d7eab87387e97efa41fb5197599e097abd71aed2fe014e26af37c9ae98471e06dd181c725849976242642ce5c9492 WHIRLPOOL 2ed85b9d6d00c4e7dc6af236b637e282f17c6c0b20c1ba3da9c12ea85c5fdea1add2e29165874c7e9620852e422282d489436a4e245b161902f8926185edec16 DIST collectd-5.5.0.tar.bz2 1824495 SHA256 847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88 SHA512 d2c2840f681c10345e02ad8df0f7c581dcb45bee276589fcd96b3dadd281a79ebb3b9a34a186242ef41285dde7fc505432376138ff4f72c4f60f1b840e640017 WHIRLPOOL 6223ca363984ab3777ca89e2cd5011f059b6ca7f5c66c5e7325d3155ce38ef2829caced3ad27e4d5016c5fdba59bb21b9b47d840ea0c4d164c3674b6ee5062ac +DIST collectd-5.5.1.tar.bz2 1797852 SHA256 f9c5d526e1f0429a7db1ccd90bdf9e23923a2fd43b7285cfda8f0341e5c0bc3f SHA512 1935809571b8f0e0870399385312a5687f441d11e08a0c7d1337384b3790c3436ba84f89226aad979584045cc13bdf88f1350a0f49c94bcd0dbcf12ae4704dae WHIRLPOOL 3efeeb9262344a8a1c0aa068e64f5d45ff536d1fc1399b4599143a6e47740d5a33aedf482dbf9110cc5f0345d624fbe71ff00fc6f7afeee891326617f7979e41 diff --git a/app-admin/collectd/collectd-5.5.1.ebuild b/app-admin/collectd/collectd-5.5.1.ebuild new file mode 100644 index 000000000000..63ded29fcb5e --- /dev/null +++ b/app-admin/collectd/collectd-5.5.1.ebuild @@ -0,0 +1,460 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit autotools fcaps java-pkg-opt-2 linux-info multilib perl-functions python-single-r1 systemd user + +DESCRIPTION="Collects system statistics and provides mechanisms to store the values" + +HOMEPAGE="http://collectd.org/" +SRC_URI="${HOMEPAGE}/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="contrib debug java kernel_Darwin kernel_FreeBSD kernel_linux perl selinux static-libs" + +# The plugin lists have to follow here since they extend IUSE + +# Plugins that don't build (e.g. dependencies not in Gentoo) +# apple_sensors: Requires libIOKit +# aquaero: Requires aerotools-ng/libaquaero5 +# barometer: Requires libi2c (i2c_smbus_read_i2c_block_data) +# lpar: Requires libperfstat (AIX only) +# mic: Requires Intel Many Integrated Core Architecture API +# (part of Intel's Xeon Phi software) +# netapp: Requires libnetapp (http://communities.netapp.com/docs/DOC-1110) +# pf: Requires BSD packet filter +# pinba: Requires MySQL Pinba engine (http://pinba.org/) +# tape: Requires libkstat (Solaris only) +# write_kafka: Requires librdkafka +# write_mongodb: https://github.com/collectd/collectd/issues/492 +# xmms: Requires libxmms (v1) +COLLECTD_IMPOSSIBLE_PLUGINS="apple_sensors aquaero mic netapp pf pinba tape write_kafka write_mongodb xmms" + +# Plugins that have been (compile) tested and can be enabled via COLLECTD_PLUGINS +COLLECTD_TESTED_PLUGINS="amqp aggregation apache apcups ascent battery bind ceph + cgroups conntrack contextswitch cpu cpufreq csv curl curl_json curl_xml dbi df + disk dns drbd email entropy ethstat exec fhcount filecount fscache genericjmx + gmond hddtemp interface ipc ipmi iptables ipvs irq java load logfile log_logstash + lvm madwifi match_empty_counter match_hashed match_regex match_timediff match_value + mbmon md memcachec memcached memory modbus multimeter mysql netlink network network + nfs nginx notify_desktop notify_email ntpd numa nut olsrd onewire openldap openvpn + oracle perl ping postgresql powerdns processes protocols python python redis + routeros rrdcached rrdtool sensors serial sigrok smart snmp statsd swap syslog + table tail tail_csv target_notification target_replace target_scale target_set + tcpconns teamspeak2 ted thermal threshold tokyotyrant turbostat unixsock uptime + users uuid varnish virt vmem vserver wireless write_graphite write_http + write_log write_redis write_riemann write_sensu write_tsdb zfs_arc zookeeper" + +COLLECTD_DISABLED_PLUGINS="${COLLECTD_IMPOSSIBLE_PLUGINS}" + +COLLECTD_ALL_PLUGINS=${COLLECTD_TESTED_PLUGINS} + +for plugin in ${COLLECTD_ALL_PLUGINS}; do + IUSE="${IUSE} collectd_plugins_${plugin}" +done +unset plugin + +# Now come the dependencies. + +COMMON_DEPEND=" + dev-libs/libgcrypt:= + sys-devel/libtool + perl? ( dev-lang/perl:=[ithreads] ) + collectd_plugins_amqp? ( net-libs/rabbitmq-c ) + collectd_plugins_apache? ( net-misc/curl ) + collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) + collectd_plugins_bind? ( dev-libs/libxml2:= ) + collectd_plugins_ceph? ( dev-libs/yajl ) + collectd_plugins_curl? ( net-misc/curl ) + collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) + collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2:= ) + collectd_plugins_dbi? ( dev-db/libdbi ) + collectd_plugins_disk? ( virtual/udev ) + collectd_plugins_dns? ( net-libs/libpcap ) + collectd_plugins_genericjmx? ( virtual/jre:= dev-java/java-config-wrapper ) + collectd_plugins_gmond? ( sys-cluster/ganglia ) + collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) + collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.13:= ) + collectd_plugins_java? ( virtual/jre:= dev-java/java-config-wrapper ) + collectd_plugins_log_logstash? ( dev-libs/yajl ) + collectd_plugins_lvm? ( sys-fs/lvm2 ) + collectd_plugins_memcachec? ( dev-libs/libmemcached ) + collectd_plugins_modbus? ( dev-libs/libmodbus ) + collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) + collectd_plugins_netlink? ( net-libs/libmnl ) + collectd_plugins_nginx? ( net-misc/curl ) + collectd_plugins_notify_desktop? ( x11-libs/libnotify ) + collectd_plugins_notify_email? ( net-libs/libesmtp ) + collectd_plugins_nut? ( sys-power/nut ) + collectd_plugins_openldap? ( net-nds/openldap ) + collectd_plugins_onewire? ( >=sys-fs/owfs-3.1 ) + collectd_plugins_oracle? ( dev-db/oracle-instantclient-basic ) + collectd_plugins_perl? ( dev-lang/perl:=[ithreads] ) + collectd_plugins_ping? ( net-libs/liboping ) + collectd_plugins_postgresql? ( dev-db/postgresql:= ) + collectd_plugins_python? ( ${PYTHON_DEPS} ) + collectd_plugins_redis? ( dev-libs/hiredis:= ) + collectd_plugins_routeros? ( net-libs/librouteros ) + collectd_plugins_rrdcached? ( net-analyzer/rrdtool ) + collectd_plugins_rrdtool? ( net-analyzer/rrdtool ) + collectd_plugins_sensors? ( sys-apps/lm_sensors ) + collectd_plugins_sigrok? ( sci-libs/libsigrok ) + collectd_plugins_smart? ( virtual/udev dev-libs/libatasmart ) + collectd_plugins_snmp? ( net-analyzer/net-snmp ) + collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) + collectd_plugins_varnish? ( www-servers/varnish ) + collectd_plugins_virt? ( app-emulation/libvirt dev-libs/libxml2:= ) + collectd_plugins_write_http? ( net-misc/curl ) + collectd_plugins_write_redis? ( dev-libs/hiredis:= ) + collectd_plugins_write_riemann? ( dev-libs/protobuf-c ) + + kernel_FreeBSD? ( + collectd_plugins_disk? ( sys-libs/libstatgrab:= ) + collectd_plugins_interface? ( sys-libs/libstatgrab:= ) + collectd_plugins_load? ( sys-libs/libstatgrab:= ) + collectd_plugins_memory? ( sys-libs/libstatgrab:= ) + collectd_plugins_swap? ( sys-libs/libstatgrab:= ) + collectd_plugins_users? ( sys-libs/libstatgrab:= ) + )" + +DEPEND="${COMMON_DEPEND} + collectd_plugins_genericjmx? ( >=virtual/jdk-1.6 ) + collectd_plugins_java? ( >=virtual/jdk-1.6 ) + virtual/pkgconfig" + +RDEPEND="${COMMON_DEPEND} + collectd_plugins_syslog? ( virtual/logger ) + selinux? ( sec-policy/selinux-collectd )" + +REQUIRED_USE=" + collectd_plugins_genericjmx? ( java ) + collectd_plugins_java? ( java ) + collectd_plugins_python? ( ${PYTHON_REQUIRED_USE} )" + +PATCHES=( + "${FILESDIR}/${PN}-4.10.3"-werror.patch + "${FILESDIR}/${PN}-5.5.1"-{libocci,lt,nohal}.patch +) + +# @FUNCTION: collectd_plugin_kernel_linux +# @DESCRIPTION: +# USAGE: +# kernel_options is a list of kernel configurations options; the check tests whether at least +# one of them is enabled. If no, depending on the third argument an elog, ewarn, or eerror message +# is emitted. +collectd_plugin_kernel_linux() { + local multi_opt opt + if has ${1} ${COLLECTD_ALL_PLUGINS}; then + if use collectd_plugins_${1}; then + for opt in ${2}; do + if linux_chkconfig_present ${opt}; then + return 0; + fi + done + multi_opt=${2//\ /\ or\ } + case ${3} in + (info) + elog "The ${1} plugin can use kernel features that are disabled now; enable ${multi_opt} in your kernel" + ;; + (warn) + ewarn "The ${1} plugin uses kernel features that are disabled now; enable ${multi_opt} in your kernel" + ;; + (error) + eerror "The ${1} plugin needs kernel features that are disabled now; enable ${multi_opt} in your kernel" + ;; + (*) + die "function collectd_plugin_kernel_linux called with invalid third argument" + ;; + esac + fi + fi +} + +collectd_linux_kernel_checks() { + if ! linux_chkconfig_present PROC_FS; then + ewarn "/proc file system support is disabled, many plugins will not be able to read any statistics from your system unless you enable PROC_FS in your kernel" + fi + + if ! linux_chkconfig_present SYSFS; then + ewarn "/sys file system support is disabled, many plugins will not be able to read any statistics from your system unless you enable SYSFS in your kernel" + fi + + # battery.c: /proc/pmu/battery_%i + # battery.c: /proc/acpi/battery + collectd_plugin_kernel_linux battery ACPI_BATTERY warn + + # cgroups.c: /sys/fs/cgroup/ + collectd_plugin_kernel_linux cgroups CONFIG_CGROUPS warn + + # cpufreq.c: /sys/devices/system/cpu/cpu%d/cpufreq/ + collectd_plugin_kernel_linux cpufreq SYSFS warn + collectd_plugin_kernel_linux cpufreq CPU_FREQ_STAT warn + + # drbd.c: /proc/drbd + collectd_plugin_kernel_linux drbd BLK_DEV_DRBD warn + + # conntrack.c: /proc/sys/net/netfilter/* + collectd_plugin_kernel_linux conntrack NETFILTER warn + + # fscache.c: /proc/fs/fscache/stats + collectd_plugin_kernel_linux fscache FSCACHE warn + + # nfs.c: /proc/net/rpc/nfs + # nfs.c: /proc/net/rpc/nfsd + collectd_plugin_kernel_linux nfs NFS_COMMON warn + + # serial.c: /proc/tty/driver/serial + # serial.c: /proc/tty/driver/ttyS + collectd_plugin_kernel_linux serial SERIAL_CORE warn + + # swap.c: /proc/meminfo + collectd_plugin_kernel_linux swap SWAP warn + + # thermal.c: /proc/acpi/thermal_zone + # thermal.c: /sys/class/thermal + collectd_plugin_kernel_linux thermal ACPI_THERMAL warn + + # turbostat.c: /dev/cpu/%d/msr + collectd_plugin_kernel_linux turbostat X86_MSR warn + + # vmem.c: /proc/vmstat + collectd_plugin_kernel_linux vmem VM_EVENT_COUNTERS warn + + # vserver.c: /proc/virtual + collectd_plugin_kernel_linux vserver VSERVER warn + + # uuid.c: /sys/hypervisor/uuid + collectd_plugin_kernel_linux uuid SYSFS info + + # wireless.c: /proc/net/wireless + collectd_plugin_kernel_linux wireless "WIRELESS MAC80211 IEEE80211" warn + + # zfs_arc.c: /proc/spl/kstat/zfs/arcstats + collectd_plugin_kernel_linux zfs_arc "SPL ZFS" warn +} + +pkg_setup() { + if use kernel_linux; then + linux-info_pkg_setup + + if linux_config_exists; then + einfo "Checking your linux kernel configuration:" + collectd_linux_kernel_checks + else + elog "Cannot find a linux kernel configuration. Continuing anyway." + fi + fi + + if use collectd_plugins_java || use collectd_plugins_genericjmx; then + java-pkg-opt-2_pkg_setup + fi + + use collectd_plugins_python && python-single-r1_pkg_setup + + enewgroup collectd + enewuser collectd -1 -1 /var/lib/collectd collectd +} + +src_prepare() { + default + + # There's some strange prefix handling in the default config file, resulting in + # paths like "/usr/var/..." + sed -i -e "s:@prefix@/var:/var:g" src/collectd.conf.in || die + + sed -i -e "s:/etc/collectd/collectd.conf:/etc/collectd.conf:g" contrib/collectd.service || die + + # fix installdirs for perl, bug 444360 + sed -i -e 's/INSTALL_BASE=$(DESTDIR)$(prefix) //' bindings/Makefile.am || die + + if use collectd_plugins_java || use collectd_plugins_genericjmx; then + # Set javac -source and -target flags according to (R)DEPEND. + sed -i -e "s/\$(JAVAC)/\0 $(java-pkg_javac-args)/g" bindings/java/Makefile.am || die + fi + + ebegin "Removing bundled libltdl" + rm -r libltdl || die + eend 0 + + eautoreconf +} + +src_configure() { + # Now come the lists of os-dependent plugins. Any plugin that is not listed anywhere here + # should work independent of the operating system. + + local linux_plugins="barometer battery cpu cpufreq disk drbd entropy + ethstat interface iptables ipvs irq ipc load memory md netlink nfs + numa processes serial swap tcpconns thermal turbostat users vmem + wireless zfc_arc" + + local need_libstatgrab=0 + local libstatgrab_plugins="cpu disk interface load memory swap users" + local bsd_plugins="cpu tcpconns ${libstatgrab_plugins} zfc_arc" + + local darwin_plugins="apple_sensors battery cpu disk interface memory processes tcpconns" + + local osdependent_plugins="${linux_plugins} ${bsd_plugins} ${darwin_plugins}" + local myos_plugins="" + if use kernel_linux; then + einfo "Enabling Linux plugins." + myos_plugins=${linux_plugins} + elif use kernel_FreeBSD; then + einfo "Enabling FreeBSD plugins." + myos_plugins=${bsd_plugins} + elif use kernel_Darwin; then + einfo "Enabling Darwin plugins." + myos_plugins=${darwin_plugins} + fi + + # Do we debug? + local myconf="$(use_enable debug)" + + local plugin + + # Disable what needs to be disabled. + for plugin in ${COLLECTD_DISABLED_PLUGINS}; do + myconf+=" --disable-${plugin}" + done + + # Set enable/disable for each single plugin. + for plugin in ${COLLECTD_ALL_PLUGINS}; do + if has ${plugin} ${osdependent_plugins}; then + # plugin is os-dependent ... + if has ${plugin} ${myos_plugins}; then + # ... and available in this os + myconf+=" $(use_enable collectd_plugins_${plugin} ${plugin})" + # ... must we link against libstatgrab? Bug #541518 + if use kernel_FreeBSD && has ${plugin} ${libstatgrab_plugins}; then + einfo "We must link against libstatgrab due to plugin \"${plugin}\" ..." + need_libstatgrab=1 + fi + else + # ... and NOT available in this os + if use collectd_plugins_${plugin}; then + ewarn "You try to enable the ${plugin} plugin, but it is not available for this" + ewarn "kernel. Disabling it automatically." + fi + myconf+=" --disable-${plugin}" + fi + elif [[ "${plugin}" = "collectd_plugins_perl" ]]; then + if use collectd_plugins_perl && ! use perl; then + ewarn "Perl plugin disabled as perl bindings disabled by -perl use flag" + myconf+= --disable-perl + else + myconf+=" $(use_enable collectd_plugins_${plugin} ${plugin})" + fi + else + myconf+=" $(use_enable collectd_plugins_${plugin} ${plugin})" + fi + done + + if [ "${need_libstatgrab}" -eq 1 ]; then + myconf+=" --with-libstatgrab" + else + myconf+=" --without-libstatgrab" + fi + + # JAVA_HOME is set by eclasses. + if use collectd_plugins_java || use collectd_plugins_genericjmx; then + myconf+=" --with-java" + fi + + # Need libiptc ONLY for iptables. If we try to use it otherwise bug 340109 happens. + # lots of libs are only needed for plugins, if they are disabled, also disable the lib + use collectd_plugins_iptables || myconf+=" --with-libiptc=no" + use collectd_plugins_openldap || myconf+=" --with-libldap=no" + use collectd_plugins_redis || use collectd_plugins_write_redis || myconf+=" --with-libhiredis=no" + use collectd_plugins_smart || myconf+=" --with-libatasmart=no" + use collectd_plugins_virt || myconf+=" --with-libvirt=no" + + if use perl; then + myconf+=" --with-perl-bindings=INSTALLDIRS=vendor" + else + myconf+=" --without-perl-bindings" + fi + + # No need for v5upgrade + myconf+=" --disable-target_v5upgrade" + + # Finally, run econf. + KERNEL_DIR="${KERNEL_DIR}" econf --config-cache --disable-ltdl-install \ + --without-included-ltdl $(use_enable static-libs static) \ + --localstatedir=/var ${myconf} +} + +src_install() { + emake DESTDIR="${D%/}" install + + perl_delete_localpod + + find "${ED}"usr/ -name "*.la" -delete || die + + if use collectd_plugins_java || use collectd_plugins_genericjmx; then + java-pkg_regjar "${ED}"usr/share/${PN}/java/*.jar + fi + + fowners root:collectd /etc/collectd.conf + fperms u=rw,g=r,o= /etc/collectd.conf + + dodoc AUTHORS ChangeLog NEWS README TODO + + if use contrib ; then + insinto /usr/share/doc/${PF} + doins -r contrib + fi + + keepdir /var/lib/${PN} + fowners collectd:collectd /var/lib/${PN} + + newinitd "${FILESDIR}/${PN}.initd-r1" ${PN} + newconfd "${FILESDIR}/${PN}.confd-r1" ${PN} + systemd_dounit "contrib/${PN}.service" + + insinto /etc/logrotate.d + newins "${FILESDIR}/logrotate" collectd + + sed -i -e 's:^.*PIDFile "/var/run/collectd.pid":PIDFile "/run/collectd/collectd.pid":' "${ED}"etc/collectd.conf || die + sed -i -e 's:^# SocketFile "/var/run/collectd-unixsock":# SocketFile "/run/collectd/collectd.socket":' "${ED}"etc/collectd.conf || die + sed -i -e 's:^.*LoadPlugin perl$:# The new, correct way to load the perl plugin -- \n# \n# Globals true\n# :' "${ED}"etc/collectd.conf || die + sed -i -e 's:^.*LoadPlugin python$:# The new, correct way to load the python plugin -- \n# \n# Globals true\n# :' "${ED}"etc/collectd.conf || die +} + +pkg_postinst() { + local caps=() + use collectd_plugins_ping && caps+=('cap_net_raw') + use collectd_plugins_iptables && caps+=('cap_net_admin') + use collectd_plugins_filecount && caps+=('cap_dac_read_search') + + if [ ${#caps[@]} -gt 0 ]; then + local caps_str=$(IFS=","; echo "${caps[*]}") + fcaps ${caps_str} usr/sbin/collectd + elog "Capabilities for ${EROOT}usr/sbin/collectd set to:" + elog " ${caps_str}+ep" + elog + fi + + elog "Note: Collectd is only the collector." + elog " You need to install 'data' sources (applications) locally or" + elog " remotely on your own." + + elog + elog "Collectd is configured to run as unprivileged user by default." + elog "You may want to revisit the configuration." + elog + + if use collectd_plugins_email; then + ewarn "The email plug-in is deprecated. To submit statistics please use the unixsock plugin." + fi + + if use contrib; then + elog "The scripts in /usr/share/doc/${PF}/collection3 for generating graphs need dev-perl/HTML-Parser," + elog "dev-perl/config-general, dev-perl/regexp-common, and net-analyzer/rrdtool[perl] to be installed." + fi +} diff --git a/app-admin/collectd/files/collectd-5.5.1-libocci.patch b/app-admin/collectd/files/collectd-5.5.1-libocci.patch new file mode 100644 index 000000000000..e7baaa062d58 --- /dev/null +++ b/app-admin/collectd/files/collectd-5.5.1-libocci.patch @@ -0,0 +1,33 @@ +[PATCH 1/3] Link Oracle plug-in against libocci + +Author: Aurelien Minet +X-Gentoo-Bug: 347607 +X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=347607 +--- + configure.ac | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index fc1e11c..b977a0a 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -3248,14 +3248,14 @@ AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path t + ]) + if test "x$ORACLE_HOME" != "x" + then +- with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public" ++ with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public -locci" + + if test -e "$ORACLE_HOME/lib/ldflags" + then + with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"` + fi + #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh" +- with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh" ++ with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh -locci" + fi + if test "x$with_oracle" = "xyes" + then +-- +2.7.1 + diff --git a/app-admin/collectd/files/collectd-5.5.1-lt.patch b/app-admin/collectd/files/collectd-5.5.1-lt.patch new file mode 100644 index 000000000000..eff1de8726ba --- /dev/null +++ b/app-admin/collectd/files/collectd-5.5.1-lt.patch @@ -0,0 +1,60 @@ +[PATCH 2/3] Remove bundled libltdl + +--- + Makefile.am | 6 ------ + configure.ac | 5 ----- + 2 files changed, 11 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index b79ea1c..d574601 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,11 +1,5 @@ +-ACLOCAL_AMFLAGS = -I libltdl/m4 +- + SUBDIRS = + +-if BUILD_INCLUDED_LTDL +-SUBDIRS += libltdl +-endif +- + SUBDIRS += src bindings . + + AM_CPPFLAGS = $(LTDLINCL) +diff --git a/configure.ac b/configure.ac +index b977a0a..78f3bee 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -2,7 +2,6 @@ dnl Process this file with autoconf to produce a configure script. + AC_INIT([collectd],[m4_esyscmd(./version-gen.sh)]) + AC_CONFIG_SRCDIR(src/) + AC_CONFIG_HEADERS(src/config.h) +-AC_CONFIG_AUX_DIR([libltdl/config]) + + dnl older automake's default of ARFLAGS=cru is noisy on newer binutils; + dnl we don't really need the 'u' even in older toolchains. Then there is +@@ -12,7 +11,6 @@ m4_divert_text([DEFAULTS], [: "${ARFLAGS=cr} ${AR_FLAGS=cr}"]) + m4_ifdef([LT_PACKAGE_VERSION], + # libtool >= 2.2 + [ +- LT_CONFIG_LTDL_DIR([libltdl]) + LT_INIT([dlopen]) + LTDL_INIT([convenience]) + AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.]) +@@ -24,13 +22,10 @@ m4_ifdef([LT_PACKAGE_VERSION], + AC_SUBST(LTDLINCL) + AC_SUBST(LIBLTDL) + AC_LIBTOOL_DLOPEN +- AC_CONFIG_SUBDIRS(libltdl) + AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.]) + ] + ) + +-AM_CONDITIONAL([BUILD_INCLUDED_LTDL], [test "x$LTDLDEPS" != "x"]) +- + AM_INIT_AUTOMAKE([tar-pax dist-bzip2 foreign]) + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AC_LANG(C) +-- +2.7.1 + diff --git a/app-admin/collectd/files/collectd-5.5.1-nohal.patch b/app-admin/collectd/files/collectd-5.5.1-nohal.patch new file mode 100644 index 000000000000..fcdebb5ed817 --- /dev/null +++ b/app-admin/collectd/files/collectd-5.5.1-nohal.patch @@ -0,0 +1,35 @@ +[PATCH 3/3] Remove libhal dependency + +X-Gentoo-Bug: 353839 +X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=353839 +--- + configure.ac | 13 +------------ + 1 file changed, 1 insertion(+), 12 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 1c85964..cf38159 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1500,18 +1500,7 @@ AC_CHECK_LIB(resolv, res_search, + AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes") + + dnl Check for HAL (hardware abstraction library) +-with_libhal="yes" +-AC_CHECK_LIB(hal,libhal_device_property_exists, +- [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])], +- [with_libhal="no"]) +-if test "x$with_libhal" = "xyes"; then +- if test "x$PKG_CONFIG" != "x"; then +- BUILD_WITH_LIBHAL_CFLAGS="`$PKG_CONFIG --cflags hal`" +- BUILD_WITH_LIBHAL_LIBS="`$PKG_CONFIG --libs hal`" +- AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS) +- AC_SUBST(BUILD_WITH_LIBHAL_LIBS) +- fi +-fi ++with_libhal="no" + + # --with-libpthread {{{ + AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])], +-- +2.7.1 + diff --git a/app-admin/collectd/files/collectd.confd-r1 b/app-admin/collectd/files/collectd.confd-r1 new file mode 100644 index 000000000000..2633ab0fe854 --- /dev/null +++ b/app-admin/collectd/files/collectd.confd-r1 @@ -0,0 +1,46 @@ +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# Nice value used to launch collectd, to change priority of the process. As +# you usually we want to run it in background, a default of 5 is used. +# +#COLLECTD_NICELEVEL=5 + +# Location of configuration file. Modify if you don't like the standard +# one. +# +#COLLECTD_CONFIGFILE="/etc/collectd.conf" + +# File used to store the PID file. Usually you won't need to touch it. +# +#COLLECTD_PIDFILE="/run/collectd/collectd.pid" + +# User to run collectd as (default is collectd, change to root or give +# collectd user appropriate privileges if you use one of the plugins that +# require it, as e.g. ping or iptables plugins) +# +#COLLECTD_USER="collectd" + +# The group is only important if you are using collectd's UNIX socket +# in the default location (/run/collectd) because we will chown the +# default location to COLLECTD_USER:COLLECTD_GROUP. The default value +# is "collectd". +#COLLECTD_GROUP="collectd" + +# You can use this configuration option to pass additional options to the +# start-stop-daemon, see start-stop-daemon(8) for more details. +# Per default we wait 1000ms after we have started the service to ensure +# that the daemon is really up and running. +#COLLECTD_SSDARGS="--wait 1000" + +# The termination timeout (start-stop-daemon parameter "retry") ensures +# that the service will be terminated within a given time (25 + 5 seconds +# per default) when you are stopping the service. +#COLLECTD_TERMTIMEOUT="TERM/25/KILL/5" + +# Options to collectd +# See collectd(8) for more details +# Notes: +# * Do not specify another PIDFILE but use the variable above to change the location +# * Do not specify another CONFIGFILE but use the variable above to change the location +#COLLECTD_OPTS="" diff --git a/app-admin/collectd/files/collectd.initd-r1 b/app-admin/collectd/files/collectd.initd-r1 new file mode 100644 index 000000000000..a90ec507eefc --- /dev/null +++ b/app-admin/collectd/files/collectd.initd-r1 @@ -0,0 +1,79 @@ +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +COLLECTD_CONFIGFILE=${COLLECTD_CONFIGFILE:-"/etc/collectd.conf"} +COLLECTD_PIDFILE=${COLLECTD_PIDFILE:-"/run/collectd/collectd.pid"} +COLLECTD_NICELEVEL=${COLLECTD_NICELEVEL:-5} +COLLECTD_USER=${COLLECTD_USER:-"collectd"} +COLLECTD_GROUP=${COLLECTD_GROUP:-"collectd"} +COLLECTD_SSDARGS=${COLLECTD_SSDARGS:-"--wait 1000"} +COLLECTD_TERMTIMEOUT=${COLLECTD_TERMTIMEOUT:-"TERM/25/KILL/5"} +COLLECTD_OPTS=${COLLECTD_OPTS:-""} + +command="/usr/sbin/collectd" +command_args="${COLLECTD_OPTS} -C \"${COLLECTD_CONFIGFILE}\" -P \"${COLLECTD_PIDFILE}\"" +start_stop_daemon_args="${COLLECTD_SSDARGS} --nice ${COLLECTD_NICELEVEL} --user ${COLLECTD_USER}:${COLLECTD_GROUP}" +pidfile="${COLLECTD_PIDFILE}" +retry="${COLLECTD_TERMTIMEOUT}" + +extra_commands="configtest" +description_configtest="Run collectd's internal config check." + +required_files="\"${COLLECTD_CONFIGFILE}\"" + +depend() { + use dns +} + +_checkconfig() { + if [ $(eval sed '/^$\|^#/d' \"${COLLECTD_CONFIGFILE}\" | grep --count 'LoadPlugin[[:space:]]\+oracle') -ge 1 ] ; then + if [ -e /etc/env.d/50oracle-instantclient-basic ] ; then + . /etc/env.d/50oracle-instantclient-basic + export ORACLE_HOME + export TNS_ADMIN + else + ewarn "Unable to set Oracle environment, Oracle plugin wont work" + fi + fi + + local test_command="${command} -t -C \"${COLLECTD_CONFIGFILE}\"" + + eval ${test_command} 1>/dev/null 2>&1 + ret=$? + if [ $ret -ne 0 ]; then + eerror "${SVCNAME} has detected an error in your configuration:" + eval ${test_command} + fi + + return $ret +} + +configtest() { + ebegin "Checking ${SVCNAME} configuration" + _checkconfig + eend $? +} + +start_pre() { + if [ "${RC_CMD}" != "restart" ]; then + configtest || return 1 + fi + + checkpath --directory --mode 0770 --owner ${COLLECTD_USER}:${COLLECTD_GROUP} "$(dirname "${COLLECTD_PIDFILE}")" +} + +stop_pre() { + if [ "${RC_CMD}" = "restart" ]; then + configtest || return 1 + fi +} + +stop_post() { + if [ -f "${COLLECTD_PIDFILE}" ]; then + vebegin "Removing stale PID file" + rm --force "${COLLECTD_PIDFILE}" + veend $? + fi +} diff --git a/app-admin/collectd/metadata.xml b/app-admin/collectd/metadata.xml index 2b9b9b41d44c..2576b59235fd 100644 --- a/app-admin/collectd/metadata.xml +++ b/app-admin/collectd/metadata.xml @@ -1,133 +1,159 @@ - Collectd gathers statistics about the system it is running on and stores this information. Those statistics can then be used to find current performance bottlenecks (i.e. performance analysis) and predict future system load (i.e. capacity planning). Or if you just want pretty graphs of your private server and are fed up with some homegrown solution you're at the right place. bugs@bergstroem.nu Johan Bergström Proxied Maintainer + + whissi@whissi.de + Thomas D. + Proxied Maintainer + proxy-maint@gentoo.org Proxy Maintainers + + Collectd gathers statistics about the system it is running on and stores this + information. Those statistics can then be used to find current performance + bottlenecks (i.e. performance analysis) and predict future system load (i.e. + capacity planning). Or if you just want pretty graphs of your private server + and are fed up with some homegrown solution you're at the right place. + + + https://github.com/collectd/collectd/issues + https://collectd.org/documentation.shtml + collectd/collectd + - Build the aggregation plugin (aggregate multiplte values into a single value) - Build the apache input plugin (transferred bytes, handled requests, detailed scoreboard statistics) - Build the apcups input plugin (UPS charge, load, input/output/battery voltage, etc.) - Build the ascent input plugin (statistics about a free server for World of Warcraft) - Build the battery input plugin (charge, current and voltage of ACPI and PMU based laptop batteries) - Build the bind input plugin (name server and resolver statistics) - Build the plugin for sys-cluster/ceph - Build the cgroups CPU accounting collection plugin - Build the conntrack input plugin (number of nf_conntrack entries) - Build the contextswitch input plugin (number of context switches done by the operating system) - Build the cpu input plugin (time spent in the system, user, nice, idle, and related states) - Build the cpufreq input plugin (CPU frequency, for laptops with speedstep or similar) - Build the csv output plugin (write to comma separated values (CSV) files) - Build the curl input plugin (parse statistics from websites using regular expressions) - Build the curl_json input plugin (get json data via curl and parse it) - Build the curl_xml input plugin (get xml data via curl and parse it) - Build the dbi input plugin (execute SQL statements on databases and interpret the reply) - Build the df input plugin (mountpoint usage) - Build the disk input plugin (sectors read/written, number of read/write actions, average completion time of IO-operations) - Build the dns input plugin (collects statistics of your DNS traffic on port udp/53) - Build the plugin for DRBD statistics + Build the aggregation plugin (aggregates multiplte values into a single value) + Build the AMQP output plugin (transmits or receives values collected by collectd via the Advanced Message Queuing Protocol (AMQP)) + Build the apache input plugin (collects statistics from Apache's mod_status module) + Build the apcups input plugin (reads various statistics about a connected uninterruptible power supply (UPS)) + Build the ascent input plugin (reads and parses the statistics page of Ascent) + Build the battery input plugin (collects the battery's charge, the drawn current and the battery's voltage) + Build the bind input plugin (collects statistics from bind instances) + Build the Ceph input plugin (collects statistics from the Ceph distributed storage system) + Build the cgroups input plugin (collects CPU accounting information for processes in a cgroup) + Build the conntrack input plugin (tracks the number of entries in Linux's connection tracking table) + Build the contextswitch input plugin (collects the number of context switches done by the operating system) + Build the cpu input plugin (collects the amount of time spent by the CPU in various states) + Build the cpufreq input plugin (collects the current CPU's frequency) + Build the csv output plugin (writes to comma separated values (CSV) files) + Build the curl input plugin (reads streams using net-misc/curl and then parses them according to the configuration) + Build the curl_json input plugin (queries JavaScript Object Notation (JSON) data using net-misc/curl and parses it according to the user's configuration using dev-libs/yajl) + Build the curl_xml input plugin (reads files using net-misc/curl and parses it as Extensible Markup Language (XML)) + Build the dbi input plugin (executes SQL statements on databases and reads back the result) + Build the df input plugin (collects file system usage information, i. e. basically how much space on a mounted partition is used and how much is available) + Build the disk input plugin (collects performance statistics of disks and, where supported, partitions) + Build the dns input plugin (collects statistics of your DNS traffic on port udp/53 using net-libs/libpcap) + Build the Linux's Distributed Replicated Block Device (DRBD) input plugin (reads Linux's DRBD statistics) Build the email input plugin (opens a UNIX domain socket and starts accepting connections on that socket) - Build the entropy input plugin (available entropy on a system) - Build the ethstat input plugin (performance statistics of Linux ethernet cards) + Build the entropy input plugin (collects the available entropy on a system) + Build the ethstat input plugin (reads performance statistics directly from ethernet cards) Build the exec input/output plugin (executes scripts / applications and reads values back) - Build the plugin for File handles statistics - Build the filecount input plugin (countd the number of files in a directory and all its subdirectories) - Build the fscache input plugin (information about the caching infrastructure for network file-systems etc) - Build the gmond input plugin (receive data from gmond, the client daemon of the Ganglia project) - Build the hddtemp input plugin (temperature of hard disks) - Build the interface input plugin (information about traffic, packets and errors of interfaces) - Build the plugin for IPC statistics - Build the ipmi input plugin (read hardware sensors from servers using the Intelligent Platform Management Interface (IPMI)) - Build the iptables input plugin (statistics from a ip_tables based packet filter) - Build the irq input plugin (number of times each interrupt has been handled by the os) + Build the file handles input plugin (reports the number of used file handles) + Build the filecount input plugin (counts the number of files in a directory and all its subdirectories) + Build the fscache input plugin (collects information about the file-system based caching infrastructure for network file-systems and other slow media) + Build the GenericJMX input plugin (reads Managed Beans (MBeans) from an MBeanServer using JMX input plugin; Requires JAVA) + Build the gmond input plugin (receives data from gmond, the client daemon of the Ganglia project) + Build the hddtemp input plugin (collects the temperature of disks from hddtemp daemon) + Build the interface input plugin (collects information about the traffic, packets per second and errors of interfaces) + Build the IPC input plugin (collects information related to shared memory) + Build the ipmi input plugin (reads hardware sensors from servers using the Intelligent Platform Management Interface (IPMI)) + Build the iptables input plugin (collects statistics from a ip_tables based packet filter) + Build the IPVS input plugin (collects statistics from Linux IP Virtual Server) + Build the irq input plugin (collects the number of times each interrupt has been handled by the operating system) Build the java input plugin (embeds a JVM into collectd for writing plugins) - Build the libvirt input plugin (statistics about virtualized guests on a system) - Build the load input plugin (system load) - Build the plugin for Logstash json_event compatible logging - Build the logfile output plugin (writes log messages to a text file) - Build the LVM input plugin - Build the madwifi input plugin (information about Atheros wireless LAN chipsets) + Build the (lib)virt input plugin (collects statistics about virtualized guests on a system) + Build the load input plugin (collects the system load) + Build the logfile output plugin (receives log messages from collectd and writes them to a text file) + Build the Logstash output plugin (writes collectd logs and events as Logstash JSON formatted events) + Build the LVM input plugin (collects the size of logical volumes (LV) and free space inside a volume group (VG) from Linux' Logical Volume Manager (LVM)) + Build the madwifi input plugin (collects information about Atheros wireless LAN chipsets from the MadWifi driver) Build the match_empty_counter filter plugin Build the match_hashed filter plugin Build the match_regex filter plugin Build the match_timediff filter plugin Build the match_value filter plugin - Build the mbmon input plugin (information from mainboard sensors) - Build the md input plugin (disk states in Linux md devices) - Build the memcachec input plugin (connects to a memcached server) - Build the memcached input plugin (connects to a memcached daemon) - Build the memory input plugin (physical memory utilization) + Build the mbmon input plugin (collects information from mainboard sensors) + Build the md input plugin (reports the number of disks in various states in Linux software RAID devices) + Build the memcachec input plugin (queries one or more given pages from a memcached instance and parses the returned data according to user specification) + Build the memcached input plugin (collects statistics from memcached daemon) + Build the memory input plugin (collects physical memory utilization) + Build the Modbus input plugin (reads register values from a Modbus "slave" via Modbus/TCP) Build the multimeter input plugin (reads a voltage or current from a multimeter connected to a serial bus) - Build the mysql input plugin (connects to an MySQL-database and issues a SHOW STATUS command) - Build the netlink input plugin (opens a netlink socket to the Linux kernel for getting statistics) - Build the network input/output plugin (communicates with other instances of collectd) - Build the nfs input plugin (usage of the Network File System) - Build the nginx input plugin (number of requests handled by the nginx daemon) - Build the notify_desktop output plugin (uses libnotify to display notifications to the user) - Build the notify_email output plugin (uses libESMTP to send notifications to a configured email address) - Build the ntpd input plugin (queries an NTP server) - Build the numa input plugin (statistics of the Linux Non-Uniform Memory Access (NUMA) subsystem) + Build the mysql input plugin (collects values from 'SHOW STATUS' command of a MySQL server) + Build the netlink input plugin (collects statistics for interfaces, qdiscs, classes and filters using netlink socket) + Build the network input/output plugin (send values to other and/or receive values from from other collectd instances) + Build the nfs input plugin (collects information about the usage of the Network File System (NFS)) + Build the nginx input plugin (collects number of requests handled and the number of current connections by connection state by the nginx daemon) + Build the notify_desktop output plugin (uses x11-libs/libnotify to display notifications to the user) + Build the notify_email output plugin (uses net-libs/libesmtp to send notifications to a configured email address) + Build the ntpd input plugin (collects statistics from a NTP server) + Build the numa input plugin (collects statistics of the Linux Non-Uniform Memory Access (NUMA) subsystem) Build the nut input plugin (collects UPS statistics using the Network UPS Tools) Build the olsrd input plugin (reads information about the Optimized Link State Routing daemon) - Build the onewire input plugin (collects temperature information from sensors) - Build the plugin for OpenLDAP statistics + Build the onewire (1-Wire) input plugin (collects temperature information from sensors) + Build the OpenLDAP input plugin (reads monitoring information from OpenLDAP's cn=Monitor subtree) Build the openvpn input plugin (reads the status file printed by OpenVPN) - Build the oracle input plugin (SQL-queries one or more Oracle database systems) + Build the oracle input plugin (executes SQL statements against Oracle database systems) Build the perl language binding plugin (embeds a Perl interpreter into collectd for writing plugins) Build the ping input plugin (measures network latency) - Build the postgresql input plugin (connects to and executes SQL statements on a PostgreSQL database) - Build the powerdns input plugin (connects to a local PowerDNS instance) - Build the processes input plugin (statistics about processes) - Build the protocols input plugin (network protocols) + Build the postgresql input plugin (executes SQL statements against a PostgreSQL database) + Build the powerdns input plugin (collects statistics from the PowerDNS name server or recursor via control socket) + Build the processes input plugin (collects the number of processes, grouped by their state or detailed statistics about selected processes) + Build the protocols input plugin (collects information about the network protocols supported by the system) Build the python language binding plugin (embeds a Python interpreter into collectd for writing plugins) - Build the Redis input plugin - Build the routeros input plugin (collect information on devices running RouterOS) + Build the Redis input plugin (collects usage information from Redis instances) + Build the routeros input plugin (collects information from devices running RouterOS) Build the rrdcached input/output plugin (connects to rrdcached and submits updates for RRD files) Build the rrdtool output plugin (writes values to RRD-files) - Build the sensors input plugin (uses lm-sensors to read hardware sensors) + Build the sensors input plugin (reads hardware sensors from lm-sensors) Build the serial input plugin (collects the traffic on serial interfaces) - Build the plugin for SMART statistics - Build the snmp input plugin (read values from network devices using SNMP) + Build the sigrok input plugin (reads measurements from any supported hardware from sigrok project) + Build the S.M.A.R.T input plugin (collects S.M.A.R.T statistics from disk drives) + Build the snmp input plugin (reads values from network devices using SNMP) Build the statsd input plugin (accepts statsd-type metrics from a UDP socket) - Build the swap input plugin (amount of memory currently written to swap) + Build the swap input plugin (collects amount of memory currently written to swap) Build the syslog output plugin (receives messages from collectd and dispatches them to syslog) Build the table input plugin (parses table-like structured plain text) - Build the tail input plugin (follows logfiles as e.g. tail -f) + Build the tail input plugin (follows logfiles, e.g. tail -f) + Build the tail_csv input plugin (follows and parses CSV files, e.g. tail -f *.csv) Build the target_notification filter plugin Build the target_replace filter plugin Build the target_scale filter plugin Build the target_set filter plugin - Build the tcpconns input plugin (number of TCP connections to or from a specified port) + Build the tcpconns input plugin (collects numbers of TCP connections to or from a specified port) Build the teamspeak2 input plugin (collects traffic statistics from a teamspeak2 instance) Build the ted input plugin (connects to The Energy Detective and reads the current power over connected power lines) - Build the thermal input plugin (ACPI thermal zone information) + Build the thermal input plugin (reads ACPI thermal zone information) Build the threshold plugin (checks values against configured thresholds and creates notifications if values are out of bounds) - Build the tokyotyrant input plugin (number of records and file size from a running Tokyo Tyrant server) - Build the plugin for Advanced statistic on Intel cpu states - Build the unixsock output plugin (opens a UNIX domain socket and accepts connections) - Build the uptime input plugin (system uptime) - Build the users input plugin (number of users currently logged in) + Build the tokyotyrant input plugin (collects number of records and file size from a running Tokyo Tyrant server) + Build the turbostat input plugin (reads CPU frequency and C-state residency on modern Intel turbo-capable processors) + Build the unixsock input/output plugin (opens a UNIX domain socket and accepts connections) + Build the uptime input plugin (keeps track of the system uptime) + Build the users input plugin (counts the number of users currently logged into the system) Build the uuid plugin (tries hard to determine the UUID of the system it is running on) - Build the varnish input plugin - Build the libvirt input plugin (statistics about virtualized guests on a system) - Build the vmem input plugin (information about the virtual memory subsystem) - Build the wireless input plugin (signal quality, signal power and signal-to-noise ratio for wireless LAN cards) - Build the write_graphite output plugin (sends the values collected by collectd to Carbon, the storage layer of the Graphite time-series database) - Build the write_http output plugin (sends the values collected by collectd to a web-server) - Build the Log output plugin - Build the write_mongodb output plugin (sends the values collected by collectd to a MongoDB) - Build the Redis output plugin - Build the Sensu output plugin - Build the TSDB output plugin - Build the plugin for ZFS ARC statistics - Build the plugin for Zookeeper statistics + Build the varnish input plugin (collects information about Varnish) + Build the (lib)virt input plugin (collects statistics about virtualized guests on a system) + Build the vmem input plugin (collects information about the virtual memory subsystem of the kernel) + Build the vserver input plugin (collects information about the virtual servers running on a system, using Linux-Vserver) + Build the wireless input plugin (collects signal quality, signal power and signal-to-noise ratio for wireless LAN cards) + Build the write_graphite output plugin (stores values in Carbon, the storage layer of Graphite) + Build the write_http output plugin (sends metrics to a web-server using HTTP POST requests) + Build the write_log output plugin (writes metrics to a file) + Build the MongoDB output plugin (writes metrics to a MongoDB) + Build the Redis output plugin (stores values in Redis) + Build the Riemann output plugin (stores values in Riemann, a stream processing and monitoring system) + Build the Sensu output plugin (sends metrics to Sensu Core, an open-source monitoring project) + Build the TSDB output plugin (writes metrics to OpenTSDB, an open-source distributed time-series database based on Apache HBase) + Build the ZFS ARC input plugin (reports information such as the cache size, the various hits and misses (also as a ratio) and the transferred data) + Build the zookeeper input plugin (reads data from Apache Zookeeper MNTR command) Install user-contributed files in the doc directory + When set collectd daemon will have set required capabilities to run most plugins even if run as unprivileged user + Must be set (workaround for java-pkg-opt-2 eclass limitation) when you want java or genericjmx plugin diff --git a/app-admin/conky/conky-1.10.1.ebuild b/app-admin/conky/conky-1.10.1.ebuild index 3e6759bfa516..dfa1c6c93374 100644 --- a/app-admin/conky/conky-1.10.1.ebuild +++ b/app-admin/conky/conky-1.10.1.ebuild @@ -69,7 +69,7 @@ DEPEND=" CONFIG_CHECK=~IPV6 -DOCS=( README TODO ChangeLog NEWS AUTHORS ) +DOCS=( README.md TODO ChangeLog NEWS AUTHORS ) pkg_setup() { use ipv6 && linux-info_pkg_setup diff --git a/app-admin/keepassx/keepassx-2.0.2.ebuild b/app-admin/keepassx/keepassx-2.0.2.ebuild index 947568054a51..20c0c2206662 100644 --- a/app-admin/keepassx/keepassx-2.0.2.ebuild +++ b/app-admin/keepassx/keepassx-2.0.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.keepassx.org/releases/${PV}/${P}.tar.gz" LICENSE="|| ( GPL-2 GPL-3 ) BSD GPL-2 LGPL-2.1 LGPL-3+ CC0-1.0 public-domain || ( LGPL-2.1 GPL-3 )" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" IUSE="test" DEPEND=" diff --git a/app-arch/xz-utils/xz-utils-5.2.2.ebuild b/app-arch/xz-utils/xz-utils-5.2.2.ebuild index 66ab2f58d0be..cc6b12a44851 100644 --- a/app-arch/xz-utils/xz-utils-5.2.2.ebuild +++ b/app-arch/xz-utils/xz-utils-5.2.2.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == "9999" ]] ; then else MY_P="${PN/-utils}-${PV/_}" SRC_URI="http://tukaani.org/xz/${MY_P}.tar.gz" - KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" S=${WORKDIR}/${MY_P} EXTRA_DEPEND= fi diff --git a/app-cdr/cdemu-daemon/Manifest b/app-cdr/cdemu-daemon/Manifest index 8a91513c5ba7..ae99b7e9d6ad 100644 --- a/app-cdr/cdemu-daemon/Manifest +++ b/app-cdr/cdemu-daemon/Manifest @@ -1,2 +1,2 @@ -DIST cdemu-daemon-2.1.1.tar.bz2 62600 SHA256 d26782071184d555b06ad5def7d1c22916cbeb73377328879499b91e1196f36f SHA512 be59bf12e326855ccdfe5cec72a813b7a80dcc2cb408c3f19b9abe66eeb8d092e2755b1ba9f746ac7d3c1b27276ed857947ce1b2509d8cbf07eb1c6663f3536d WHIRLPOOL fd6ad9aa28ae9c821934099a3be271a1fe85db684dcc1ca9b65d499281ce65b27ac63d44c8570309d1fc3fbd486eadb165e15cec285c81bb07b10c709a1f6f42 DIST cdemu-daemon-3.0.2.tar.bz2 76029 SHA256 8c9a0d292e0fd71538f123f2b795f4490ff455f68b391b97812be369c34a4f06 SHA512 eb09880dcc984c8843cf0254d45aeaa39cff8faa3a415352c574b59ea6778de9bc10a9634022c1fe5c7de8aa0493129a7bd15b859a7ca3895d5175b2bb2296e1 WHIRLPOOL 918554fead811418bd1e1b1ad8cd22342c5e5559eb7e4f3e30f1ccb1c889547bbd7f70bd7af86c19af86a7c432281f3d98a2fb5d0ef59f57dcddf3ad0fc10686 +DIST cdemu-daemon-3.0.4.tar.bz2 76121 SHA256 8101b4ad659de3cc53dcc39b14381d7d85b3dad131d780caefe9cc1c03551ecd SHA512 e5a3da9dd87e6ad6cf226e53628dbee76eb26104c51a511adb5b6b65d46e3f213a682ba0d845c8a651d939c44b853b6a9881e542e10f9f7d1dd579b8fc408154 WHIRLPOOL b92a78732f177e31b7a80288ec5253d92d5e92f796612cc288c7b976e46d5ebff3e8a2ffd9c3a0a1acb785893a0a663317ece75c3ed5c30592f69d53c01199b8 diff --git a/app-cdr/cdemu-daemon/cdemu-daemon-2.1.1.ebuild b/app-cdr/cdemu-daemon/cdemu-daemon-3.0.4.ebuild similarity index 85% rename from app-cdr/cdemu-daemon/cdemu-daemon-2.1.1.ebuild rename to app-cdr/cdemu-daemon/cdemu-daemon-3.0.4.ebuild index 7b2e7b8faf2e..07971177cee3 100644 --- a/app-cdr/cdemu-daemon/cdemu-daemon-2.1.1.ebuild +++ b/app-cdr/cdemu-daemon/cdemu-daemon-3.0.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI="6" CMAKE_MIN_VERSION="2.8.5" @@ -13,13 +13,12 @@ HOMEPAGE="http://cdemu.org" SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2" LICENSE="GPL-2+" -SLOT="0/6" # subslot = CDEMU_DAEMON_INTERFACE_VERSION in CMakeLists.txt -KEYWORDS="amd64 ~hppa x86" +SLOT="0/7" # subslot = CDEMU_DAEMON_INTERFACE_VERSION_MAJOR in CMakeLists.txt +KEYWORDS="~amd64 ~hppa ~x86" IUSE="" RDEPEND=">=dev-libs/glib-2.32:2 >=dev-libs/libmirage-${PV}:= - =media-libs/libao-0.8.0:= sys-apps/dbus >=sys-fs/vhba-20130607" diff --git a/app-cdr/cdemu/Manifest b/app-cdr/cdemu/Manifest index 9089ee8863a8..773d46590997 100644 --- a/app-cdr/cdemu/Manifest +++ b/app-cdr/cdemu/Manifest @@ -1,2 +1,2 @@ -DIST cdemu-client-2.1.1.tar.bz2 28474 SHA256 204e626994f61d36423f3b732e180e3b3b20624effdfe91aabffd439c76d3964 SHA512 d764000fadc66b639dd8f20d9bb8fbe3b91d3e20bd207d30a734dc1a9a7fae746e8aad317a3d78cd35b69d0a8acbf8e389598786cadabec6e512640ba5b21be5 WHIRLPOOL 93cb01c3bc16ee69e3fd9ce9080838f4eebc874afe8d6be71c22e44919909144980dd44595a0dbf6fe1add3574061bcd6f523b72644eb52774d974f226c100b9 DIST cdemu-client-3.0.0.tar.bz2 40300 SHA256 359310a57422d5c59c8f93be0da827a2437edb1e62f455f5614089c28e34ae88 SHA512 807fe98dc8743a227484d20587c9f9e06cac649d74d8fdd520dba9bb2a2f268ba977c922333fdcf91201baf4f08595044939f6d5bd4834ec26cf689b6a36f361 WHIRLPOOL bd7d5b0ebe75aad5629f8cdf9f1de04fbdf7ad37400163d69e1eb9bfe35a47bc2bca5b58a031bb022611689d7c7c480fcc98403f883643ccc3cc2049f98fb814 +DIST cdemu-client-3.0.1.tar.bz2 40299 SHA256 cf7b2fedf14bb64df7e318546756e133eef9e018e04218f74891f676eda9e5cd SHA512 3abbedef15f2e30fc53d9f199c7f31b838da16a763d3dcb0e4745d0dd76675c0962e951a378dec3d8b13f024c339d5f3aa978fdf1f7e664332a684ab279d788d WHIRLPOOL 32099514bdbafda3994646cd08ac0f31fa345963090ef7506185db3955d953bbc42be018b970611bb4664f494790cbd99bb577dc169c53b4295110a26f28bf4d diff --git a/app-cdr/cdemu/cdemu-2.1.1.ebuild b/app-cdr/cdemu/cdemu-3.0.1.ebuild similarity index 62% rename from app-cdr/cdemu/cdemu-2.1.1.ebuild rename to app-cdr/cdemu/cdemu-3.0.1.ebuild index 86ea5fa4965c..df9195c98c62 100644 --- a/app-cdr/cdemu/cdemu-2.1.1.ebuild +++ b/app-cdr/cdemu/cdemu-3.0.1.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI="6" CMAKE_MIN_VERSION="2.8.5" PYTHON_COMPAT=( python2_7 ) -PLOCALES="de fr no pl sl sv" +PLOCALES="no sl sv" -inherit bash-completion-r1 cmake-utils eutils fdo-mime l10n python-single-r1 +inherit bash-completion-r1 cmake-utils fdo-mime l10n python-single-r1 DESCRIPTION="Command-line tool for controlling cdemu-daemon" HOMEPAGE="http://cdemu.org" @@ -16,13 +16,13 @@ SRC_URI="mirror://sourceforge/cdemu/cdemu-client-${PV}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 ~hppa x86" +KEYWORDS="~amd64 ~hppa ~x86" IUSE="+cdemu-daemon" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} dev-python/dbus-python[${PYTHON_USEDEP}] - cdemu-daemon? ( app-cdr/cdemu-daemon:0/6 )" + cdemu-daemon? ( app-cdr/cdemu-daemon:0/7 )" DEPEND="${RDEPEND} dev-util/desktop-file-utils >=dev-util/intltool-0.21 @@ -36,13 +36,8 @@ pkg_setup() { src_prepare() { python_fix_shebang src/cdemu - epatch "${FILESDIR}/${PN}-2.1.0-bash-completion-dir.patch" - # build system doesn't respect LINGUAS :/ - l10n_find_plocales_changes po "" ".po" - rm_po() { - rm po/$1.po || die - } - l10n_for_each_disabled_locale_do rm_po + eapply -p2 "${FILESDIR}/${PN}-3.0.0-bash-completion-dir.patch" + eapply_user } src_configure() { @@ -54,6 +49,17 @@ src_configure() { cmake-utils_src_configure } +src_install() { + cmake-utils_src_install + # Build system doesn't respect LINGUAS, and changing list of installed + # translations requires error-prone editing of CMakeLists.txt + rm_po() { + rm -r "${ED}"/usr/share/locale/$1 || die + ls "${ED}"/usr/share/locale/* &> /dev/null || rmdir "${ED}"/usr/share/locale || die + } + l10n_for_each_disabled_locale_do rm_po +} + pkg_postinst() { fdo-mime_desktop_database_update } diff --git a/app-cdr/gcdemu/Manifest b/app-cdr/gcdemu/Manifest index 4d297de17c2c..ed8c1098ca63 100644 --- a/app-cdr/gcdemu/Manifest +++ b/app-cdr/gcdemu/Manifest @@ -1,2 +1,2 @@ -DIST gcdemu-2.1.1.tar.bz2 40156 SHA256 cd1d59fb6dadbc05f5865c1654089563aeb28ef9ea4216da2e223f8376887c5c SHA512 1d8d9cc29a1d7a69681fbd4dc540a97172d81ac3d018bd98af469746901c8841dd5fd23ca8ae6fce68e41b43d98fb693acba1b621ed6b72c97972038cde1c47a WHIRLPOOL 0dbc04b57c5026a642a268b6bbba9d55ca27c92c1a606048a7395ebc07527e83ea05578c398725ed3782f4cf678769e0b77c686f07fe3061334875a375da3a05 DIST gcdemu-3.0.0.tar.bz2 45506 SHA256 1357a02720f05644929bae167fcc64dc58784f406aa426bcd806955cc458aad4 SHA512 c4d0d64638e0f7ecccfe11ab1a8527ba2002a5bbb382b2d4e8b58eaaa0a10140ee85b8d62ba93fe4ecdc2882301dfe62a08373dbb9e5404d5ddf7592cd5f0b7d WHIRLPOOL 18c8615ad6ae166c2111e7dd2f1c1d46b4128d99bb11a3f7e2f297c58dfff3e38ad981547703b13af940b0d1e6e3bccb7098180fde51458bfe34e3b19a66a465 +DIST gcdemu-3.0.1.tar.bz2 45508 SHA256 d9d9cd4270803a021d55205fad2c76f65b51f5b509dde21c70475bb8577896b6 SHA512 e5a1905642c08145669c5eb9e65159d5a9a2fbcd1657edd28ae091ee1d02673e56bb7007df2a9f95863cae1a1ab01916bb43b4d10fe054d52507beabd7dd532f WHIRLPOOL e4fd9e009cdbad1f79e1a579339e27225fa76e132d136c9dba5e9388551d0a3c27448bf870d9f4344e99d47f1a7b0cce3c712e26569fc77f0206671cbbef2553 diff --git a/app-cdr/gcdemu/gcdemu-2.1.1.ebuild b/app-cdr/gcdemu/gcdemu-3.0.1.ebuild similarity index 68% rename from app-cdr/gcdemu/gcdemu-2.1.1.ebuild rename to app-cdr/gcdemu/gcdemu-3.0.1.ebuild index 6036f35101c2..32451d181d57 100644 --- a/app-cdr/gcdemu/gcdemu-2.1.1.ebuild +++ b/app-cdr/gcdemu/gcdemu-3.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -6,10 +6,10 @@ EAPI="5" CMAKE_MIN_VERSION="2.8.5" PYTHON_COMPAT=( python2_7 ) -PLOCALES="de fr no pl sl zh_CN" +PLOCALES="no sl sv" # cmake-utils after gnome2, to make sure cmake-utils is used for building -inherit gnome2 cmake-utils l10n python-single-r1 +inherit eutils gnome2 cmake-utils l10n python-single-r1 DESCRIPTION="Gtk+ GUI for controlling cdemu-daemon" HOMEPAGE="http://cdemu.org/" @@ -17,12 +17,12 @@ SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" IUSE="" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} - app-cdr/cdemu-daemon:0/6 + app-cdr/cdemu-daemon:0/7 >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection dev-python/pygobject:3[${PYTHON_USEDEP}] @@ -43,12 +43,7 @@ pkg_setup() { src_prepare() { python_fix_shebang src/gcdemu - # build system doesn't respect LINGUAS :/ - l10n_find_plocales_changes po "" ".po" - rm_po() { - rm po/$1.po || die - } - l10n_for_each_disabled_locale_do rm_po + epatch_user } src_configure() { @@ -56,3 +51,14 @@ src_configure() { local mycmakeargs=( -DPOST_INSTALL_HOOKS=OFF ) cmake-utils_src_configure } + +src_install() { + cmake-utils_src_install + # Build system doesn't respect LINGUAS, and changing list of installed + # translations requires error-prone editing of CMakeLists.txt + rm_po() { + rm -r "${ED}"/usr/share/locale/$1 || die + ls "${ED}"/usr/share/locale/* &> /dev/null || rmdir "${ED}"/usr/share/locale || die + } + l10n_for_each_disabled_locale_do rm_po +} diff --git a/app-editors/vim-core/vim-core-7.4.769.ebuild b/app-editors/vim-core/vim-core-7.4.769.ebuild index 0d5a0308195e..4018f98df8e1 100644 --- a/app-editors/vim-core/vim-core-7.4.769.ebuild +++ b/app-editors/vim-core/vim-core-7.4.769.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,7 +13,7 @@ if [[ ${PV} == 9999* ]] ; then else SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> vim-${PV}.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-7.4.542-gentoo-patches.tar.bz2" - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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" fi DESCRIPTION="vim and gvim shared files" diff --git a/app-editors/vim/vim-7.4.769.ebuild b/app-editors/vim/vim-7.4.769.ebuild index b346e3a97c38..caf5de0928d8 100644 --- a/app-editors/vim/vim-7.4.769.ebuild +++ b/app-editors/vim/vim-7.4.769.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,7 +14,7 @@ if [[ ${PV} == 9999* ]] ; then else SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-7.4.542-gentoo-patches.tar.bz2" - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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" fi DESCRIPTION="Vim, an improved vi-style text editor" diff --git a/app-emulation/rkt/Manifest b/app-emulation/rkt/Manifest index 3da236a5088f..7703448b56ac 100644 --- a/app-emulation/rkt/Manifest +++ b/app-emulation/rkt/Manifest @@ -1,4 +1,8 @@ +DIST kvmtool-3c8aec9e2b5066412390559629dabeb7816ee8f2.tar.gz 241486 SHA256 a3e65e5331e8bb20b112ac2dcc252fbcc9b9a83ef20292874ed4682bc2d87dcc SHA512 21a9ec313a9f46d6ebc4b7badfcc731350f5e58781892f33d11b907e085b84e6eebcaf2f22d101ed46a570e87d6530468be0bf6c258f195a38d594407cb2471b WHIRLPOOL f998afe674ef1bb8050d944646d35854fb75c3ef00eb0379ba3a52ea80bc9590e793fd333cb45803f683a4d0ed21c61d6d1cc7b74d01eb9503a6d960eef9e143 +DIST linux-4.3.1.tar.xz 86900452 SHA256 11faaff6e7546038b868f524cdf42a5a1b67be9fdfd37d931723a8deb1811b72 SHA512 640db1a15db2e18f912e8ea93b01c784740d1a9957dc1d5580809448adb0713edfb02b7172f61362f0f362800c88f09dcc8165005250a757fbd942b59e36ba16 WHIRLPOOL f5de4ea768ad7a5cad21705c24b79773522207ffbc85209676b1a4ce067e031330ded68e2201953c477c3dae743f95521da230194be90be900afa30f39f943c5 DIST rkt-0.8.0.tar.gz 1749853 SHA256 c9eb0126b8ff2f059d7cedaab17ca73dce256f342092c9bf4a7ae20661f2a5aa SHA512 4e2c27fb40cd3d27de062631105db3ea04ed902f48abb647a8e4de249478dd8a145ac0b77fd5b261cc680df1bcaa4067accb8a597def9b3963108e2c1f3d9d5a WHIRLPOOL f65ddd8908ec30cfefa06e60cd4d8cdb2099ab279b6350790eb3e436b88c792efe28cea53569f48d42f6eec682635a4212f16fea9d184e6baa97877a643e1106 DIST rkt-1.0.0.tar.gz 2414183 SHA256 7e30b03fa51a34db095484c4b111c526e49bead4e33232e1b239090503d7ac97 SHA512 f176532486b68ebc15aae17cfcf31e0f97ce3afc96bfed1c4f918da41350ef21c170712cb071a8720f39ee757b7b9ba1e66730d6e12acb9753446b929801c4ff WHIRLPOOL b2fc3082693b474584292a6ec943a685826364632dc346b18233bf9b9d2feaf14981f4a7fcbd9e79b98c2466b2f24be9b57f6345c89aeea5d075cdbeee26aba5 +DIST rkt-1.1.0.tar.gz 2426666 SHA256 df93dffc1deff470a5bebaa2610a07df8f48e69f660c81de0a31de13d7f7bfa5 SHA512 ef444843f411cd2d1fcd02f606bf5d0971eb314d708d1d54d07af9e3d69e1d74a7812456fd7cc46372ca6e42cfd5ac6af6b7b67e22890396f58d8982c0af1373 WHIRLPOOL 0579f5efd28d473ab4a0874d7218268a2a1143118b9f3e39670a683f05c7fb3b1b952aee75f0c923d76bc457c4d933c3c9b329f99960fa0a95cde2573225288b DIST rkt-pxe-738.1.0.img 151780780 SHA256 805a4c491281553c8927f3dd1a7bec50cca29209d0a7264870e7155d794ecbe6 SHA512 7774cc64dfa874f08f48cba0c15103e9eca86ffd87dcb24f765a9b56074e72f6862a663a4007a0a7dd296740ae91bf4edf7290fa35659b0b1572fe2f5dad3256 WHIRLPOOL 5973a6036d650c576bb0bd365c8c9ea35776501c1fd2baf1d7c00d06496fab35e9c796096ef89b095e7a922e2062dce6c0d1c85cd3101022e0aca84277d18cb9 DIST rkt-pxe-794.1.0.img 185121072 SHA256 d513e27d2412d8fdaa2456786703346f10c24a62480d2036ca5c31b3d5a0df16 SHA512 f36324e9736bb0c533706c45d4146bed2efcb3ee2cb842c3624a62399835808c0df2aef56495a12b30f67c47fd84e93e34b10c57e4aa6d0450402d5e21c6f88c WHIRLPOOL 099851022b11aa29d004bbcef316a7cceeb5efa43f8069cdf1858888e7550f938fd9f9ec53eb63c313b5c1b93b0569f578a50fc5bae28b4d30c451a2ffd2adba +DIST systemd-222.tar.gz 4015599 SHA256 b49f51f9855127987adc98aad3b6d608e4e53eaa029b629f2ea2089ce0234f34 SHA512 83f0acf0ca90c89c902c268af6eef4b61380a30380013cbe89c929357959f51682cd3961a6a4f772abc09d5ca09404ae290edf2c3253fab1b20dc2b5b3ecde47 WHIRLPOOL dd0151034de374b072e70448e7a9ff47693df0190e8a2a11488593400d3d7e53e0a91d86037d027c750584089e6c68e58c437647d608a72f8826f091e3253879 diff --git a/app-emulation/rkt/metadata.xml b/app-emulation/rkt/metadata.xml index 33d47776dd7f..7b1939a8dd31 100644 --- a/app-emulation/rkt/metadata.xml +++ b/app-emulation/rkt/metadata.xml @@ -15,6 +15,7 @@ Install the actool for ACI manipulation Download and use a prebuilt stage1.aci from CoreOS Build stage1-fly.aci + Build stage1-kvm.aci Build the stage1.aci from source Assemble stage1.aci from host binaries diff --git a/app-emulation/rkt/rkt-1.1.0.ebuild b/app-emulation/rkt/rkt-1.1.0.ebuild new file mode 100644 index 000000000000..371c1608266f --- /dev/null +++ b/app-emulation/rkt/rkt-1.1.0.ebuild @@ -0,0 +1,174 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=yes +AUTOTOOLS_IN_SOURCE_BUILD=yes + +inherit autotools-utils flag-o-matic systemd toolchain-funcs + +KEYWORDS="~amd64" + +PXE_VERSION="794.1.0" +PXE_SYSTEMD_VERSION="v222" +KVM_LINUX_VERSION="4.3.1" +KVMTOOL_VERSION="3c8aec9e2b5066412390559629dabeb7816ee8f2" +PXE_URI="http://alpha.release.core-os.net/amd64-usr/${PXE_VERSION}/coreos_production_pxe_image.cpio.gz" +PXE_FILE="${PN}-pxe-${PXE_VERSION}.img" + +SRC_URI="https://github.com/coreos/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz +rkt_stage1_coreos? ( $PXE_URI -> $PXE_FILE ) +rkt_stage1_kvm? ( + https://kernel.googlesource.com/pub/scm/linux/kernel/git/will/kvmtool/+archive/${KVMTOOL_VERSION}.tar.gz -> kvmtool-${KVMTOOL_VERSION}.tar.gz + mirror://kernel/linux/kernel/v4.x/linux-${KVM_LINUX_VERSION}.tar.xz +) +rkt_stage1_src? ( https://github.com/systemd/systemd/archive/${PXE_SYSTEMD_VERSION}.tar.gz -> systemd-${PXE_SYSTEMD_VERSION#v}.tar.gz )" + +DESCRIPTION="A CLI for running app containers, and an implementation of the App +Container Spec." +HOMEPAGE="https://github.com/coreos/rkt" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="doc examples +rkt_stage1_coreos +rkt_stage1_fly rkt_stage1_host rkt_stage1_kvm rkt_stage1_src +actool systemd" +REQUIRED_USE="|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_kvm rkt_stage1_src ) rkt_stage1_host? ( systemd )" + +DEPEND=">=dev-lang/go-1.4.1 + app-arch/cpio + app-crypt/trousers + sys-fs/squashfs-tools + dev-perl/Capture-Tiny" + +RDEPEND="!app-emulation/rocket + rkt_stage1_host? ( systemd? ( + >=sys-apps/systemd-222 + app-shells/bash:0 + ) )" + +BUILDDIR="build-${P}" +STAGE1_DEFAULT_LOCATION="/usr/share/rkt/stage1.aci" + +src_unpack() { + local x + for x in ${A}; do + case ${x} in + *.img|linux-*) continue ;; + kvmtool-*) + mkdir kvmtool || die + pushd kvmtool >/dev/null || die + unpack ${x} + popd >/dev/null || die + ;; + *) + unpack ${x} + esac + done +} + +src_prepare() { + # disable git fetch of systemd + sed -e 's|^include makelib/git.mk$|_ := '\ +'$(shell set -ex; [ -d "$(UFS_SYSTEMD_SRCDIR)" ] \&\& exit 0; '\ +'[ ! -d "$${WORKDIR}/systemd-'${PXE_SYSTEMD_VERSION#v}'" ] \&\& exit 0; '\ +'mkdir -p "$$( dirname "$(UFS_SYSTEMD_SRCDIR)")"; '\ +'mv "$${WORKDIR}/systemd-'${PXE_SYSTEMD_VERSION#v}'" "$(UFS_SYSTEMD_SRCDIR)";)|' \ + -i stage1/usr_from_src/usr_from_src.mk || die + + # disable git fetch of kvmtool + sed -e 's|^include makelib/git.mk$|_ := '\ +'$(shell set -ex; [ -d "$(LKVM_SRCDIR)" ] \&\& exit 0; '\ +'[ ! -d "$${WORKDIR}/kvmtool" ] \&\& exit 0; '\ +'mkdir -p "$$( dirname "$(LKVM_SRCDIR)")"; '\ +'mv "$${WORKDIR}/kvmtool" "$(LKVM_SRCDIR)";)|' \ + -i stage1/usr_from_kvm/lkvm.mk || die + + # disable fetch of kernel sources + sed -e 's|wget .*|ln -s "$${DISTDIR}/linux-'${KVM_LINUX_VERSION}'.tar.xz" "$@"|' \ + -i stage1/usr_from_kvm/kernel.mk || die + + if use rkt_stage1_host; then + # Make systemdUnitsPath consistent with host + sed -e 's|\(systemdUnitsPath := \).*|\1"'$(systemd_get_systemunitdir)'"|' \ + -i stage1/init/init.go || die + fi + + autotools-utils_src_prepare +} + +src_configure() { + local flavors myeconfargs=( + --with-stage1-default-images-directory="/usr/share/rkt" + --with-stage1-default-location="${STAGE1_DEFAULT_LOCATION}" + ) + + # enable flavors (first is default) + use rkt_stage1_host && flavors+=",host" + use rkt_stage1_src && flavors+=",src" + use rkt_stage1_coreos && flavors+=",coreos" + use rkt_stage1_fly && flavors+=",fly" + use rkt_stage1_kvm && flavors+=",kvm" + myeconfargs+=( --with-stage1-flavors="${flavors#,}" ) + + if use rkt_stage1_coreos; then + myeconfargs+=( + --with-coreos-local-pxe-image-path="${DISTDIR}/${PXE_FILE}" + --with-coreos-local-pxe-image-systemd-version="${PXE_SYSTEMD_VERSION}" + ) + fi + + # Go's 6l linker does not support PIE, disable so cgo binaries + # which use 6l+gcc for linking can be built correctly. + if gcc-specs-pie; then + append-ldflags -nopie + fi + + export CC=$(tc-getCC) + export CGO_ENABLED=1 + export CGO_CFLAGS="${CFLAGS}" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export BUILDDIR + + autotools-utils_src_configure +} + +src_compile() { + local arch=${ARCH} + case ${arch} in + amd64) arch=x86_64;; + esac + ARCH=${arch} autotools-utils_src_compile +} + +src_install() { + dodoc README.md + use doc && dodoc -r Documentation + use examples && dodoc -r examples + use actool && dobin "${S}/${BUILDDIR}/bin/actool" + + dobin "${S}/${BUILDDIR}/bin/rkt" + + insinto /usr/share/rkt + doins "${S}/${BUILDDIR}/bin/"*.aci + + # create symlink for default stage1 image path + if use rkt_stage1_host; then + dosym stage1-host.aci "${STAGE1_DEFAULT_LOCATION}" + elif use rkt_stage1_src; then + dosym stage1-src.aci "${STAGE1_DEFAULT_LOCATION}" + elif use rkt_stage1_coreos; then + dosym stage1-coreos.aci "${STAGE1_DEFAULT_LOCATION}" + elif use rkt_stage1_fly; then + dosym stage1-fly.aci "${STAGE1_DEFAULT_LOCATION}" + elif use rkt_stage1_kvm; then + dosym stage1-kvm.aci "${STAGE1_DEFAULT_LOCATION}" + fi + + systemd_dounit "${S}"/dist/init/systemd/${PN}-gc.service + systemd_dounit "${S}"/dist/init/systemd/${PN}-gc.timer + systemd_dounit "${S}"/dist/init/systemd/${PN}-metadata.service + systemd_dounit "${S}"/dist/init/systemd/${PN}-metadata.socket +} diff --git a/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild b/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild index 79581ffaeba8..f4f73b6ab137 100644 --- a/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild +++ b/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/emacs/${MY_P}.tar.xz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~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" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~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" RDEPEND="!=app-admin/eselect-1.2.3" diff --git a/app-misc/ca-certificates/ca-certificates-20151214.3.21.ebuild b/app-misc/ca-certificates/ca-certificates-20151214.3.21.ebuild index ee91d8037cc2..8a08600d4287 100644 --- a/app-misc/ca-certificates/ca-certificates-20151214.3.21.ebuild +++ b/app-misc/ca-certificates/ca-certificates-20151214.3.21.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -57,7 +57,7 @@ fi LICENSE="MPL-1.1" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" IUSE="" ${PRECOMPILED} || IUSE+=" +cacert" diff --git a/app-misc/fdupes/fdupes-1.51.ebuild b/app-misc/fdupes/fdupes-1.51.ebuild index 6bff666e0637..8037f87721df 100644 --- a/app-misc/fdupes/fdupes-1.51.ebuild +++ b/app-misc/fdupes/fdupes-1.51.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -26,7 +26,8 @@ src_prepare() { epatch \ "${FILESDIR}"/${P}-makefile.patch \ "${FILESDIR}"/${PN}-1.50_pre2-compare-file.patch \ - "${FILESDIR}"/${PN}-1.50_pre2-typo.patch + "${FILESDIR}"/${PN}-1.50_pre2-typo.patch \ + "${FILESDIR}"/${P}-fix-stdin-lvalue.patch append-lfs-flags } diff --git a/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch b/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch new file mode 100644 index 000000000000..65c06e3f1ddf --- /dev/null +++ b/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch @@ -0,0 +1,20 @@ +This is a combination of upstream's fe2d8334 and 03abad. See +https://bugs.gentoo.org/show_bug.cgi?id=574610. + +diff -Naur fdupes-1.51.orig/fdupes.c fdupes-1.51/fdupes.c +--- fdupes-1.51.orig/fdupes.c 2013-04-20 14:02:18.000000000 -0400 ++++ fdupes-1.51/fdupes.c 2016-02-29 02:45:36.360804360 -0500 +@@ -1164,7 +1164,12 @@ + } + else + { +- stdin = freopen("/dev/tty", "r", stdin); ++ if (freopen("/dev/tty", "r", stdin) == 0) ++ { ++ errormsg("could not open terminal for input\n"); ++ exit(1); ++ } ++ + deletefiles(files, 1, stdin); + } + } diff --git a/app-misc/qlcplus/qlcplus-4.10.2b.ebuild b/app-misc/qlcplus/qlcplus-4.10.2b.ebuild index 08f19bab0781..4c24585a8393 100644 --- a/app-misc/qlcplus/qlcplus-4.10.2b.ebuild +++ b/app-misc/qlcplus/qlcplus-4.10.2b.ebuild @@ -33,7 +33,7 @@ RDEPEND="dev-libs/glib:2 qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[widgets] - dev-qt/qtnetwork + dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 )" diff --git a/app-misc/tmux/Manifest b/app-misc/tmux/Manifest index c34e47a237c6..2e5b570927d9 100644 --- a/app-misc/tmux/Manifest +++ b/app-misc/tmux/Manifest @@ -1 +1,3 @@ DIST tmux-2.1.tar.gz 462965 SHA256 31564e7bf4bcef2defb3cb34b9e596bd43a3937cad9e5438701a81a5a9af6176 SHA512 0faa0a60a84b777ca3cf572cf741d0e4f82a9f32d27dfeddfda41bad57830823a6d5f2323f27ba794b86e194d9f7db7028c94dc6a15bb4ac5a18508f890bdaa4 WHIRLPOOL 983024886bdb868bb69ccedc18e9fd62cc5a8f147d647ea43b6f20e297b9b3c45a061e542bcb590ab50cf5d3db43d22015c3a8f18bee33d9c76552bfe13424ed +DIST tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b 458 SHA256 a0905c595fec7f0258fba5466315d42d67eca3bd2d3b12f4af8936d7f168b6c6 SHA512 fe0aca7d03067af87e0788a2fa902c7ef5500ba72295cb63c5a1814534a008c224256d7f890ac1af6d17f3734b45148765e1632f075e284c453185df2927b979 WHIRLPOOL aa83ea77c084e643f2cbf74ddf10bf6e43304b0a7c1f6af24b153844ad01732af8f45de0d8a39093f11be19ff9af20116f4aa7b9c750f3452525fcd7b31a3d8a +DIST tmux.vim-95f6126c187667cc7f9c573c45c3b356cf69f4ca 5626 SHA256 040cbb7ce19f5a256ae400061d310e0f64f58cbc525402043708b59546af2462 SHA512 956b2c1ca08e3c92aa39c9df54fbe1c661d0e076c91628c4b88f81f97104241b6505412fa0e21a681adc231eb2e6e7feee850474d4277812d186548bbb05f6d1 WHIRLPOOL 3eaa20479fccf7e20dbd7ccb8669bd8c47da90f7218fdb386fcd150c1223cc7300d68f880baa706bbdb7abf54394d44fd80479ba3fae934de9b53f40acc6286a diff --git a/app-misc/tmux/tmux-9999.ebuild b/app-misc/tmux/tmux-9999.ebuild index d71fba04d744..577675cb612a 100644 --- a/app-misc/tmux/tmux-9999.ebuild +++ b/app-misc/tmux/tmux-9999.ebuild @@ -10,7 +10,8 @@ inherit autotools-utils git-r3 bash-completion-r1 flag-o-matic versionator DESCRIPTION="Terminal multiplexer" HOMEPAGE="http://tmux.github.io/" -SRC_URI="" +SRC_URI="https://raw.githubusercontent.com/przepompownia/tmux-bash-completion/678a27616b70c649c6701cae9cd8c92b58cc051b/completions/tmux -> tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b +vim-syntax? ( https://raw.githubusercontent.com/keith/tmux.vim/95f6126c187667cc7f9c573c45c3b356cf69f4ca/syntax/tmux.vim -> tmux.vim-95f6126c187667cc7f9c573c45c3b356cf69f4ca )" EGIT_REPO_URI="https://github.com/tmux/tmux.git" LICENSE="ISC" @@ -61,14 +62,14 @@ src_configure() { src_install() { autotools-utils_src_install - newbashcomp examples/bash_completion_tmux.sh ${PN} + newbashcomp "${DISTDIR}/tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b" ${PN} docinto examples - dodoc examples/*.conf + dodoc example_tmux.conf if use vim-syntax; then insinto /usr/share/vim/vimfiles/syntax - doins examples/tmux.vim + newins "${DISTDIR}/tmux.vim-95f6126c187667cc7f9c573c45c3b356cf69f4ca" tmux.vim insinto /usr/share/vim/vimfiles/ftdetect doins "${FILESDIR}"/tmux.vim diff --git a/app-misc/xmind/Manifest b/app-misc/xmind/Manifest index ae24342ec7af..ad0fb1e0c895 100644 --- a/app-misc/xmind/Manifest +++ b/app-misc/xmind/Manifest @@ -1,3 +1,4 @@ +DIST xmind-7-update1-portable.zip 263875799 SHA256 2823c93178e55ff21d3a75ff2a9d2aa694f50a94a7220207a1ad757660cdf030 SHA512 c60cda54af5aefefde480627e7191ebdaf32df27e2873ac738ee7814ad0acda7066ef1ff62ffdc16148d190438d60991ca036fe0903cda44edbab91e2237b4bb WHIRLPOOL 4f177c52faef598143eb479b5cd9f7a55ddd7c82e7610852f01074227f6d8a29cf00c4ddd3d3d35d30ae6e859670791734594cf2c1f6d2ab2ec406207b612350 DIST xmind-icons.tar.xz 5024 SHA256 6a5e087c5c66aa6f36b7822268b486922157e3b75a091b6fbdeec905607b8aa5 SHA512 3ee6b8e42b75305bec8f97f733575f10ca3d08e1c5a76a10700776cb7740ae6f8a0f3dfbc4112d60ab2499915ca4ea0e3d56fd49e55bec00fccdc8710d9f9f0d WHIRLPOOL 590571a8b950ff6200d92417ab7eede2a8856263bc07c00fb129d751d9a00ae9bab69d916aab2f04d8270eadb0466723e99570032eacabd7350afd3cca4b8f23 DIST xmind-portable-3.4.1.201401221918.zip 138440913 SHA256 f70b8317ec0fe512e507bc26cc7fed70348af3c1d8c17603a78359175fc01261 SHA512 06d6473b26a0eef97d6651d14c13d7fd28fda19b33b2aea4f924d2e0f0d3131f19d5b64e081ba0d537c44eb09e27a83596aca91156bd32c5377903fbb7da9804 WHIRLPOOL 2601e8f293ef97d12576a461bb3b7a8e68bf6a4f807f780b9e6b7a12c20030bc979f61cf1f76f6deb617c57aa2c16e8d35621e66c5df825f8800ca38304d8ee0 DIST xmind-portable-3.5.1.201411201906.zip 160601004 SHA256 920321dc254604d51d4b3b4718ba04271de0e47b63a836fc597467c4062a89e4 SHA512 24da7bf3bfbc0beddbf6f4bb4b9d465e28c652b6e80ba9e0bc2a52cc2ff8c175a83ea8cc0d5b3dc87961c5b6666b6294ca836e29795631db41455ef1b8b2b3f0 WHIRLPOOL 9dab13d6578fe7e817cfa43ce171e33ae5f6d0f939f307b8cf15d651a70800763776bf9ed318a7116716dc7aa20793455a771d46f38ca13780dc9272024f73fe diff --git a/app-misc/xmind/xmind-3.6.1.ebuild b/app-misc/xmind/xmind-3.6.1.ebuild new file mode 100644 index 000000000000..a83c4cd85b6c --- /dev/null +++ b/app-misc/xmind/xmind-3.6.1.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils multilib gnome2-utils + +MY_PV="7-update1" +MY_P="${PN}-${MY_PV}-portable" + +DESCRIPTION="A brainstorming and mind mapping software tool" +HOMEPAGE="http://www.xmind.net" +SRC_URI="http://dl2.xmind.net/xmind-downloads/${MY_P}.zip + https://dev.gentoo.org/~creffett/distfiles/xmind-icons.tar.xz" +LICENSE="EPL-1.0 LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=virtual/jre-1.5 + x11-libs/gtk+:2 +" + +S=${WORKDIR} + +QA_PRESTRIPPED="opt/xmind/XMind/libcairo-swt.so" +QA_FLAGS_IGNORED=" + opt/xmind/Commons/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120522-1813/eclipse_1502.so + opt/xmind/Commons/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120522-1813/eclipse_1502.so + opt/xmind/XMind/libcairo-swt.so + opt/xmind/XMind/XMind +" + +src_configure() { + if use amd64; then + XDIR="XMind_Linux_64bit" + else + XDIR="XMind_Linux" + fi + mv "$XDIR" XMind || die + cp "${FILESDIR}"/${PN}-3.4.0-config.ini Commons/configuration || die #Combined common+linux config.ini + # force data instance & config area to be at home/.xmind directory + sed \ + -e '/-configuration/d' \ + -e '/\.\/configuration/d' \ + -e '/-data/d' \ + -e '/\.\.\/Commons\/data\/workspace-cathy/d' \ + -e 's/\.\.\/Commons/\/opt\/xmind\/Commons/g' \ + -i XMind/XMind.ini || die + echo '-Dosgi.instance.area=@user.home/.xmind/workspace-cathy' >> XMind/XMind.ini || die + echo '-Dosgi.configuration.area=@user.home/.xmind/configuration-cathy' >> XMind/XMind.ini || die +} + +src_compile() { + : +} + +src_install() { + insinto /opt/xmind + doins -r Commons XMind + fperms a+rx "/opt/xmind/XMind/XMind" + + exeinto /opt/bin + newexe "${FILESDIR}/xmind-wrapper-3.5.3" xmind + + # install icons + local res + for res in 16 32 48; do + newicon -s ${res} "${WORKDIR}/xmind-icons/xmind.${res}.png" xmind.png + done + + make_desktop_entry ${PN} "XMind" ${PN} "Office" "MimeType=application/x-xmind;" +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update + elog "For audio notes support, install media-sound/lame" +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/app-office/libreoffice-bin/libreoffice-bin-5.0.3.2.ebuild b/app-office/libreoffice-bin/libreoffice-bin-5.0.3.2.ebuild index 33ac2bd3343c..4b1c4457abbe 100644 --- a/app-office/libreoffice-bin/libreoffice-bin-5.0.3.2.ebuild +++ b/app-office/libreoffice-bin/libreoffice-bin-5.0.3.2.ebuild @@ -67,6 +67,7 @@ BIN_COMMON_DEPEND=" media-libs/glew:0/1.10 media-libs/harfbuzz:0/0.9.18[icu] media-libs/libpng:0/16 + >=sys-devel/gcc-4.9.0 >=sys-libs/glibc-2.21-r1 virtual/jpeg:62 kde? ( >=kde-base/kdelibs-4.14.8:4 >=dev-qt/qtcore-4.8.6-r2:4 >=dev-qt/qtgui-4.8.6-r4:4 ) diff --git a/app-office/libreoffice-bin/libreoffice-bin-5.0.5.2.ebuild b/app-office/libreoffice-bin/libreoffice-bin-5.0.5.2.ebuild index 175d5f383297..fe1d14e7dd21 100644 --- a/app-office/libreoffice-bin/libreoffice-bin-5.0.5.2.ebuild +++ b/app-office/libreoffice-bin/libreoffice-bin-5.0.5.2.ebuild @@ -67,6 +67,7 @@ BIN_COMMON_DEPEND=" media-libs/glew:0/1.10 media-libs/harfbuzz:0/0.9.18[icu] media-libs/libpng:0/16 + >=sys-devel/gcc-4.9.0 >=sys-libs/glibc-2.21-r1 virtual/jpeg:62 kde? ( >=kde-base/kdelibs-4.14.8:4 >=dev-qt/qtcore-4.8.6-r2:4 >=dev-qt/qtgui-4.8.6-r4:4 ) diff --git a/app-office/libreoffice/libreoffice-5.0.9999.ebuild b/app-office/libreoffice/libreoffice-5.0.9999.ebuild index 666755f97098..eae32ae99ae7 100644 --- a/app-office/libreoffice/libreoffice-5.0.9999.ebuild +++ b/app-office/libreoffice/libreoffice-5.0.9999.ebuild @@ -224,12 +224,10 @@ DEPEND="${COMMON_DEPEND} >=dev-util/mdds-0.12.0:0= media-libs/glm net-misc/npapi-sdk - >=sys-apps/findutils-4.4.2 sys-devel/bison - sys-apps/coreutils sys-devel/flex sys-devel/gettext - >=sys-devel/make-3.82 + !=sys-apps/findutils-4.4.2 sys-devel/bison - sys-apps/coreutils sys-devel/flex sys-devel/gettext - >=sys-devel/make-3.82 + !/dev/null || die + + CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \ + CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" AR="$(tc-getBUILD_AR)" \ + RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \ + "${S}"/configure --disable-renaming --disable-debug \ + --disable-samples --enable-static || die + emake + + popd >/dev/null || die + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local myeconfargs=( + --disable-renaming + --disable-samples + $(use_enable debug) + $(use_enable static-libs static) + ) + + multilib_is_native_abi && myeconfargs+=( + $(use_enable examples samples) + ) + tc-is-cross-compiler && myeconfargs+=( + --with-cross-build="${WORKDIR}"/host + ) + + # icu tries to use clang by default + tc-export CC CXX + + ECONF_SOURCE=${S} \ + econf "${myeconfargs[@]}" +} + +multilib_src_compile() { + default + + if multilib_is_native_abi && use doc; then + doxygen -u Doxyfile || die + doxygen Doxyfile || die + fi +} + +multilib_src_test() { + # INTLTEST_OPTS: intltest options + # -e: Exhaustive testing + # -l: Reporting of memory leaks + # -v: Increased verbosity + # IOTEST_OPTS: iotest options + # -e: Exhaustive testing + # -v: Increased verbosity + # CINTLTST_OPTS: cintltst options + # -e: Exhaustive testing + # -v: Increased verbosity + emake -j1 VERBOSE="1" check +} + +multilib_src_install() { + default + + if multilib_is_native_abi && use doc; then + dohtml -p api -r doc/html/ + fi +} + +multilib_src_install_all() { + einstalldocs + dohtml ../readme.html +} diff --git a/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.ebuild b/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.ebuild index ff319c10f03b..21d33e74532f 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" LICENSE="LGPL-2.1 MIT" SLOT="0/20" # subslot = soname major version -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc static-libs +threads" RDEPEND=">=dev-libs/libgpg-error-1.12[${MULTILIB_USEDEP}] diff --git a/dev-libs/libgpg-error/libgpg-error-1.19.ebuild b/dev-libs/libgpg-error/libgpg-error-1.19.ebuild index c4e2634ac2f1..adccfc617ec6 100644 --- a/dev-libs/libgpg-error/libgpg-error-1.19.ebuild +++ b/dev-libs/libgpg-error/libgpg-error-1.19.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="common-lisp nls static-libs" RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] ) diff --git a/dev-libs/libmirage/Manifest b/dev-libs/libmirage/Manifest index c2736233b7fe..65231a0cae0a 100644 --- a/dev-libs/libmirage/Manifest +++ b/dev-libs/libmirage/Manifest @@ -1,2 +1,2 @@ -DIST libmirage-2.1.1.tar.bz2 190118 SHA256 f606391095200df510b923201881bfbadb6ab032035ce9a67aa24fcae3145108 SHA512 19e34e4f4546426dfe12f1dca65a8a8221d32be7c1b60313b8a4ed2ab0729508638a8b3acc74e44a29de7080b4cbc9d1590965b3a0e5a796756ff3a7f41ea652 WHIRLPOOL c09bcf628722a0a711c0e5280a6aed931e5b860e598354a48757bd941cb264cfc6d6f9a62d2cebc7c9e3a989276634a02ad3474ad499f2c0f86e1f6153856ef8 DIST libmirage-3.0.3.tar.bz2 210568 SHA256 d65b70fe7045a4575d3bc71678d515db93e0b047bca58798b515e202497a2d0e SHA512 f2f74cef07be964516ea5a502d0b16a9631ae8973fea3d2196b5e5da7545958c6c06dcd639f8b6d10570f125fab3c2f4b4e53cedaa30528f1c8c34f33dd88a82 WHIRLPOOL 51280bd4470cd78c95b9ed9b6d1533ff36bce1ddf7d7305934c7aba0b5a379c208418db330500fb177602566a9b17677dbe72ac3d6f1606013880ec1a567a9b5 +DIST libmirage-3.0.4.tar.bz2 210624 SHA256 cc05370f0cc15348910a149207384f03b48b204a19215c1510924244996a3f3f SHA512 e892133977daf8364f3542789057029de4ae2660ceec565368ad3cf6875fabab6d89142fd8080c1786b269b0b47ebbf867a951cc2f6a8a23c3cb3f1d6574f7f2 WHIRLPOOL 81c84cf078ec793ea71028a72b64f8ab4c7e1693ead0260b2347d9f1bbb619d084352f4ff3f1eee4e3d66f73571d65dadf67f614e87a7030feaa79353b99b833 diff --git a/dev-libs/libmirage/libmirage-2.1.1.ebuild b/dev-libs/libmirage/libmirage-3.0.4.ebuild similarity index 80% rename from dev-libs/libmirage/libmirage-2.1.1.ebuild rename to dev-libs/libmirage/libmirage-3.0.4.ebuild index ed40e8510262..28ce05034321 100644 --- a/dev-libs/libmirage/libmirage-2.1.1.ebuild +++ b/dev-libs/libmirage/libmirage-3.0.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI="6" CMAKE_MIN_VERSION="2.8.5" @@ -13,13 +13,13 @@ HOMEPAGE="http://cdemu.org" SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2" LICENSE="GPL-2+" -SLOT="0/9" # subslot = libmirage soname version -KEYWORDS="amd64 ~hppa x86" +SLOT="0/10" # subslot = libmirage soname version +KEYWORDS="~amd64 ~hppa ~x86" IUSE="doc +introspection" RDEPEND=">=app-arch/bzip2-1:= >=app-arch/xz-utils-5:= - >=dev-libs/glib-2.24:2 + >=dev-libs/glib-2.28:2 >=media-libs/libsamplerate-0.1:= >=media-libs/libsndfile-1.0:= sys-libs/zlib:= @@ -35,8 +35,8 @@ src_prepare() { src_configure() { local mycmakeargs=( - $(cmake-utils_use doc GTKDOC_ENABLED) - $(cmake-utils_use introspection INTROSPECTION_ENABLED) + -DGTKDOC_ENABLED="$(usex doc)" + -DINTROSPECTION_ENABLED="$(usex introspection)" -DPOST_INSTALL_HOOKS=OFF # avoid sandbox violation, #487304 ) cmake-utils_src_configure diff --git a/dev-libs/libxslt/libxslt-1.1.28-r5.ebuild b/dev-libs/libxslt/libxslt-1.1.28-r5.ebuild index 9ff6efe1ead8..c3842a1b8345 100644 --- a/dev-libs/libxslt/libxslt-1.1.28-r5.ebuild +++ b/dev-libs/libxslt/libxslt-1.1.28-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -15,7 +15,7 @@ SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="crypt debug examples python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" diff --git a/dev-libs/mpc/mpc-1.0.2-r1.ebuild b/dev-libs/mpc/mpc-1.0.2-r1.ebuild index 7ee23176e97b..debf526072f4 100644 --- a/dev-libs/mpc/mpc-1.0.2-r1.ebuild +++ b/dev-libs/mpc/mpc-1.0.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,7 +12,7 @@ SRC_URI="http://www.multiprecision.org/mpc/download/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs" DEPEND=">=dev-libs/gmp-4.3.2[${MULTILIB_USEDEP},static-libs?] diff --git a/dev-libs/nspr/Manifest b/dev-libs/nspr/Manifest index aa8726c10104..5a07789e7935 100644 --- a/dev-libs/nspr/Manifest +++ b/dev-libs/nspr/Manifest @@ -1,3 +1,4 @@ DIST nspr-4.10.10.tar.gz 1134164 SHA256 343614971c30520d0fa55f4af0a72578e2d8674bb71caf7187490c3379523107 SHA512 60e035c4bd037bbf4bfacc97e2b1097ea78a179969fccead6a964069d826e917f07aaa35a26f123b7297521910728c11e27556fc9bbc09e385c1e8aef9dbf376 WHIRLPOOL db63a6d1e0c9d57dfa059aecf8eeff8e36d0385f598290665d525a85eb6fe173cd899bba017c82b26815d894d8ea6e728dbb7a77483036551c06c78c900d7ee3 DIST nspr-4.10.8.tar.gz 1131130 SHA256 507ea57c525c0c524dae4857a642b4ef5c9d795518754c7f83422d22fe544a15 SHA512 f14e3bd46cd1dee9d7163adbf3b09a450ea8c6c65499c5b6696eba7e85b6b12d3f90561a1dfe0dc0dc5fe1b14758b4191e546d9f0e29a66f33c69dd6ed6f50d9 WHIRLPOOL 67be897d54e2446d563cfe505047b23880025bd3f1ea5492964f8d286f56776e41a8e63bd9d197d3115efae0d63bd0c7005fb9fc56abdfce0702c27e6a9e872c DIST nspr-4.11.tar.gz 1134106 SHA256 cb320a9eee7028275ac0fce7adc39dee36f14f02fd8432fce1b7e1aa5e3685c2 SHA512 26c47ba618f5a7748cacc5152348b6fd37bdcc82806bbff485ed4d485aecad13d202270a837c735670030e96380ec3177f3bc8a47e0dca359cfb097a84242c02 WHIRLPOOL f8707154d1981a09140d31d359d5a40867eaad447620a4731a11c770cae13b8e9a64ef45c82123083e37e2effedfb0c367cc57969a3baf65628ff1e9ccf41517 +DIST nspr-4.12.tar.gz 1135458 SHA256 e0b10a1e569153668ff8bdea6c7e491b389fab69c2f18285a1ebf7c2ea4269de SHA512 138072be98dea6e97ea38f3e562c8ee383626c2136ec1adb854a81315468cd484c4b994c3ccaf6a39327b3fe121f77d698bf85c2764ec4b6231828b8a9ec5460 WHIRLPOOL d85d74e6287ed9578bc565c5e699f7201fbf38cb55e6dfa487f1c8b4684c161b6c6a5c8cb06627575d7a417bf35b15c64d231878dab32b5bbcc8223b7356c32d diff --git a/dev-libs/nspr/nspr-4.12.ebuild b/dev-libs/nspr/nspr-4.12.ebuild new file mode 100644 index 000000000000..68d97d68a739 --- /dev/null +++ b/dev-libs/nspr/nspr-4.12.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +WANT_AUTOCONF="2.5" + +inherit autotools eutils multilib toolchain-funcs versionator multilib-minimal + +MIN_PV="$(get_version_component_range 2)" + +DESCRIPTION="Netscape Portable Runtime" +HOMEPAGE="http://www.mozilla.org/projects/nspr/" +SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz" + +LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="debug" + +RDEPEND=" + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20140508-r12 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + )" + +MULTILIB_CHOST_TOOLS=( + /usr/bin/nspr-config +) + +src_prepare() { + cd "${S}"/nspr || die + epatch "${FILESDIR}"/${PN}-4.7.0-prtime.patch + epatch "${FILESDIR}"/${PN}-4.7.1-solaris.patch + epatch "${FILESDIR}"/${PN}-4.10.6-solaris.patch + epatch "${FILESDIR}"/${PN}-4.8.4-darwin-install_name.patch + epatch "${FILESDIR}"/${PN}-4.8.9-link-flags.patch + # We do not need to pass -L$libdir via nspr-config --libs + epatch "${FILESDIR}"/${PN}-4.9.5_nspr_config.patch + + # rename configure.in to configure.ac for new autotools compatibility + if [[ -e "${S}"/nspr/configure.in ]] ; then + einfo "Renaming configure.in to configure.ac" + mv "${S}"/nspr/configure.{in,ac} || die + fi + # We must run eautoconf to regenerate configure + eautoconf + + # make sure it won't find Perl out of Prefix + sed -i -e "s/perl5//g" "${S}"/nspr/configure || die + + # Respect LDFLAGS + sed -i -e 's/\$(MKSHLIB) \$(OBJS)/\$(MKSHLIB) \$(LDFLAGS) \$(OBJS)/g' \ + "${S}"/nspr/config/rules.mk || die +} + +multilib_src_configure() { + # We use the standard BUILD_xxx but nspr uses HOST_xxx + tc-export_build_env BUILD_CC + export HOST_CC=${BUILD_CC} HOST_CFLAGS=${BUILD_CFLAGS} HOST_LDFLAGS=${BUILD_LDFLAGS} + tc-export AR CC CXX RANLIB + [[ ${CBUILD} != ${CHOST} ]] \ + && export CROSS_COMPILE=1 \ + || unset CROSS_COMPILE + + local myconf=() + + # The configure has some fancy --enable-{{n,x}32,64bit} switches + # that trigger some code conditional to platform & arch. This really + # matters for the few common arches (x86, ppc) but we pass a little + # more of them to be future-proof. + + # use ABI first, this will work for most cases + case "${ABI}" in + alpha|arm|hppa|m68k|o32|ppc|s390|sh|sparc|x86) ;; + n32) myconf+=( --enable-n32 );; + x32) myconf+=( --enable-x32 );; + s390x|*64) myconf+=( --enable-64bit );; + default) # no abi actually set, fall back to old check + einfo "Running a short build test to determine 64bit'ness" + echo > "${T}"/test.c || die + ${CC} ${CFLAGS} ${CPPFLAGS} -c "${T}"/test.c -o "${T}"/test.o || die + case $(file "${T}"/test.o) in + *32-bit*x86-64*) myconf+=( --enable-x32 );; + *64-bit*|*ppc64*|*x86_64*) myconf+=( --enable-64bit );; + *32-bit*|*ppc*|*i386*) ;; + *) die "Failed to detect whether your arch is 64bits or 32bits, disable distcc if you're using it, please";; + esac ;; + *) ;; + esac + + # Ancient autoconf needs help finding the right tools. + LC_ALL="C" ECONF_SOURCE="${S}/nspr" \ + ac_cv_path_AR="${AR}" \ + econf \ + --libdir="${EPREFIX}/usr/$(get_libdir)" \ + $(use_enable debug) \ + $(use_enable !debug optimize) \ + "${myconf[@]}" +} + +multilib_src_install() { + # Their build system is royally confusing, as usual + MINOR_VERSION=${MIN_PV} # Used for .so version + emake DESTDIR="${D}" install + + einfo "removing static libraries as upstream has requested!" + rm -f "${ED}"/usr/$(get_libdir)/*.a || die "failed to remove static libraries." + + # install nspr-config + dobin config/nspr-config + + # Remove stupid files in /usr/bin + rm "${ED}"/usr/bin/prerr.properties || die + + # This is used only to generate prerr.c and prerr.h at build time. + # No other projects use it, and we don't want to depend on perl. + # Talked to upstream and they agreed w/punting. + rm "${ED}"/usr/bin/compile-et.pl || die +} diff --git a/dev-libs/nss/Manifest b/dev-libs/nss/Manifest index f66349d25cc1..a32331de18aa 100644 --- a/dev-libs/nss/Manifest +++ b/dev-libs/nss/Manifest @@ -2,6 +2,7 @@ DIST nss-3.14.1-add_spi+cacerts_ca_certs.patch 25018 SHA256 82ca25982828fd7153ad DIST nss-3.20.1.tar.gz 6958956 SHA256 ad3c8f11dfd9570c2d04a6140d5ef7c2bdd0fe30d6c9e5548721a4251a5e8c97 SHA512 c8db693a81b8ddb4d2a742c2fce3f23dd40736e54c55c0de072f84572fcdad8fb7646e4b8ea696e4c97ea6c9cb0fa144f573f8776c2839eb25c4075b50d01d74 WHIRLPOOL 3d4667b243ba6ac596ea7e9936bf9cba7aa1b9767fd19b53352c3a9a9eef0f1a0a9e7da719634dbc9dfcc087d187d5e774ae351c1e57545e8b8c1f40e41e42e6 DIST nss-3.20.tar.gz 6955552 SHA256 5e38d4b9837ca338af966b97fc91c07f67ad647fb38dc4af3cfd0d84e477d15c SHA512 50f666209cadd4e463f98643ec67e35f4d1b88381e17db9eed7c67559b19799fcc27e49d72536f546d4c45bca2afa4664e5590f868775a4397a77111d68fc366 WHIRLPOOL 84f20e6764b3621762fcfcb9223a3861e1f5ff02078b19b7df2eb58430a5f96943d962dca2d3366b18cd434acf3d3be746242c5064497167d5671c50233834de DIST nss-3.21.tar.gz 6978112 SHA256 3f7a5b027d7cdd5c0e4ff7544da33fdc6f56c2f8c27fff02938fd4a6fbe87239 SHA512 0645465b5d1ab05d819355a3f4a2879499539a00d95bfab3ca14a7dcd901e510b5d9ae797386ff5a42f68b0b57f7bbec4ec9d3a85ebd508eb824aba1fb589d53 WHIRLPOOL 7504d83de606d61840e06cb855ea688eb022d5eef062bcb7ac4d1064db96b96e35ae4ce0aff9d389a2140a7c3b974aaa9a86ada52af1199d462fdb48b11b42e4 +DIST nss-3.22.2.tar.gz 6982164 SHA256 07d49287c527ac31200f02dcf8494cef19e936d8ed470802749c4dfc782d3650 SHA512 0c73ba579cb697fe295bca2ee62315bc1830b542f607c1ecfbf591fa881d2ccfb5a6d830b47cd1434bdfbac07e03848b4fe9e6bda9c6d131a2c34973dc3b337c WHIRLPOOL 37137526ffc6f583ba54615c5fadb1076a5c0830b8aef6db394fb1da02345d5b1cf394b6a3cac7b8ce5727bf23ed1053f3f0f2865f0eab7c922c8459d5768142 DIST nss-3.22.tar.gz 6992347 SHA256 30ebd121c77e725a1383618eff79a6752d6e9f0f21882ad825ddab12e7227611 SHA512 f97251a17ad4ea889878ffeba64f19560978cf82c512b84c301be248ee4fe764345838fb8a88233b0fe12abe7bf78ce521a6ac64fa8d16bd0e1283eac9c17be1 WHIRLPOOL 8e128f3c8eb411c6569bd6d4d1edb55041e214913669687a5481d16f9aff245d3fc827f9a8c96e4723b3f0ec127d4461a1cda247dc296d9dce34513c7ab7e43d DIST nss-pem-015ae754dd9f6fbcd7e52030ec9732eb27fc06a8.tar.bz2 27506 SHA256 50d9ec26a75835e900302f631456e278e13d4b435b8f98aa69f79dd439ddc6ab SHA512 0158a140f112a905f7db5a4f4d04f49f6742db1d2665ddf6c32913c367f0b93a57f86ba13b9883a42a528aff44c48196941d7c0fd7a27005db6adaf07802e501 WHIRLPOOL 279ef11d2d6f0cb7c192189d64bc6971cdada7417b93a65a3ff0ba4548b736b53b9812803024c2349114e94e0864f2b58c23812687ed3f75cf28334b0f6e11ac DIST nss-pem-20140125.tar.bz2 28805 SHA256 62604dfc4178399a804e87ca7566d8316a0a40a535de3b2d0fa48fd80c97f768 SHA512 352faf812735e1374c534ada6dd577842603ea193dafaacfd51f201599ffe3f7a23ce1c673421e42f8b692091b58085f90843c29f70ae916949715e7baba2b39 WHIRLPOOL 3ae81410f6f4d2699e9dc55982cad03c226045fbeee25984d53d37ff78ce5c96d008d6837e1c0a10b6c96cdff17c21142e437159896d314e81afc8820867ca62 diff --git a/dev-libs/nss/nss-3.22.2.ebuild b/dev-libs/nss/nss-3.22.2.ebuild new file mode 100644 index 000000000000..1c5d1d36e325 --- /dev/null +++ b/dev-libs/nss/nss-3.22.2.ebuild @@ -0,0 +1,331 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal + +NSPR_VER="4.12" +RTM_NAME="NSS_${PV//./_}_RTM" +# Rev of https://git.fedorahosted.org/cgit/nss-pem.git +PEM_GIT_REV="015ae754dd9f6fbcd7e52030ec9732eb27fc06a8" +PEM_P="${PN}-pem-20140125" + +DESCRIPTION="Mozilla's Network Security Services library that implements PKI support" +HOMEPAGE="http://www.mozilla.org/projects/security/pki/nss/" +SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/${P}.tar.gz + cacert? ( https://dev.gentoo.org/~anarchy/patches/${PN}-3.14.1-add_spi+cacerts_ca_certs.patch ) + nss-pem? ( https://dev.gentoo.org/~anarchy/dist/${PEM_P}.tar.bz2 )" + +LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="+cacert +nss-pem utils" +CDEPEND=">=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}] + >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]" +DEPEND=">=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] + >=dev-libs/nspr-${NSPR_VER}[${MULTILIB_USEDEP}] + ${CDEPEND}" +RDEPEND=">=dev-libs/nspr-${NSPR_VER}[${MULTILIB_USEDEP}] + ${CDEPEND} + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20140508-r12 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + )" + +RESTRICT="test" + +S="${WORKDIR}/${P}/${PN}" + +MULTILIB_CHOST_TOOLS=( + /usr/bin/nss-config +) + +src_unpack() { + unpack ${A} + if use nss-pem ; then + mv "${PN}"/lib/ckfw/pem/ "${S}"/lib/ckfw/ || die + fi +} + +src_prepare() { + # Custom changes for gentoo + epatch "${FILESDIR}/${PN}-3.21-gentoo-fixups.patch" + epatch "${FILESDIR}/${PN}-3.21-gentoo-fixup-warnings.patch" + epatch "${FILESDIR}/${PN}-3.21-hppa-byte_order.patch" + + if use cacert ; then + epatch "${DISTDIR}/${PN}-3.14.1-add_spi+cacerts_ca_certs.patch" + epatch "${FILESDIR}/${PN}-3.21-cacert-class3.patch" #521462 + fi + use nss-pem && epatch "${FILESDIR}/${PN}-3.21-enable-pem.patch" \ + "${FILESDIR}/${PN}-3.21-pem-werror.patch" + + pushd coreconf >/dev/null || die + # hack nspr paths + echo 'INCLUDES += -I$(DIST)/include/dbm' \ + >> headers.mk || die "failed to append include" + + # modify install path + sed -e '/CORE_DEPTH/s:SOURCE_PREFIX.*$:SOURCE_PREFIX = $(CORE_DEPTH)/dist:' \ + -i source.mk || die + + # Respect LDFLAGS + sed -i -e 's/\$(MKSHLIB) -o/\$(MKSHLIB) \$(LDFLAGS) -o/g' rules.mk + popd >/dev/null || die + + # Fix pkgconfig file for Prefix + sed -i -e "/^PREFIX =/s:= /usr:= ${EPREFIX}/usr:" \ + config/Makefile || die + + # use host shlibsign if need be #436216 + if tc-is-cross-compiler ; then + sed -i \ + -e 's:"${2}"/shlibsign:shlibsign:' \ + cmd/shlibsign/sign.sh || die + fi + + # dirty hack + sed -i -e "/CRYPTOLIB/s:\$(SOFTOKEN_LIB_DIR):../freebl/\$(OBJDIR):" \ + lib/ssl/config.mk || die + sed -i -e "/CRYPTOLIB/s:\$(SOFTOKEN_LIB_DIR):../../lib/freebl/\$(OBJDIR):" \ + cmd/platlibs.mk || die + + multilib_copy_sources + + strip-flags +} + +multilib_src_configure() { + # Ensure we stay multilib aware + sed -i -e "/@libdir@/ s:lib64:$(get_libdir):" config/Makefile || die +} + +nssarch() { + # Most of the arches are the same as $ARCH + local t=${1:-${CHOST}} + case ${t} in + aarch64*)echo "aarch64";; + hppa*) echo "parisc";; + i?86*) echo "i686";; + x86_64*) echo "x86_64";; + *) tc-arch ${t};; + esac +} + +nssbits() { + local cc cppflags="${1}CPPFLAGS" cflags="${1}CFLAGS" + if [[ ${1} == BUILD_ ]]; then + cc=$(tc-getBUILD_CC) + else + cc=$(tc-getCC) + fi + echo > "${T}"/test.c || die + ${cc} ${!cppflags} ${!cflags} -c "${T}"/test.c -o "${T}/${1}test.o" || die + case $(file "${T}/${1}test.o") in + *32-bit*x86-64*) echo USE_X32=1;; + *64-bit*|*ppc64*|*x86_64*) echo USE_64=1;; + *32-bit*|*ppc*|*i386*) ;; + *) die "Failed to detect whether ${cc} builds 64bits or 32bits, disable distcc if you're using it, please";; + esac +} + +multilib_src_compile() { + # use ABI to determine bit'ness, or fallback if unset + local buildbits mybits + case "${ABI}" in + n32) mybits="USE_N32=1";; + x32) mybits="USE_X32=1";; + s390x|*64) mybits="USE_64=1";; + ${DEFAULT_ABI}) + einfo "Running compilation test to determine bit'ness" + mybits=$(nssbits) + ;; + esac + # bitness of host may differ from target + if tc-is-cross-compiler; then + buildbits=$(nssbits BUILD_) + fi + + local makeargs=( + CC="$(tc-getCC)" + AR="$(tc-getAR) rc \$@" + RANLIB="$(tc-getRANLIB)" + OPTIMIZER= + ${mybits} + ) + + # Take care of nspr settings #436216 + local myCPPFLAGS="${CPPFLAGS} $($(tc-getPKG_CONFIG) nspr --cflags)" + unset NSPR_INCLUDE_DIR + + # Do not let `uname` be used. + if use kernel_linux ; then + makeargs+=( + OS_TARGET=Linux + OS_RELEASE=2.6 + OS_TEST="$(nssarch)" + ) + fi + + export NSS_ENABLE_WERROR=0 #567158 + export BUILD_OPT=1 + export NSS_USE_SYSTEM_SQLITE=1 + export NSDISTMODE=copy + export NSS_ENABLE_ECC=1 + export FREEBL_NO_DEPEND=1 + export ASFLAGS="" + + local d + + # Build the host tools first. + LDFLAGS="${BUILD_LDFLAGS}" \ + XCFLAGS="${BUILD_CFLAGS}" \ + NSPR_LIB_DIR="${T}/fakedir" \ + emake -j1 -C coreconf \ + CC="$(tc-getBUILD_CC)" \ + ${buildbits:-${mybits}} + makeargs+=( NSINSTALL="${PWD}/$(find -type f -name nsinstall)" ) + + # Then build the target tools. + for d in . lib/dbm ; do + CPPFLAGS="${myCPPFLAGS}" \ + XCFLAGS="${CFLAGS} ${CPPFLAGS}" \ + NSPR_LIB_DIR="${T}/fakedir" \ + emake -j1 "${makeargs[@]}" -C ${d} + done +} + +# Altering these 3 libraries breaks the CHK verification. +# All of the following cause it to break: +# - stripping +# - prelink +# - ELF signing +# http://www.mozilla.org/projects/security/pki/nss/tech-notes/tn6.html +# Either we have to NOT strip them, or we have to forcibly resign after +# stripping. +#local_libdir="$(get_libdir)" +#export STRIP_MASK=" +# */${local_libdir}/libfreebl3.so* +# */${local_libdir}/libnssdbm3.so* +# */${local_libdir}/libsoftokn3.so*" + +export NSS_CHK_SIGN_LIBS="freebl3 nssdbm3 softokn3" + +generate_chk() { + local shlibsign="$1" + local libdir="$2" + einfo "Resigning core NSS libraries for FIPS validation" + shift 2 + local i + for i in ${NSS_CHK_SIGN_LIBS} ; do + local libname=lib${i}.so + local chkname=lib${i}.chk + "${shlibsign}" \ + -i "${libdir}"/${libname} \ + -o "${libdir}"/${chkname}.tmp \ + && mv -f \ + "${libdir}"/${chkname}.tmp \ + "${libdir}"/${chkname} \ + || die "Failed to sign ${libname}" + done +} + +cleanup_chk() { + local libdir="$1" + shift 1 + local i + for i in ${NSS_CHK_SIGN_LIBS} ; do + local libfname="${libdir}/lib${i}.so" + # If the major version has changed, then we have old chk files. + [ ! -f "${libfname}" -a -f "${libfname}.chk" ] \ + && rm -f "${libfname}.chk" + done +} + +multilib_src_install() { + pushd dist >/dev/null || die + + dodir /usr/$(get_libdir) + cp -L */lib/*$(get_libname) "${ED}"/usr/$(get_libdir) || die "copying shared libs failed" + cp -L */lib/libcrmf.a "${ED}"/usr/$(get_libdir) || die "copying libs failed" + cp -L */lib/libfreebl.a "${ED}"/usr/$(get_libdir) || die "copying libs failed" + + # Install nss-config and pkgconfig file + dodir /usr/bin + cp -L */bin/nss-config "${ED}"/usr/bin || die + dodir /usr/$(get_libdir)/pkgconfig + cp -L */lib/pkgconfig/nss.pc "${ED}"/usr/$(get_libdir)/pkgconfig || die + + # create an nss-softokn.pc from nss.pc for libfreebl and some private headers + # bug 517266 + sed -e 's#Libs:#Libs: -lfreebl#' \ + -e 's#Cflags:#Cflags: -I${includedir}/private#' \ + */lib/pkgconfig/nss.pc >"${ED}"/usr/$(get_libdir)/pkgconfig/nss-softokn.pc \ + || die "could not create nss-softokn.pc" + + # all the include files + insinto /usr/include/nss + doins public/nss/*.h + insinto /usr/include/nss/private + doins private/nss/{blapi,alghmac}.h + + popd >/dev/null || die + + local f nssutils + # Always enabled because we need it for chk generation. + nssutils="shlibsign" + + if multilib_is_native_abi ; then + if use utils; then + # The tests we do not need to install. + #nssutils_test="bltest crmftest dbtest dertimetest + #fipstest remtest sdrtest" + # checkcert utils has been removed in nss-3.22: + # https://bugzilla.mozilla.org/show_bug.cgi?id=1187545 + # https://hg.mozilla.org/projects/nss/rev/df1729d37870 + nssutils="addbuiltin atob baddbdir btoa certcgi certutil + cmsutil conflict crlutil derdump digest makepqg mangle modutil multinit + nonspr10 ocspclnt oidcalc p7content p7env p7sign p7verify pk11mode + pk12util pp rsaperf selfserv shlibsign signtool signver ssltap strsclnt + symkeyutil tstclnt vfychain vfyserv" + # install man-pages for utils (bug #516810) + doman doc/nroff/*.1 + fi + pushd dist/*/bin >/dev/null || die + for f in ${nssutils}; do + dobin ${f} + done + popd >/dev/null || die + fi + + # Prelink breaks the CHK files. We don't have any reliable way to run + # shlibsign after prelink. + dodir /etc/prelink.conf.d + printf -- "-b ${EPREFIX}/usr/$(get_libdir)/lib%s.so\n" ${NSS_CHK_SIGN_LIBS} \ + > "${ED}"/etc/prelink.conf.d/nss.conf +} + +pkg_postinst() { + multilib_pkg_postinst() { + # We must re-sign the libraries AFTER they are stripped. + local shlibsign="${EROOT}/usr/bin/shlibsign" + # See if we can execute it (cross-compiling & such). #436216 + "${shlibsign}" -h >&/dev/null + if [[ $? -gt 1 ]] ; then + shlibsign="shlibsign" + fi + generate_chk "${shlibsign}" "${EROOT}"/usr/$(get_libdir) + } + + multilib_foreach_abi multilib_pkg_postinst +} + +pkg_postrm() { + multilib_pkg_postrm() { + cleanup_chk "${EROOT}"/usr/$(get_libdir) + } + + multilib_foreach_abi multilib_pkg_postrm +} diff --git a/dev-lisp/ecls/Manifest b/dev-lisp/ecls/Manifest index 5e7ce279bed9..4231f5ba5eb7 100644 --- a/dev-lisp/ecls/Manifest +++ b/dev-lisp/ecls/Manifest @@ -2,3 +2,4 @@ DIST ecl-12.12.1.tgz 9006697 SHA256 54e77ce8157752eab49f8640f7d0077522d493a4d4de DIST ecl-13.5.1.tgz 9401163 SHA256 f91c57ce065fe9748bc8104e191e4b2dcfe854d634315fe7800dd0a613472ca2 SHA512 a09f8b824aa78e461d700eefb1a8b68b876e15d49124a397e0b5b58ad73b80f818133a7b8e48ddb83505eea2f9c5fb024de8701b527524004e336e456eb07c84 WHIRLPOOL def6de6444430e45bfff29c0716a23869e3455ba9b1cd9bfc1f02ef5c79c83df5b2280b8bada28acb1e742cdbe5c819970273386333d7c7c7c4fb48464dc6a2b DIST ecl-15.3.7.tgz 8755180 SHA256 2dc6ffbbf1e0a7b1323d49a991ba1f005127ca3e153651d91ba9e65bdaec948f SHA512 50a28ed551e507bee526ae44a12da2524c1feedf07cf8ca99650e37ecd7b99c4e2f2758c077979b174d303ffdcd9325637b708a29d14d8c3851c7e65d4ea026c WHIRLPOOL 57b0382b0e3dc7cd601b835a371c9ec6658911b1471cb5bfeee6144d22500e8ca55268f2a001c49d446e9be1a3771ca12348f2565f68ec83f1660c4295545a06 DIST ecl-16.0.0.tgz 8009304 SHA256 343ed4c3e4906562757a6039b85ce16d33dd5e8001d74004936795983e3af033 SHA512 15e4c604901dae1037e54ab1739d45a0f5f05decf6e72ba60d8b6b53e549021e93b811b809c4a72f423a20e9f9770969910d35edd5f184757293f98f89024c3a WHIRLPOOL 1af13ce81017bdad0ad6ee235beea9cc3e79d4b09b3863911a8092fd69a8d15f9c6eb75603c62d291450001d900cc1074c8882beb4c6da011b368b2a7f8fe7b5 +DIST ecl-16.1.2.tgz 7449461 SHA256 2d482b1a0a4fbd5d881434517032279d808cb6405e22dd91ef6d733534464b99 SHA512 f204494907226a12b4ecabc39d555f27c1ce5cba515fccd187d9b7ee584d86278558d6a26b2bbec98bce582239f21ac00c2d854f594c6b1f21e1636793845926 WHIRLPOOL 1590695d82c274d06806bffdadb872fba9b870efd19e234fd265b07911cd0bdfe456ddc16e63f9fd707559750a0373739627d440f91567084ee9e0c72b640f40 diff --git a/dev-lisp/ecls/ecls-16.1.2.ebuild b/dev-lisp/ecls/ecls-16.1.2.ebuild new file mode 100644 index 000000000000..19587873c9ed --- /dev/null +++ b/dev-lisp/ecls/ecls-16.1.2.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils multilib + +# test phase only works if ecls already installed #516876 +RESTRICT="test" + +MY_P=ecl-${PV} + +DESCRIPTION="ECL is an embeddable Common Lisp implementation" +HOMEPAGE="https://common-lisp.net/project/ecl/" +SRC_URI="https://common-lisp.net/project/ecl/files/release/${PV}/${MY_P}.tgz" + +LICENSE="BSD LGPL-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="debug emacs gengc precisegc cpu_flags_x86_sse +threads +unicode +libatomic X" + +CDEPEND="dev-libs/gmp:0 + virtual/libffi + libatomic? ( dev-libs/libatomic_ops ) + >=dev-libs/boehm-gc-7.1[threads?] + >=dev-lisp/asdf-2.33-r3:=" +DEPEND="${CDEPEND} + app-text/texi2html + emacs? ( virtual/emacs >=app-eselect/eselect-emacs-1.12 )" +RDEPEND="${CDEPEND}" + +S="${WORKDIR}"/${MY_P} + +pkg_setup () { + if use gengc || use precisegc ; then + ewarn "You have enabled the generational garbage collector or" + ewarn "the precise collection routines. These features are not very stable" + ewarn "at the moment and may cause crashes." + ewarn "Don't enable them unless you know what you're doing." + fi +} + +src_prepare() { + epatch "${FILESDIR}"/${PV}-headers-gentoo.patch + cp "${EPREFIX}"/usr/share/common-lisp/source/asdf/build/asdf.lisp contrib/asdf/ || die +} + +src_configure() { + econf \ + --with-system-gmp \ + --enable-boehm=system \ + --enable-longdouble=yes \ + --with-dffi \ + $(use_enable gengc) \ + $(use_enable precisegc) \ + $(use_with debug debug-cflags) \ + $(use_enable libatomic libatomic system) \ + $(use_with cpu_flags_x86_sse sse) \ + $(use_enable threads) \ + $(use_with threads __thread) \ + $(use_enable unicode) \ + $(use_with unicode unicode-names) \ + $(use_with X x) \ + $(use_with X clx) +} + +src_compile() { + if use emacs; then + local ETAGS=$(eselect --brief etags list | sed -ne '/emacs/{p;q}') + [[ -n ${ETAGS} ]] || die "No etags implementation found" + pushd build > /dev/null || die + emake ETAGS=${ETAGS} TAGS + popd > /dev/null + else + touch build/TAGS + fi + + #parallel make fails + emake -j1 || die "Compilation failed" +} + +src_install () { + emake DESTDIR="${D}" install || die "Installation failed" + + dodoc README.md CHANGELOG + dodoc "${FILESDIR}"/README.Gentoo + pushd build/doc + newman ecl.man ecl.1 + newman ecl-config.man ecl-config.1 + popd +} diff --git a/dev-lisp/ecls/files/16.1.2-headers-gentoo.patch b/dev-lisp/ecls/files/16.1.2-headers-gentoo.patch new file mode 100644 index 000000000000..193822a8fae2 --- /dev/null +++ b/dev-lisp/ecls/files/16.1.2-headers-gentoo.patch @@ -0,0 +1,13 @@ +diff -r -U1 ecl-16.1.2.orig/src/h/object.h ecl-16.1.2/src/h/object.h +--- ecl-16.1.2.orig/src/h/object.h 2016-02-25 08:06:19.000000000 +0100 ++++ ecl-16.1.2/src/h/object.h 2016-02-29 12:46:56.846308964 +0100 +@@ -27,4 +27,9 @@ + ++#ifndef TRUE + #define TRUE 1 /* boolean true value */ ++#endif ++ ++#ifndef FALSE + #define FALSE 0 /* boolean false value */ ++#endif + diff --git a/dev-perl/Any-Moose/Any-Moose-0.260.0-r1.ebuild b/dev-perl/Any-Moose/Any-Moose-0.260.0-r1.ebuild new file mode 100644 index 000000000000..6ed92155acab --- /dev/null +++ b/dev-perl/Any-Moose/Any-Moose-0.260.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=ETHER +DIST_VERSION=0.26 +inherit perl-module + +DESCRIPTION="Use Moose or Mouse modules (DEPRECATED)" + +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="test" +PERL_RM_FILES=( + "t/001-basic-mouse.t" + "t/002-other-modules-mouse.t" + "t/003-is_moose_loaded.t" + "t/004-x-modules-mouse.t" + "t/005-aliases-mouse.t" + "t/010-use_mouse_roles.t" + "t/012-use_mouse_util.t" +) +PATCHES=( "${FILESDIR}/nomouse.patch" ) +RDEPEND="dev-perl/Moose + virtual/perl-version" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.31 + test? ( + dev-perl/Moose + dev-perl/MooseX-Types + ) +" diff --git a/dev-perl/Any-Moose/files/nomouse.patch b/dev-perl/Any-Moose/files/nomouse.patch new file mode 100644 index 000000000000..745e2f51d2e7 --- /dev/null +++ b/dev-perl/Any-Moose/files/nomouse.patch @@ -0,0 +1,13 @@ +diff -Naur Any-Moose-0.26/t/000-version.t Any-Moose-0.26b/t/000-version.t +--- Any-Moose-0.26/t/000-version.t 2015-01-24 07:52:52.000000000 +0000 ++++ Any-Moose-0.26b/t/000-version.t 2016-02-29 10:44:17.801967386 +0000 +@@ -3,8 +3,6 @@ + use_ok 'Any::Moose'; + + show_version($_) for qw/ +- Mouse +- MouseX::Types + Moose + Class::MOP + MooseX::Types + diff --git a/dev-perl/Archive-Zip/Archive-Zip-1.560.0.ebuild b/dev-perl/Archive-Zip/Archive-Zip-1.560.0.ebuild index ea02c7db27bd..72681f82a737 100644 --- a/dev-perl/Archive-Zip/Archive-Zip-1.560.0.ebuild +++ b/dev-perl/Archive-Zip/Archive-Zip-1.560.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="A wrapper that lets you read Zip archive members as if they were files" SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND=" diff --git a/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.110.0.ebuild b/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.110.0.ebuild new file mode 100644 index 000000000000..22d188da9cdf --- /dev/null +++ b/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.110.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=ETHER +DIST_VERSION=0.11 +inherit perl-module + +DESCRIPTION="Get weak or strong random data from pluggable sources" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-perl/Capture-Tiny-0.80.0 + virtual/perl-Carp + virtual/perl-File-Spec + >=virtual/perl-IO-1.140.0 + dev-perl/Module-Find + dev-perl/Module-Runtime + dev-perl/Moo + dev-perl/Sub-Exporter + dev-perl/Type-Tiny + >=dev-perl/namespace-clean-0.110.0 +" +DEPEND="${RDEPEND} + >=dev-perl/Module-Build-Tiny-0.34.0 + test? ( + virtual/perl-ExtUtils-MakeMaker + dev-perl/Test-Exception + >=virtual/perl-Test-Simple-0.880.0 + || ( + >=virtual/perl-Test-Simple-1.1.10 + ( buf), len); -+ memcpy(data, buffer_ptr(im->buf), len); - buffer_consume(im->buf, len); - - goto ok; diff --git a/dev-perl/Import-Into/Import-Into-1.2.4.ebuild b/dev-perl/Import-Into/Import-Into-1.2.4.ebuild deleted file mode 100644 index 43031008053b..000000000000 --- a/dev-perl/Import-Into/Import-Into-1.2.4.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=ETHER -MODULE_VERSION=1.002004 -inherit perl-module - -DESCRIPTION="Import packages into other packages" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~ppc-aix ~x86-solaris" -IUSE="test" - -RDEPEND=" - dev-perl/Module-Runtime -" -DEPEND=" - ${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-Exporter - virtual/perl-Test-Simple - ) -" -SRC_TEST=do diff --git a/dev-perl/Import-Into/Manifest b/dev-perl/Import-Into/Manifest index d424bf80e01f..270d3f40bfc3 100644 --- a/dev-perl/Import-Into/Manifest +++ b/dev-perl/Import-Into/Manifest @@ -1,3 +1,2 @@ DIST Import-Into-1.002000.tar.gz 6483 SHA256 122277b33b42a1232681b457440309a031489bdb73a97d3c33b6bda9b1d8adbf SHA512 a36a59850adccd8cd2e25d4565627695c129a8e2a4097accb8afa90144c26f3f2e214679c35ac5ee269a672b352c9c9f1e1f49e35d17f08da257eef5e528bedd WHIRLPOOL 91571abc0e8f1dd4abb4020b8cb25d658bc68dd7c0771a1e6201259745b83bdd0ae4820d5a56ba3f1290b6f299926e99398221af7e323e435dd0077db57618d8 -DIST Import-Into-1.002004.tar.gz 7847 SHA256 decb259bc2ff015fe3dac85e4a287d4128e9b0506a0b2c5fa7244836a68b1084 SHA512 387fb6302417bda94fffe7215e22774d9345af0f2df9f39dc089abcf4a0e164521d2223ddaeed7179a341720e1ae399ada6ff02b5aef75c9a00a74e2cf752005 WHIRLPOOL 7a10872355a29bffd96fefe446562670dcc19f1a7c0a88e6e5f8803aacfe12c6b2c1759777da5b2934117df70015f029a199f608e927c139703cd4ed6bfdcdf7 DIST Import-Into-1.002005.tar.gz 7748 SHA256 bd9e77a3fb662b40b43b18d3280cd352edf9fad8d94283e518181cc1ce9f0567 SHA512 d356307072da18bc40b25f11583018ed416cb87178f080982e14e98e53d42bc1e04aebda56d595e707c05065eaa6ad7a6b059920e8b5b8e1589bfd68e26900fb WHIRLPOOL f4180667c6c6ce5919bdebb13ea2820c427f470b0c77767723d265bea92315b65320f33bfd00927ef82603685fd6c0e7d8fff0bec18349e763f53f68d10335b1 diff --git a/dev-perl/Inline-C/Inline-C-0.740.0.ebuild b/dev-perl/Inline-C/Inline-C-0.740.0.ebuild deleted file mode 100644 index 669478aa06f0..000000000000 --- a/dev-perl/Inline-C/Inline-C-0.740.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=INGY -MODULE_VERSION=0.74 -inherit perl-module - -DESCRIPTION="C Language Support for Inline" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND=" - >=virtual/perl-ExtUtils-MakeMaker-7 - >=virtual/perl-File-Spec-0.800.0 - >=dev-perl/Inline-0.790.0 - >=dev-perl/Parse-RecDescent-1.967.9 - >=dev-perl/Pegex-0.580.0 -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - >=dev-perl/File-ShareDir-Install-0.60.0 - test? ( - dev-perl/File-Copy-Recursive - dev-perl/IO-All - >=virtual/perl-Test-Simple-0.880.0 - >=dev-perl/Test-Warn-0.230.0 - dev-perl/YAML-LibYAML - virtual/perl-autodie - >=virtual/perl-version-0.770.0 - ) -" diff --git a/dev-perl/Inline-C/Manifest b/dev-perl/Inline-C/Manifest index 9ccddd528023..7c9df02cf6ec 100644 --- a/dev-perl/Inline-C/Manifest +++ b/dev-perl/Inline-C/Manifest @@ -1,2 +1 @@ -DIST Inline-C-0.74.tar.gz 72931 SHA256 ae28324d85ffcf372d464ff7960141df09b7050f9b0f1571d24f8791ebd4d7ba SHA512 dc062d802d057375769ab388647e7628b2c1d28df4c7a169ebf3e93aee87c6dc3187b94acd88051fd323a76ef1a9858f364805935df0dcba574b92fb26fecc18 WHIRLPOOL 0b5e22829f939be3d8be1f4dd8cc1321067e9b85747ac0fcb25c4c84d1bbe1e468b131883d8d276f315c2d6264b82e80ff89c4021945654185bfb5dbcf735832 DIST Inline-C-0.76.tar.gz 73384 SHA256 22e9713b4d331d3c49e4a9a9f012dbf84cec25a01e5da4f57091be287f1a9a35 SHA512 43bf0bc6addf08c4c3347b074babdc514b1d6cee052d1124c5d9d4a4b52bd0e92ac79f8393f35252a98ef337fb18a9da47cdf545b1010b3f0d9c4b7fd9eb8c6d WHIRLPOOL 097f51fde1e1b51879b04fe78d2bf2172a207c4ef8c28e3773613cb006320aeb938127fe362e3b71dccee6b52928bb281c905a768c698ab56579b4e8879a426a diff --git a/dev-perl/locale-maketext-fuzzy/locale-maketext-fuzzy-0.110.0-r1.ebuild b/dev-perl/Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r1.ebuild similarity index 80% rename from dev-perl/locale-maketext-fuzzy/locale-maketext-fuzzy-0.110.0-r1.ebuild rename to dev-perl/Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r1.ebuild index bc87673af004..265a8a908ce1 100644 --- a/dev-perl/locale-maketext-fuzzy/locale-maketext-fuzzy-0.110.0-r1.ebuild +++ b/dev-perl/Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r1.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -MY_PN=Locale-Maketext-Fuzzy MODULE_AUTHOR=AUDREYT MODULE_VERSION=0.11 inherit perl-module diff --git a/dev-perl/locale-maketext-fuzzy/Manifest b/dev-perl/Locale-Maketext-Fuzzy/Manifest similarity index 100% rename from dev-perl/locale-maketext-fuzzy/Manifest rename to dev-perl/Locale-Maketext-Fuzzy/Manifest diff --git a/dev-perl/locale-maketext-fuzzy/metadata.xml b/dev-perl/Locale-Maketext-Fuzzy/metadata.xml similarity index 100% rename from dev-perl/locale-maketext-fuzzy/metadata.xml rename to dev-perl/Locale-Maketext-Fuzzy/metadata.xml diff --git a/dev-perl/Net-Domain-TLD/Manifest b/dev-perl/Net-Domain-TLD/Manifest index a1a0abedf4a4..fdbd7f430a95 100644 --- a/dev-perl/Net-Domain-TLD/Manifest +++ b/dev-perl/Net-Domain-TLD/Manifest @@ -1,2 +1,3 @@ DIST Net-Domain-TLD-1.69.tar.gz 13274 SHA256 e6571ed5f015b093949b0d6f5fe3ed10bbc3592c47f314c17e117d9078de5481 SHA512 36ae72c9de476d9f4461ecc8f9aa3363e8dd6bd955c1ae30a4bdb4e9a242d49f8f9ca6f7c5101ca705a31edc860a426c868c36bcf197c36793a9063092bb7c7e WHIRLPOOL f32ca272b4c148d996bc014d3b01b1c3bc4c506e0dbb908a94da24ccbd5c25f9f58894c74eb81fac4b10a42c33b6e0dfaa7adac8bda0c9521214317241bb2f6c DIST Net-Domain-TLD-1.73.tar.gz 29105 SHA256 418abfa45fa620f3bec081fde8ed615e1e97dc6a6a1109cbbba82993da3b3b0c SHA512 eaebc600edfc8bb3a1eed42689c630f5e1790fdb49a6848f36e230dce05035257caf448cbc63833b1d2119362f867d18cbec4b3a7ceac31bc5d757e1e278a513 WHIRLPOOL 9b0b57c8f41b72282657a7042c15decdf4f6351879a2820f03d01ba01df4db5746d84a542c00cba588975a6a4d8fa21be35827e96e0d35d4fc5be321f814f245 +DIST Net-Domain-TLD-1.74.tar.gz 36300 SHA256 bf936cc20834d5b9497e33dc41c2da6a58536b7a1e0df0b8f6ce7ed5111ca868 SHA512 40e9e4776b078c525e886e6f7c5151aee44ce9187bb348128221927c8c92ae72318328d420a3626c0b5a1c05a742e4fefe8ca1d2eb4fac6a2e74c65ebc1c4507 WHIRLPOOL 7256687b144c19e8bd4543adefb9cb427511ad4d3e8b00fabbb914d5306ddf526498b03dc974f7414616e0c9597c7967ea71cca1a46c3de5f10a032cbcd45aa7 diff --git a/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.690.0-r1.ebuild b/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.690.0-r1.ebuild index 4068e11c43a1..27ae0fe21786 100644 --- a/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.690.0-r1.ebuild +++ b/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.690.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ MODULE_AUTHOR=ALEXP MODULE_VERSION=1.69 inherit perl-module -DESCRIPTION="Current list of available top level domain names including new ICANN additions and ccTLDs" +DESCRIPTION="Current top level domain names including new ICANN additions and ccTLDs" SLOT="0" KEYWORDS="amd64 hppa ~mips ppc ppc64 x86" diff --git a/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.730.0.ebuild b/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.730.0.ebuild index 3363f0b7152f..1241f4fc0d6c 100644 --- a/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.730.0.ebuild +++ b/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.730.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ MODULE_AUTHOR=ALEXP MODULE_VERSION=1.73 inherit perl-module -DESCRIPTION="Current list of available top level domain names including new ICANN additions and ccTLDs" +DESCRIPTION="Current top level domain names including new ICANN additions and ccTLDs" SLOT="0" KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~x86" diff --git a/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.740.0.ebuild b/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.740.0.ebuild new file mode 100644 index 000000000000..b60b8c147bd9 --- /dev/null +++ b/dev-perl/Net-Domain-TLD/Net-Domain-TLD-1.740.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=ALEXP +DIST_VERSION=1.74 +inherit perl-module + +DESCRIPTION="Current top level domain names including new ICANN additions and ccTLDs" + +SLOT="0" +KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND=" + virtual/perl-Carp + virtual/perl-Storable +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker +" diff --git a/dev-perl/Net-FreeDB/Manifest b/dev-perl/Net-FreeDB/Manifest index 08142ed54747..92d912b4db9d 100644 --- a/dev-perl/Net-FreeDB/Manifest +++ b/dev-perl/Net-FreeDB/Manifest @@ -1 +1,2 @@ DIST Net-FreeDB-0.08.tar.gz 19210 SHA256 f9774b85cd8edae72d3f90dcb2efb78d4fa759b0008e0c90e1c0254bec5c86b6 SHA512 64a33a4aac43580881302a35c204cc00f99dde80a5fb7154153fad32b93db48369739fc1b5631900243cd90882ac2308e1afdee12a0bd39b10e1770f4ee36625 WHIRLPOOL 3e9ce51fa5488892b3018ee71168a497c6deca1479d6c3c3fdd311e108c000ad23fe3e56ca344b8298ff8f77609bbc61a366e6c7a822bfc67e0458fcfacad7c7 +DIST Net-FreeDB-0.10.tar.gz 23869 SHA256 f743e12238eb16c94804afb4b310b02548f70bcaf179164eae567f8b4988ae85 SHA512 b1b249dfb81128645e6e3481f93d914fc11ecf931b91f6a21a065fa2fde8674f9c8b5466b3112be4f4f28556c0ec899cf8723e60adaaf26b5165e61d61445368 WHIRLPOOL 296900d92624962112a333154ecc0a058c262c43d9d6b1ed357e4c1afa4d4c5506a34c94fd66f93909b4cca9a13fe3e9e3b980bcf5b9de68548d4fff8455760a diff --git a/dev-perl/Net-FreeDB/Net-FreeDB-0.100.0.ebuild b/dev-perl/Net-FreeDB/Net-FreeDB-0.100.0.ebuild new file mode 100644 index 000000000000..ad2142aac2a3 --- /dev/null +++ b/dev-perl/Net-FreeDB/Net-FreeDB-0.100.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=DSHULTZ +DIST_VERSION=0.10 +inherit perl-module + +DESCRIPTION="OOP interface to the FreeDB database" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-perl/CDDB-File-1.10.0 + >=virtual/perl-File-Temp-0.50.0 + virtual/perl-IO + dev-perl/Moo + >=virtual/perl-libnet-2.120.0 +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + dev-perl/Test-Most + ) +" +src_test() { + local my_test_control; + my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}} + if has network ${my_test_control} ; then + export HAVE_INTERNET=1 + perl_rm_files "t/16-get_local_disc_id.t" "t/17-get_local_disc_data.t" + fi + perl-module_src_test +} diff --git a/dev-perl/Test-MockModule/Test-MockModule-0.50.0-r2.ebuild b/dev-perl/Test-MockModule/Test-MockModule-0.50.0-r2.ebuild index f1ca111eb23a..cc8778a3d23e 100644 --- a/dev-perl/Test-MockModule/Test-MockModule-0.50.0-r2.ebuild +++ b/dev-perl/Test-MockModule/Test-MockModule-0.50.0-r2.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Override subroutines in a module for unit testing" SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ppc x86" +KEYWORDS="amd64 ~arm ~hppa ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND=" diff --git a/dev-perl/indirect/Manifest b/dev-perl/indirect/Manifest index 965d0a9dd56d..46f10298bbd9 100644 --- a/dev-perl/indirect/Manifest +++ b/dev-perl/indirect/Manifest @@ -1,2 +1 @@ -DIST indirect-0.35.tar.gz 45177 SHA256 7cebc51f210f8e547e1ca0ff451439edfefb356b4ceb076d8028fb16469e0c74 SHA512 6b3d0e3caec39016172d6fdafaa0fca65d75e63a1131398fe2ce31c08070c70cee0b07112b7fd099a6e4bd0a9e1fe99915259d8752984a5aa462739a2305e50a WHIRLPOOL aac664c4b09c7b97e29ca760f5da64ec40868c045a07eef1a2a53201a071aebcf2a7434a1fbab6a3cddf31e5c43ef12d198b5aa604b30c789194327a90255ef6 DIST indirect-0.36.tar.gz 48597 SHA256 7c2676566fbee16d15be972cb2b7a2fcb7972d3d58a2fb06a41030d909b7e55b SHA512 27f86702a2b3597e2bc20390130584324bfe86cc4d9f33a488b4788d6e1513ac19dfd4e1407f29b6f862172b020b3001a248450ad8dddb5a31e07220c0783ceb WHIRLPOOL c07281a07d931577b707caa0207ea6c8c1f66066590bed796e21b4b2e58e7da69335cc211287de0222fd11f65f628fc8371e79f37651a953951d3f48c1552984 diff --git a/dev-perl/indirect/indirect-0.350.0.ebuild b/dev-perl/indirect/indirect-0.350.0.ebuild deleted file mode 100644 index de16be1fe844..000000000000 --- a/dev-perl/indirect/indirect-0.350.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=VPIT -MODULE_VERSION=0.35 -inherit perl-module - -DESCRIPTION="Lexically warn about using the indirect object syntax" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="test" - -DEPEND=" - test? ( - dev-perl/Test-Pod - dev-perl/Test-Pod-Coverage - )" - -SRC_TEST=do diff --git a/dev-perl/locale-maketext-fuzzy/ChangeLog-2015 b/dev-perl/locale-maketext-fuzzy/ChangeLog-2015 deleted file mode 100644 index 6cfffd432b2a..000000000000 --- a/dev-perl/locale-maketext-fuzzy/ChangeLog-2015 +++ /dev/null @@ -1,115 +0,0 @@ -# ChangeLog for dev-perl/locale-maketext-fuzzy -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/locale-maketext-fuzzy/ChangeLog,v 1.26 2014/08/22 19:29:12 axs Exp $ - -*locale-maketext-fuzzy-0.110.0-r1 (22 Aug 2014) - - 22 Aug 2014; Ian Stakenvicius (_AxS_) - +locale-maketext-fuzzy-0.110.0-r1.ebuild, - -locale-maketext-fuzzy-0.110.0.ebuild: - bumped EAPI to 5; committed directly to stable as no other changes present and - revbump helps stable systems to keep from dieing on perl-5.18 upgrade - - 07 Feb 2013; Ulrich Müller - locale-maketext-fuzzy-0.110.0.ebuild: - Move Creative Commons licenses to shorter names. - - 24 Jun 2012; Torsten Veller metadata.xml: - Update CPAN upstream info - - 21 Apr 2012; Torsten Veller - -locale-maketext-fuzzy-0.02.ebuild, -locale-maketext-fuzzy-0.100.0.ebuild: - Cleanup - - 16 Apr 2012; Brent Baude - locale-maketext-fuzzy-0.110.0.ebuild: - Marking locale-maketext-fuzzy-0.110.0 ppc for bug 404697 - - 05 Apr 2012; Jeff Horelick - locale-maketext-fuzzy-0.110.0.ebuild: - marked x86 per bug 404697 - - 01 Apr 2012; Raúl Porcel - locale-maketext-fuzzy-0.02.ebuild, locale-maketext-fuzzy-0.100.0.ebuild, - locale-maketext-fuzzy-0.110.0.ebuild: - Drop alpha/ia64/sparc keywords - - 29 Mar 2012; Jeroen Roovers - locale-maketext-fuzzy-0.110.0.ebuild: - Stable for HPPA (bug #404697). - - 28 Mar 2012; Agostino Sarubbo - locale-maketext-fuzzy-0.110.0.ebuild: - Stable for amd64, wrt bug #404697 - -*locale-maketext-fuzzy-0.110.0 (19 Dec 2011) - - 19 Dec 2011; Torsten Veller - +locale-maketext-fuzzy-0.110.0.ebuild: - Version bump - - 04 Sep 2011; Torsten Veller - -locale-maketext-fuzzy-0.10.ebuild: - Cleanup - -*locale-maketext-fuzzy-0.100.0 (27 Aug 2011) - - 27 Aug 2011; Torsten Veller - +locale-maketext-fuzzy-0.100.0.ebuild: - Change version scheme - -*locale-maketext-fuzzy-0.10 (06 Oct 2008) - - 06 Oct 2008; Torsten Veller - +locale-maketext-fuzzy-0.10.ebuild: - Version bump - - 16 Jan 2007; Michael Cummings - locale-maketext-fuzzy-0.02.ebuild: - Ebuild maintenance - - 06 Aug 2006; Michael Cummings - locale-maketext-fuzzy-0.02.ebuild: - Adding perl dep; fixed DEPEND - - 29 Jun 2006; Gustavo Zacarias - locale-maketext-fuzzy-0.02.ebuild: - Stable on hppa - - 17 Sep 2005; Aron Griffis - locale-maketext-fuzzy-0.02.ebuild: - Mark 0.02 stable on ia64 - - 26 Aug 2005; Aron Griffis - locale-maketext-fuzzy-0.02.ebuild: - add ~ia64 - - 01 May 2005; Michael Hanselmann - locale-maketext-fuzzy-0.02.ebuild: - Stable on ppc. - - 29 Apr 2005; Michael Cummings - locale-maketext-fuzzy-0.02.ebuild: - Cleaning for mirror - - 22 Apr 2005; Simon Stelling - locale-maketext-fuzzy-0.02.ebuild: - stable on amd64 - - 30 Dec 2004; Ciaran McCreesh : - Change encoding to UTF-8 for GLEP 31 compliance - - 30 May 2004; Bryan Østergaard - locale-maketext-fuzzy-0.02.ebuild: - Stable on alpha. - - 30 Dec 2003; Michael Cummings,,, - locale-maketext-fuzzy-0.02.ebuild: - 5 months, no bugs. Tested pod example on sparc and x86 - -*locale-maketext-fuzzy-0.02 (29 Jul 2003) - - 29 Jul 2003; Michael Cummings - locale-maketext-fuzzy-0.02.ebuild: - Bug 24879 dep for Request tracker - Celestial Wizard - diff --git a/dev-python/irc/Manifest b/dev-python/irc/Manifest index d899cfb86a4c..9dd9faff65fd 100644 --- a/dev-python/irc/Manifest +++ b/dev-python/irc/Manifest @@ -1,3 +1,4 @@ DIST irc-11.0.1.zip 120409 SHA256 25d818003780fd6d62e93d3ff32580e74c0e527c6290ae14b47af50b58339233 SHA512 fca2fe653d921c9ec65dfb2b072c16658d88d4a22ae91568b1eaf722a90179920808db157f587afe6de0055af3a04a528eb9022122e539150e5635f05b58f466 WHIRLPOOL dd9b9e8624e6bd86d27fead1f3006a2b80832d236ad21f50c147c07a27b2cc4933d68efd951dece44398dbc0299b73ba7a98e4eff2061d0e3a8a01833518113b DIST irc-13.3.1.tar.gz 81931 SHA256 be4b57f2fb296f0e83fe2bcfd91e886b13423d8cf4ebaf2b8077b8efa9783bee SHA512 fd82712a8446dbccdd50ba75e0ec0f45f0b327ff35e4fa172fe4a1fe92ca8dbb81afecc0aa0b3ba14b2864e7d78ce0b03496bde64181d66ebd3c4a7670e20fd9 WHIRLPOOL 7baa08a978980baf09257886b4c89e62abce9439082197549e9ffdda9acb7711fec4c2464f2c811b5c70803e43c663957bf2b38f50cfc5ec8fbbbdac8309b1fa DIST irc-14.0.tar.gz 82116 SHA256 e953bce286139c42de9a973db970dbf79de04817c74de0486a30b2bdc4350ba2 SHA512 6928f66bf994800e06a2f00b43bba23f36ce9bdde066ecf602d01c19cee5c79ec0a75fd858d6bb0446676681118025ebdda2312374eaf481437247b0c63b20c4 WHIRLPOOL e4af44e9269291219fb66d62b575b19a54f67b7d9cde79b7225f6bd071545488b399409c5fd0153e2dd16a3a853cc2bbeedf23c3c634097bb69ac741052c2ee9 +DIST irc-14.1.tar.gz 83206 SHA256 a85a9ed6e54b4078a76172241102f722e2860864b761206f0aadedd0a3dd66b1 SHA512 42f4638a73cea53d381a815d9dcf956919c79c984979ddee3ff40a047fae81f2e8dcc80745cd98d18b67b068a7c6cb4a13a14d945c95683fcfdabbf9e46558c1 WHIRLPOOL 41efb39bebb69c946e4432ef129bfd363a811558d19bd3d9f8fb107ddfe1d2689ea0eb34b73f0aadb7921cde8badcc42075c020352c367fb2f4cb05022322c21 diff --git a/dev-python/irc/irc-14.1.ebuild b/dev-python/irc/irc-14.1.ebuild new file mode 100644 index 000000000000..042dbfefde9d --- /dev/null +++ b/dev-python/irc/irc-14.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="IRC client framework written in Python" +HOMEPAGE="https://github.com/jaraco/irc" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples test" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/jaraco-collections[${PYTHON_USEDEP}] + dev-python/jaraco-text[${PYTHON_USEDEP}] + dev-python/jaraco-itertools[${PYTHON_USEDEP}] + dev-python/jaraco-logging[${PYTHON_USEDEP}] + >=dev-python/jaraco-functools-1.5[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] +" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + >=dev-python/pytest-2.8[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + dev-python/backports-unittest-mock[${PYTHON_USEDEP}] + ) +" + +python_compile_all() { + use doc && esetup.py build_sphinx +} + +python_test() { + py.test || die "Tests failed with ${EPYTHON}" +} + +python_install_all() { + if use examples; then + insinto "/usr/share/doc/${PF}" + docompress -x "/usr/share/doc/${PF}/scripts" + doins -r scripts + fi + use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/pyxattr/pyxattr-0.5.5.ebuild b/dev-python/pyxattr/pyxattr-0.5.5.ebuild index d50e5f095b68..99d6941dfe45 100644 --- a/dev-python/pyxattr/pyxattr-0.5.5.ebuild +++ b/dev-python/pyxattr/pyxattr-0.5.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="doc test" RDEPEND="sys-apps/attr" diff --git a/dev-ruby/hipchat/Manifest b/dev-ruby/hipchat/Manifest index d8157e781ff5..f4ac2f93fca6 100644 --- a/dev-ruby/hipchat/Manifest +++ b/dev-ruby/hipchat/Manifest @@ -1,3 +1 @@ -DIST hipchat-1.4.0.tar.gz 14567 SHA256 d0686c3bd87516c02c0bfcb0512f84b6151cc88150c6b15d81719bf3d07d43fa SHA512 a599c6cf0c65f1421f83e99a73ab22dfaf4da229c6ee9871fed6698e5543bca581b3168d6577d6e2103506038567a6d9b279f338a3185547f1920460b5185d6e WHIRLPOOL d1990cc6eb74c2a408e17781cbb2127f8c9dea19df022e3452f87563386182030e410370a83feb970e24238d9712388ac16e747f6a776e0ae6c8e8815486b02e -DIST hipchat-1.5.1.tar.gz 16227 SHA256 5e9ba9ac8fb339fff78c10d4ad19c1570530aac38bfed936088958426f72f97a SHA512 ae385c3fce6f09a9c9a23e44651580ed68e53a354faa588d648a3c8ea2797b86313e91ef7dd25583c2ccaf7f4033ef9a4595ea9a6495f5f234415207fa7260d3 WHIRLPOOL 62d86e371ae75742be97df60e8be13bff9678367d2544a044174796df37e18c4412daff2f235959f541ce48f09845d81ccb38e7645ee50ee71659578a9a89820 DIST hipchat-1.5.2.tar.gz 16549 SHA256 624660f5be9d16ae847c817e4dcfb4745c64ef76987533f5c1c33fd03e20f035 SHA512 98f8287d922eb141ee7eca37bd658b81b7b2b0800c82d9576aef0869b928f7b5e00cecc65ca2041b69eedadb002928ed89f0cf500c9dc5d5cad05430e9ec9932 WHIRLPOOL 7693a46d7f165b95ff8f3270d11094e13b0da6782bf010cb284ae871659cd7902217fd9d1fe6117be4d923dc975d1aa26f9411b48391cc53152a36d472a52eea diff --git a/dev-ruby/hipchat/hipchat-1.4.0.ebuild b/dev-ruby/hipchat/hipchat-1.4.0.ebuild deleted file mode 100644 index 120b3f54a1a8..000000000000 --- a/dev-ruby/hipchat/hipchat-1.4.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.textile" - -inherit ruby-fakegem - -DESCRIPTION="Ruby library to interact with HipChat" -HOMEPAGE="https://github.com/hipchat/hipchat-rb" -SRC_URI="https://github.com/hipchat/hipchat-rb/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RUBY_S="hipchat-rb-${PV}" - -ruby_add_rdepend "dev-ruby/httparty" -ruby_add_bdepend "test? ( - dev-ruby/rr - dev-ruby/rake - dev-ruby/webmock - )" - -all_ruby_prepare() { - sed -i -e '/bundler/d' Rakefile ${PN}.gemspec || die "sed failed" - sed -i -e '/git ls-files/d' ${PN}.gemspec || die "sed failed" - - sed -i -e '/coveralls/I s:^:#:' spec/spec_helper.rb || die -} diff --git a/dev-ruby/hipchat/hipchat-1.5.1.ebuild b/dev-ruby/hipchat/hipchat-1.5.1.ebuild deleted file mode 100644 index d6eff1055c49..000000000000 --- a/dev-ruby/hipchat/hipchat-1.5.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.textile" - -inherit ruby-fakegem - -DESCRIPTION="Ruby library to interact with HipChat" -HOMEPAGE="https://github.com/hipchat/hipchat-rb" -SRC_URI="https://github.com/hipchat/hipchat-rb/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RUBY_S="hipchat-rb-${PV}" - -ruby_add_rdepend "dev-ruby/httparty dev-ruby/mimemagic" -ruby_add_bdepend "test? ( - dev-ruby/rr - dev-ruby/rake - dev-ruby/webmock - )" - -all_ruby_prepare() { - sed -i -e '/bundler/d' Rakefile ${PN}.gemspec || die "sed failed" - sed -i -e '/git ls-files/d' ${PN}.gemspec || die "sed failed" - - sed -i -e '/coveralls/I s:^:#:' spec/spec_helper.rb || die -} diff --git a/dev-ruby/spring/Manifest b/dev-ruby/spring/Manifest index 04fb4d71ef1d..37a09b1f7447 100644 --- a/dev-ruby/spring/Manifest +++ b/dev-ruby/spring/Manifest @@ -1,4 +1,3 @@ -DIST spring-1.6.0.tar.gz 39122 SHA256 9f0917d410a24e970fc7a6082f12548be617393162bbe9c646464b2912bd445f SHA512 ce5792cd2626a9e60ee73e24bd8a221aa93d3af2e6741e7e4df81b3a18fe79da46e2004f7d29f9a3db1a788663151a7869b4a738c239f6a13b5f2374c4ba9af7 WHIRLPOOL a213e56eefc724e9c45418c7073b7410bf11c2deb5746a2740e4a168bebfb39a22aa1ddb5b216eee92c9fabf02cffe7b1e51bfcf71abc9864ce9fc226b4a37bc -DIST spring-1.6.1.tar.gz 39109 SHA256 1f7206613c5fab57e77e2f551cb8a9bd3f3f0e445b095537048431ec92216c1f SHA512 129f99217b64ef1bc3c700b8dacb53df76a9dc6c0c76e523f9477bbbe2244f8c99881f9c9e092dc2a664ed938f438a5f30155f9cb1e1782e003ca494c7cca8bc WHIRLPOOL 40919d82d76f72e5d4f0fce5fd55c480e5070dfc165a3e4f90cdf70db961390cd279ff9f7d1a1268d5a3be9877e67887c51ee7bc26b6435ee96d54a280ad4eb8 DIST spring-1.6.2.tar.gz 39206 SHA256 2e4a579b8847de39fd4ff72d9644c354115d1174809d7f6c9cf67fba774671fe SHA512 bb46cb6fcbb70b976230a32075072f1fa5a7a1d9f4819a8d9783c3793713407e7481e091400fcf9f5cce0e1b40982b76c378f7384425d2ac71c12baec2fd9adf WHIRLPOOL 85bc50cbf156ed7356b603b31e880fbeb35c4062ddd16ed92d83af96444d370d9318bd770f6714daaf8690592c267929ac8ab12f2d3981156da78661c7b148e6 DIST spring-1.6.3.tar.gz 39349 SHA256 6396158ef4479e5bedaa4383db197ead1e04c4c9781eed3300e954ec66a6ce34 SHA512 88d605cd5c9751a8dd3d9e7903beda0304f0d7b31934735c841b63ee450d5250b73b73f7c95f8a25dcffbbeb73e05028873bf54827481d19a691d345744d576d WHIRLPOOL ff8220c6ba1201765268120434903796c7a2ce3401ca88a71d3b82aaca1694471fe1fe929832559a8faf666aee8b9b517f462aee12a81940d5047893b1dbf719 +DIST spring-1.6.4.tar.gz 39370 SHA256 d7584ecb01fb980451c12d65bbb0175c7b15fb3bf8c117058145de5ecc8c349b SHA512 9dffdcef750bd25028761da8e69c44ae3eace843dff9f81d5566085d3a8c7f944f4c99b6d455078ff564b7135116ae38dcf1aaf6dcc127ac351eae85e15dc143 WHIRLPOOL b7fd0e1520b77e1dc150f270e1cb222915ab98322b9ec0f75242fbfeceec7bd6155262a2fdeee8cf8c5651e9b03e1ce441159042c877675ddc3c4e07fbb2e1cb diff --git a/dev-ruby/spring/spring-1.6.0.ebuild b/dev-ruby/spring/spring-1.6.0.ebuild deleted file mode 100644 index cd7a65f1f2c9..000000000000 --- a/dev-ruby/spring/spring-1.6.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_TASK_TEST="test:unit" - -inherit ruby-fakegem - -DESCRIPTION="Rails application preloader" -HOMEPAGE="https://github.com/rails/spring" -SRC_URI="https://github.com/rails/spring/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="1.1" -KEYWORDS="~amd64" - -IUSE="" - -ruby_add_rdepend ">=dev-ruby/rubygems-2.1.0" - -ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/activesupport )" - -all_ruby_prepare() { - sed -i -e '/files/d' \ - -e '/bump/d' ${PN}.gemspec || die - sed -i -e '/bump/d' Rakefile || die -} diff --git a/dev-ruby/spring/spring-1.6.1.ebuild b/dev-ruby/spring/spring-1.6.4.ebuild similarity index 91% rename from dev-ruby/spring/spring-1.6.1.ebuild rename to dev-ruby/spring/spring-1.6.4.ebuild index dfb5fc5c98d2..034b7e72e60a 100644 --- a/dev-ruby/spring/spring-1.6.1.ebuild +++ b/dev-ruby/spring/spring-1.6.4.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby20 ruby21" +USE_RUBY="ruby20 ruby21 ruby22" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" diff --git a/dev-ruby/travis/travis-1.8.2.ebuild b/dev-ruby/travis/travis-1.8.2-r1.ebuild similarity index 84% rename from dev-ruby/travis/travis-1.8.2.ebuild rename to dev-ruby/travis/travis-1.8.2-r1.ebuild index c786ee423a11..6b1eb288cde3 100644 --- a/dev-ruby/travis/travis-1.8.2.ebuild +++ b/dev-ruby/travis/travis-1.8.2-r1.ebuild @@ -7,7 +7,7 @@ USE_RUBY="ruby20 ruby21" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_RECIPE_TEST="rspec" -inherit ruby-fakegem +inherit bash-completion-r1 ruby-fakegem DESCRIPTION="Travis CI Client (CLI and Ruby library) " HOMEPAGE="https://github.com/travis-ci/travis.rb" @@ -33,3 +33,9 @@ ruby_add_rdepend " >dev-ruby/pusher-client-0.4 >=dev-ruby/typhoeus-0.6.8 " + +all_ruby_install() { + all_fakegem_install + + newbashcomp "assets/travis.sh" "travis" +} diff --git a/dev-util/complexity/Manifest b/dev-util/complexity/Manifest index b5b3ea638711..b59fda329e60 100644 --- a/dev-util/complexity/Manifest +++ b/dev-util/complexity/Manifest @@ -1,2 +1,2 @@ -DIST complexity-1.2.tar.xz 406024 SHA256 22c275e79078bf438dd51108256bb9b33d111330c3f979d7bf1cb0d4aa055e24 SHA512 e9460a27c9867db316b1f9fc80336a24513d47fa7a5dc7dc48ec1bcfb7e6678c725cec84e983397367498e22ebfee02ecff50343bafb018617f281f06ed295ab WHIRLPOOL e5e3f6ceb447c0940e8bb760cf5ec879e2bc012e4885ae96db82f92b5661bb2db4e737a5c885c3f873a2678fc35cacf3936e33a1d8bcb31765312f77f93c5d25 DIST complexity-1.3.tar.xz 413352 SHA256 99eab895769263cdb2480c879c5e22b877525ec4f9025725bb86bc51e7bd4976 SHA512 7d858610dd2faed17462206833014348ccb6eb17704085d4b40c54b1e9e3db3bab99753d7f8060bf689d135fa35f70afa29593808ca09a2f8744c9f5b40bbff2 WHIRLPOOL 6d01c99c307ca452e964cdc14dd9db6e625118a6b8d90c3e3b963bf28bbc1b1c5189b42ffc17f79a03f2c47d80af58ec9a5761e8e5344fd6a3c25efd7a03c891 +DIST complexity-1.5.tar.xz 417972 SHA256 1f5194c0dc6e813ea1dc7f36bfd05f15786a8ad6e9b3ab65b53d2263a0d93102 SHA512 498d0a98627c4f1abf632555f0021dd610a83a0c30160801390db01031321306b00caf0395c2d0e03b0104e595db7c0cf03b636759cd67fe377ad31959c3394d WHIRLPOOL d609e584025a6d8ccc6c5d6f4914db3302d4d92810e9dca1a0b4408b4532f037b445fd70f61009b490ad51d9b3507a38f74462c7618d3f79e63b739eda9916b6 diff --git a/dev-util/complexity/complexity-1.2.ebuild b/dev-util/complexity/complexity-1.5.ebuild similarity index 100% rename from dev-util/complexity/complexity-1.2.ebuild rename to dev-util/complexity/complexity-1.5.ebuild diff --git a/dev-util/dialog/Manifest b/dev-util/dialog/Manifest index bfa198792294..b8a36fc4e1af 100644 --- a/dev-util/dialog/Manifest +++ b/dev-util/dialog/Manifest @@ -1,2 +1,2 @@ -DIST dialog-1.2-20150528.tgz 497650 SHA256 a8cd7a66bdb41e53a3145cbb0eb370c5ce7300fe0e9ad6d3e8d3b9e16ff16418 SHA512 fd044715ca83ea21d42daa979f7b7f91634ec28658da550b17e0b804eeb2393b4ff75aef967c994f276f1f341b428e13fba2258730ef1fbfb1d5e1675c68d80d WHIRLPOOL 543b716f5f749a03d78b40f762ed4f2ff23c07e0acab6f8e22be5518c1e05d9a65b9f372de083f43ee19cd7551043ecc8c19f3d4111369c4b500d357342c21fe DIST dialog-1.2-20150920.tgz 498181 SHA256 c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05 SHA512 9cc0005ef6a0d7dc0b8263a433b0955fd8331fec9bceb0676dfb17da566d73216a089eab85b804918017623b98653bdb6b4e809a99ecf638f5a529dcf6314e48 WHIRLPOOL 7387fe72b56b20850826506b844e3d4378e7287aa67fc04b3f72d5684b34229fa14351ec2b8542c72b8a303c7c9819b8ead699575ad8eb90707d5e10de077e07 +DIST dialog-1.3-20160209.tgz 499300 SHA256 0314f7f2195edc58e7567a024dc1d658c2f8ea732796d8fa4b4927df49803f87 SHA512 77ad7698c8acc9ec2c4a8e76d73972ed3ee8d323cdb8cb18fbe496ebe4a6c8be873e0e2ecf66bbeb7eb6c398d0ca125969cb068e89c33a17521e1e1b913b1e4a WHIRLPOOL 7faf2cb0c01bd314af61d1d180d78232ba57fbb5985f18365256888e29430d3bd8c65de38a5d51045e0fd05bd72d84cf7869ed86aa9bc37fb73ff64c2a795c30 diff --git a/dev-util/dialog/dialog-1.2.20150528.ebuild b/dev-util/dialog/dialog-1.3.20160209.ebuild similarity index 87% rename from dev-util/dialog/dialog-1.2.20150528.ebuild rename to dev-util/dialog/dialog-1.3.20160209.ebuild index 21ec10439328..8dd6e904b47b 100644 --- a/dev-util/dialog/dialog-1.2.20150528.ebuild +++ b/dev-util/dialog/dialog-1.3.20160209.ebuild @@ -13,11 +13,11 @@ SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="examples minimal nls static-libs unicode" RDEPEND=" - >=sys-libs/ncurses-5.2-r5[unicode?] + >=sys-libs/ncurses-5.2-r5:=[unicode?] " DEPEND=" ${RDEPEND} diff --git a/dev-util/gtk-doc-am/gtk-doc-am-1.24.ebuild b/dev-util/gtk-doc-am/gtk-doc-am-1.24.ebuild index 5421066fb5c5..1c46db4a2789 100644 --- a/dev-util/gtk-doc-am/gtk-doc-am-1.24.ebuild +++ b/dev-util/gtk-doc-am/gtk-doc-am-1.24.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,7 +12,7 @@ HOMEPAGE="http://www.gtk.org/gtk-doc/" LICENSE="GPL-2 FDL-1.1" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND=">=dev-lang/perl-5.6" diff --git a/dev-vcs/blogc-git-receiver/Manifest b/dev-vcs/blogc-git-receiver/Manifest index 3f672a229fc7..7afd620e3c44 100644 --- a/dev-vcs/blogc-git-receiver/Manifest +++ b/dev-vcs/blogc-git-receiver/Manifest @@ -1 +1 @@ -DIST blogc-git-receiver-0.3.tar.xz 69644 SHA256 29927afc6900ec781d9d0455d4ca79bdd59a320e023ffdad9705d4b4d8017990 SHA512 d12e03f5bde55baf946c788790e35f355d53638cdae0ba08b4099cbf861bc0bb5c7c8a8a5f02ebd670c581e220d33074e6bbe4db76f86189d0a493e1b4313325 WHIRLPOOL d135de4df71a34ca6fb98dc778ba0a9526152a08884c8b6e2bb1412f8646a616634576b24c603d919d6123220eb9099072d6a9a42c71b3a7c125d739eea9bab3 +DIST blogc-git-receiver-0.3.1.tar.xz 248740 SHA256 684b295f00ac1a5e88db01fdae3197795e7636d82cfd7aa3b2632c7c7254db87 SHA512 63c6fa417c39d1e4da197a519d3cfc20b29a47f6c0f3e75f6bd796416aca7570fa293a3c3eb7e1c2949a3746d1caa84021296e2fe32e6ccbde9553ff56346c25 WHIRLPOOL 887fe34e721ad9ac9afb5824d85619f737798e2ab3f5a8c1fcee04ed5a3f099777b90164d55055b70ce6c1283ac672349c7a30730590e65f1e1851f6af9ba917 diff --git a/dev-vcs/blogc-git-receiver/blogc-git-receiver-0.3.ebuild b/dev-vcs/blogc-git-receiver/blogc-git-receiver-0.3.1.ebuild similarity index 70% rename from dev-vcs/blogc-git-receiver/blogc-git-receiver-0.3.ebuild rename to dev-vcs/blogc-git-receiver/blogc-git-receiver-0.3.1.ebuild index 5b79d3045865..8c73a5c9a234 100644 --- a/dev-vcs/blogc-git-receiver/blogc-git-receiver-0.3.ebuild +++ b/dev-vcs/blogc-git-receiver/blogc-git-receiver-0.3.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="git://github.com/blogc/blogc-git-receiver.git @@ -13,28 +13,29 @@ fi DESCRIPTION="A simple login shell/git hook to deploy blogc websites" HOMEPAGE="https://github.com/blogc/blogc-git-receiver" -MY_PV="${PV/_/-}" -MY_PV="${MY_PV/beta/beta.}" - -MY_P="${PN}-${MY_PV}" - -SRC_URI="https://github.com/blogc/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.xz" +SRC_URI="https://github.com/blogc/${PN}/releases/download/v${PV}/${P}.tar.xz" KEYWORDS="~amd64 ~x86" if [[ ${PV} = *9999* ]]; then SRC_URI="" KEYWORDS="" + DEPEND="=dev-libs/squareball-9999" else - S="${WORKDIR}/${MY_P}" + DEPEND=">=dev-libs/squareball-0.1" fi LICENSE="BSD" SLOT="0" IUSE="" -RDEPEND="dev-vcs/git" -DEPEND="" +RDEPEND="${DEPEND} + dev-vcs/git" src_prepare() { [[ ${PV} = *9999* ]] && eautoreconf default } + +src_configure() { + econf \ + --with-squareball=system +} diff --git a/dev-vcs/blogc-git-receiver/blogc-git-receiver-9999.ebuild b/dev-vcs/blogc-git-receiver/blogc-git-receiver-9999.ebuild index 5b79d3045865..8c73a5c9a234 100644 --- a/dev-vcs/blogc-git-receiver/blogc-git-receiver-9999.ebuild +++ b/dev-vcs/blogc-git-receiver/blogc-git-receiver-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="git://github.com/blogc/blogc-git-receiver.git @@ -13,28 +13,29 @@ fi DESCRIPTION="A simple login shell/git hook to deploy blogc websites" HOMEPAGE="https://github.com/blogc/blogc-git-receiver" -MY_PV="${PV/_/-}" -MY_PV="${MY_PV/beta/beta.}" - -MY_P="${PN}-${MY_PV}" - -SRC_URI="https://github.com/blogc/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.xz" +SRC_URI="https://github.com/blogc/${PN}/releases/download/v${PV}/${P}.tar.xz" KEYWORDS="~amd64 ~x86" if [[ ${PV} = *9999* ]]; then SRC_URI="" KEYWORDS="" + DEPEND="=dev-libs/squareball-9999" else - S="${WORKDIR}/${MY_P}" + DEPEND=">=dev-libs/squareball-0.1" fi LICENSE="BSD" SLOT="0" IUSE="" -RDEPEND="dev-vcs/git" -DEPEND="" +RDEPEND="${DEPEND} + dev-vcs/git" src_prepare() { [[ ${PV} = *9999* ]] && eautoreconf default } + +src_configure() { + econf \ + --with-squareball=system +} diff --git a/kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-15.08.3.ebuild b/kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-15.08.3-r1.ebuild similarity index 90% rename from kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-15.08.3.ebuild rename to kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-15.08.3-r1.ebuild index 90d0f45ec215..128763936b70 100644 --- a/kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-15.08.3.ebuild +++ b/kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-15.08.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -27,7 +27,7 @@ RDEPEND=" xscreensaver? ( x11-misc/xscreensaver ) " DEPEND="${RDEPEND} - eigen? ( dev-cpp/eigen:2 ) + eigen? ( dev-cpp/eigen:3 ) " PATCHES=( @@ -40,7 +40,7 @@ src_configure() { local mycmakeargs=( -DKSCREENSAVER_SOUND_SUPPORT=ON -DOPENGL=ON - $(cmake-utils_use_with eigen Eigen2) + $(cmake-utils_use_with eigen Eigen3) $(cmake-utils_use_with kexiv2) $(cmake-utils_use_with xscreensaver) ) diff --git a/kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-4.14.3-r1.ebuild b/kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-4.14.3-r1.ebuild new file mode 100644 index 000000000000..c8eade077b41 --- /dev/null +++ b/kde-apps/kdeartwork-kscreensaver/kdeartwork-kscreensaver-4.14.3-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KMMODULE="kscreensaver" +KMNAME="kdeartwork" +OPENGL_REQUIRED="optional" +KDE_SCM="svn" +inherit kde4-meta + +DESCRIPTION="Extra screensavers for kde" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug +eigen +kexiv2 xscreensaver" + +# libkworkspace - only as a stub to provide KDE4Workspace config +RDEPEND=" + $(add_kdebase_dep kscreensaver '' 4.11) + $(add_kdebase_dep libkworkspace '' 4.11) + media-libs/libart_lgpl + x11-libs/libX11 + x11-libs/libXt + virtual/glu + virtual/opengl + kexiv2? ( $(add_kdeapps_dep libkexiv2) ) + xscreensaver? ( x11-misc/xscreensaver ) +" +DEPEND="${RDEPEND} + eigen? ( dev-cpp/eigen:3 ) +" + +PATCHES=( + "${FILESDIR}/${PN}-xscreensaver.patch" + "${FILESDIR}/${PN}-4.5.95-webcollage.patch" + "${FILESDIR}/${PN}-15.08.3-missing-include.patch" +) + +src_configure() { + local mycmakeargs=( + -DKSCREENSAVER_SOUND_SUPPORT=ON + -DOPENGL=ON + $(cmake-utils_use_with eigen Eigen3) + $(cmake-utils_use_with kexiv2) + $(cmake-utils_use_with xscreensaver) + ) + + kde4-meta_src_configure +} diff --git a/licenses/IBPP-1.1 b/licenses/IBPP-1.1 deleted file mode 100644 index 99ef9e6b2581..000000000000 --- a/licenses/IBPP-1.1 +++ /dev/null @@ -1,22 +0,0 @@ -IBPP License v1.1 ------------------ - -(C) Copyright 2000-2006 T.I.P. Group S.A. and the IBPP Team (www.ibpp.org) - -Permission is hereby granted, free of charge, to any person or organization -("You") obtaining a copy of this software and associated documentation files -covered by this license (the "Software") to use the Software as part of another -work; to modify it for that purpose; to publish or distribute it, modified or -not, for that same purpose; to permit persons to whom the other work using the -Software is furnished to do so; subject to the following conditions: the above -copyright notice and this complete and unmodified permission notice shall be -included in all copies or substantial portions of the Software; You will not -misrepresent modified versions of the Software as being the original. - -The Software is provided "as is", without warranty of any kind, express or -implied, including but not limited to the warranties of merchantability, -fitness for a particular purpose and noninfringement. In no event shall -the authors or copyright holders be liable for any claim, damages or other -liability, whether in an action of contract, tort or otherwise, arising from, -out of or in connection with the software or the use of other dealings in -the Software. diff --git a/licenses/ixp4xx b/licenses/ixp4xx deleted file mode 100644 index ddb3efcc8158..000000000000 --- a/licenses/ixp4xx +++ /dev/null @@ -1,170 +0,0 @@ -http://www.intel.com/design/network/swsup/np_sla/ixp400.htm -http://www.intel.com/design/network/products/npfamily/ixp425swr1.htm - - INTEL SOFTWARE LICENSE AGREEMENT - IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. - - DO NOT USE OR LOAD THIS SOFTWARE OR ANY ASSOCIATED MATERIALS - (COLLECTIVELY, THE "SOFTWARE") UNTIL YOU HAVE CAREFULLY READ THE - FOLLOWING TERMS AND CONDITIONS. BY LOADING OR USING THE SOFTWARE, YOU - AS AN INDIVIDUAL AND ON BEHALF OF YOUR EMPLOYER ("YOU") AGREE TO THE - TERMS OF THIS AGREEMENT. - IF YOU DO NOT WISH TO SO AGREE, DO NOT INSTALL OR USE THE SOFTWARE. - LICENSE: Subject to the terms and conditions of this Agreement - including without limitation the restrictions below, Intel Corporation - ("Intel") grants to you the following non-exclusive, non-transferable, - non-assignable, royalty-free copyright licenses in the Software: - * "Redistributable Code" includes all Software EXCEPT for the software - contained in the subdirectory "ixp425_xscale_sw/src/adsl". Subject to - the terms and conditions of this Agreement, You may reproduce, create - derivative works of, and distribute Redistributable Code, in - executable or source form, ONLY with, or as part of, Your Product (as - defined below), subject to the restrictions set forth in this - Agreement. Distribution for any other purpose or in any other manner - is prohibited under this license. - * If you have downloaded the version of IXP400 Software with - encryption Software, all Software contained in the - ixp425AccessLibraryWithCrypto_x_y.zip (Where x and y represent the - specific version number of the software) is also Redistributable Code - EXCEPT for the software contained in the subdirectory - "ixp425_xscale_sw/src/adsl." Note that all Software in the - ixp425AccessLibraryWithCrypto_x_y.zip file is subject to the U.S. - Export Administration Regulations and other U.S. law, and You are - responsible for compliance with such laws and regulations. - * "Non-Redistributable Code" includes the Software contained in the - ixp425AccessLibrary_x_y.zip and ixp425AccessLibraryWithCrypto_x_y.zip - subdirectory "ixp425_xscale_sw/src/adsl." Subject to the terms and - conditions of this Agreement, You may reproduce and create derivative - works of Non-Redistributable Code, and distribute such derivative - works only in executable form and ONLY with, or as part of, Your - Product, subject to the restrictions set forth in this Agreement. - Redistributable Code may NOT be redistributed to third parties in - source code form, and may NOT be distributed if such distribution - would obligate You, under an open source agreement or otherwise, to - make source code available to third parties. If you desire to - redistribute the Non-Redistributable Source Code, please contact Intel - to request information. - "Your Product" must be: (1) a hardware product that includes an Intel - network processor ("Your Hardware Product"); and/or (2) software that - runs on or interfaces with an Intel network processor; and which also - includes a substantial amount of software functionality, software - modifications and/or hardware that differentiates it from the Software - as provided by Intel ("Your Software Product"). - RESTRICTIONS: - Any authorized distribution of the Software and/or derivative works - thereof is also subject to the following conditions: You: (i) enter - into a written agreement (enforceable "shrink-wrap" or "click to - accept" licenses are permissible) with the entity or person to whom - you are distributing such Software that are least as restrictive as - the terms and conditions you enter into with your licensees for - distribution of your software; (ii) are solely responsible for any - warranty, update or support obligation, or other liability that may - arise from Your distribution of Software and/or derivative works; - (iii) will not make any statement that your product is warranted, - "certified," or that its performance is guaranteed, by Intel; (iv) - will not use Intel's name or trademarks to market your product without - written permission of an authorized representative of Intel; (v) shall - prohibit disassembly and reverse engineering of any executable - Software and/or derivative works thereof; (vi) shall indemnify, hold - harmless, and defend Intel (including its officers, employees, - directors, subsidiaries, representatives, affiliates and agents) and - Intel's suppliers from and against any claims or lawsuits, including - attorney's fees and expenses, that arise or result from your - distribution of any Software or derivative works thereof, including - any liabilities arising from any permitted distribution under any open - source license. - OPEN SOURCE SOFTWARE RESTRICTIONS. Unless expressly permitted - elsewhere in this license, You may not combine or distribute the - Software with Open Source Software (as defined below) or with software - developed using Open Source Software (e.g., tools) in a manner that - subjects Intel or any portion of the Software provide by Intel - hereunder to any license obligations of such Open Source Software. - "Open Source Software" means any software licensed under terms - requiring that other software combined or distributed with such - software: (i) be disclosed or distributed in source code form; (ii) be - licensed on terms inconsistent with the terms of this Agreement. - NO SUPPORT UNDER THIS LICENSE AGREEMENT. Intel has no obligation to - support the Software under this Agreement. - EXPORT. You shall NOT export, either directly or indirectly, any - product, service or technical data or system incorporating Software - without first obtaining any required license or other approval from - the U. S. Department of Commerce or any other agency or department of - the United States Government. In the event any Software is exported - from the United States or re-exported from a foreign destination by - You, You shall ensure that the distribution and export/re-export or - import of the Software is in compliance with all laws, regulations, - orders, or other restrictions of the U.S. Export Administration - Regulations and the appropriate foreign government. You shall NOT - export/re-export any technical data, process, product, or service, - directly or indirectly, to any country for which the United States - government or any agency thereof or the foreign government from where - it is shipping requires an export license, or other governmental - approval, without first obtaining such license or approval. - OWNERSHIP OF SOFTWARE AND INTELLECTUAL PROPERTY. Title to all copies - of the Software and any intellectual property therein remains with - Intel or its suppliers. The Software is copyrighted and protected by - the laws of the United States and other countries, and by - international treaty provisions. You may not remove any copyright - notices from the Software. Intel may make changes to the Software, or - to items referenced therein, at any time without notice, but is not - obligated to support or update the Software. Except as otherwise - expressly provided, Intel grants no express or implied right under - Intel patents, copyrights, trademarks, or other intellectual property - rights. You may not transfer the Software. - DISCLAIMER OF WARRANTIES. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY - EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF - MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. - Intel does not warrant or assume responsibility for the accuracy or - completeness of any information, text, graphics, links or other items - contained within the Software. - LIMITATION OF LIABILITY. IN NO EVENT SHALL INTEL OR ITS SUPPLIERS BE - LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST - PROFITS, BUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF - THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS - PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES - OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY - NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM - JURISDICTION TO JURISDICTION. - TERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement at - any time if you violate its terms. Upon termination, you will - immediately destroy the Software or return all copies of the Software - to Intel. - APPLICABLE LAWS. Any claims arising under or relating to this - Agreement shall be governed by the internal substantive laws of the - State of Delaware or federal courts located in Delaware, without - regard to principles of conflict of laws. Each Party hereby agrees to - jurisdiction and venue in the courts of the State of Delaware for all - disputes and litigation arising under or relating to this Agreement. - The Parties agree that the United Nations Convention on Contracts for - the International Sale of Goods is specifically excluded from - application to this Agreement. The Parties consent to the personal - jurisdiction of the above courts. In the event any proceeding or - lawsuit is brought by Intel or You in connection with this Agreement, - the prevailing Party in such proceeding shall be entitled to receive - its costs, expert witness fees and reasonable attorneys' fees, - including costs and fees on appeal. It is understood and agreed that, - notwithstanding any other provisions of this Agreement, breach of the - "License" or "Distribution" sections of this Agreement by You will - cause Intel irreparable damage for which recovery of money damages - would be inadequate, and that Intel therefore shall be entitled to - obtain timely injunctive relief to protect this Intel's rights under - this Agreement in addition to any and all remedies available at law. - GOVERNMENT RESTRICTED RIGHTS. The Software is a "commercial item" as - that term is defined in 48 C.F.R. 2.101, consisting of "commercial - computer software" and "commercial computer software documentation" as - such terms are used in 48 C.F.R. 12.212. Consistent with 48 C.F.R. - 12.212 and 48 C.F.R 227.7202-1 through 227.7202-4, You will provide - the Software to U.S. Government as an End User only pursuant to the - terms and conditions therein. You shall provide the Software to - foreign governments in an equivalent manner as described in this - Section. - REVERSE ENGINEERING. You may not reverse-assemble, reverse-compile, or - otherwise reverse-engineer any software provided solely in executable - form. - ENTIRE AGREEMENT; MODIFICATION. This Agreement constitutes the entire - agreement between You and Intel and supersedes in their entirety any - and all oral or written agreements previously existing between You and - Intel with respect to the subject matter hereof. For the avoidance of - doubt, this Agreement shall in no way supersede any terms and - conditions of any third-party software license agreement. diff --git a/licenses/truecrypt-3.0 b/licenses/truecrypt-3.0 deleted file mode 100644 index d608906b7a65..000000000000 --- a/licenses/truecrypt-3.0 +++ /dev/null @@ -1,168 +0,0 @@ -TrueCrypt License Version 3.0 - - -Software distributed under this license is distributed on an "AS IS" BASIS WITHOUT WARRANTIES OF ANY KIND. THE AUTHORS AND DISTRIBUTORS OF THE SOFTWARE DISCLAIM ANY LIABILITY. ANYONE WHO USES, COPIES, MODIFIES, OR (RE)DISTRIBUTES ANY PART OF THE SOFTWARE IS, BY SUCH ACTION(S), ACCEPTING AND AGREEING TO BE BOUND BY ALL TERMS AND CONDITIONS OF THIS LICENSE. IF YOU DO NOT ACCEPT THEM, DO NOT USE, COPY, MODIFY, NOR (RE)DISTRIBUTE THE SOFTWARE, NOR ANY PART(S) THEREOF. - - -I. Definitions - -1. "This Product" means the work (including, but not limited to, source code, graphics, texts, and accompanying files) made available under and governed by this version of this license ("License"), as may be indicated by, but is not limited to, copyright notice(s) attached to or included in the work. - -2. "You" means (and "Your" refers to) an individual or a legal entity (e.g., a non-profit organization, commercial organization, government agency, etc.) exercising permissions granted by this License. - -3. "Modification" means (and "modify" refers to) any alteration of This Product, including, but not limited to, addition to or deletion from the substance or structure of This Product, translation into another language, repackaging, alteration or removal of any file included with This Product, and addition of any new files to This Product. - -4. "Your Product" means This Product modified by You, or any work You derive from (or base on) any part of This Product. In addition, "Your Product" means any work in which You include any (modified or unmodified) portion of This Product. However, if the work in which you include it is an aggregate software distribution (such as an operating system distribution or a cover CD-ROM of a magazine) containing multiple separate products, then the term "Your Product" includes only those products (in the aggregate software distribution) that use, include, or depend on a modified or unmodified version of This Product (and the term "Your Product" does not include the whole aggregate software distribution). For the purposes of this License, a product suite consisting of two or more products is considered a single product (operating system distributions and cover media of magazines are not considered product suites). - -5. "Distribution" means (and "distribute" refers to), regardless of means or methods, conveyance, transfer, providing, or making available of This/Your Product or portions thereof to third parties (including, but not limited to, making This/Your Product, or portions thereof, available for download to third parties, whether or not any third party has downloaded the product, or any portion thereof, made available for download). - - - -II. Use, Copying, and Distribution of This Product - -1. Provided that You comply with all applicable terms and conditions of this License, You may make copies of This Product (unmodified) and distribute copies of This Product (unmodified) that are not included in another product forming Your Product (except as permitted under Chapter III). Note: For terms and conditions for copying and distribution of modified versions of This Product, see Chapter III. - -2. Provided that You comply with all applicable terms and conditions of this License, You may use This Product freely (see also Chapter III) on any number of computers/systems for non-commercial and/or commercial purposes. - - - -III. Modification, Derivation, and Inclusion in Other Products - -1. If all conditions specified in the following paragraphs in this Chapter (III) are met (for exceptions, see Section III.2) and if You comply with all other applicable terms and conditions of this License, You may modify This Product (thus forming Your Product), derive new works from This Product or portions thereof (thus forming Your Product), include This Product or portions thereof in another product (thus forming Your Product, unless defined otherwise in Chapter I), and You may use (for non-commercial and/or commercial purposes), copy, and/or distribute Your Product. - - 1. The name of Your Product (or of Your modified version of This Product) must not contain the name TrueCrypt (for example, the following names are not allowed: TrueCrypt, TrueCrypt+, TrueCrypt Professional, iTrueCrypt, etc.) nor any other names confusingly similar to the name TrueCrypt (e.g., True-Crypt, True Crypt, TruKrypt, etc.) - - Note: TrueCrypt and the TrueCrypt logo are registered trademarks. The goal is not to monetize the name or the product, but to protect the reputation of TrueCrypt, and to prevent support issues and other kinds of issues that might arise from the existence of similar products with the same or similar name. Even though TrueCrypt and the TrueCrypt logo are trademarks, TrueCrypt is and will remain open-source and free software. - - All occurrences of the name TrueCrypt that could reasonably be considered to identify Your Product must be removed from Your Product and from any associated materials. Logo(s) included in (or attached to) Your Product (and in/to associated materials) must not incorporate and must not be confusingly similar to any of the TrueCrypt logos (including, but not limited to, the non-textual logo consisting primarily of a key in stylized form) or portion(s) thereof. All graphics contained in This Product (logos, icons, etc.) must be removed from Your Product (or from Your modified version of This Product) and from any associated materials. - - 2. The following phrases must be removed from Your Product and from any associated materials, except the text of this License: "A TrueCrypt Foundation Release", "Released by TrueCrypt Foundation", "This is a TrueCrypt Foundation release." - - 3. Phrase "Based on TrueCrypt, freely available at http://www.truecrypt.org/" must be displayed by Your Product (if technically feasible) and contained in its documentation. Alternatively, if This Product or its portion You included in Your Product constitutes only a minor portion of Your Product, phrase "Portions of this product are based in part on TrueCrypt, freely available at http://www.truecrypt.org/" may be displayed instead. In each of the cases mentioned above in this paragraph, "http://www.truecrypt.org/" must be a hyperlink (if technically feasible) pointing to http://www.truecrypt.org/ and You may freely choose the location within the user interface (if there is any) of Your Product (e.g., an "About" window, etc.) and the way in which Your Product will display the respective phrase. - - Your Product (and any associated materials, e.g., the documentation, the content of the official web site of Your Product, etc.) must not present any Internet address containing the domain name truecrypt.org (or any domain name that forwards to the domain name truecrypt.org) in a manner that might suggest that it is where information about Your Product may be obtained or where bugs found in Your Product may be reported or where support for Your Product may be available or otherwise attempt to indicate that the domain name truecrypt.org is associated with Your Product. - - 4. The complete source code of Your Product must be freely and publicly available (for exceptions, see Section III.2) at least until You cease to distribute Your Product. This condition can be met in one or both of the following ways: (i) You include the complete source code of Your Product with every copy of Your Product that You make and distribute and You make all such copies of Your Product available to the general public free of charge, and/or (ii) You include information (valid and correct at least until You cease to distribute Your Product) about where the complete source code of Your Product can be obtained free of charge (e.g., an Internet address) or for a reasonable reproduction fee with every copy of Your Product that You make and distribute and, if there is a web site officially associated with Your Product, You include the aforementioned information about the source code on a freely and publicly accessible web page to which such web site links via an easily viewable hyperlink (at least until You cease to distribute Your Product). - - The source code of Your Product must not be deliberately obfuscated and it must not be in an intermediate form (e.g., the output of a preprocessor). Source code means the preferred form in which a programmer would usually modify the program. - - Portions of the source code of Your Product not contained in This Product (e.g., portions added by You in creating Your Product, whether created by You or by third parties) must be available under license(s) that (however, see also Subsection III.1.e) allow(s) anyone to modify and derive new works from the portions of the source code that are not contained in This Product and to use, copy, and redistribute such modifications and/or derivative works. The license(s) must be perpetual, non-exclusive, royalty-free, no-charge, and worldwide, and must not invalidate, weaken, restrict, interpret, amend, modify, interfere with or otherwise affect any part, term, provision, or clause of this License. The text(s) of the license(s) must be included with every copy of Your Product that You make and distribute. - - Note: If you cannot comply with the above requirements, you may contact licensing@truecrypt.org. - - 5. You must not change the license terms of This Product in any way (adding any new terms is considered changing the license terms even if the original terms are retained), which means, e.g., that no part of This Product may be put under another license. You must keep intact all the legal notices contained in the source code files. You must include the following items with every copy of Your Product that You make and distribute: a clear and conspicuous notice stating that Your Product or portion(s) thereof is/are governed by this version of the TrueCrypt License, a verbatim copy of this version of the TrueCrypt License (as contained herein), a clear and conspicuous notice containing information about where the included copy of the License can be found, and an appropriate copyright notice. - - -2. You are not obligated to comply with Subsection III.1.d if Your Product is not distributed (i.e., Your Product is available only to You). - -Note: If you cannot comply with Subsection III.1.d, you may contact licensing@truecrypt.org. - - - -IV. Disclaimer of Liability, Disclaimer of Warranty, Indemnification - -You expressly acknowledge and agree to the following: - -1. IN NO EVENT WILL ANY (CO)AUTHOR OF THIS PRODUCT, OR ANY APPLICABLE COPYRIGHT/TRADEMARK OWNER, OR ANY OTHER PARTY WHO MAY COPY AND/OR (RE)DISTRIBUTE THIS PRODUCT OR PORTIONS THEREOF, AS MAY BE PERMITTED HEREIN, BE LIABLE TO YOU OR TO ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, ANY DIRECT, INDIRECT, GENERAL, SPECIAL, INCIDENTAL, PUNITIVE, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, CORRUPTION OR LOSS OF DATA, ANY LOSSES SUSTAINED BY YOU OR THIRD PARTIES, A FAILURE OF THIS PRODUCT TO OPERATE WITH ANY OTHER PRODUCT, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR BUSINESS INTERRUPTION), WHETHER IN CONTRACT, STRICT LIABILITY, TORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE) OR OTHERWISE, ARISING OUT OF THE USE, COPYING, MODIFICATION, OR (RE)DISTRIBUTION OF THIS PRODUCT (OR A PORTION THEREOF) OR OF YOUR PRODUCT (OR A PORTION THEREOF), OR INABILITY TO USE THIS PRODUCT (OR A PORTION THEREOF), EVEN IF SUCH DAMAGES (OR THE POSSIBILITY OF SUCH DAMAGES) ARE/WERE PREDICTABLE OR KNOWN TO ANY (CO)AUTHOR, COPYRIGHT/TRADEMARK OWNER, OR ANY OTHER PARTY. - -2. THIS PRODUCT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THIS PRODUCT IS WITH YOU. SHOULD THIS PRODUCT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. - -3. THIS PRODUCT MAY INCORPORATE IMPLEMENTATIONS OF CRYPTOGRAPHIC ALGORITHMS THAT ARE REGULATED (E.G., SUBJECT TO EXPORT/IMPORT CONTROL REGULATIONS) OR ILLEGAL IN SOME COUNTRIES. IT IS SOLELY YOUR RESPONSIBILITY TO VERIFY THAT IT IS LEGAL TO IMPORT AND/OR (RE)EXPORT AND/OR USE THIS PRODUCT (OR PORTIONS THEREOF) IN COUNTRIES WHERE YOU INTEND TO USE IT AND/OR TO WHICH YOU INTEND TO IMPORT IT AND/OR FROM WHICH YOU INTEND TO EXPORT IT, AND IT IS SOLELY YOUR RESPONSIBILITY TO COMPLY WITH ANY APPLICABLE REGULATIONS, RESTRICTIONS, AND LAWS. - -4. YOU SHALL INDEMNIFY, DEFEND AND HOLD ALL (CO)AUTHORS OF THIS PRODUCT, AND APPLICABLE COPYRIGHT/TRADEMARK OWNERS, HARMLESS FROM AND AGAINST ANY AND ALL LIABILITY, DAMAGES, LOSSES, SETTLEMENTS, PENALTIES, FINES, COSTS, EXPENSES (INCLUDING REASONABLE ATTORNEYS' FEES), DEMANDS, CAUSES OF ACTION, CLAIMS, ACTIONS, PROCEEDINGS, AND SUITS, DIRECTLY RELATED TO OR ARISING OUT OF YOUR USE, INABILITY TO USE, COPYING, (RE)DISTRIBUTION, IMPORT AND/OR (RE)EXPORT OF THIS PRODUCT (OR PORTIONS THEREOF) AND/OR YOUR BREACH OF ANY TERM OF THIS LICENSE. - - - -V. Trademarks - -This License does not grant permission to use trademarks associated with (or applying to) This Product, except for fair use as defined by applicable law and except for use expressly permitted or required by this License. Any attempt otherwise to use trademarks associated with (or applying to) This Product automatically and immediately terminates Your rights under This License and may constitute trademark infringement (which may be prosecuted). - -TrueCrypt is a trademark registered with the World Intellectual Property Organization, an agency of the United Nations, (international trademark registration), in the U.S. Patent and Trademark Office, and in the trademark offices of other countries. All TrueCrypt logos are trademarks and the non-textual TrueCrypt logo consisting primarily of a key in stylized form is a trademark registered in the U.S. Patent and Trademark Office. - -Note: The goal is not to monetize the name or the product, but to protect the reputation of TrueCrypt. TrueCrypt is and will remain open-source and free software. - - - -VI. General Terms and Conditions, Miscellaneous Provisions - -1. ANYONE WHO USES AND/OR COPIES AND/OR MODIFIES AND/OR CREATES DERIVATIVE WORKS OF AND/OR (RE)DISTRIBUTES THIS PRODUCT, OR ANY PORTION(S) THEREOF, IS, BY SUCH ACTION(S), AGREEING TO BE BOUND BY AND ACCEPTING ALL TERMS AND CONDITIONS OF THIS LICENSE (AND THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS LICENSE). IF YOU DO NOT ACCEPT (AND AGREE TO BE BOUND BY) ALL TERMS AND CONDITIONS OF THIS LICENSE, DO NOT USE, COPY, MODIFY, CREATE DERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE THIS PRODUCT, NOR ANY PORTION(S) THEREOF. - -2. YOU MAY NOT USE, MODIFY, COPY, CREATE DERIVATIVE WORKS OF, (RE)DISTRIBUTE, OR SUBLICENSE THIS PRODUCT, OR PORTION(S) THEREOF, EXCEPT AS EXPRESSLY PROVIDED IN THIS LICENSE (EVEN IF APPLICABLE LAW GIVES YOU MORE RIGHTS). ANY ATTEMPT (EVEN IF PERMITTED BY APPLICABLE LAW) OTHERWISE TO USE, MODIFY, COPY, CREATE DERIVATIVE WORKS OF, (RE)DISTRIBUTE, OR SUBLICENSE THIS PRODUCT, OR PORTION(S) THEREOF, AUTOMATICALLY AND IMMEDIATELY TERMINATES YOUR RIGHTS UNDER THIS LICENSE AND CAN CONSTITUTE COPYRIGHT INFRINGEMENT (WHICH MAY BE PROSECUTED). ANY CONDITIONS AND RESTRICTIONS CONTAINED IN THIS LICENSE ARE ALSO LIMITATIONS ON THE SCOPE OF THIS LICENSE AND ALSO DEFINE THE SCOPE OF YOUR RIGHTS UNDER THIS LICENSE. YOUR FAILURE TO COMPLY WITH THE TERMS AND CONDITIONS OF THIS LICENSE OR FAILURE TO PERFORM ANY APPLICABLE OBLIGATION IMPOSED BY THIS LICENSE AUTOMATICALLY AND IMMEDIATELY TERMINATES YOUR RIGHTS UNDER THIS LICENSE AND CAN CAUSE OR BE CONSIDERED COPYRIGHT INFRINGEMENT (WHICH MAY BE PROSECUTED). NOTHING IN THIS LICENSE SHALL IMPLY OR BE CONSTRUED AS A PROMISE, OBLIGATION, OR COVENANT NOT TO SUE FOR COPYRIGHT OR TRADEMARK INFRINGEMENT IF YOU DO NOT COMPLY WITH THE TERMS AND CONDITIONS OF THIS LICENSE. - -3. This License does not constitute or imply a waiver of any intellectual property rights except as may be otherwise expressly provided in this License. This License does not transfer, assign, or convey any intellectual property rights (e.g., it does not transfer ownership of copyrights or trademarks). - -4. Subject to the terms and conditions of this License, You may allow a third party to use Your copy of This Product (or a copy that You make and distribute, or Your Product) provided that the third party explicitly accepts and agrees to be bound by all terms and conditions of this License and the third party is not prohibited from using This Product (or portions thereof) by this License (see, e.g., Section VI.7) or by applicable law. However, You are not obligated to ensure that the third party accepts (and agrees to be bound by all terms of) this License if You distribute only the self-extracting package (containing This Product) that does not allow the user to install (nor extract) the files contained in the package until he or she accepts and agrees to be bound by all terms and conditions of this License. - -5. Without specific prior written permission from the authors of This Product (or from their common representative), You must not use the name of This Product, the names of the authors of This Product, or the names of the legal entities (or informal groups) of which the authors were/are members/employees, to endorse or promote Your Product or any work in which You include a modified or unmodified version of This Product, or to endorse or promote You or Your affiliates, or in a way that might suggest that Your Product (or any work in which You include a modified or unmodified version of This Product), You, or Your affiliates is/are endorsed by one or more authors of This Product, or in a way that might suggest that one or more authors of This Product is/are affiliated with You (or Your affiliates) or directly participated in the creation of Your Product or of any work in which You include a modified or unmodified version of This Product. - -6. IF YOU ARE NOT SURE WHETHER YOU UNDERSTAND ALL PARTS OF THIS LICENSE OR IF YOU ARE NOT SURE WHETHER YOU CAN COMPLY WITH ALL TERMS AND CONDITIONS OF THIS LICENSE, YOU MUST NOT USE, COPY, MODIFY, CREATE DERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE THIS PRODUCT, NOR ANY PORTION(S) OF IT. YOU SHOULD CONSULT WITH A LAWYER. - -7. IF (IN RELEVANT CONTEXT) ANY PROVISION OF CHAPTER IV OF THIS LICENSE IS UNENFORCEABLE, INVALID, OR PROHIBITED UNDER APPLICABLE LAW IN YOUR JURISDICTION, YOU HAVE NO RIGHTS UNDER THIS LICENSE AND YOU MUST NOT USE, COPY, MODIFY, CREATE DERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE THIS PRODUCT, NOR ANY PORTION(S) THEREOF. - -8. Except as otherwise provided in this License, if any provision of this License, or a portion thereof, is found to be invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of this License, and such invalid or unenforceable provision shall be construed to reflect the original intent of the provision and shall be enforced to the maximum extent permitted by applicable law so as to effect the original intent of the provision as closely as possible. - - -Third-Party Licenses - -This Product contains components that were created by third parties and that are governed by third-party licenses, which are contained hereinafter (separated by lines consisting of underscores). Each of the third-party licenses applies only to (portions of) the source code file(s) in which the third-party license is contained or in which it is explicitly referenced, and to compiled or otherwise processed forms of such source code. None of the third-party licenses applies to This Product as a whole, even when it uses terms such as "product", "program", or any other equivalent terms/phrases. This Product as a whole is governed by the TrueCrypt License (see above). Some of the third-party components have been modified by the authors of This Product. Unless otherwise stated, such modifications and additions are governed by the TrueCrypt License (see above). Note: Unless otherwise stated, graphics and files that are not part of the source code are governed by the TrueCrypt License. - - -License agreement for Encryption for the Masses. - -Copyright (C) 1998-2000 Paul Le Roux. All Rights Reserved. - -This product can be copied and distributed free of charge, including source code. - -You may modify this product and source code, and distribute such modifications, and you may derive new works based on this product, provided that: - -1. Any product which is simply derived from this product cannot be called E4M, or Encryption for the Masses. - -2. If you use any of the source code in your product, and your product is distributed with source code, you must include this notice with those portions of this source code that you use. - -Or, - -If your product is distributed in binary form only, you must display on any packaging, and marketing materials which reference your product, a notice which states: - -"This product uses components written by Paul Le Roux " - -3. If you use any of the source code originally by Eric Young, you must in addition follow his terms and conditions. - -4. Nothing requires that you accept this License, as you have not signed it. However, nothing else grants you permission to modify or distribute the product or its derivative works. - -These actions are prohibited by law if you do not accept this License. - -5. If any of these license terms is found to be to broad in scope, and declared invalid by any court or legal process, you agree that all other terms shall not be so affected, and shall remain valid and enforceable. - -6. THIS PROGRAM IS DISTRIBUTED FREE OF CHARGE, THEREFORE THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. UNLESS OTHERWISE STATED THE PROGRAM IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -7. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM, INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS, EVEN IF SUCH HOLDER OR OTHER PARTY HAD PREVIOUSLY BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. All rights reserved. - -LICENSE TERMS - -The free distribution and use of this software is allowed (with or without changes) provided that: - - 1. source code distributions include the above copyright notice, this list of conditions and the following disclaimer; - 2. binary distributions include the above copyright notice, this list of conditions and the following disclaimer in their documentation; - 3. the name of the copyright holder is not used to endorse products built using this software without specific written permission. - -DISCLAIMER - -This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness and/or fitness for purpose. - -Copyright (C) 2002-2004 Mark Adler, all rights reserved -version 1.8, 9 Jan 2004 - -This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - - - - diff --git a/media-gfx/fr0st/files/fr0st-1.4-colour.patch b/media-gfx/fr0st/files/fr0st-1.4-colour.patch new file mode 100644 index 000000000000..9fb17aadaab7 --- /dev/null +++ b/media-gfx/fr0st/files/fr0st-1.4-colour.patch @@ -0,0 +1,9 @@ +--- fr0stlib/gui/canvas.py~ 2011-05-14 19:58:25.000000000 +0200 ++++ fr0stlib/gui/canvas.py 2016-02-20 17:47:25.853322560 +0100 +@@ -79,7 +79,7 @@ + + def SetBrush(self, FillColor, FillStyle): + r,g,b = FillColor +- c = wx.Color(r,g,b, self.Opacity) ++ c = wx.Colour(r,g,b, self.Opacity) + self.Brush = wx.Brush(c) diff --git a/media-gfx/fr0st/fr0st-1.4-r1.ebuild b/media-gfx/fr0st/fr0st-1.4-r2.ebuild similarity index 53% rename from media-gfx/fr0st/fr0st-1.4-r1.ebuild rename to media-gfx/fr0st/fr0st-1.4-r2.ebuild index 633f18300141..dee6cc74ca72 100644 --- a/media-gfx/fr0st/fr0st-1.4-r1.ebuild +++ b/media-gfx/fr0st/fr0st-1.4-r2.ebuild @@ -1,13 +1,12 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=3 +EAPI=5 +WX_GTK_VER="3.0" +PYTHON_COMPAT=( python2_7 ) -WX_GTK_VER="2.8" -PYTHON_DEPEND="2:2.7" - -inherit eutils multilib python wxwidgets +inherit eutils multilib python-single-r1 wxwidgets DESCRIPTION="A fractal flame editor" HOMEPAGE="http://fr0st.wordpress.com/" @@ -17,47 +16,43 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RDEPEND="dev-python/wxpython:2.8 - >=media-gfx/flam3-3.0.1" +RDEPEND="${PYTHON_DEPS} + dev-python/wxpython:${WX_GTK_VER} + >=media-gfx/flam3-3.0.1 +" DEPEND="${RDEPEND}" -S=${WORKDIR}/${P}-src +S="${WORKDIR}/${P}-src" pkg_setup() { fr0st_libdir="/usr/$(get_libdir)/fr0st" fr0st_sharedir="/usr/share/fr0st" - python_set_active_version 2 - python_pkg_setup + python-single-r1_pkg_setup } src_prepare() { - python_convert_shebangs 2 fr0st.py + epatch "${FILESDIR}"/${P}-colour.patch #564106 + python_fix_shebang . + need-wxwidgets unicode } src_install() { insinto "${fr0st_sharedir}" - doins -r icons samples || die + doins -r icons samples insinto "${fr0st_libdir}" - doins -r fr0stlib || die + doins -r fr0stlib exeinto "${fr0st_libdir}" - doexe fr0st.py || die + doexe fr0st.py - dosym "${fr0st_libdir}"/fr0st.py /usr/bin/fr0st || die - dosym "${fr0st_sharedir}"/icons/fr0st.png /usr/share/pixmaps/fr0st.png || die + dosym "${fr0st_libdir}"/fr0st.py /usr/bin/fr0st + dosym "${fr0st_sharedir}"/icons/fr0st.png /usr/share/pixmaps/fr0st.png make_desktop_entry fr0st fr0st dodoc changelog.txt } - -pkg_postinst() { - python_mod_optimize "${fr0st_libdir}" -} - -pkg_postrm() { - python_mod_cleanup "${fr0st_libdir}" -} diff --git a/media-gfx/graphite2/graphite2-1.2.1.ebuild b/media-gfx/graphite2/graphite2-1.2.1.ebuild index b9f54cb4c398..6381f4fe63c0 100644 --- a/media-gfx/graphite2/graphite2-1.2.1.ebuild +++ b/media-gfx/graphite2/graphite2-1.2.1.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/silgraphite/${PN}/${P}.tgz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" +KEYWORDS="~s390" IUSE="perl test" RDEPEND=" diff --git a/media-gfx/graphite2/graphite2-1.2.4.ebuild b/media-gfx/graphite2/graphite2-1.2.4.ebuild deleted file mode 100644 index 067c9964d588..000000000000 --- a/media-gfx/graphite2/graphite2-1.2.4.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -GENTOO_DEPEND_ON_PERL="no" -inherit base eutils cmake-utils perl-module python-any-r1 - -DESCRIPTION="Library providing rendering capabilities for complex non-Roman writing systems" -HOMEPAGE="http://graphite.sil.org/" -SRC_URI="mirror://sourceforge/silgraphite/${PN}/${P}.tgz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="perl test" - -RDEPEND=" - perl? ( dev-lang/perl:= ) -" -DEPEND="${RDEPEND} - perl? ( dev-perl/Module-Build ) - test? ( - dev-libs/glib:2 - media-libs/fontconfig - media-libs/silgraphite - ${PYTHON_DEPS} - ) -" - -PATCHES=( - "${FILESDIR}/${PN}-1.1.0-includes-libs-perl.patch" - "${FILESDIR}/${PN}-1.0.2-no_harfbuzz_tests.patch" - "${FILESDIR}/${PN}-1.0.3-no-test-binaries.patch" - "${FILESDIR}/${PN}-1.2.0-solaris.patch" -) - -pkg_setup() { - use perl && perl_set_version - use test && python-any-r1_pkg_setup -} - -src_prepare() { - base_src_prepare - - # fix perl linking - if use perl; then - _cmake_check_build_dir init - sed -i \ - -e "s:@BUILD_DIR@:\"${CMAKE_BUILD_DIR}/src\":" \ - contrib/perl/Build.PL || die - fi - - # make tests optional - if ! use test; then - sed -i \ - -e '/tests/d' \ - CMakeLists.txt || die - fi -} - -src_configure() { - local mycmakeargs=( - "-DVM_MACHINE_TYPE=direct" - # http://sourceforge.net/p/silgraphite/bugs/49/ - $([[ ${CHOST} == powerpc*-apple* ]] && \ - echo "-DGRAPHITE2_NSEGCACHE:BOOL=ON") - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - if use perl; then - cd contrib/perl - perl-module_src_configure - perl-module_src_compile - fi -} - -src_test() { - cmake-utils_src_test - if use perl; then - cd contrib/perl - perl-module_src_test - fi -} - -src_install() { - cmake-utils_src_install - if use perl; then - cd contrib/perl - perl-module_src_install - perl_delete_localpod - fi - - prune_libtool_files --all -} diff --git a/media-gfx/graphite2/graphite2-1.3.5-r1.ebuild b/media-gfx/graphite2/graphite2-1.3.5-r1.ebuild index a9d1fa83843a..06f8303f46c2 100644 --- a/media-gfx/graphite2/graphite2-1.3.5-r1.ebuild +++ b/media-gfx/graphite2/graphite2-1.3.5-r1.ebuild @@ -74,7 +74,7 @@ multilib_src_configure() { # fix perl linking if multilib_is_native_abi && use perl; then - _cmake_check_build_dir init + # we rely on the fact that cmake-utils_src_configure sets BUILD_DIR sed -i \ -e "s:@BUILD_DIR@:\"${BUILD_DIR}/src\":" \ "${S}"/contrib/perl/Build.PL || die diff --git a/media-libs/allegro/allegro-5.0.11.ebuild b/media-libs/allegro/allegro-5.0.11.ebuild index 6d0496dabaa6..2ee1cc697820 100644 --- a/media-libs/allegro/allegro-5.0.11.ebuild +++ b/media-libs/allegro/allegro-5.0.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -39,7 +39,7 @@ DEPEND="${RDEPEND} >=x11-proto/xf86vidmodeproto-2.3.1-r1[${MULTILIB_USEDEP}] >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}]" -PATCHES=( "${FILESDIR}"/${PN}-5.0.4-underlink.patch ) +PATCHES=( "${FILESDIR}"/${P}-{underlink,multilib}.patch ) MULTILIB_WRAPPED_HEADERS=( /usr/include/allegro5/allegro_native_dialog.h ) diff --git a/media-libs/allegro/files/allegro-5.0.11-multilib.patch b/media-libs/allegro/files/allegro-5.0.11-multilib.patch new file mode 100644 index 000000000000..ffb0c25fc8b6 --- /dev/null +++ b/media-libs/allegro/files/allegro-5.0.11-multilib.patch @@ -0,0 +1,10 @@ +--- CMakeLists.txt.old 2013-06-16 10:16:08.000000000 +0600 ++++ CMakeLists.txt 2016-02-25 14:32:40.350446191 +0500 +@@ -560,7 +560,6 @@ + endif(SUPPORT_X11 AND NOT SUPPORT_OPENGL) + + if(SUPPORT_X11) +- set(CMAKE_REQUIRED_LIBRARIES ${X11_LIBRARIES}) + + check_library_exists(Xcursor XcursorImageCreate "" CAN_XCURSOR) + if(CAN_XCURSOR) diff --git a/media-libs/allegro/files/allegro-5.0.4-underlink.patch b/media-libs/allegro/files/allegro-5.0.11-underlink.patch similarity index 100% rename from media-libs/allegro/files/allegro-5.0.4-underlink.patch rename to media-libs/allegro/files/allegro-5.0.11-underlink.patch diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-1.4.2.ebuild b/media-libs/libjpeg-turbo/libjpeg-turbo-1.4.2.ebuild index 41e02f42b698..613b00079db7 100644 --- a/media-libs/libjpeg-turbo/libjpeg-turbo-1.4.2.ebuild +++ b/media-libs/libjpeg-turbo/libjpeg-turbo-1.4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz LICENSE="BSD IJG" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="java static-libs" ASM_DEPEND="|| ( dev-lang/nasm dev-lang/yasm )" diff --git a/media-sound/puddletag/puddletag-1.1.1.ebuild b/media-sound/puddletag/puddletag-1.1.1.ebuild index 23ae59b6ab4a..57a45f381778 100644 --- a/media-sound/puddletag/puddletag-1.1.1.ebuild +++ b/media-sound/puddletag/puddletag-1.1.1.ebuild @@ -29,4 +29,4 @@ RDEPEND=">=dev-python/PyQt4-4.9.6-r2[${PYTHON_USEDEP},svg] >=dev-python/sip-4.14.2-r1:0[${PYTHON_USEDEP}] >=dev-python/lxml-3.0.1[${PYTHON_USEDEP}]" -DOCS=(changelog HACKING NEWS README THANKS TODO) +DOCS=(changelog HACKING NEWS THANKS TODO) diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 2ee41ec83231..98c54ec8e036 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Mon, 29 Feb 2016 05:08:59 +0000 +Tue, 01 Mar 2016 05:09:00 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 2ee41ec83231..98c54ec8e036 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Mon, 29 Feb 2016 05:08:59 +0000 +Tue, 01 Mar 2016 05:09:00 +0000 diff --git a/metadata/md5-cache/app-admin/collectd-5.5.1 b/metadata/md5-cache/app-admin/collectd-5.5.1 new file mode 100644 index 000000000000..f1f1847230cc --- /dev/null +++ b/metadata/md5-cache/app-admin/collectd-5.5.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst preinst prepare setup +DEPEND=dev-libs/libgcrypt:= sys-devel/libtool perl? ( dev-lang/perl:=[ithreads] ) collectd_plugins_amqp? ( net-libs/rabbitmq-c ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2:= ) collectd_plugins_ceph? ( dev-libs/yajl ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2:= ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_disk? ( virtual/udev ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_genericjmx? ( virtual/jre:= dev-java/java-config-wrapper ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.13:= ) collectd_plugins_java? ( virtual/jre:= dev-java/java-config-wrapper ) collectd_plugins_log_logstash? ( dev-libs/yajl ) collectd_plugins_lvm? ( sys-fs/lvm2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_modbus? ( dev-libs/libmodbus ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( net-libs/libmnl ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( net-libs/libesmtp ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_openldap? ( net-nds/openldap ) collectd_plugins_onewire? ( >=sys-fs/owfs-3.1 ) collectd_plugins_oracle? ( dev-db/oracle-instantclient-basic ) collectd_plugins_perl? ( dev-lang/perl:=[ithreads] ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( dev-db/postgresql:= ) collectd_plugins_python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] ) collectd_plugins_redis? ( dev-libs/hiredis:= ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( net-analyzer/rrdtool ) collectd_plugins_rrdtool? ( net-analyzer/rrdtool ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_sigrok? ( sci-libs/libsigrok ) collectd_plugins_smart? ( virtual/udev dev-libs/libatasmart ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_virt? ( app-emulation/libvirt dev-libs/libxml2:= ) collectd_plugins_write_http? ( net-misc/curl ) collectd_plugins_write_redis? ( dev-libs/hiredis:= ) collectd_plugins_write_riemann? ( dev-libs/protobuf-c ) kernel_FreeBSD? ( collectd_plugins_disk? ( sys-libs/libstatgrab:= ) collectd_plugins_interface? ( sys-libs/libstatgrab:= ) collectd_plugins_load? ( sys-libs/libstatgrab:= ) collectd_plugins_memory? ( sys-libs/libstatgrab:= ) collectd_plugins_swap? ( sys-libs/libstatgrab:= ) collectd_plugins_users? ( sys-libs/libstatgrab:= ) ) collectd_plugins_genericjmx? ( >=virtual/jdk-1.6 ) collectd_plugins_java? ( >=virtual/jdk-1.6 ) virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 filecaps? ( sys-libs/libcap ) java? ( >=dev-java/java-config-2.2.0 ) virtual/pkgconfig +DESCRIPTION=Collects system statistics and provides mechanisms to store the values +EAPI=6 +HOMEPAGE=http://collectd.org/ +IUSE=contrib debug java kernel_Darwin kernel_FreeBSD kernel_linux perl selinux static-libs collectd_plugins_amqp collectd_plugins_aggregation collectd_plugins_apache collectd_plugins_apcups collectd_plugins_ascent collectd_plugins_battery collectd_plugins_bind collectd_plugins_ceph collectd_plugins_cgroups collectd_plugins_conntrack collectd_plugins_contextswitch collectd_plugins_cpu collectd_plugins_cpufreq collectd_plugins_csv collectd_plugins_curl collectd_plugins_curl_json collectd_plugins_curl_xml collectd_plugins_dbi collectd_plugins_df collectd_plugins_disk collectd_plugins_dns collectd_plugins_drbd collectd_plugins_email collectd_plugins_entropy collectd_plugins_ethstat collectd_plugins_exec collectd_plugins_fhcount collectd_plugins_filecount collectd_plugins_fscache collectd_plugins_genericjmx collectd_plugins_gmond collectd_plugins_hddtemp collectd_plugins_interface collectd_plugins_ipc collectd_plugins_ipmi collectd_plugins_iptables collectd_plugins_ipvs collectd_plugins_irq collectd_plugins_java collectd_plugins_load collectd_plugins_logfile collectd_plugins_log_logstash collectd_plugins_lvm collectd_plugins_madwifi collectd_plugins_match_empty_counter collectd_plugins_match_hashed collectd_plugins_match_regex collectd_plugins_match_timediff collectd_plugins_match_value collectd_plugins_mbmon collectd_plugins_md collectd_plugins_memcachec collectd_plugins_memcached collectd_plugins_memory collectd_plugins_modbus collectd_plugins_multimeter collectd_plugins_mysql collectd_plugins_netlink collectd_plugins_network collectd_plugins_network collectd_plugins_nfs collectd_plugins_nginx collectd_plugins_notify_desktop collectd_plugins_notify_email collectd_plugins_ntpd collectd_plugins_numa collectd_plugins_nut collectd_plugins_olsrd collectd_plugins_onewire collectd_plugins_openldap collectd_plugins_openvpn collectd_plugins_oracle collectd_plugins_perl collectd_plugins_ping collectd_plugins_postgresql collectd_plugins_powerdns collectd_plugins_processes collectd_plugins_protocols collectd_plugins_python collectd_plugins_python collectd_plugins_redis collectd_plugins_routeros collectd_plugins_rrdcached collectd_plugins_rrdtool collectd_plugins_sensors collectd_plugins_serial collectd_plugins_sigrok collectd_plugins_smart collectd_plugins_snmp collectd_plugins_statsd collectd_plugins_swap collectd_plugins_syslog collectd_plugins_table collectd_plugins_tail collectd_plugins_tail_csv collectd_plugins_target_notification collectd_plugins_target_replace collectd_plugins_target_scale collectd_plugins_target_set collectd_plugins_tcpconns collectd_plugins_teamspeak2 collectd_plugins_ted collectd_plugins_thermal collectd_plugins_threshold collectd_plugins_tokyotyrant collectd_plugins_turbostat collectd_plugins_unixsock collectd_plugins_uptime collectd_plugins_users collectd_plugins_uuid collectd_plugins_varnish collectd_plugins_virt collectd_plugins_vmem collectd_plugins_vserver collectd_plugins_wireless collectd_plugins_write_graphite collectd_plugins_write_http collectd_plugins_write_log collectd_plugins_write_redis collectd_plugins_write_riemann collectd_plugins_write_sensu collectd_plugins_write_tsdb collectd_plugins_zfs_arc collectd_plugins_zookeeper +filecaps elibc_FreeBSD java python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/libgcrypt:= sys-devel/libtool perl? ( dev-lang/perl:=[ithreads] ) collectd_plugins_amqp? ( net-libs/rabbitmq-c ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2:= ) collectd_plugins_ceph? ( dev-libs/yajl ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2:= ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_disk? ( virtual/udev ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_genericjmx? ( virtual/jre:= dev-java/java-config-wrapper ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.13:= ) collectd_plugins_java? ( virtual/jre:= dev-java/java-config-wrapper ) collectd_plugins_log_logstash? ( dev-libs/yajl ) collectd_plugins_lvm? ( sys-fs/lvm2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_modbus? ( dev-libs/libmodbus ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( net-libs/libmnl ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( net-libs/libesmtp ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_openldap? ( net-nds/openldap ) collectd_plugins_onewire? ( >=sys-fs/owfs-3.1 ) collectd_plugins_oracle? ( dev-db/oracle-instantclient-basic ) collectd_plugins_perl? ( dev-lang/perl:=[ithreads] ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( dev-db/postgresql:= ) collectd_plugins_python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] ) collectd_plugins_redis? ( dev-libs/hiredis:= ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( net-analyzer/rrdtool ) collectd_plugins_rrdtool? ( net-analyzer/rrdtool ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_sigrok? ( sci-libs/libsigrok ) collectd_plugins_smart? ( virtual/udev dev-libs/libatasmart ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_virt? ( app-emulation/libvirt dev-libs/libxml2:= ) collectd_plugins_write_http? ( net-misc/curl ) collectd_plugins_write_redis? ( dev-libs/hiredis:= ) collectd_plugins_write_riemann? ( dev-libs/protobuf-c ) kernel_FreeBSD? ( collectd_plugins_disk? ( sys-libs/libstatgrab:= ) collectd_plugins_interface? ( sys-libs/libstatgrab:= ) collectd_plugins_load? ( sys-libs/libstatgrab:= ) collectd_plugins_memory? ( sys-libs/libstatgrab:= ) collectd_plugins_swap? ( sys-libs/libstatgrab:= ) collectd_plugins_users? ( sys-libs/libstatgrab:= ) ) collectd_plugins_syslog? ( virtual/logger ) selinux? ( sec-policy/selinux-collectd ) java? ( >=dev-java/java-config-2.2.0 ) +REQUIRED_USE=collectd_plugins_genericjmx? ( java ) collectd_plugins_java? ( java ) collectd_plugins_python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) ) +SLOT=0 +SRC_URI=http://collectd.org//files/collectd-5.5.1.tar.bz2 +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e fcaps 6a1091a98b1dde01cc26ab3252da1a9b java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 libtool b75230758539a7da029e24afdb693960 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 perl-functions 15aff0b9cba2282790142295ceb6be0c python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=17a9aefc9dd300ec29ee8a42cfe2c564 diff --git a/metadata/md5-cache/app-admin/conky-1.10.1 b/metadata/md5-cache/app-admin/conky-1.10.1 index aa4570c719da..8e1cf45bccae 100644 --- a/metadata/md5-cache/app-admin/conky-1.10.1 +++ b/metadata/md5-cache/app-admin/conky-1.10.1 @@ -10,4 +10,4 @@ RDEPEND=X? ( imlib? ( media-libs/imlib2[X] ) lua-cairo? ( >=dev-lua/toluapp-1.0. SLOT=0 SRC_URI=https://github.com/brndnmtthws/conky/archive/v1.10.1.tar.gz -> conky-1.10.1.tar.gz _eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=82b2e013abfb29790f63b45b6f8045d0 +_md5_=4d3f3c64fcc1a8f441beec21fc88048b diff --git a/metadata/md5-cache/app-admin/keepassx-2.0.2 b/metadata/md5-cache/app-admin/keepassx-2.0.2 index 483c70c747c1..c8237a4ad896 100644 --- a/metadata/md5-cache/app-admin/keepassx-2.0.2 +++ b/metadata/md5-cache/app-admin/keepassx-2.0.2 @@ -4,10 +4,10 @@ DESCRIPTION=Qt password manager compatible with its Win32 and Pocket PC versions EAPI=6 HOMEPAGE=http://www.keepassx.org/ IUSE=test -KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=|| ( GPL-2 GPL-3 ) BSD GPL-2 LGPL-2.1 LGPL-3+ CC0-1.0 public-domain || ( LGPL-2.1 GPL-3 ) RDEPEND=dev-libs/libgcrypt:0= dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qttest:4 sys-libs/zlib x11-libs/libX11 x11-libs/libXtst SLOT=0 SRC_URI=https://www.keepassx.org/releases/2.0.2/keepassx-2.0.2.tar.gz _eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 vcs-snapshot b45be87e7012be0af8424e8a5644da1d versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ec347e9ab98c20a80f5e96404e792d0e +_md5_=f3b1231e3f3d659d03f76add5cb4cbcf diff --git a/metadata/md5-cache/app-arch/xz-utils-5.2.2 b/metadata/md5-cache/app-arch/xz-utils-5.2.2 index 19f11b3997f9..075f3c38fe50 100644 --- a/metadata/md5-cache/app-arch/xz-utils-5.2.2 +++ b/metadata/md5-cache/app-arch/xz-utils-5.2.2 @@ -4,10 +4,10 @@ DESCRIPTION=utils for managing LZMA compressed files EAPI=4 HOMEPAGE=http://tukaani.org/xz/ IUSE=elibc_FreeBSD nls static-libs +threads 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 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=public-domain LGPL-2.1+ GPL-2+ RDEPEND=!=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] dev-python/dbus-python[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] cdemu-daemon? ( app-cdr/cdemu-daemon:0/6 ) dev-util/desktop-file-utils >=dev-util/intltool-0.21 >=sys-devel/gettext-0.18 sys-devel/make >=dev-util/cmake-2.8.5 +DEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] dev-python/dbus-python[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] cdemu-daemon? ( app-cdr/cdemu-daemon:0/7 ) dev-util/desktop-file-utils >=dev-util/intltool-0.21 >=sys-devel/gettext-0.18 sys-devel/make >=dev-util/cmake-2.8.5 DESCRIPTION=Command-line tool for controlling cdemu-daemon -EAPI=5 +EAPI=6 HOMEPAGE=http://cdemu.org -IUSE=+cdemu-daemon linguas_de linguas_fr linguas_no linguas_pl linguas_sl linguas_sv python_targets_python2_7 -KEYWORDS=amd64 ~hppa x86 +IUSE=+cdemu-daemon linguas_no linguas_sl linguas_sv python_targets_python2_7 +KEYWORDS=~amd64 ~hppa ~x86 LICENSE=GPL-2+ -RDEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] dev-python/dbus-python[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] cdemu-daemon? ( app-cdr/cdemu-daemon:0/6 ) +RDEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] dev-python/dbus-python[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] cdemu-daemon? ( app-cdr/cdemu-daemon:0/7 ) REQUIRED_USE=python_targets_python2_7 SLOT=0 -SRC_URI=mirror://sourceforge/cdemu/cdemu-client-2.1.1.tar.bz2 +SRC_URI=mirror://sourceforge/cdemu/cdemu-client-3.0.1.tar.bz2 _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e l10n 714aaf78929eade946da5eaff7d2001a multilib 3972ca401cf7dbb430df9995f5d8d580 python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=09f30b59c9fe9618103ec44979e320d8 +_md5_=8fed903e8409fcf807898a337cc386a7 diff --git a/metadata/md5-cache/app-cdr/cdemu-daemon-2.1.1 b/metadata/md5-cache/app-cdr/cdemu-daemon-2.1.1 deleted file mode 100644 index 37b991232001..000000000000 --- a/metadata/md5-cache/app-cdr/cdemu-daemon-2.1.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/libmirage-2.1.1:= =media-libs/libao-0.8.0:= sys-apps/dbus >=sys-fs/vhba-20130607 virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.5 -DESCRIPTION=Daemon of the CDEmu optical media image mounting suite -EAPI=5 -HOMEPAGE=http://cdemu.org -KEYWORDS=amd64 ~hppa x86 -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/libmirage-2.1.1:= =media-libs/libao-0.8.0:= sys-apps/dbus >=sys-fs/vhba-20130607 -SLOT=0/6 -SRC_URI=mirror://sourceforge/cdemu/cdemu-daemon-2.1.1.tar.bz2 -_eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=16cc876fec36e7a26e4c36763da256fe diff --git a/metadata/md5-cache/app-cdr/cdemu-daemon-3.0.4 b/metadata/md5-cache/app-cdr/cdemu-daemon-3.0.4 new file mode 100644 index 000000000000..d48032343dae --- /dev/null +++ b/metadata/md5-cache/app-cdr/cdemu-daemon-3.0.4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/libmirage-3.0.4:= >=media-libs/libao-0.8.0:= sys-apps/dbus >=sys-fs/vhba-20130607 virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.5 +DESCRIPTION=Daemon of the CDEmu optical media image mounting suite +EAPI=6 +HOMEPAGE=http://cdemu.org +KEYWORDS=~amd64 ~hppa ~x86 +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/libmirage-3.0.4:= >=media-libs/libao-0.8.0:= sys-apps/dbus >=sys-fs/vhba-20130607 +SLOT=0/7 +SRC_URI=mirror://sourceforge/cdemu/cdemu-daemon-3.0.4.tar.bz2 +_eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=e6287350de69e1ec1c7fd8446ec69368 diff --git a/metadata/md5-cache/app-cdr/gcdemu-2.1.1 b/metadata/md5-cache/app-cdr/gcdemu-3.0.1 similarity index 86% rename from metadata/md5-cache/app-cdr/gcdemu-2.1.1 rename to metadata/md5-cache/app-cdr/gcdemu-3.0.1 index 01addef946d7..b2fe53b923fe 100644 --- a/metadata/md5-cache/app-cdr/gcdemu-2.1.1 +++ b/metadata/md5-cache/app-cdr/gcdemu-3.0.1 @@ -3,12 +3,12 @@ DEPEND=dev-util/desktop-file-utils >=dev-util/intltool-0.21 sys-devel/gettext vi DESCRIPTION=Gtk+ GUI for controlling cdemu-daemon EAPI=5 HOMEPAGE=http://cdemu.org/ -IUSE=debug linguas_de linguas_fr linguas_no linguas_pl linguas_sl linguas_zh_CN python_targets_python2_7 -KEYWORDS=amd64 x86 +IUSE=debug linguas_no linguas_sl linguas_sv python_targets_python2_7 +KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] app-cdr/cdemu-daemon:0/6 >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection dev-python/pygobject:3[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] gnome-base/librsvg:2 sys-apps/dbus x11-libs/gdk-pixbuf[introspection] x11-libs/gtk+:3[introspection] x11-libs/libnotify[introspection] +RDEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] app-cdr/cdemu-daemon:0/7 >=dev-libs/glib-2.28:2 dev-libs/gobject-introspection dev-python/pygobject:3[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] gnome-base/librsvg:2 sys-apps/dbus x11-libs/gdk-pixbuf[introspection] x11-libs/gtk+:3[introspection] x11-libs/libnotify[introspection] REQUIRED_USE=python_targets_python2_7 SLOT=0 -SRC_URI=mirror://sourceforge/cdemu/gcdemu-2.1.1.tar.bz2 +SRC_URI=mirror://sourceforge/cdemu/gcdemu-3.0.1.tar.bz2 _eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 e079aed86716c8f78e28040aa43db4fd gnome2-utils d19e7813f27c8f982134d657889b13cf l10n 714aaf78929eade946da5eaff7d2001a libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7d712f6e0abe619a99d81e5dd6362017 +_md5_=7dff57fe9e580c9c90a5dce9bc98f997 diff --git a/metadata/md5-cache/app-editors/vim-7.4.769 b/metadata/md5-cache/app-editors/vim-7.4.769 index cd624a955a50..ab472bbac214 100644 --- a/metadata/md5-cache/app-editors/vim-7.4.769 +++ b/metadata/md5-cache/app-editors/vim-7.4.769 @@ -4,11 +4,11 @@ DESCRIPTION=Vim, an improved vi-style text editor EAPI=5 HOMEPAGE=http://www.vim.org/ IUSE=X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux tcl vim-pager python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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=vim RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2 nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-7.4.769 dev-util/ctags ) perl? ( dev-lang/perl:= ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[threads] ) python_targets_python3_4? ( dev-lang/python:3.4[threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.2 dev-lang/ruby:2.1 dev-lang/ruby:2.0 ) ) selinux? ( sys-libs/libselinux ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) REQUIRED_USE=luajit? ( lua ) python? ( || ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) ?? ( python_targets_python2_7 ) ?? ( python_targets_python3_3 python_targets_python3_4 ) ) SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v7.4.769.tar.gz -> vim-7.4.769.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-7.4.542-gentoo-patches.tar.bz2 _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c vim-doc 1b0813c9dadf2431c96854a8d46f5eaf -_md5_=4808fbd53628c7e51292e9b328ea7aa5 +_md5_=a7d3ee7d15cdc6c9d2b890edaba4bef6 diff --git a/metadata/md5-cache/app-editors/vim-core-7.4.769 b/metadata/md5-cache/app-editors/vim-core-7.4.769 index 2e045520df05..2a0a949d4546 100644 --- a/metadata/md5-cache/app-editors/vim-core-7.4.769 +++ b/metadata/md5-cache/app-editors/vim-core-7.4.769 @@ -4,10 +4,10 @@ DESCRIPTION=vim and gvim shared files EAPI=5 HOMEPAGE=http://www.vim.org/ IUSE=nls acl minimal -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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=vim PDEPEND=!minimal? ( app-vim/gentoo-syntax ) SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v7.4.769.tar.gz -> vim-7.4.769.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-7.4.542-gentoo-patches.tar.bz2 _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 prefix e7f2b9c6e57342e5d25eac22fce23062 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c vim-doc 1b0813c9dadf2431c96854a8d46f5eaf -_md5_=4d3eebd118928dc983a87252ab1da24c +_md5_=1de9ae25bf5019de208141c8775797ab diff --git a/metadata/md5-cache/app-emulation/rkt-1.1.0 b/metadata/md5-cache/app-emulation/rkt-1.1.0 new file mode 100644 index 000000000000..e3e4cdb46293 --- /dev/null +++ b/metadata/md5-cache/app-emulation/rkt-1.1.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-lang/go-1.4.1 app-arch/cpio app-crypt/trousers sys-fs/squashfs-tools dev-perl/Capture-Tiny !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DESCRIPTION=A CLI for running app containers, and an implementation of the App Container Spec. +EAPI=5 +HOMEPAGE=https://github.com/coreos/rkt +IUSE=doc examples +rkt_stage1_coreos +rkt_stage1_fly rkt_stage1_host rkt_stage1_kvm rkt_stage1_src +actool systemd +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=!app-emulation/rocket rkt_stage1_host? ( systemd? ( >=sys-apps/systemd-222 app-shells/bash:0 ) ) +REQUIRED_USE=|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_kvm rkt_stage1_src ) rkt_stage1_host? ( systemd ) +SLOT=0 +SRC_URI=https://github.com/coreos/rkt/archive/v1.1.0.tar.gz -> rkt-1.1.0.tar.gz rkt_stage1_coreos? ( http://alpha.release.core-os.net/amd64-usr/794.1.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-794.1.0.img ) rkt_stage1_kvm? ( https://kernel.googlesource.com/pub/scm/linux/kernel/git/will/kvmtool/+archive/3c8aec9e2b5066412390559629dabeb7816ee8f2.tar.gz -> kvmtool-3c8aec9e2b5066412390559629dabeb7816ee8f2.tar.gz mirror://kernel/linux/kernel/v4.x/linux-4.3.1.tar.xz ) rkt_stage1_src? ( https://github.com/systemd/systemd/archive/v222.tar.gz -> systemd-222.tar.gz ) +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=c351a94cf7a6a4319acf9b3f8ca91ef6 diff --git a/metadata/md5-cache/app-eselect/eselect-ctags-1.18 b/metadata/md5-cache/app-eselect/eselect-ctags-1.18 index 67129c8380d2..ecde1a2526e8 100644 --- a/metadata/md5-cache/app-eselect/eselect-ctags-1.18 +++ b/metadata/md5-cache/app-eselect/eselect-ctags-1.18 @@ -2,9 +2,9 @@ DEFINED_PHASES=install DESCRIPTION=Manages ctags implementations EAPI=5 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~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 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~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=!=app-admin/eselect-1.2.3 SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/eselect-emacs-1.18.tar.xz -_md5_=3f0c5a398dbe38f87b8fa32ad94ad6c5 +_md5_=8c59ad99a289b541bd445a430b4ab9e8 diff --git a/metadata/md5-cache/app-misc/ca-certificates-20151214.3.21 b/metadata/md5-cache/app-misc/ca-certificates-20151214.3.21 index 3a2acbce22ad..972d9d52f6e2 100644 --- a/metadata/md5-cache/app-misc/ca-certificates-20151214.3.21 +++ b/metadata/md5-cache/app-misc/ca-certificates-20151214.3.21 @@ -4,10 +4,10 @@ DESCRIPTION=Common CA Certificates PEM files EAPI=4 HOMEPAGE=http://packages.debian.org/sid/ca-certificates IUSE=+cacert -KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt +KEYWORDS=alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt LICENSE=MPL-1.1 RDEPEND=>=app-misc/c_rehash-1.7-r1 sys-apps/debianutils SLOT=0 SRC_URI=mirror://debian/pool/main/c/ca-certificates/ca-certificates_20151214.tar.xz ftp://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_21_RTM/src/nss-3.21.tar.gz cacert? ( https://dev.gentoo.org/~anarchy/patches/nss-3.14.1-add_spi+cacerts_ca_certs.patch ) _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e3c65b7e32f138f7c47c823b38e925d4 +_md5_=21f2627c009fe8f9a3401922859a043e diff --git a/metadata/md5-cache/app-misc/fdupes-1.51 b/metadata/md5-cache/app-misc/fdupes-1.51 index e87ef94a5070..635a5da239b2 100644 --- a/metadata/md5-cache/app-misc/fdupes-1.51 +++ b/metadata/md5-cache/app-misc/fdupes-1.51 @@ -7,4 +7,4 @@ LICENSE=MIT SLOT=0 SRC_URI=https://fdupes.googlecode.com/files/fdupes-1.51.tar.gz https://github.com/adrianlopezroche/fdupes/archive/fdupes-1.51.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=8fe585f62860b66d48a32d275358fb3f +_md5_=80a7e06de20ea45f3330758df4e3501d diff --git a/metadata/md5-cache/app-misc/qlcplus-4.10.2b b/metadata/md5-cache/app-misc/qlcplus-4.10.2b index 636e4539d719..944762653692 100644 --- a/metadata/md5-cache/app-misc/qlcplus-4.10.2b +++ b/metadata/md5-cache/app-misc/qlcplus-4.10.2b @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-libs/glib:2 virtual/libusb:0 virtual/libusb:1 media-libs/alsa-lib media-libs/libmad media-libs/libsndfile sci-libs/fftw:3.0 virtual/udev || ( dev-embedded/libftdi:1 dev-embedded/libftdi:0 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qttest:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtnetwork dev-qt/qtscript:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=dev-libs/glib:2 virtual/libusb:0 virtual/libusb:1 media-libs/alsa-lib media-libs/libmad media-libs/libsndfile sci-libs/fftw:3.0 virtual/udev || ( dev-embedded/libftdi:1 dev-embedded/libftdi:0 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qttest:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=QLC+ - Q Light Controller Plus to control DMX interfaces EAPI=5 HOMEPAGE=http://www.qlcplus.org/ IUSE=qt4 qt5 test KEYWORDS=~amd64 LICENSE=Apache-2.0 -RDEPEND=dev-libs/glib:2 virtual/libusb:0 virtual/libusb:1 media-libs/alsa-lib media-libs/libmad media-libs/libsndfile sci-libs/fftw:3.0 virtual/udev || ( dev-embedded/libftdi:1 dev-embedded/libftdi:0 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qttest:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtnetwork dev-qt/qtscript:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) +RDEPEND=dev-libs/glib:2 virtual/libusb:0 virtual/libusb:1 media-libs/alsa-lib media-libs/libmad media-libs/libsndfile sci-libs/fftw:3.0 virtual/udev || ( dev-embedded/libftdi:1 dev-embedded/libftdi:0 ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qttest:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) REQUIRED_USE=^^ ( qt4 qt5 ) SLOT=0 SRC_URI=http://www.qlcplus.org/downloads/4.10.2/qlcplus_4.10.2b.tar.gz _eclasses_=base 3fe4f8980633fd7bc69e9887209ba2fe eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 qmake-utils 0a242e7177789b0028b4045f336dd4db qt4-r2 d6c113024bb3086a1facc65cd338930e toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=64c6ef87b6a7a1159d615065d90cca7b +_md5_=8c5ad58d9fb603d92b9d587d6430fbb2 diff --git a/metadata/md5-cache/app-misc/tmux-9999 b/metadata/md5-cache/app-misc/tmux-9999 index 5b32c77fc158..599113ad9b21 100644 --- a/metadata/md5-cache/app-misc/tmux-9999 +++ b/metadata/md5-cache/app-misc/tmux-9999 @@ -7,5 +7,6 @@ IUSE=debug selinux vim-syntax kernel_FreeBSD kernel_linux LICENSE=ISC RDEPEND=>=dev-libs/libevent-2.0.10 kernel_linux? ( sys-libs/libutempter ) kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 sys-libs/libutempter ) ) sys-libs/ncurses:0= selinux? ( sec-policy/selinux-screen ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 +SRC_URI=https://raw.githubusercontent.com/przepompownia/tmux-bash-completion/678a27616b70c649c6701cae9cd8c92b58cc051b/completions/tmux -> tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b vim-syntax? ( https://raw.githubusercontent.com/keith/tmux.vim/95f6126c187667cc7f9c573c45c3b356cf69f4ca/syntax/tmux.vim -> tmux.vim-95f6126c187667cc7f9c573c45c3b356cf69f4ca ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=42e9f868d67791f8fc2f33f2cc48e98f +_md5_=297b2adb010da56a5f17b67b31aeeb35 diff --git a/metadata/md5-cache/app-misc/xmind-3.6.1 b/metadata/md5-cache/app-misc/xmind-3.6.1 new file mode 100644 index 000000000000..bb4ef07558a1 --- /dev/null +++ b/metadata/md5-cache/app-misc/xmind-3.6.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst +DEPEND=>=sys-apps/sed-4 +DESCRIPTION=A brainstorming and mind mapping software tool +EAPI=6 +HOMEPAGE=http://www.xmind.net +KEYWORDS=~amd64 ~x86 +LICENSE=EPL-1.0 LGPL-3 +RDEPEND=>=virtual/jre-1.5 x11-libs/gtk+:2 +SLOT=0 +SRC_URI=http://dl2.xmind.net/xmind-downloads/xmind-7-update1-portable.zip https://dev.gentoo.org/~creffett/distfiles/xmind-icons.tar.xz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e gnome2-utils d19e7813f27c8f982134d657889b13cf multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=c0c8ada0d99244fc0a4583e1f50fee2e diff --git a/metadata/md5-cache/app-office/libreoffice-5.0.9999 b/metadata/md5-cache/app-office/libreoffice-5.0.9999 index 541139dabe79..8ff99e8da455 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.0.9999 +++ b/metadata/md5-cache/app-office/libreoffice-5.0.9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.2 >=app-text/libebook-0.1.1 >=app-text/libetonyek-0.1.2 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.5 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 =app-text/libwps-0.4* >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.7* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/gconf:2 ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gtk3? ( >=x11-libs/gtk+-3.8:3 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) libreoffice_extensions_wiki-publisher? ( dev-java/commons-codec:0 dev-java/commons-httpclient:3 dev-java/commons-lang:2.1 dev-java/commons-logging:0 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( dev-libs/glib:2 >=net-libs/telepathy-glib-0.18.0 >=x11-libs/gtk+-2.24:2 ) >=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-0.12.0:0= media-libs/glm net-misc/npapi-sdk >=sys-apps/findutils-4.4.2 sys-devel/bison sys-apps/coreutils sys-devel/flex sys-devel/gettext >=sys-devel/make-3.82 sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( >=virtual/jdk-1.6 >=dev-java/ant-core-1.7 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/designer-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 >=kde-base/kdelibs-4.4:4[aqua=] ) +DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.2 >=app-text/libebook-0.1.1 >=app-text/libetonyek-0.1.2 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.5 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 =app-text/libwps-0.4* >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.7* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/gconf:2 ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gtk3? ( >=x11-libs/gtk+-3.8:3 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) libreoffice_extensions_wiki-publisher? ( dev-java/commons-codec:0 dev-java/commons-httpclient:3 dev-java/commons-lang:2.1 dev-java/commons-logging:0 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( dev-libs/glib:2 >=net-libs/telepathy-glib-0.18.0 >=x11-libs/gtk+-2.24:2 ) >=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-0.12.0:0= media-libs/glm net-misc/npapi-sdk sys-devel/bison sys-devel/flex sys-devel/gettext !=virtual/jdk-1.6 >=dev-java/ant-core-1.7 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/designer-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 >=kde-base/kdelibs-4.4:4[aqua=] ) DESCRIPTION=A full office productivity suite EAPI=5 HOMEPAGE=http://www.libreoffice.org @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-www.libreoffice.org/src//d62650a6f908e85643e557a236ea989c-vigra1.6.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b gnome2-utils d19e7813f27c8f982134d657889b13cf java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 kde4-base ada7f1c988b3c32e1c9a8168be2731c3 kde4-functions f6f7b3906630fb197969f914b1ad454a libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=a8e8223ceee0de483d1ccb89786fac29 +_md5_=0eeb9bc8d7ea584fd092f2e79abe4f73 diff --git a/metadata/md5-cache/app-office/libreoffice-5.1.9999 b/metadata/md5-cache/app-office/libreoffice-5.1.9999 index 7662b448b466..1f37665fc74c 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.1.9999 +++ b/metadata/md5-cache/app-office/libreoffice-5.1.9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.4.4 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.9* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( >=net-libs/telepathy-glib-0.18.0 ) >=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-0.12.0:0= media-libs/glm net-misc/npapi-sdk >=sys-apps/findutils-4.4.2 sys-devel/bison sys-apps/coreutils sys-devel/flex sys-devel/gettext >=sys-devel/make-3.82 sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( >=virtual/jdk-1.6 >=dev-java/ant-core-1.7 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/designer-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 >=kde-base/kdelibs-4.4:4[aqua=] ) +DEPEND=python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.4.4 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.9* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( >=net-libs/telepathy-glib-0.18.0 ) >=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-0.12.0:0= media-libs/glm net-misc/npapi-sdk sys-devel/bison sys-devel/flex sys-devel/gettext !=virtual/jdk-1.6 >=dev-java/ant-core-1.7 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/designer-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 >=kde-base/kdelibs-4.4:4[aqua=] ) DESCRIPTION=A full office productivity suite EAPI=5 HOMEPAGE=http://www.libreoffice.org @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_4 python_single_target_python3_5 SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-www.libreoffice.org/src//d62650a6f908e85643e557a236ea989c-vigra1.6.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b gnome2-utils d19e7813f27c8f982134d657889b13cf java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 kde4-base ada7f1c988b3c32e1c9a8168be2731c3 kde4-functions f6f7b3906630fb197969f914b1ad454a libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=55919d8a8f38647f6c940efd214ff96d +_md5_=b1101b1ab4536fc688a6a0652e26844c diff --git a/metadata/md5-cache/app-office/libreoffice-9999 b/metadata/md5-cache/app-office/libreoffice-9999 index e19570fb6f99..fa5d04b9cfd0 100644 --- a/metadata/md5-cache/app-office/libreoffice-9999 +++ b/metadata/md5-cache/app-office/libreoffice-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.4.4 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= >=dev-libs/liborcus-0.9.0 >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( >=net-libs/telepathy-glib-0.18.0 ) >=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool dev-util/mdds:1= media-libs/glm >=sys-apps/findutils-4.4.2 sys-devel/bison sys-apps/coreutils sys-devel/flex sys-devel/gettext >=sys-devel/make-3.82 sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( >=virtual/jdk-1.6 >=dev-java/ant-core-1.7 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/designer-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 >=kde-base/kdelibs-4.4:4[aqua=] ) +DEPEND=python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.4.4 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= >=dev-libs/liborcus-0.9.0 >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( >=net-libs/telepathy-glib-0.18.0 ) >=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool dev-util/mdds:1= media-libs/glm sys-devel/bison sys-devel/flex sys-devel/gettext !=virtual/jdk-1.6 >=dev-java/ant-core-1.7 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0 ) >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/designer-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 >=kde-base/kdelibs-4.4:4[aqua=] ) DESCRIPTION=A full office productivity suite EAPI=5 HOMEPAGE=http://www.libreoffice.org @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_4 python_single_target_python3_5 SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b gnome2-utils d19e7813f27c8f982134d657889b13cf java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 kde4-base ada7f1c988b3c32e1c9a8168be2731c3 kde4-functions f6f7b3906630fb197969f914b1ad454a libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=11b21467f0bef9e2ac18c50aeadd7207 +_md5_=2cccc00c5ea0e6c6ddecc21988b2aaff diff --git a/metadata/md5-cache/app-office/libreoffice-bin-5.0.3.2 b/metadata/md5-cache/app-office/libreoffice-bin-5.0.3.2 index b35b2d11e3ef..8accc3c9dc58 100644 --- a/metadata/md5-cache/app-office/libreoffice-bin-5.0.3.2 +++ b/metadata/md5-cache/app-office/libreoffice-bin-5.0.3.2 @@ -7,10 +7,10 @@ IUSE=gnome java kde aqua kde elibc_FreeBSD java python_targets_python2_7 python_ KEYWORDS=-* amd64 x86 LICENSE=LGPL-3 PDEPEND==app-office/libreoffice-l10n-5.0.3.2* -RDEPEND==app-text/libexttextcat-3.4* =app-text/libmwaw-0.3* app-text/poppler:0/51 dev-libs/boost:0/1.56.0 dev-libs/icu:0/55 =media-gfx/graphite2-1.2* media-libs/glew:0/1.10 media-libs/harfbuzz:0/0.9.18[icu] media-libs/libpng:0/16 >=sys-libs/glibc-2.21-r1 virtual/jpeg:62 kde? ( >=kde-base/kdelibs-4.14.8:4 >=dev-qt/qtcore-4.8.6-r2:4 >=dev-qt/qtgui-4.8.6-r4:4 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.2 >=app-text/libebook-0.1.1 >=app-text/libetonyek-0.1.2 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.5 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 =app-text/libwps-0.4* >=app-text/poppler-0.16:=[xpdf-headers(+),cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.7* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d:0 >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl net-print/cups >=dev-libs/dbus-glib-0.92 gnome? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 ) x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 !app-office/libreoffice !=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] ) java? ( >=dev-java/java-config-2.2.0 ) +RDEPEND==app-text/libexttextcat-3.4* =app-text/libmwaw-0.3* app-text/poppler:0/51 dev-libs/boost:0/1.56.0 dev-libs/icu:0/55 =media-gfx/graphite2-1.2* media-libs/glew:0/1.10 media-libs/harfbuzz:0/0.9.18[icu] media-libs/libpng:0/16 >=sys-devel/gcc-4.9.0 >=sys-libs/glibc-2.21-r1 virtual/jpeg:62 kde? ( >=kde-base/kdelibs-4.14.8:4 >=dev-qt/qtcore-4.8.6-r2:4 >=dev-qt/qtgui-4.8.6-r4:4 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.2 >=app-text/libebook-0.1.1 >=app-text/libetonyek-0.1.2 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.5 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 =app-text/libwps-0.4* >=app-text/poppler-0.16:=[xpdf-headers(+),cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.7* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d:0 >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl net-print/cups >=dev-libs/dbus-glib-0.92 gnome? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 ) x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 !app-office/libreoffice !=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] ) java? ( >=dev-java/java-config-2.2.0 ) REQUIRED_USE=kde? ( !gnome ) gnome? ( !kde ) RESTRICT=test strip SLOT=0 SRC_URI=amd64? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-5.0.3.2.tar.xz kde? ( !java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-kde-5.0.3.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-kde-java-5.0.3.2.xd3 ) ) gnome? ( !java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-gnome-5.0.3.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-gnome-java-5.0.3.2.xd3 ) ) !kde? ( !gnome? ( java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-java-5.0.3.2.xd3 ) ) ) ) x86? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-5.0.3.2.tar.xz kde? ( !java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-kde-5.0.3.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-kde-java-5.0.3.2.xd3 ) ) gnome? ( !java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-gnome-5.0.3.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-gnome-java-5.0.3.2.xd3 ) ) !kde? ( !gnome? ( java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-java-5.0.3.2.xd3 ) ) ) ) _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e gnome2-utils d19e7813f27c8f982134d657889b13cf java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 kde4-base ada7f1c988b3c32e1c9a8168be2731c3 kde4-functions f6f7b3906630fb197969f914b1ad454a multilib 3972ca401cf7dbb430df9995f5d8d580 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb prefix e7f2b9c6e57342e5d25eac22fce23062 python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3f9fe195c71b16b2e5520b05f8ed02bd +_md5_=50373994a5663d6debd6fb5dcd52a872 diff --git a/metadata/md5-cache/app-office/libreoffice-bin-5.0.5.2 b/metadata/md5-cache/app-office/libreoffice-bin-5.0.5.2 index 514a283958ab..83ef10f8cc01 100644 --- a/metadata/md5-cache/app-office/libreoffice-bin-5.0.5.2 +++ b/metadata/md5-cache/app-office/libreoffice-bin-5.0.5.2 @@ -7,10 +7,10 @@ IUSE=gnome java kde aqua kde elibc_FreeBSD java python_targets_python2_7 python_ KEYWORDS=-* ~amd64 ~x86 LICENSE=LGPL-3 PDEPEND==app-office/libreoffice-l10n-5.0.5.2* -RDEPEND==app-text/libexttextcat-3.4* =app-text/libmwaw-0.3* app-text/poppler:0/51 dev-libs/boost:0/1.56.0 dev-libs/icu:0/55 =media-gfx/graphite2-1.2* media-libs/glew:0/1.10 media-libs/harfbuzz:0/0.9.18[icu] media-libs/libpng:0/16 >=sys-libs/glibc-2.21-r1 virtual/jpeg:62 kde? ( >=kde-base/kdelibs-4.14.8:4 >=dev-qt/qtcore-4.8.6-r2:4 >=dev-qt/qtgui-4.8.6-r4:4 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.2 >=app-text/libebook-0.1.1 >=app-text/libetonyek-0.1.2 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.5 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 =app-text/libwps-0.4* >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.7* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d:0 >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl net-print/cups >=dev-libs/dbus-glib-0.92 gnome? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 ) x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 !app-office/libreoffice !=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] ) java? ( >=dev-java/java-config-2.2.0 ) +RDEPEND==app-text/libexttextcat-3.4* =app-text/libmwaw-0.3* app-text/poppler:0/51 dev-libs/boost:0/1.56.0 dev-libs/icu:0/55 =media-gfx/graphite2-1.2* media-libs/glew:0/1.10 media-libs/harfbuzz:0/0.9.18[icu] media-libs/libpng:0/16 >=sys-devel/gcc-4.9.0 >=sys-libs/glibc-2.21-r1 virtual/jpeg:62 kde? ( >=kde-base/kdelibs-4.14.8:4 >=dev-qt/qtcore-4.8.6-r2:4 >=dev-qt/qtgui-4.8.6-r4:4 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.2 >=app-text/libebook-0.1.1 >=app-text/libetonyek-0.1.2 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.5 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 =app-text/libwps-0.4* >=app-text/poppler-0.16:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC >=dev-libs/boost-1.55:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= =dev-libs/liborcus-0.7* >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d:0 >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4:0= >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl net-print/cups >=dev-libs/dbus-glib-0.92 gnome? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 ) x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 !app-office/libreoffice !=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] ) java? ( >=dev-java/java-config-2.2.0 ) REQUIRED_USE=kde? ( !gnome ) gnome? ( !kde ) RESTRICT=test strip SLOT=0 SRC_URI=amd64? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-5.0.5.2.tar.xz kde? ( !java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-kde-5.0.5.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-kde-java-5.0.5.2.xd3 ) ) gnome? ( !java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-gnome-5.0.5.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-gnome-java-5.0.5.2.xd3 ) ) !kde? ( !gnome? ( java? ( http://packages.gentooexperimental.org/packages/amd64-libreoffice/amd64-bin-libreoffice-java-5.0.5.2.xd3 ) ) ) ) x86? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-5.0.5.2.tar.xz kde? ( !java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-kde-5.0.5.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-kde-java-5.0.5.2.xd3 ) ) gnome? ( !java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-gnome-5.0.5.2.xd3 ) java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-gnome-java-5.0.5.2.xd3 ) ) !kde? ( !gnome? ( java? ( http://packages.gentooexperimental.org/packages/x86-libreoffice/x86-bin-libreoffice-java-5.0.5.2.xd3 ) ) ) ) _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e gnome2-utils d19e7813f27c8f982134d657889b13cf java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 kde4-base ada7f1c988b3c32e1c9a8168be2731c3 kde4-functions f6f7b3906630fb197969f914b1ad454a multilib 3972ca401cf7dbb430df9995f5d8d580 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb prefix e7f2b9c6e57342e5d25eac22fce23062 python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d08c8ab7528198c0640f055c446488d2 +_md5_=95447bb2c51feb73e847c6b6800153ab diff --git a/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.0 b/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.0 index bd332325c867..59965a007c94 100644 --- a/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.0 +++ b/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.0 @@ -3,10 +3,10 @@ DESCRIPTION=XSL Stylesheets for Docbook EAPI=5 HOMEPAGE=http://wiki.docbook.org/DocBookXslStylesheets IUSE=ruby -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=>=app-text/build-docbook-catalog-1.1 ruby? ( || ( dev-lang/ruby:1.9 dev-lang/ruby:2.0 dev-lang/ruby:2.1 dev-lang/ruby:2.2 ) ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/docbook/docbook-xsl-1.79.0.tar.bz2 -_md5_=ab89ca75f64d2222bf5cb0ff36a1d6eb +_md5_=c4da46193ec744af62634b891da7142e diff --git a/metadata/md5-cache/app-text/libetonyek-0.1.1 b/metadata/md5-cache/app-text/libetonyek-0.1.1 deleted file mode 100644 index f9370d6f2e75..000000000000 --- a/metadata/md5-cache/app-text/libetonyek-0.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-libs/boost:= dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib >=dev-libs/boost-1.46 dev-util/gperf sys-devel/libtool virtual/pkgconfig doc? ( app-doc/doxygen ) test? ( dev-util/cppunit ) -DESCRIPTION=Library parsing Apple Keynote presentations -EAPI=5 -HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libetonyek -IUSE=doc static-libs test -KEYWORDS=amd64 ~arm x86 -LICENSE=|| ( GPL-2+ LGPL-2.1 MPL-1.1 ) -RDEPEND=dev-libs/boost:= dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib -SLOT=0 -SRC_URI=http://dev-www.libreoffice.org/src/libetonyek/libetonyek-0.1.1.tar.xz -_eclasses_=base 3fe4f8980633fd7bc69e9887209ba2fe eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=9c2e0e890220ebc8488c8ff1512721a7 diff --git a/metadata/md5-cache/app-text/libetonyek-0.1.2 b/metadata/md5-cache/app-text/libetonyek-0.1.2 deleted file mode 100644 index 47e85e90c3c9..000000000000 --- a/metadata/md5-cache/app-text/libetonyek-0.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-libs/boost:= dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib >=dev-libs/boost-1.46 dev-util/gperf media-libs/glm sys-devel/libtool virtual/pkgconfig doc? ( app-doc/doxygen ) test? ( dev-util/cppunit ) -DESCRIPTION=Library parsing Apple Keynote presentations -EAPI=5 -HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libetonyek -IUSE=doc static-libs test -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=|| ( GPL-2+ LGPL-2.1 MPL-1.1 ) -RDEPEND=dev-libs/boost:= dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib -SLOT=0 -SRC_URI=http://dev-www.libreoffice.org/src/libetonyek/libetonyek-0.1.2.tar.xz -_eclasses_=base 3fe4f8980633fd7bc69e9887209ba2fe eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=86aeb1ece77c6ab93788e5aa28009f8e diff --git a/metadata/md5-cache/app-vim/gentoo-syntax-20150823 b/metadata/md5-cache/app-vim/gentoo-syntax-20150823 index 881942149e4d..ddcbd491471a 100644 --- a/metadata/md5-cache/app-vim/gentoo-syntax-20150823 +++ b/metadata/md5-cache/app-vim/gentoo-syntax-20150823 @@ -4,10 +4,10 @@ DESCRIPTION=vim plugin: Gentoo and portage related syntax highlighting, filetype EAPI=5 HOMEPAGE=https://github.com/gentoo/gentoo-syntax IUSE=ignore-glep31 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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=vim RDEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~floppym/dist/gentoo-syntax-20150823.tar.bz2 _eclasses_=vim-doc 1b0813c9dadf2431c96854a8d46f5eaf vim-plugin 1bbfc3364a7588372fb4c21734f0cd96 -_md5_=d066a63e3b9aba74b8ab6f8d16bfa359 +_md5_=90fd562601a0499250d8e9004ef47140 diff --git a/metadata/md5-cache/dev-db/spatialite-4.1.1 b/metadata/md5-cache/dev-db/spatialite-4.1.1 index 46a286b322ca..6f90b0ff7554 100644 --- a/metadata/md5-cache/dev-db/spatialite-4.1.1 +++ b/metadata/md5-cache/dev-db/spatialite-4.1.1 @@ -1,4 +1,4 @@ -DEFINED_PHASES=configure install +DEFINED_PHASES=configure install prepare DEPEND=>=dev-db/sqlite-3.7.5:3[extensions(+)] geos? ( >=sci-libs/geos-3.3 ) proj? ( sci-libs/proj ) xls? ( dev-libs/freexl ) DESCRIPTION=A complete Spatial DBMS in a nutshell built upon sqlite EAPI=5 @@ -9,5 +9,5 @@ LICENSE=MPL-1.1 RDEPEND=>=dev-db/sqlite-3.7.5:3[extensions(+)] geos? ( >=sci-libs/geos-3.3 ) proj? ( sci-libs/proj ) xls? ( dev-libs/freexl ) SLOT=0 SRC_URI=http://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-4.1.1.tar.gz -_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=a81a81b8ebdfdd7a175bd61f5f747384 +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=617cf9771a7837697983483ff56abb79 diff --git a/metadata/md5-cache/dev-libs/icu-56.1-r1 b/metadata/md5-cache/dev-libs/icu-56.1-r1 new file mode 100644 index 000000000000..c1b2e7b5f547 --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-56.1-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/pkgconfig doc? ( app-doc/doxygen[dot] ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=International Components for Unicode +EAPI=5 +HOMEPAGE=http://www.icu-project.org/ +IUSE=debug doc examples static-libs 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 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +LICENSE=BSD +SLOT=0/56.C++11 +SRC_URI=http://download.icu-project.org/files/icu4c/56.1/icu4c-56_1-src.tgz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=31ed64ffc838fde3065460d99a6d03a5 diff --git a/metadata/md5-cache/dev-libs/libgcrypt-1.6.3-r4 b/metadata/md5-cache/dev-libs/libgcrypt-1.6.3-r4 index d371eb894ed8..36a83f824340 100644 --- a/metadata/md5-cache/dev-libs/libgcrypt-1.6.3-r4 +++ b/metadata/md5-cache/dev-libs/libgcrypt-1.6.3-r4 @@ -4,10 +4,10 @@ DESCRIPTION=General purpose crypto library based on the code used in GnuPG EAPI=5 HOMEPAGE=http://www.gnupg.org/ IUSE=doc static-libs +threads 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 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1 MIT RDEPEND=>=dev-libs/libgpg-error-1.12[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-20131008-r19 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32] ) SLOT=0/20 SRC_URI=mirror://gnupg/libgcrypt/libgcrypt-1.6.3.tar.bz2 _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-multilib 77afca16a6cb82823eed6366a10e7f75 autotools-utils 419811142edf3516b0d0cf1a254d93cb eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=fc884e3df067eb81054360b26d93e5db +_md5_=318addc6565639f664b47ca0eb62b112 diff --git a/metadata/md5-cache/dev-libs/libgpg-error-1.19 b/metadata/md5-cache/dev-libs/libgpg-error-1.19 index 0d3630906912..4bdc3cc9dfdc 100644 --- a/metadata/md5-cache/dev-libs/libgpg-error-1.19 +++ b/metadata/md5-cache/dev-libs/libgpg-error-1.19 @@ -4,10 +4,10 @@ DESCRIPTION=Contains error handling functions used by GnuPG software EAPI=5 HOMEPAGE=http://www.gnupg.org/related_software/libgpg-error IUSE=common-lisp nls static-libs 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 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1 RDEPEND=nls? ( >=virtual/libintl-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(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20131008-r12 ) SLOT=0 SRC_URI=mirror://gnupg/libgpg-error/libgpg-error-1.19.tar.bz2 _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=afca13ff72742199ed41a6e41252ce8c +_md5_=f18425813ff754d56a0cd860552ede42 diff --git a/metadata/md5-cache/dev-libs/libmirage-2.1.1 b/metadata/md5-cache/dev-libs/libmirage-3.0.4 similarity index 77% rename from metadata/md5-cache/dev-libs/libmirage-2.1.1 rename to metadata/md5-cache/dev-libs/libmirage-3.0.4 index 7d6750b63ca1..51deed69591b 100644 --- a/metadata/md5-cache/dev-libs/libmirage-2.1.1 +++ b/metadata/md5-cache/dev-libs/libmirage-3.0.4 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=>=app-arch/bzip2-1:= >=app-arch/xz-utils-5:= >=dev-libs/glib-2.24:2 >=media-libs/libsamplerate-0.1:= >=media-libs/libsndfile-1.0:= sys-libs/zlib:= introspection? ( >=dev-libs/gobject-introspection-1.30 ) dev-util/desktop-file-utils virtual/pkgconfig doc? ( dev-util/gtk-doc ) sys-devel/make >=dev-util/cmake-2.8.5 +DEPEND=>=app-arch/bzip2-1:= >=app-arch/xz-utils-5:= >=dev-libs/glib-2.28:2 >=media-libs/libsamplerate-0.1:= >=media-libs/libsndfile-1.0:= sys-libs/zlib:= introspection? ( >=dev-libs/gobject-introspection-1.30 ) dev-util/desktop-file-utils virtual/pkgconfig doc? ( dev-util/gtk-doc ) sys-devel/make >=dev-util/cmake-2.8.5 DESCRIPTION=CD and DVD image access library -EAPI=5 +EAPI=6 HOMEPAGE=http://cdemu.org IUSE=doc +introspection -KEYWORDS=amd64 ~hppa x86 +KEYWORDS=~amd64 ~hppa ~x86 LICENSE=GPL-2+ -RDEPEND=>=app-arch/bzip2-1:= >=app-arch/xz-utils-5:= >=dev-libs/glib-2.24:2 >=media-libs/libsamplerate-0.1:= >=media-libs/libsndfile-1.0:= sys-libs/zlib:= introspection? ( >=dev-libs/gobject-introspection-1.30 ) -SLOT=0/9 -SRC_URI=mirror://sourceforge/cdemu/libmirage-2.1.1.tar.bz2 +RDEPEND=>=app-arch/bzip2-1:= >=app-arch/xz-utils-5:= >=dev-libs/glib-2.28:2 >=media-libs/libsamplerate-0.1:= >=media-libs/libsndfile-1.0:= sys-libs/zlib:= introspection? ( >=dev-libs/gobject-introspection-1.30 ) +SLOT=0/10 +SRC_URI=mirror://sourceforge/cdemu/libmirage-3.0.4.tar.bz2 _eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ff6e497729030f36d0d4f076d663eb5d +_md5_=239bdabda311332566be398cc34c3c9b diff --git a/metadata/md5-cache/dev-libs/libxslt-1.1.28-r5 b/metadata/md5-cache/dev-libs/libxslt-1.1.28-r5 index 070820a9473d..f0beef31b93a 100644 --- a/metadata/md5-cache/dev-libs/libxslt-1.1.28-r5 +++ b/metadata/md5-cache/dev-libs/libxslt-1.1.28-r5 @@ -4,11 +4,11 @@ DESCRIPTION=XSLT libraries and tools EAPI=5 HOMEPAGE=http://www.xmlsoft.org/ IUSE=crypt debug examples python static-libs python_targets_python2_7 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 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=>=dev-libs/libxml2-2.9.1-r5: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(-)?] crypt? ( >=dev-libs/libgcrypt-1.5.3: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(-)?] ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-libs/libxml2:2[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r20 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) REQUIRED_USE=python? ( || ( python_targets_python2_7 ) ) SLOT=0 SRC_URI=ftp://xmlsoft.org/libxslt/libxslt-1.1.28.tar.gz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=ce49d1fd349eb5702a78a8206b60986d +_md5_=41ac03c96d2f46147c5ef270187f710e diff --git a/metadata/md5-cache/dev-libs/mpc-1.0.2-r1 b/metadata/md5-cache/dev-libs/mpc-1.0.2-r1 index 075e7dd444f9..1b3fca80be55 100644 --- a/metadata/md5-cache/dev-libs/mpc-1.0.2-r1 +++ b/metadata/md5-cache/dev-libs/mpc-1.0.2-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A library for multiprecision complex arithmetic with exact rounding EAPI=4 HOMEPAGE=http://mpc.multiprecision.org/ IUSE=static-libs 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 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/gmp-4.3.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(-)?,static-libs?] >=dev-libs/mpfr-2.4.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(-)?,static-libs?] SLOT=0 SRC_URI=http://www.multiprecision.org/mpc/download/mpc-1.0.2.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=3e926abf0d5dbb78cc48dfe9a85b5aae +_md5_=dc55c8489e7732d31cc6e60344a0251c diff --git a/metadata/md5-cache/dev-libs/nspr-4.12 b/metadata/md5-cache/dev-libs/nspr-4.12 new file mode 100644 index 000000000000..85c12c5c98e3 --- /dev/null +++ b/metadata/md5-cache/dev-libs/nspr-4.12 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=!=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Netscape Portable Runtime +EAPI=5 +HOMEPAGE=http://www.mozilla.org/projects/nspr/ +IUSE=debug 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 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 ) +RDEPEND=abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r12 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) +SLOT=0 +SRC_URI=https://archive.mozilla.org/pub/nspr/releases/v4.12/src/nspr-4.12.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=77c2b684f01b7c4ccea4888ff2672682 diff --git a/metadata/md5-cache/dev-libs/nss-3.22.2 b/metadata/md5-cache/dev-libs/nss-3.22.2 new file mode 100644 index 000000000000..fe2bf9457fbb --- /dev/null +++ b/metadata/md5-cache/dev-libs/nss-3.22.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=>=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(-)?] >=dev-libs/nspr-4.12[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(-)?] >=dev-db/sqlite-3.8.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(-)?] >=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(-)?] +DESCRIPTION=Mozilla's Network Security Services library that implements PKI support +EAPI=5 +HOMEPAGE=http://www.mozilla.org/projects/security/pki/nss/ +IUSE=+cacert +nss-pem utils 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 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 ) +RDEPEND=>=dev-libs/nspr-4.12[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(-)?] >=dev-db/sqlite-3.8.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(-)?] >=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-20140508-r12 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) +RESTRICT=test +SLOT=0 +SRC_URI=https://archive.mozilla.org/pub/security/nss/releases/NSS_3_22_2_RTM/src/nss-3.22.2.tar.gz cacert? ( https://dev.gentoo.org/~anarchy/patches/nss-3.14.1-add_spi+cacerts_ca_certs.patch ) nss-pem? ( https://dev.gentoo.org/~anarchy/dist/nss-pem-20140125.tar.bz2 ) +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=acbd9bb24e33176af3172d93911b55ef diff --git a/metadata/md5-cache/dev-lisp/ecls-16.1.2 b/metadata/md5-cache/dev-lisp/ecls-16.1.2 new file mode 100644 index 000000000000..fe81037e778f --- /dev/null +++ b/metadata/md5-cache/dev-lisp/ecls-16.1.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup +DEPEND=dev-libs/gmp:0 virtual/libffi libatomic? ( dev-libs/libatomic_ops ) >=dev-libs/boehm-gc-7.1[threads?] >=dev-lisp/asdf-2.33-r3:= app-text/texi2html emacs? ( virtual/emacs >=app-eselect/eselect-emacs-1.12 ) +DESCRIPTION=ECL is an embeddable Common Lisp implementation +EAPI=5 +HOMEPAGE=https://common-lisp.net/project/ecl/ +IUSE=debug emacs gengc precisegc cpu_flags_x86_sse +threads +unicode +libatomic X +KEYWORDS=~amd64 ~ppc ~sparc ~x86 +LICENSE=BSD LGPL-2 +RDEPEND=dev-libs/gmp:0 virtual/libffi libatomic? ( dev-libs/libatomic_ops ) >=dev-libs/boehm-gc-7.1[threads?] >=dev-lisp/asdf-2.33-r3:= +RESTRICT=test +SLOT=0/16.1.2 +SRC_URI=https://common-lisp.net/project/ecl/files/release/16.1.2/ecl-16.1.2.tgz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=d16d7a6b50279fd4922ee320d5ab55b7 diff --git a/metadata/md5-cache/dev-perl/Any-Moose-0.260.0-r1 b/metadata/md5-cache/dev-perl/Any-Moose-0.260.0-r1 new file mode 100644 index 000000000000..f40a777b43d5 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Any-Moose-0.260.0-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-perl/Moose virtual/perl-version >=virtual/perl-ExtUtils-MakeMaker-6.31 test? ( dev-perl/Moose dev-perl/MooseX-Types ) dev-lang/perl:= +DESCRIPTION=Use Moose or Mouse modules (DEPRECATED) +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/Any-Moose/ +IUSE=test +KEYWORDS=~amd64 ~hppa ~ppc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-perl/Moose virtual/perl-version dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/Any-Moose-0.26.tar.gz +_eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c +_md5_=9a66f96cfac824bb51f76d03fd0c2e7a diff --git a/metadata/md5-cache/dev-perl/Archive-Zip-1.560.0 b/metadata/md5-cache/dev-perl/Archive-Zip-1.560.0 index b18e07de3b52..83f26f82733f 100644 --- a/metadata/md5-cache/dev-perl/Archive-Zip-1.560.0 +++ b/metadata/md5-cache/dev-perl/Archive-Zip-1.560.0 @@ -4,10 +4,10 @@ DESCRIPTION=A wrapper that lets you read Zip archive members as if they were fil EAPI=6 HOMEPAGE=http://search.cpan.org/dist/Archive-Zip/ IUSE=test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86 +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=>=virtual/perl-Compress-Raw-Zlib-2.17.0 virtual/perl-File-Path >=virtual/perl-File-Spec-0.800.0 virtual/perl-File-Temp virtual/perl-IO dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/P/PH/PHRED/Archive-Zip-1.56.tar.gz _eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c -_md5_=447e6d22357fbe28f65940f925656b44 +_md5_=50c0d5dfdf4e4118d435db88deb88538 diff --git a/metadata/md5-cache/dev-perl/Crypt-Random-Source-0.110.0 b/metadata/md5-cache/dev-perl/Crypt-Random-Source-0.110.0 new file mode 100644 index 000000000000..13f3ceda5615 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Crypt-Random-Source-0.110.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-perl/Capture-Tiny-0.80.0 virtual/perl-Carp virtual/perl-File-Spec >=virtual/perl-IO-1.140.0 dev-perl/Module-Find dev-perl/Module-Runtime dev-perl/Moo dev-perl/Sub-Exporter dev-perl/Type-Tiny >=dev-perl/namespace-clean-0.110.0 >=dev-perl/Module-Build-Tiny-0.34.0 test? ( virtual/perl-ExtUtils-MakeMaker dev-perl/Test-Exception >=virtual/perl-Test-Simple-0.880.0 || ( >=virtual/perl-Test-Simple-1.1.10 ( =dev-perl/Capture-Tiny-0.80.0 virtual/perl-Carp virtual/perl-File-Spec >=virtual/perl-IO-1.140.0 dev-perl/Module-Find dev-perl/Module-Runtime dev-perl/Moo dev-perl/Sub-Exporter dev-perl/Type-Tiny >=dev-perl/namespace-clean-0.110.0 dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/Crypt-Random-Source-0.11.tar.gz +_eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c +_md5_=9fdbc9cc17046f405d15086b867e45be diff --git a/metadata/md5-cache/dev-perl/GnuPG-Interface-0.520.0-r1 b/metadata/md5-cache/dev-perl/GnuPG-Interface-0.520.0-r1 index d45640ac9d5a..b5b78cce19cd 100644 --- a/metadata/md5-cache/dev-perl/GnuPG-Interface-0.520.0-r1 +++ b/metadata/md5-cache/dev-perl/GnuPG-Interface-0.520.0-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=app-crypt/gnupg-1.2.1-r1 virtual/perl-autodie >=virtual/perl-Math-BigInt-1.780.0 >=dev-perl/Moo-0.91.11 >=dev-perl/MooX-HandlesVia-0.1.4 >=dev-perl/MooX-late-0.14.0 >=virtual/perl-ExtUtils-MakeMaker-6.360.0 test? ( dev-perl/Any-Moose ) dev-lang/perl:=[-build(-)] +DEPEND=>=app-crypt/gnupg-1.2.1-r1 virtual/perl-autodie >=virtual/perl-Math-BigInt-1.780.0 >=dev-perl/Moo-0.91.11 >=dev-perl/MooX-HandlesVia-0.1.4 >=dev-perl/MooX-late-0.14.0 >=virtual/perl-ExtUtils-MakeMaker-6.360.0 dev-lang/perl:=[-build(-)] DESCRIPTION=Perl module interface to interacting with GnuPG EAPI=5 HOMEPAGE=http://search.cpan.org/dist/GnuPG-Interface/ @@ -10,4 +10,4 @@ RDEPEND=>=app-crypt/gnupg-1.2.1-r1 virtual/perl-autodie >=virtual/perl-Math-BigI SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AL/ALEXMV/GnuPG-Interface-0.52.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=326623e063f75a4e8f39a28af3b3fb26 +_md5_=6d01635786dbe2dc451600c098187258 diff --git a/metadata/md5-cache/dev-perl/HTTP-Headers-Fast-0.190.0 b/metadata/md5-cache/dev-perl/HTTP-Headers-Fast-0.190.0 deleted file mode 100644 index 1a9c819d895f..000000000000 --- a/metadata/md5-cache/dev-perl/HTTP-Headers-Fast-0.190.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/HTTP-Date >=dev-perl/Module-Build-0.380.0 test? ( >=virtual/perl-Test-Simple-0.980.0 dev-perl/Test-Requires ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Faster implementation of HTTP::Headers -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTTP-Headers-Fast/ -IUSE=test -KEYWORDS=~amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/HTTP-Date dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/T/TO/TOKUHIROM/HTTP-Headers-Fast-0.19.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=c7f6d3717f7da56a2ac59153b3c08df5 diff --git a/metadata/md5-cache/dev-perl/HTTP-Message-6.40.0-r1 b/metadata/md5-cache/dev-perl/HTTP-Message-6.40.0-r1 deleted file mode 100644 index ee26a0fe7c5b..000000000000 --- a/metadata/md5-cache/dev-perl/HTTP-Message-6.40.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=!=dev-perl/URI-1.10 >=virtual/perl-Encode-2.210.0 >=dev-perl/HTTP-Date-6.0.0 dev-perl/IO-HTML >=dev-perl/Encode-Locale-1.0.0 >=dev-perl/LWP-MediaTypes-6.0.0 >=virtual/perl-IO-Compress-2.021 >=virtual/perl-MIME-Base64-2.1 dev-lang/perl:=[-build(-)] -DESCRIPTION=Base class for Request/Response -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTTP-Message/ -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~s390 ~sh ~sparc ~x86 ~x86-fbsd -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=!=dev-perl/URI-1.10 >=virtual/perl-Encode-2.210.0 >=dev-perl/HTTP-Date-6.0.0 dev-perl/IO-HTML >=dev-perl/Encode-Locale-1.0.0 >=dev-perl/LWP-MediaTypes-6.0.0 >=virtual/perl-IO-Compress-2.021 >=virtual/perl-MIME-Base64-2.1 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/G/GA/GAAS/HTTP-Message-6.04.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=e7c4d43a905431b355e0572bf7d741c5 diff --git a/metadata/md5-cache/dev-perl/HTTP-Message-6.60.0-r1 b/metadata/md5-cache/dev-perl/HTTP-Message-6.60.0-r1 deleted file mode 100644 index 33e8f294168e..000000000000 --- a/metadata/md5-cache/dev-perl/HTTP-Message-6.60.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=!=dev-perl/URI-1.10 >=virtual/perl-Encode-2.210.0 >=dev-perl/HTTP-Date-6.0.0 dev-perl/IO-HTML >=dev-perl/Encode-Locale-1.0.0 >=dev-perl/LWP-MediaTypes-6.0.0 >=virtual/perl-IO-Compress-2.021 >=virtual/perl-MIME-Base64-2.1 dev-lang/perl:=[-build(-)] -DESCRIPTION=Base class for Request/Response -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTTP-Message/ -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=!=dev-perl/URI-1.10 >=virtual/perl-Encode-2.210.0 >=dev-perl/HTTP-Date-6.0.0 dev-perl/IO-HTML >=dev-perl/Encode-Locale-1.0.0 >=dev-perl/LWP-MediaTypes-6.0.0 >=virtual/perl-IO-Compress-2.021 >=virtual/perl-MIME-Base64-2.1 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/G/GA/GAAS/HTTP-Message-6.06.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=467498a707aa089063ce36480f5f32e8 diff --git a/metadata/md5-cache/dev-perl/HTTP-Server-Simple-0.500.0 b/metadata/md5-cache/dev-perl/HTTP-Server-Simple-0.500.0 deleted file mode 100644 index ec7dcef7c44b..000000000000 --- a/metadata/md5-cache/dev-perl/HTTP-Server-Simple-0.500.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/CGI >=virtual/perl-Socket-1.940.0 virtual/perl-ExtUtils-MakeMaker test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Lightweight HTTP Server -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTTP-Server-Simple/ -IUSE=test -KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/CGI >=virtual/perl-Socket-1.940.0 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/F/FA/FALCONE/HTTP-Server-Simple-0.50.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=92cf92f2981ec8959c1376176d37b188 diff --git a/metadata/md5-cache/dev-perl/IMAP-BodyStructure-1.10.0 b/metadata/md5-cache/dev-perl/IMAP-BodyStructure-1.10.0 deleted file mode 100644 index d1c833a2c7f7..000000000000 --- a/metadata/md5-cache/dev-perl/IMAP-BodyStructure-1.10.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/Test-NoWarnings dev-lang/perl dev-perl/Module-Build dev-lang/perl:=[-build(-)] -DESCRIPTION=IMAP4-compatible BODYSTRUCTURE and ENVELOPE parser -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IMAP-BodyStructure/ -KEYWORDS=~amd64 -LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/K/KA/KAPPA/IMAP-BodyStructure-1.01.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=8dfb5e6b8c789651bb3faacb03d3f2b9 diff --git a/metadata/md5-cache/dev-perl/Image-Info-1.340.0 b/metadata/md5-cache/dev-perl/Image-Info-1.340.0 deleted file mode 100644 index 357ce869accb..000000000000 --- a/metadata/md5-cache/dev-perl/Image-Info-1.340.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/IO-String-1.01 dev-perl/XML-LibXML dev-perl/XML-Simple dev-lang/perl:=[-build(-)] -DESCRIPTION=The Perl Image-Info Module -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Image-Info/ -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=dev-perl/IO-String-1.01 dev-perl/XML-LibXML dev-perl/XML-Simple dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/S/SR/SREZIC/Image-Info-1.34.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=64034299d3ce5eb2d34fd9246746f9a4 diff --git a/metadata/md5-cache/dev-perl/Image-Scale-0.80.0-r1 b/metadata/md5-cache/dev-perl/Image-Scale-0.80.0-r1 deleted file mode 100644 index 062f72f18ab6..000000000000 --- a/metadata/md5-cache/dev-perl/Image-Scale-0.80.0-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=png? ( media-libs/libpng:0 ) jpeg? ( virtual/jpeg ) gif? ( media-libs/giflib ) test? ( dev-perl/Test-NoWarnings ) virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=[-build(-)] -DESCRIPTION=Fast, high-quality fixed-point image resizing -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Image-Scale/ -IUSE=+gif jpeg +png test -KEYWORDS=~amd64 ~x86 -LICENSE=|| ( GPL-2 GPL-3 ) -RDEPEND=png? ( media-libs/libpng:0 ) jpeg? ( virtual/jpeg ) gif? ( media-libs/giflib ) dev-lang/perl:=[-build(-)] -REQUIRED_USE=|| ( jpeg png ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/A/AG/AGRUNDMA/Image-Scale-0.08.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=69619ad16647052a92581dbc8defc101 diff --git a/metadata/md5-cache/dev-perl/Import-Into-1.2.4 b/metadata/md5-cache/dev-perl/Import-Into-1.2.4 deleted file mode 100644 index f925e40f5956..000000000000 --- a/metadata/md5-cache/dev-perl/Import-Into-1.2.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/Module-Runtime virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Exporter virtual/perl-Test-Simple ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Import packages into other packages -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Import-Into/ -IUSE=test -KEYWORDS=~amd64 ~ppc ~x86 ~ppc-aix ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/Module-Runtime dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/Import-Into-1.002004.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=1d32fa3afbe1d1919f5aae75b9b899b6 diff --git a/metadata/md5-cache/dev-perl/Inline-C-0.740.0 b/metadata/md5-cache/dev-perl/Inline-C-0.740.0 deleted file mode 100644 index e6ec3cd68984..000000000000 --- a/metadata/md5-cache/dev-perl/Inline-C-0.740.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=virtual/perl-ExtUtils-MakeMaker-7 >=virtual/perl-File-Spec-0.800.0 >=dev-perl/Inline-0.790.0 >=dev-perl/Parse-RecDescent-1.967.9 >=dev-perl/Pegex-0.580.0 virtual/perl-ExtUtils-MakeMaker >=dev-perl/File-ShareDir-Install-0.60.0 test? ( dev-perl/File-Copy-Recursive dev-perl/IO-All >=virtual/perl-Test-Simple-0.880.0 >=dev-perl/Test-Warn-0.230.0 dev-perl/YAML-LibYAML virtual/perl-autodie >=virtual/perl-version-0.770.0 ) dev-lang/perl:=[-build(-)] -DESCRIPTION=C Language Support for Inline -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Inline-C/ -IUSE=test -KEYWORDS=~amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=virtual/perl-ExtUtils-MakeMaker-7 >=virtual/perl-File-Spec-0.800.0 >=dev-perl/Inline-0.790.0 >=dev-perl/Parse-RecDescent-1.967.9 >=dev-perl/Pegex-0.580.0 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/I/IN/INGY/Inline-C-0.74.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=282da648e546f07965c72b0cb85338e1 diff --git a/metadata/md5-cache/dev-perl/locale-maketext-fuzzy-0.110.0-r1 b/metadata/md5-cache/dev-perl/Locale-Maketext-Fuzzy-0.110.0-r1 similarity index 94% rename from metadata/md5-cache/dev-perl/locale-maketext-fuzzy-0.110.0-r1 rename to metadata/md5-cache/dev-perl/Locale-Maketext-Fuzzy-0.110.0-r1 index b6300d256865..047c71b24068 100644 --- a/metadata/md5-cache/dev-perl/locale-maketext-fuzzy-0.110.0-r1 +++ b/metadata/md5-cache/dev-perl/Locale-Maketext-Fuzzy-0.110.0-r1 @@ -9,4 +9,4 @@ RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AU/AUDREYT/Locale-Maketext-Fuzzy-0.11.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=8fc8c95079841a406f959ac61f801deb +_md5_=307933355dc6360f1ae053c391425d6c diff --git a/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.690.0-r1 b/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.690.0-r1 index 88e96d9a71e4..0defb4c651b8 100644 --- a/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.690.0-r1 +++ b/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.690.0-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install prepare test unpack DEPEND=test? ( dev-perl/Test-Pod ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Current list of available top level domain names including new ICANN additions and ccTLDs +DESCRIPTION=Current top level domain names including new ICANN additions and ccTLDs EAPI=5 HOMEPAGE=http://search.cpan.org/dist/Net-Domain-TLD/ IUSE=test @@ -10,4 +10,4 @@ RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AL/ALEXP/Net-Domain-TLD-1.69.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=d6aabfc605706477a8b055aba29666b8 +_md5_=ffe34346729b22daef43267f6e0f31c5 diff --git a/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.730.0 b/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.730.0 index d0aa3c07b12e..e3717e5f0040 100644 --- a/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.730.0 +++ b/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.730.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install prepare test unpack DEPEND=virtual/perl-Carp virtual/perl-Storable virtual/perl-ExtUtils-MakeMaker test? ( dev-perl/Test-Pod ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Current list of available top level domain names including new ICANN additions and ccTLDs +DESCRIPTION=Current top level domain names including new ICANN additions and ccTLDs EAPI=5 HOMEPAGE=http://search.cpan.org/dist/Net-Domain-TLD/ IUSE=test @@ -10,4 +10,4 @@ RDEPEND=virtual/perl-Carp virtual/perl-Storable dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AL/ALEXP/Net-Domain-TLD-1.73.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=f6a91147ac37e26abbfed366909308ce +_md5_=45415aff2f4b6f13401401f041538c92 diff --git a/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.740.0 b/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.740.0 new file mode 100644 index 000000000000..c106ebd9079c --- /dev/null +++ b/metadata/md5-cache/dev-perl/Net-Domain-TLD-1.740.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/perl-Carp virtual/perl-Storable virtual/perl-ExtUtils-MakeMaker dev-lang/perl:= +DESCRIPTION=Current top level domain names including new ICANN additions and ccTLDs +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/Net-Domain-TLD/ +KEYWORDS=~amd64 ~hppa ~mips ~ppc ~ppc64 ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-Carp virtual/perl-Storable dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/A/AL/ALEXP/Net-Domain-TLD-1.74.tar.gz +_eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c +_md5_=5d430523ae11b1f36dc089ff1ab74666 diff --git a/metadata/md5-cache/dev-perl/Net-FreeDB-0.100.0 b/metadata/md5-cache/dev-perl/Net-FreeDB-0.100.0 new file mode 100644 index 000000000000..4db4797daaae --- /dev/null +++ b/metadata/md5-cache/dev-perl/Net-FreeDB-0.100.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-perl/CDDB-File-1.10.0 >=virtual/perl-File-Temp-0.50.0 virtual/perl-IO dev-perl/Moo >=virtual/perl-libnet-2.120.0 virtual/perl-ExtUtils-MakeMaker test? ( dev-perl/Test-Most ) dev-lang/perl:= +DESCRIPTION=OOP interface to the FreeDB database +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/Net-FreeDB/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=>=dev-perl/CDDB-File-1.10.0 >=virtual/perl-File-Temp-0.50.0 virtual/perl-IO dev-perl/Moo >=virtual/perl-libnet-2.120.0 dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/D/DS/DSHULTZ/Net-FreeDB-0.10.tar.gz +_eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c +_md5_=9bc794eaed03395ed91645bd3c9c9940 diff --git a/metadata/md5-cache/dev-perl/Test-MockModule-0.50.0-r2 b/metadata/md5-cache/dev-perl/Test-MockModule-0.50.0-r2 index f3754ca5135f..b1c40a237feb 100644 --- a/metadata/md5-cache/dev-perl/Test-MockModule-0.50.0-r2 +++ b/metadata/md5-cache/dev-perl/Test-MockModule-0.50.0-r2 @@ -4,10 +4,10 @@ DESCRIPTION=Override subroutines in a module for unit testing EAPI=5 HOMEPAGE=http://search.cpan.org/dist/Test-MockModule/ IUSE=test -KEYWORDS=amd64 ~arm ~hppa ppc x86 +KEYWORDS=amd64 ~arm ~hppa ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-perl/CGI virtual/perl-Scalar-List-Utils dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/S/SI/SIMONFLK/Test-MockModule-0.05.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=98f2417360e90d52097a13a28703c3fa +_md5_=85bcb70640cf5d6a53f3fcba9760b738 diff --git a/metadata/md5-cache/dev-perl/indirect-0.350.0 b/metadata/md5-cache/dev-perl/indirect-0.350.0 deleted file mode 100644 index ec9c23d3ac9f..000000000000 --- a/metadata/md5-cache/dev-perl/indirect-0.350.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Lexically warn about using the indirect object syntax -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/indirect/ -IUSE=test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/V/VP/VPIT/indirect-0.35.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 -_md5_=6f06f6ff95f10c9bb6b60f3bebdefd11 diff --git a/metadata/md5-cache/dev-python/irc-14.1 b/metadata/md5-cache/dev-python/irc-14.1 new file mode 100644 index 000000000000..cf4b1edc4505 --- /dev/null +++ b/metadata/md5-cache/dev-python/irc-14.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/setuptools_scm-1.9[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-collections[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-text[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-itertools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-logging[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jaraco-functools-1.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytz[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pytest-2.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytest-runner[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/backports-unittest-mock[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=IRC client framework written in Python +EAPI=6 +HOMEPAGE=https://github.com/jaraco/irc +IUSE=doc examples test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-collections[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-text[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-itertools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/jaraco-logging[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jaraco-functools-1.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytz[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/i/irc/irc-14.1.tar.gz +_eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=0ad379ae54d5860193ec4fac258a1884 diff --git a/metadata/md5-cache/dev-python/pyxattr-0.5.5 b/metadata/md5-cache/dev-python/pyxattr-0.5.5 index 1d9b05f51dbe..97e058ef7235 100644 --- a/metadata/md5-cache/dev-python/pyxattr-0.5.5 +++ b/metadata/md5-cache/dev-python/pyxattr-0.5.5 @@ -4,11 +4,11 @@ DESCRIPTION=Python interface to xattr EAPI=5 HOMEPAGE=http://pyxattr.k1024.org/ IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux LICENSE=LGPL-2.1 RDEPEND=sys-apps/attr python_targets_pypy? ( virtual/pypy:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) SLOT=0 SRC_URI=mirror://pypi/p/pyxattr/pyxattr-0.5.5.tar.gz http://pyxattr.k1024.org/downloads/pyxattr-0.5.5.tar.gz _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=8ed9eb752665c383c3db4e356f257145 +_md5_=15b44820bb997fd61520b0523c71dabf diff --git a/metadata/md5-cache/dev-ruby/hipchat-1.4.0 b/metadata/md5-cache/dev-ruby/hipchat-1.4.0 deleted file mode 100644 index 50f2c9d2f21e..000000000000 --- a/metadata/md5-cache/dev-ruby/hipchat-1.4.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( dev-ruby/httparty[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/httparty[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/httparty[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rr[ruby_targets_ruby19] dev-ruby/rake[ruby_targets_ruby19] dev-ruby/webmock[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rr[ruby_targets_ruby20] dev-ruby/rake[ruby_targets_ruby20] dev-ruby/webmock[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rr[ruby_targets_ruby21] dev-ruby/rake[ruby_targets_ruby21] dev-ruby/webmock[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) -DESCRIPTION=Ruby library to interact with HipChat -EAPI=5 -HOMEPAGE=https://github.com/hipchat/hipchat-rb -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-ruby/httparty[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/httparty[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/httparty[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) -SLOT=0 -SRC_URI=https://github.com/hipchat/hipchat-rb/archive/v1.4.0.tar.gz -> hipchat-1.4.0.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=6b4926a2ee84bd85719d13081e8eecba diff --git a/metadata/md5-cache/dev-ruby/hipchat-1.5.1 b/metadata/md5-cache/dev-ruby/hipchat-1.5.1 deleted file mode 100644 index 0888d532897c..000000000000 --- a/metadata/md5-cache/dev-ruby/hipchat-1.5.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( dev-ruby/httparty[ruby_targets_ruby19] dev-ruby/mimemagic[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/httparty[ruby_targets_ruby20] dev-ruby/mimemagic[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/httparty[ruby_targets_ruby21] dev-ruby/mimemagic[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rr[ruby_targets_ruby19] dev-ruby/rake[ruby_targets_ruby19] dev-ruby/webmock[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rr[ruby_targets_ruby20] dev-ruby/rake[ruby_targets_ruby20] dev-ruby/webmock[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rr[ruby_targets_ruby21] dev-ruby/rake[ruby_targets_ruby21] dev-ruby/webmock[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) -DESCRIPTION=Ruby library to interact with HipChat -EAPI=5 -HOMEPAGE=https://github.com/hipchat/hipchat-rb -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-ruby/httparty[ruby_targets_ruby19] dev-ruby/mimemagic[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/httparty[ruby_targets_ruby20] dev-ruby/mimemagic[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/httparty[ruby_targets_ruby21] dev-ruby/mimemagic[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) -SLOT=0 -SRC_URI=https://github.com/hipchat/hipchat-rb/archive/v1.5.1.tar.gz -> hipchat-1.5.1.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=43a7194c462a7170cde4de5a124d4983 diff --git a/metadata/md5-cache/dev-ruby/spring-1.6.0 b/metadata/md5-cache/dev-ruby/spring-1.6.0 deleted file mode 100644 index aaca72b3988f..000000000000 --- a/metadata/md5-cache/dev-ruby/spring-1.6.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/bundler[ruby_targets_ruby20] dev-ruby/activesupport[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/bundler[ruby_targets_ruby21] dev-ruby/activesupport[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) -DESCRIPTION=Rails application preloader -EAPI=5 -HOMEPAGE=https://github.com/rails/spring -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby21] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ) -SLOT=1.1 -SRC_URI=https://github.com/rails/spring/archive/v1.6.0.tar.gz -> spring-1.6.0.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=905ac6ce1247539b7e3d0ad8dd82c4a0 diff --git a/metadata/md5-cache/dev-ruby/spring-1.6.1 b/metadata/md5-cache/dev-ruby/spring-1.6.1 deleted file mode 100644 index d0d712fdaa63..000000000000 --- a/metadata/md5-cache/dev-ruby/spring-1.6.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/bundler[ruby_targets_ruby20] dev-ruby/activesupport[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/bundler[ruby_targets_ruby21] dev-ruby/activesupport[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) -DESCRIPTION=Rails application preloader -EAPI=5 -HOMEPAGE=https://github.com/rails/spring -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 test test -KEYWORDS=~amd64 ~arm ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=MIT -RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby21] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ) -SLOT=1.1 -SRC_URI=https://github.com/rails/spring/archive/v1.6.1.tar.gz -> spring-1.6.1.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ae9431ad3615c5d694c0bb6f412f8aa6 diff --git a/metadata/md5-cache/dev-ruby/spring-1.6.4 b/metadata/md5-cache/dev-ruby/spring-1.6.4 new file mode 100644 index 000000000000..0646031747a0 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/spring-1.6.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/bundler[ruby_targets_ruby20] dev-ruby/activesupport[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/bundler[ruby_targets_ruby21] dev-ruby/activesupport[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/bundler[ruby_targets_ruby22] dev-ruby/activesupport[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) +DESCRIPTION=Rails application preloader +EAPI=5 +HOMEPAGE=https://github.com/rails/spring +IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test test +KEYWORDS=~amd64 ~arm ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rubygems-2.1.0[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) +REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) +SLOT=1.1 +SRC_URI=https://github.com/rails/spring/archive/v1.6.4.tar.gz -> spring-1.6.4.tar.gz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=55e22f7e4fb61d8f4262f07a776c27be diff --git a/metadata/md5-cache/dev-ruby/travis-1.8.2 b/metadata/md5-cache/dev-ruby/travis-1.8.2-r1 similarity index 87% rename from metadata/md5-cache/dev-ruby/travis-1.8.2 rename to metadata/md5-cache/dev-ruby/travis-1.8.2-r1 index c72e9e992993..9445f909ba3f 100644 --- a/metadata/md5-cache/dev-ruby/travis-1.8.2 +++ b/metadata/md5-cache/dev-ruby/travis-1.8.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ) RESTRICT=test SLOT=0 SRC_URI=mirror://rubygems/travis-1.8.2.gem -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=1801813f27de8aafd4982483674a1aab +_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 eutils 9d81603248f2ba3ec59124320d123e5e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=b1857a408726cbe9bc84f0877de2ad4b diff --git a/metadata/md5-cache/dev-util/complexity-1.2 b/metadata/md5-cache/dev-util/complexity-1.5 similarity index 85% rename from metadata/md5-cache/dev-util/complexity-1.2 rename to metadata/md5-cache/dev-util/complexity-1.5 index 74c92ee8f025..ec063991633c 100644 --- a/metadata/md5-cache/dev-util/complexity-1.2 +++ b/metadata/md5-cache/dev-util/complexity-1.5 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~hppa ~x86 LICENSE=GPL-3 RDEPEND=>=sys-devel/autogen-5.11.7 SLOT=0 -SRC_URI=mirror://gnu/complexity/complexity-1.2.tar.xz +SRC_URI=mirror://gnu/complexity/complexity-1.5.tar.xz _md5_=ad6a09d78b7f63eb1fbb6d69d104ce85 diff --git a/metadata/md5-cache/dev-util/dialog-1.2.20150528 b/metadata/md5-cache/dev-util/dialog-1.2.20150528 deleted file mode 100644 index 32176d6b1fda..000000000000 --- a/metadata/md5-cache/dev-util/dialog-1.2.20150528 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=>=sys-libs/ncurses-5.2-r5[unicode?] nls? ( sys-devel/gettext ) !minimal? ( sys-devel/libtool ) !<=sys-freebsd/freebsd-contrib-8.9999 -DESCRIPTION=tool to display dialog boxes from a shell -EAPI=5 -HOMEPAGE=http://invisible-island.net/dialog/dialog.html -IUSE=examples minimal nls static-libs unicode -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=>=sys-libs/ncurses-5.2-r5[unicode?] -SLOT=0 -SRC_URI=ftp://invisible-island.net/dialog/dialog-1.2-20150528.tgz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=9984a78d1bcbd7b6ffe7155aa5073d48 diff --git a/metadata/md5-cache/dev-util/dialog-1.3.20160209 b/metadata/md5-cache/dev-util/dialog-1.3.20160209 new file mode 100644 index 000000000000..8d4d9d21e6d8 --- /dev/null +++ b/metadata/md5-cache/dev-util/dialog-1.3.20160209 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=>=sys-libs/ncurses-5.2-r5:=[unicode?] nls? ( sys-devel/gettext ) !minimal? ( sys-devel/libtool ) !<=sys-freebsd/freebsd-contrib-8.9999 +DESCRIPTION=tool to display dialog boxes from a shell +EAPI=5 +HOMEPAGE=http://invisible-island.net/dialog/dialog.html +IUSE=examples minimal nls static-libs unicode +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +LICENSE=GPL-2 +RDEPEND=>=sys-libs/ncurses-5.2-r5:=[unicode?] +SLOT=0 +SRC_URI=ftp://invisible-island.net/dialog/dialog-1.3-20160209.tgz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=f2c277337d2622d2eb3448dc5a211bd7 diff --git a/metadata/md5-cache/dev-util/gtk-doc-am-1.24 b/metadata/md5-cache/dev-util/gtk-doc-am-1.24 index 6f42f94144a3..63a76c80c95d 100644 --- a/metadata/md5-cache/dev-util/gtk-doc-am-1.24 +++ b/metadata/md5-cache/dev-util/gtk-doc-am-1.24 @@ -3,7 +3,7 @@ DEPEND=>=dev-lang/perl-5.6 !=dev-lang/perl-5.6 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://gnome/sources/gtk-doc/1.24/gtk-doc-1.24.tar.xz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=df0bd37febc9755b5fb30d889b9b3f16 +_md5_=76e10064b25b6e4117c84c1b2c8271f3 diff --git a/metadata/md5-cache/dev-vcs/blogc-git-receiver-0.3 b/metadata/md5-cache/dev-vcs/blogc-git-receiver-0.3.1 similarity index 52% rename from metadata/md5-cache/dev-vcs/blogc-git-receiver-0.3 rename to metadata/md5-cache/dev-vcs/blogc-git-receiver-0.3.1 index bb71178e1c51..bf70d44cf9d4 100644 --- a/metadata/md5-cache/dev-vcs/blogc-git-receiver-0.3 +++ b/metadata/md5-cache/dev-vcs/blogc-git-receiver-0.3.1 @@ -1,10 +1,11 @@ -DEFINED_PHASES=prepare +DEFINED_PHASES=configure prepare +DEPEND=>=dev-libs/squareball-0.1 DESCRIPTION=A simple login shell/git hook to deploy blogc websites -EAPI=5 +EAPI=6 HOMEPAGE=https://github.com/blogc/blogc-git-receiver KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=dev-vcs/git +RDEPEND=>=dev-libs/squareball-0.1 dev-vcs/git SLOT=0 -SRC_URI=https://github.com/blogc/blogc-git-receiver/releases/download/v0.3/blogc-git-receiver-0.3.tar.xz -_md5_=f5fe07c2be6098a0b351ff9900800752 +SRC_URI=https://github.com/blogc/blogc-git-receiver/releases/download/v0.3.1/blogc-git-receiver-0.3.1.tar.xz +_md5_=083a92d5b3cbc855955db44b8abcc9dd diff --git a/metadata/md5-cache/dev-vcs/blogc-git-receiver-9999 b/metadata/md5-cache/dev-vcs/blogc-git-receiver-9999 index f6dfa6c364b8..d0be77a867d6 100644 --- a/metadata/md5-cache/dev-vcs/blogc-git-receiver-9999 +++ b/metadata/md5-cache/dev-vcs/blogc-git-receiver-9999 @@ -1,10 +1,10 @@ -DEFINED_PHASES=prepare unpack -DEPEND=>=dev-vcs/git-1.8.2.1 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure prepare unpack +DEPEND==dev-libs/squareball-9999 >=dev-vcs/git-1.8.2.1 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=A simple login shell/git hook to deploy blogc websites -EAPI=5 +EAPI=6 HOMEPAGE=https://github.com/blogc/blogc-git-receiver LICENSE=BSD -RDEPEND=dev-vcs/git +RDEPEND==dev-libs/squareball-9999 dev-vcs/git SLOT=0 _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=f5fe07c2be6098a0b351ff9900800752 +_md5_=083a92d5b3cbc855955db44b8abcc9dd diff --git a/metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-15.08.3 b/metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-15.08.3-r1 similarity index 95% rename from metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-15.08.3 rename to metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-15.08.3-r1 index 4d5e09bd7213..b7b2ddef3b13 100644 --- a/metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-15.08.3 +++ b/metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-15.08.3-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kscreensaver-4.11:4[aqua=] >=kde-base/libkworkspace-4.11:4[aqua=] media-libs/libart_lgpl x11-libs/libX11 x11-libs/libXt virtual/glu virtual/opengl kexiv2? ( >=kde-apps/libkexiv2-4.14.3:4[aqua=] ) xscreensaver? ( x11-misc/xscreensaver ) eigen? ( dev-cpp/eigen:2 ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] +DEPEND=>=kde-base/kscreensaver-4.11:4[aqua=] >=kde-base/libkworkspace-4.11:4[aqua=] media-libs/libart_lgpl x11-libs/libX11 x11-libs/libXt virtual/glu virtual/opengl kexiv2? ( >=kde-apps/libkexiv2-4.14.3:4[aqua=] ) xscreensaver? ( x11-misc/xscreensaver ) eigen? ( dev-cpp/eigen:3 ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] DESCRIPTION=Extra screensavers for kde EAPI=5 HOMEPAGE=https://www.kde.org/ @@ -10,4 +10,4 @@ RDEPEND=>=kde-base/kscreensaver-4.11:4[aqua=] >=kde-base/libkworkspace-4.11:4[aq SLOT=4/15.08 SRC_URI=mirror://kde/stable/applications/15.08.3/src/kdeartwork-15.08.3.tar.xz _eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e gnome2-utils d19e7813f27c8f982134d657889b13cf kde4-base ada7f1c988b3c32e1c9a8168be2731c3 kde4-functions f6f7b3906630fb197969f914b1ad454a kde4-meta c4caa0d8e7fbcd7a667ff9240ef6e96b multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=fb1e579c2ad8bfee2f3b36b076733868 +_md5_=29138f323295b49b3780a8fed266aac2 diff --git a/metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-4.14.3-r1 b/metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-4.14.3-r1 new file mode 100644 index 000000000000..13ec917621f9 --- /dev/null +++ b/metadata/md5-cache/kde-apps/kdeartwork-kscreensaver-4.14.3-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-base/kscreensaver-4.11:4[aqua=] >=kde-base/libkworkspace-4.11:4[aqua=] media-libs/libart_lgpl x11-libs/libX11 x11-libs/libXt virtual/glu virtual/opengl kexiv2? ( >=kde-apps/libkexiv2-4.14.3:4[aqua=] ) xscreensaver? ( x11-misc/xscreensaver ) eigen? ( dev-cpp/eigen:3 ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] +DESCRIPTION=Extra screensavers for kde +EAPI=5 +HOMEPAGE=https://www.kde.org/ +IUSE=debug +eigen +kexiv2 xscreensaver opengl aqua +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=>=kde-base/kscreensaver-4.11:4[aqua=] >=kde-base/libkworkspace-4.11:4[aqua=] media-libs/libart_lgpl x11-libs/libX11 x11-libs/libXt virtual/glu virtual/opengl kexiv2? ( >=kde-apps/libkexiv2-4.14.3:4[aqua=] ) xscreensaver? ( x11-misc/xscreensaver ) !kde-base/kdeartwork-kscreensaver:4 kde-frameworks/oxygen-icons opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.14.3:4[aqua=] +SLOT=4/4.14 +SRC_URI=mirror://kde/stable/4.14.3/src/kdeartwork-4.14.3.tar.xz +_eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic d270fa247153df66074f795fa42dba3e gnome2-utils d19e7813f27c8f982134d657889b13cf kde4-base ada7f1c988b3c32e1c9a8168be2731c3 kde4-functions f6f7b3906630fb197969f914b1ad454a kde4-meta c4caa0d8e7fbcd7a667ff9240ef6e96b multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=55443b6782cd322f08873f8dd7757c9a diff --git a/metadata/md5-cache/media-gfx/fr0st-1.4-r1 b/metadata/md5-cache/media-gfx/fr0st-1.4-r1 deleted file mode 100644 index 52d2586f8a8b..000000000000 --- a/metadata/md5-cache/media-gfx/fr0st-1.4-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst postrm prepare setup -DEPEND=dev-python/wxpython:2.8 >=media-gfx/flam3-3.0.1 =dev-lang/python-2.7* -DESCRIPTION=A fractal flame editor -EAPI=3 -HOMEPAGE=http://fr0st.wordpress.com/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-python/wxpython:2.8 >=media-gfx/flam3-3.0.1 =dev-lang/python-2.7* -SLOT=0 -SRC_URI=https://launchpad.net/fr0st/trunk/1.4.0/+download/fr0st-1.4-src.tgz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 wxwidgets cf6a488b00cd81e258206bc14b4167d9 -_md5_=e954b569b5615185d75a0638cbccbdc7 diff --git a/metadata/md5-cache/media-gfx/fr0st-1.4-r2 b/metadata/md5-cache/media-gfx/fr0st-1.4-r2 new file mode 100644 index 000000000000..9f07dc17d2cc --- /dev/null +++ b/metadata/md5-cache/media-gfx/fr0st-1.4-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install prepare setup +DEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] dev-python/wxpython:3.0 >=media-gfx/flam3-3.0.1 +DESCRIPTION=A fractal flame editor +EAPI=5 +HOMEPAGE=http://fr0st.wordpress.com/ +IUSE=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=>=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] dev-python/wxpython:3.0 >=media-gfx/flam3-3.0.1 +REQUIRED_USE=python_targets_python2_7 +SLOT=0 +SRC_URI=https://launchpad.net/fr0st/trunk/1.4.0/+download/fr0st-1.4-src.tgz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 wxwidgets cf6a488b00cd81e258206bc14b4167d9 +_md5_=805e21800f42328f9cb29949b4b030cd diff --git a/metadata/md5-cache/media-gfx/graphite2-1.2.1 b/metadata/md5-cache/media-gfx/graphite2-1.2.1 index 4f1f2061e928..9cba759916aa 100644 --- a/metadata/md5-cache/media-gfx/graphite2-1.2.1 +++ b/metadata/md5-cache/media-gfx/graphite2-1.2.1 @@ -4,10 +4,10 @@ DESCRIPTION=Library providing rendering capabilities for complex non-Roman writi EAPI=5 HOMEPAGE=http://graphite.sil.org/ IUSE=perl test -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=~s390 LICENSE=LGPL-2.1 RDEPEND=perl? ( dev-lang/perl:= ) SLOT=0 SRC_URI=mirror://sourceforge/silgraphite/graphite2/graphite2-1.2.1.tgz _eclasses_=base 3fe4f8980633fd7bc69e9887209ba2fe cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=701b29ea013ca0bbbdacee6adbc57b34 +_md5_=266271fe2ab5a5a32151d8d265b908e6 diff --git a/metadata/md5-cache/media-gfx/graphite2-1.2.4 b/metadata/md5-cache/media-gfx/graphite2-1.2.4 deleted file mode 100644 index e01cc9d74eae..000000000000 --- a/metadata/md5-cache/media-gfx/graphite2-1.2.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=perl? ( dev-lang/perl:= ) perl? ( dev-perl/Module-Build ) test? ( dev-libs/glib:2 media-libs/fontconfig media-libs/silgraphite || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=Library providing rendering capabilities for complex non-Roman writing systems -EAPI=5 -HOMEPAGE=http://graphite.sil.org/ -IUSE=perl test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris -LICENSE=LGPL-2.1 -RDEPEND=perl? ( dev-lang/perl:= ) -SLOT=0 -SRC_URI=mirror://sourceforge/silgraphite/graphite2/graphite2-1.2.4.tgz -_eclasses_=base 3fe4f8980633fd7bc69e9887209ba2fe cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f7412eacb07ee8d02ec73e9ac061f000 diff --git a/metadata/md5-cache/media-gfx/graphite2-1.3.5-r1 b/metadata/md5-cache/media-gfx/graphite2-1.3.5-r1 index d4041c2755b7..15ab97125c3b 100644 --- a/metadata/md5-cache/media-gfx/graphite2-1.3.5-r1 +++ b/metadata/md5-cache/media-gfx/graphite2-1.3.5-r1 @@ -10,4 +10,4 @@ RDEPEND=perl? ( dev-lang/perl:= ) SLOT=0 SRC_URI=mirror://sourceforge/silgraphite/graphite2/graphite2-1.3.5.tgz _eclasses_=cmake-multilib 273c15f5a0a06438a38bb5c3e98fa2db cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 unpacker 1d149d9bda7723e740cfd28118f27813 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=70b32ce1e41ea74d42e2c5aed73b0239 +_md5_=4c35d703e4451b35d91fb15ea60944ba diff --git a/metadata/md5-cache/media-libs/allegro-5.0.11 b/metadata/md5-cache/media-libs/allegro-5.0.11 index 534a18b4e773..f6449cc4495b 100644 --- a/metadata/md5-cache/media-libs/allegro-5.0.11 +++ b/metadata/md5-cache/media-libs/allegro-5.0.11 @@ -10,4 +10,4 @@ RDEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi SLOT=5 SRC_URI=mirror://sourceforge/alleg/allegro-5.0.11.tar.gz _eclasses_=cmake-multilib 273c15f5a0a06438a38bb5c3e98fa2db cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=194a7455c3c7eeeb0495387fb8859d08 +_md5_=52affb0a127e9c1f5bb5bfdd53e227b9 diff --git a/metadata/md5-cache/media-libs/libjpeg-turbo-1.4.2 b/metadata/md5-cache/media-libs/libjpeg-turbo-1.4.2 index c945f75df0f6..70900aa085a5 100644 --- a/metadata/md5-cache/media-libs/libjpeg-turbo-1.4.2 +++ b/metadata/md5-cache/media-libs/libjpeg-turbo-1.4.2 @@ -4,10 +4,10 @@ DESCRIPTION=MMX, SSE, and SSE2 SIMD accelerated JPEG library EAPI=5 HOMEPAGE=http://libjpeg-turbo.virtualgl.org/ http://sourceforge.net/projects/libjpeg-turbo/ IUSE=java static-libs elibc_FreeBSD java 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 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=BSD IJG RDEPEND=!media-libs/jpeg:0 !media-libs/jpeg:62 abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r5 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.2.0 ) SLOT=0 SRC_URI=mirror://sourceforge/libjpeg-turbo/libjpeg-turbo-1.4.2.tar.gz mirror://gentoo/libjpeg8_8d-2.debian.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e904ef651ead8cda7edf5edf7dc5350c +_md5_=8d484a50bc42bf588baea63d1797bb31 diff --git a/metadata/md5-cache/media-sound/puddletag-1.1.1 b/metadata/md5-cache/media-sound/puddletag-1.1.1 index 36b42ab6afff..1cab197c8702 100644 --- a/metadata/md5-cache/media-sound/puddletag-1.1.1 +++ b/metadata/md5-cache/media-sound/puddletag-1.1.1 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/keithgg/puddletag/releases/download/1.1.1/puddletag-1.1.1.tar.gz _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e fdo-mime 92d07846ea8ea54172f8c0112a47ae3d multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=e852f7c4f4f0380ad49e7fb1f50bf8cf +_md5_=4f73e872c3ae444067bd1da5435b13f6 diff --git a/metadata/md5-cache/net-misc/x2goserver-4.0.1.19-r2 b/metadata/md5-cache/net-misc/x2goserver-4.0.1.19-r2 new file mode 100644 index 000000000000..77b1a6165661 --- /dev/null +++ b/metadata/md5-cache/net-misc/x2goserver-4.0.1.19-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst prepare setup +DEPEND=virtual/pkgconfig +DESCRIPTION=The X2Go server +EAPI=6 +HOMEPAGE=http://www.x2go.org +IUSE=+fuse postgres +sqlite +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-perl/Capture-Tiny dev-perl/Config-Simple dev-perl/File-BaseDir dev-perl/File-ReadBackwards dev-perl/File-Which media-fonts/font-cursor-misc media-fonts/font-misc-misc[nls] >=net-misc/nx-3.5.0.25 net-misc/openssh >=sys-apps/iproute2-4.3.0 x11-apps/xauth x11-apps/xhost x11-apps/xwininfo fuse? ( sys-fs/sshfs-fuse ) postgres? ( dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBD-SQLite ) +REQUIRED_USE=|| ( postgres sqlite ) +SLOT=0 +SRC_URI=http://code.x2go.org/releases/source/x2goserver/x2goserver-4.0.1.19.tar.gz +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 +_md5_=5012dfcf2c6a9a87d86e42469219e03c diff --git a/metadata/md5-cache/net-misc/youtube-dl-2016.02.22 b/metadata/md5-cache/net-misc/youtube-dl-2016.03.01 similarity index 97% rename from metadata/md5-cache/net-misc/youtube-dl-2016.02.22 rename to metadata/md5-cache/net-misc/youtube-dl-2016.03.01 index c2377b61beb3..3651c9a54b73 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2016.02.22 +++ b/metadata/md5-cache/net-misc/youtube-dl-2016.03.01 @@ -9,6 +9,6 @@ LICENSE=public-domain RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_3(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_3 python_single_target_python3_4 python_single_target_python3_5 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) SLOT=0 -SRC_URI=http://youtube-dl.org/downloads/2016.02.22/youtube-dl-2016.02.22.tar.gz +SRC_URI=http://youtube-dl.org/downloads/2016.03.01/youtube-dl-2016.03.01.tar.gz _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 _md5_=3b4e05bb9e3685d19f09fa90c40f3b78 diff --git a/metadata/md5-cache/net-nds/389-ds-base-1.3.4.7-r2 b/metadata/md5-cache/net-nds/389-ds-base-1.3.4.8 similarity index 89% rename from metadata/md5-cache/net-nds/389-ds-base-1.3.4.7-r2 rename to metadata/md5-cache/net-nds/389-ds-base-1.3.4.8 index 6d773c9242a2..fdcf9b9661ae 100644 --- a/metadata/md5-cache/net-nds/389-ds-base-1.3.4.7-r2 +++ b/metadata/md5-cache/net-nds/389-ds-base-1.3.4.8 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=sys-libs/db:5.3 >=dev-libs/cyrus-sasl-2.1.19 >=net-analyzer/net-snmp-5.1.2 >=dev-libs/icu-3.4:= dev-libs/nss[utils] dev-libs/nspr dev-libs/svrcore dev-libs/openssl:0= dev-libs/libpcre:3 >=dev-perl/perl-mozldap-1.5.3 dev-perl/NetAddr-IP net-nds/openldap sys-libs/pam sys-libs/zlib kerberos? ( >=app-crypt/mit-krb5-1.7-r100[openldap] ) virtual/pkgconfig sys-devel/libtool doc? ( app-doc/doxygen ) sys-apps/sed !=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=sys-libs/db:4.8 >=dev-libs/cyrus-sasl-2.1.19 >=net-analyzer/net-snmp-5.1.2 >=dev-libs/icu-3.4:= dev-libs/nss[utils] dev-libs/nspr dev-libs/svrcore dev-libs/openssl:0= dev-libs/libpcre:3 >=dev-perl/perl-mozldap-1.5.3 dev-perl/NetAddr-IP net-nds/openldap sys-libs/pam sys-libs/zlib kerberos? ( >=app-crypt/mit-krb5-1.7-r100[openldap] ) virtual/pkgconfig sys-devel/libtool doc? ( app-doc/doxygen ) sys-apps/sed !=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=389 Directory Server (core librares and daemons ) EAPI=5 HOMEPAGE=http://port389.org/ IUSE=autobind auto-dn-suffix debug doc +pam-passthru +dna +ldapi +bitwise +presence kerberos selinux KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=sys-libs/db:5.3 >=dev-libs/cyrus-sasl-2.1.19 >=net-analyzer/net-snmp-5.1.2 >=dev-libs/icu-3.4:= dev-libs/nss[utils] dev-libs/nspr dev-libs/svrcore dev-libs/openssl:0= dev-libs/libpcre:3 >=dev-perl/perl-mozldap-1.5.3 dev-perl/NetAddr-IP net-nds/openldap sys-libs/pam sys-libs/zlib kerberos? ( >=app-crypt/mit-krb5-1.7-r100[openldap] ) selinux? ( sec-policy/selinux-dirsrv ) virtual/perl-Time-Local virtual/perl-MIME-Base64 +RDEPEND=sys-libs/db:4.8 >=dev-libs/cyrus-sasl-2.1.19 >=net-analyzer/net-snmp-5.1.2 >=dev-libs/icu-3.4:= dev-libs/nss[utils] dev-libs/nspr dev-libs/svrcore dev-libs/openssl:0= dev-libs/libpcre:3 >=dev-perl/perl-mozldap-1.5.3 dev-perl/NetAddr-IP net-nds/openldap sys-libs/pam sys-libs/zlib kerberos? ( >=app-crypt/mit-krb5-1.7-r100[openldap] ) selinux? ( sec-policy/selinux-dirsrv ) virtual/perl-Time-Local virtual/perl-MIME-Base64 SLOT=0 -SRC_URI=http://directory.fedoraproject.org/sources/389-ds-base-1.3.4.7.tar.bz2 +SRC_URI=http://directory.fedoraproject.org/sources/389-ds-base-1.3.4.8.tar.bz2 _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=7d466c6fbd3b636c1788a8f16d387b45 +_md5_=c4c064aa0ebf2233e7ffd4710eb9e3dc diff --git a/metadata/md5-cache/net-p2p/airdcpp-webclient-0.16.5 b/metadata/md5-cache/net-p2p/airdcpp-webclient-0.16.5 index 919a3c7a37e8..4edfa0e1f9a5 100644 --- a/metadata/md5-cache/net-p2p/airdcpp-webclient-0.16.5 +++ b/metadata/md5-cache/net-p2p/airdcpp-webclient-0.16.5 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=net-libs/nodejs dev-libs/geoip app-arch/bzip2 sys-libs/zlib dev-libs/openssl:0 dev-cpp/tbb virtual/libiconv net-libs/miniupnpc dev-libs/leveldb dev-cpp/websocketpp dev-libs/boost sys-devel/make >=dev-util/cmake-2.8.12 +DEPEND=net-libs/nodejs dev-libs/geoip app-arch/bzip2 sys-libs/zlib dev-libs/openssl:0 dev-cpp/tbb virtual/libiconv net-libs/miniupnpc net-libs/libnatpmp dev-libs/leveldb dev-cpp/websocketpp dev-libs/boost sys-devel/make >=dev-util/cmake-2.8.12 DESCRIPTION=Cross-platform Direct Connect client EAPI=6 HOMEPAGE=https://github.com/airdcpp-web/airdcpp-webclient @@ -7,8 +7,8 @@ IUSE=+webui KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 PDEPEND=webui? ( www-apps/airdcpp-webui ) -RDEPEND=dev-libs/geoip app-arch/bzip2 sys-libs/zlib dev-libs/openssl:0 dev-cpp/tbb virtual/libiconv net-libs/miniupnpc dev-libs/leveldb dev-cpp/websocketpp dev-libs/boost +RDEPEND=dev-libs/geoip app-arch/bzip2 sys-libs/zlib dev-libs/openssl:0 dev-cpp/tbb virtual/libiconv net-libs/miniupnpc net-libs/libnatpmp dev-libs/leveldb dev-cpp/websocketpp dev-libs/boost SLOT=0 SRC_URI=https://github.com/airdcpp-web/airdcpp-webclient/archive/0.16.5.tar.gz -> airdcpp-webclient-0.16.5.tar.gz _eclasses_=cmake-utils c67ce9708a9c02be2d296cf547740e9c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=14d065ffc3cc8264066b12d405499464 +_md5_=0793ca54c9c2e5a89ed06503b41afaed diff --git a/metadata/md5-cache/perl-core/JSON-PP-2.273.0 b/metadata/md5-cache/perl-core/JSON-PP-2.273.0 new file mode 100644 index 000000000000..acad6893bac4 --- /dev/null +++ b/metadata/md5-cache/perl-core/JSON-PP-2.273.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-lang/perl:= +DESCRIPTION=JSON::XS compatible pure-Perl module +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/JSON-PP/ +KEYWORDS=~alpha ~amd64 ~amd64-fbsd ~amd64-linux ~arm ~arm64 ~hppa ~hppa-hpux ~ia64 ~ia64-hpux ~ia64-linux ~m68k ~m68k-mint ~mips ~ppc ~ppc64 ~ppc-aix ~ppc-macos ~s390 ~sh ~sparc ~sparc64-solaris ~sparc-solaris ~x64-freebsd ~x64-macos ~x64-solaris ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~x86-linux ~x86-macos ~x86-solaris +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MA/MAKAMAKA/JSON-PP-2.27300.tar.gz +_eclasses_=alternatives b19e1ec28e600fa497461bddfb9c1f16 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions 15aff0b9cba2282790142295ceb6be0c perl-module b2108b3c85ac7a6a6a9b035b54f6813c +_md5_=d9f66f6e36eb90abe301acfbea1df9e6 diff --git a/metadata/md5-cache/sci-astronomy/idlastro-20130501 b/metadata/md5-cache/sci-astronomy/idlastro-20130501 deleted file mode 100644 index c40d3fccdd32..000000000000 --- a/metadata/md5-cache/sci-astronomy/idlastro-20130501 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=Astronomical user routines for IDL -EAPI=5 -HOMEPAGE=http://idlastro.gsfc.nasa.gov/ -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=public-domain -RDEPEND=>=dev-lang/gdl-0.9.2-r1 -SLOT=0 -SRC_URI=http://idlastro.gsfc.nasa.gov//ftp/astron.tar.gz -> idlastro-20130501.tar.gz -_md5_=dfb33b80e770925a17435c7e1a8a5618 diff --git a/metadata/md5-cache/sci-astronomy/idlastro-20140125 b/metadata/md5-cache/sci-astronomy/idlastro-20160225 similarity index 80% rename from metadata/md5-cache/sci-astronomy/idlastro-20140125 rename to metadata/md5-cache/sci-astronomy/idlastro-20160225 index 9e9ec09f4240..ac4566557327 100644 --- a/metadata/md5-cache/sci-astronomy/idlastro-20140125 +++ b/metadata/md5-cache/sci-astronomy/idlastro-20160225 @@ -1,10 +1,10 @@ DEFINED_PHASES=install DESCRIPTION=Astronomical user routines for IDL -EAPI=5 +EAPI=6 HOMEPAGE=http://idlastro.gsfc.nasa.gov/ KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=public-domain RDEPEND=dev-lang/gdl SLOT=0 -SRC_URI=http://idlastro.gsfc.nasa.gov//ftp/astron.tar.gz -> idlastro-20140125.tar.gz -_md5_=b8a50bbe4e1befcc242914d332188812 +SRC_URI=http://idlastro.gsfc.nasa.gov//ftp/astron.tar.gz -> idlastro-20160225.tar.gz +_md5_=4847a3eba3be30f73fa9704c81e18866 diff --git a/metadata/md5-cache/sci-astronomy/sofa_c-20120301a b/metadata/md5-cache/sci-astronomy/sofa_c-20120301a deleted file mode 100644 index 18a7c247c104..000000000000 --- a/metadata/md5-cache/sci-astronomy/sofa_c-20120301a +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install prepare -DESCRIPTION=Library for algorithms for models in fundamental astronomy -EAPI=5 -HOMEPAGE=http://www.iausofa.org/current_C.html -IUSE=doc -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=SOFA -SLOT=0 -SRC_URI=http://www.iausofa.org/2012_0301_C/sofa_c-20120301_a.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=b923f0c43d7ced314733fe48d443e753 diff --git a/metadata/md5-cache/sci-astronomy/sofa_c-20150209a b/metadata/md5-cache/sci-astronomy/sofa_c-20150209a new file mode 100644 index 000000000000..a8819eba980b --- /dev/null +++ b/metadata/md5-cache/sci-astronomy/sofa_c-20150209a @@ -0,0 +1,11 @@ +DEFINED_PHASES=install prepare +DESCRIPTION=Library for algorithms for models in fundamental astronomy +EAPI=6 +HOMEPAGE=http://www.iausofa.org/current_C.html +IUSE=doc +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=SOFA +SLOT=0 +SRC_URI=http://www.iausofa.org/2015_0209_C/sofa_c-20150209_a.tar.gz +_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=edd87cc605abc9baae214cace9985912 diff --git a/metadata/md5-cache/sci-astronomy/swarp-2.19.1 b/metadata/md5-cache/sci-astronomy/swarp-2.19.1 deleted file mode 100644 index 5980a93f3d1d..000000000000 --- a/metadata/md5-cache/sci-astronomy/swarp-2.19.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=!=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Resample and coadd astronomical FITS images -EAPI=4 -HOMEPAGE=http://astromatic.iap.fr/software/swarp -IUSE=doc threads -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=CeCILL-2 -SLOT=0 -SRC_URI=ftp://ftp.iap.fr/pub/from_users/bertin/swarp/swarp-2.19.1.tar.gz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=fc01c3636a970cc769f07a6d166e34e0 diff --git a/metadata/md5-cache/sci-astronomy/swarp-2.38.0 b/metadata/md5-cache/sci-astronomy/swarp-2.38.0 new file mode 100644 index 000000000000..38e33eb57f54 --- /dev/null +++ b/metadata/md5-cache/sci-astronomy/swarp-2.38.0 @@ -0,0 +1,10 @@ +DEFINED_PHASES=configure install +DESCRIPTION=Resample and coadd astronomical FITS images +EAPI=6 +HOMEPAGE=http://www.astromatic.net/software/swarp +IUSE=doc threads +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-3 +SLOT=0 +SRC_URI=http://www.astromatic.net/download/swarp/swarp-2.38.0.tar.gz +_md5_=3ebf74e0b0fd4922a8f03bad7a1d60e2 diff --git a/metadata/md5-cache/sci-astronomy/xephem-3.7.7 b/metadata/md5-cache/sci-astronomy/xephem-3.7.7 new file mode 100644 index 000000000000..81a3235f3eeb --- /dev/null +++ b/metadata/md5-cache/sci-astronomy/xephem-3.7.7 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install prepare +DEPEND=>=x11-libs/motif-2.3:0 virtual/jpeg:0= media-libs/libpng:0= sys-apps/groff +DESCRIPTION=Interactive tool for astronomical ephemeris and sky simulation +EAPI=6 +HOMEPAGE=http://www.clearskyinstitute.com/xephem +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux +LICENSE=XEphem +RDEPEND=>=x11-libs/motif-2.3:0 virtual/jpeg:0= media-libs/libpng:0= +SLOT=0 +SRC_URI=http://97.74.56.125/free/xephem-3.7.7.tar.gz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=8ecb42f69ebaf5b1e27d0a4f11c92c20 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-2.95-r1 b/metadata/md5-cache/sci-geosciences/gpsd-2.95-r1 deleted file mode 100644 index 38e43690368d..000000000000 --- a/metadata/md5-cache/sci-geosciences/gpsd-2.95-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=dev-python/pygtk:2 sys-libs/ncurses virtual/libusb:1 dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( net-misc/ntp ) qt4? ( dev-qt/qtgui:4 ) app-text/xmlto =app-text/docbook-xml-dtd-4.1* || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients -EAPI=3 -HOMEPAGE=http://gpsd.berlios.de/ -IUSE=gpsd_protocols_ashtech gpsd_protocols_aivdm gpsd_protocols_clientdebug gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_nmea gpsd_protocols_ntrip gpsd_protocols_navcom gpsd_protocols_oceanserver gpsd_protocols_oldstyle gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_timing gpsd_protocols_tsip gpsd_protocols_tripmate gpsd_protocols_tnt gpsd_protocols_ubx dbus ipv6 ntp qt4 -KEYWORDS=amd64 arm ppc ppc64 x86 -LICENSE=BSD -RDEPEND=dev-python/pygtk:2 sys-libs/ncurses virtual/libusb:1 dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( net-misc/ntp ) qt4? ( dev-qt/qtgui:4 ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) -SLOT=0 -SRC_URI=mirror://gentoo/gpsd-2.95.tar.gz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=10ff755f53e1244ad6dce92e7f81a072 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-2.96-r1 b/metadata/md5-cache/sci-geosciences/gpsd-2.96-r1 deleted file mode 100644 index 33dcf1e24692..000000000000 --- a/metadata/md5-cache/sci-geosciences/gpsd-2.96-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=dev-python/pygtk:2 sys-libs/ncurses virtual/libusb:1 dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( net-misc/ntp ) qt4? ( dev-qt/qtgui:4 ) app-text/xmlto =app-text/docbook-xml-dtd-4.1* test? ( sys-devel/bc ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients -EAPI=3 -HOMEPAGE=http://gpsd.berlios.de/ -IUSE=gpsd_protocols_ashtech gpsd_protocols_aivdm gpsd_protocols_clientdebug gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_nmea gpsd_protocols_ntrip gpsd_protocols_navcom gpsd_protocols_oceanserver gpsd_protocols_oldstyle gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_timing gpsd_protocols_tsip gpsd_protocols_tripmate gpsd_protocols_tnt gpsd_protocols_ubx dbus ipv6 ntp qt4 test udev -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 -LICENSE=BSD -RDEPEND=dev-python/pygtk:2 sys-libs/ncurses virtual/libusb:1 dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( net-misc/ntp ) qt4? ( dev-qt/qtgui:4 ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) -SLOT=0 -SRC_URI=mirror://gentoo/gpsd-2.96bis.tar.gz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=d23145cf262acff85b77a9d63f694b93 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.10 b/metadata/md5-cache/sci-geosciences/gpsd-3.10 index 5f7d880a12f6..8c66c7e9f7fe 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.10 +++ b/metadata/md5-cache/sci-geosciences/gpsd-3.10 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install preinst prepare -DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients +DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig >=dev-util/scons-1.2.1 +DESCRIPTION=GPS daemon and library for USB/serial GPS devices and GPS/mapping clients EAPI=5 HOMEPAGE=http://catb.org/gpsd/ IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ublox bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets static test udev usb X python_targets_python2_7 KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) +RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) python? ( || ( python_targets_python2_7 ) ) SLOT=0 SRC_URI=mirror://nongnu/gpsd/gpsd-3.10.tar.gz _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=061621ddcd0fe9bb022615e0ecba2ec2 +_md5_=8ff0d693ef530200d47dd48512992521 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.11 b/metadata/md5-cache/sci-geosciences/gpsd-3.11 index cd70b9661cbb..86a72e2910f7 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.11 +++ b/metadata/md5-cache/sci-geosciences/gpsd-3.11 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install preinst prepare -DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients +DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig >=dev-util/scons-1.2.1 +DESCRIPTION=GPS daemon and library for USB/serial GPS devices and GPS/mapping clients EAPI=5 HOMEPAGE=http://catb.org/gpsd/ IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ublox bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets static test udev usb X python_targets_python2_7 KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) +RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) python? ( || ( python_targets_python2_7 ) ) SLOT=0 SRC_URI=mirror://nongnu/gpsd/gpsd-3.11.tar.gz _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=9839321c21a259851589fc2c11ac5a38 +_md5_=e052e9ab67d9b578fc2ed710be4e76b5 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.13 b/metadata/md5-cache/sci-geosciences/gpsd-3.13 deleted file mode 100644 index 6fbfd522dcac..000000000000 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.13 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare -DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients -EAPI=5 -HOMEPAGE=http://catb.org/gpsd/ -IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea0183 gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_passthrough gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ublox bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets static test udev usb X python_targets_python2_7 -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 -LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) -REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) python? ( || ( python_targets_python2_7 ) ) -SLOT=0 -SRC_URI=mirror://nongnu/gpsd/gpsd-3.13.tar.gz -_eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=54b5a49526e8ffc9488b1773604cbedc diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.15 b/metadata/md5-cache/sci-geosciences/gpsd-3.15 index 19952fbed003..15fbc74b1621 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.15 +++ b/metadata/md5-cache/sci-geosciences/gpsd-3.15 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install preinst prepare -DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients +DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig >=dev-util/scons-1.2.1 +DESCRIPTION=GPS daemon and library for USB/serial GPS devices and GPS/mapping clients EAPI=5 HOMEPAGE=http://catb.org/gpsd/ IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea0183 gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_passthrough gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ublox bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets static test udev usb X python_targets_python2_7 KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) +RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) python? ( || ( python_targets_python2_7 ) ) SLOT=0 SRC_URI=mirror://nongnu/gpsd/gpsd-3.15.tar.gz _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=f948c1509290b492e252dcf5df6544de +_md5_=517b309fdd75e61528879a36e5e0568e diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.6 b/metadata/md5-cache/sci-geosciences/gpsd-3.6 deleted file mode 100644 index 5cfce0198dda..000000000000 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.6 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) test? ( sys-devel/bc ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients -EAPI=4 -HOMEPAGE=http://catb.org/gpsd/ -IUSE=gpsd_protocols_ashtech gpsd_protocols_aivdm gpsd_protocols_clientdebug gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_nmea gpsd_protocols_ntrip gpsd_protocols_navcom gpsd_protocols_oceanserver gpsd_protocols_oldstyle gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_timing gpsd_protocols_tsip gpsd_protocols_tripmate gpsd_protocols_tnt gpsd_protocols_ubx bluetooth cxx debug dbus ipv6 ncurses ntp python qt4 +shm +sockets test udev usb X -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 -LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) -REQUIRED_USE=X? ( python ) -SLOT=0 -SRC_URI=mirror://nongnu/gpsd/gpsd-3.6.tar.gz -_eclasses_=distutils ad9e4720eb3e69090dd968b152fc611b eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=b8b6f94bc2a03e0aba0fedb3ad7492c1 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.7 b/metadata/md5-cache/sci-geosciences/gpsd-3.7 deleted file mode 100644 index 253b2d8e228f..000000000000 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.7 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients -EAPI=4 -HOMEPAGE=http://catb.org/gpsd/ -IUSE=gpsd_protocols_ashtech gpsd_protocols_aivdm gpsd_protocols_clientdebug gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_nmea gpsd_protocols_ntrip gpsd_protocols_navcom gpsd_protocols_oceanserver gpsd_protocols_oldstyle gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_timing gpsd_protocols_tsip gpsd_protocols_tripmate gpsd_protocols_tnt gpsd_protocols_ubx bluetooth cxx debug dbus ipv6 ncurses ntp python qt4 +shm +sockets test udev usb X -KEYWORDS=amd64 arm ppc ppc64 x86 -LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) -REQUIRED_USE=X? ( python ) -SLOT=0 -SRC_URI=mirror://nongnu/gpsd/gpsd-3.7.tar.gz -_eclasses_=distutils ad9e4720eb3e69090dd968b152fc611b eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=a26ed8995807406402b735ca063a7f59 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.8 b/metadata/md5-cache/sci-geosciences/gpsd-3.8 deleted file mode 100644 index bc6b4b503dd6..000000000000 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.8 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients -EAPI=4 -HOMEPAGE=http://catb.org/gpsd/ -IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ubx bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets test udev usb X -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 -LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) -REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) -SLOT=0 -SRC_URI=mirror://nongnu/gpsd/gpsd-3.8.tar.gz -_eclasses_=distutils ad9e4720eb3e69090dd968b152fc611b eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=9cc79217a7e9cb0d9f7ab071fdd1a7ea diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.9 b/metadata/md5-cache/sci-geosciences/gpsd-3.9 deleted file mode 100644 index 2067a26536a5..000000000000 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.9 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=dev-util/scons-1.2.1 -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients -EAPI=4 -HOMEPAGE=http://catb.org/gpsd/ -IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ubx bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets test udev usb X -KEYWORDS=amd64 arm ppc ppc64 x86 -LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) -REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) -SLOT=0 -SRC_URI=mirror://nongnu/gpsd/gpsd-3.9.tar.gz -_eclasses_=distutils ad9e4720eb3e69090dd968b152fc611b eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=8575d26efdbcb608b7f0a2125a670620 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.9-r1 b/metadata/md5-cache/sci-geosciences/gpsd-3.9-r1 index 535331ad5f5e..0b5925ef4f80 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.9-r1 +++ b/metadata/md5-cache/sci-geosciences/gpsd-3.9-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack DEPEND=X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) systemd? ( sys-apps/systemd ) qt4? ( dev-qt/qtgui:4 ) virtual/pkgconfig test? ( sys-devel/bc ) virtual/pkgconfig python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=dev-util/scons-1.2.1 virtual/pkgconfig -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients +DESCRIPTION=GPS daemon and library for USB/serial GPS devices and GPS/mapping clients EAPI=4 HOMEPAGE=http://catb.org/gpsd/ IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ubx bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets systemd test udev usb X @@ -11,4 +11,4 @@ REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) SLOT=0 SRC_URI=mirror://nongnu/gpsd/gpsd-3.9.tar.gz _eclasses_=distutils ad9e4720eb3e69090dd968b152fc611b eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python efc1c55fc44c5b7272fc2ffba73c3e6f scons-utils 6a35944612b7ecb18a3803359554badc systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=10c8c1ae11e8fbc4abfcb8d9cdba8b98 +_md5_=6e25c60eacad750e0b1dffc8dcaf1334 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-9999 b/metadata/md5-cache/sci-geosciences/gpsd-9999 index 7fa68f801cf0..716387c58fd2 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-9999 +++ b/metadata/md5-cache/sci-geosciences/gpsd-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install preinst prepare unpack -DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) app-text/xmlto =app-text/docbook-xml-dtd-4.1* virtual/pkgconfig >=dev-util/scons-1.2.1 dev-vcs/git -DESCRIPTION=GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients +DEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig test? ( sys-devel/bc ) app-text/xmlto =app-text/docbook-xml-dtd-4.1* virtual/pkgconfig >=dev-util/scons-1.2.1 dev-vcs/git +DESCRIPTION=GPS daemon and library for USB/serial GPS devices and GPS/mapping clients EAPI=5 HOMEPAGE=http://catb.org/gpsd/ IUSE=gpsd_protocols_aivdm gpsd_protocols_ashtech gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fury gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_geostar gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_navcom gpsd_protocols_nmea0183 gpsd_protocols_nmea2000 gpsd_protocols_ntrip gpsd_protocols_oceanserver gpsd_protocols_oncore gpsd_protocols_passthrough gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_tnt gpsd_protocols_tripmate gpsd_protocols_tsip gpsd_protocols_ublox bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets static test udev usb X python_targets_python2_7 LICENSE=BSD -RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) +RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) python? ( || ( python_targets_python2_7 ) ) SLOT=0 _eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 9d81603248f2ba3ec59124320d123e5e git-2 df00117322129fb906bb0a53c3d6a020 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 scons-utils 6a35944612b7ecb18a3803359554badc toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 -_md5_=c7a5cacb432c67b59daca95eb8103cba +_md5_=f2ad2009c45f92fab3da4eeca595ef03 diff --git a/metadata/md5-cache/sci-geosciences/josm-5608 b/metadata/md5-cache/sci-geosciences/josm-5608 deleted file mode 100644 index 2d2d1d0bcf2e..000000000000 --- a/metadata/md5-cache/sci-geosciences/josm-5608 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.6 >=dev-java/java-config-2.2.0 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Java-based editor for the OpenStreetMap project -EAPI=5 -HOMEPAGE=http://josm.openstreetmap.de/ -IUSE=elibc_FreeBSD elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0 -SLOT=0 -SRC_URI=http://josm.hboeck.de/josm-5608.tar.xz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-ant-2 7c5d0c274d390745f5033754a319f515 java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=1e46b7cfd055355f4ef110c11cf3120c diff --git a/metadata/md5-cache/sci-geosciences/josm-6060 b/metadata/md5-cache/sci-geosciences/josm-6060 deleted file mode 100644 index a88cafe99a09..000000000000 --- a/metadata/md5-cache/sci-geosciences/josm-6060 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.7 >=dev-java/java-config-2.2.0 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Java-based editor for the OpenStreetMap project -EAPI=5 -HOMEPAGE=http://josm.openstreetmap.de/ -IUSE=elibc_FreeBSD elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.2.0 -SLOT=0 -SRC_URI=http://josm.hboeck.de/josm-6060.tar.xz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-ant-2 7c5d0c274d390745f5033754a319f515 java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=6d42dc06ea136d9e255cc8ff04ef5073 diff --git a/metadata/md5-cache/sci-geosciences/josm-7347 b/metadata/md5-cache/sci-geosciences/josm-7347 deleted file mode 100644 index 2a5d612acea8..000000000000 --- a/metadata/md5-cache/sci-geosciences/josm-7347 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.7 >=dev-java/java-config-2.2.0 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Java-based editor for the OpenStreetMap project -EAPI=5 -HOMEPAGE=http://josm.openstreetmap.de/ -IUSE=elibc_FreeBSD elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.2.0 -SLOT=0 -SRC_URI=mirror://gentoo/josm-7347.tar.gz -_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e java-ant-2 7c5d0c274d390745f5033754a319f515 java-pkg-2 b02dc1e46b3648e467b5fbdf7857cf28 java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=1c269603207204ece8a023f240407b2f diff --git a/metadata/md5-cache/sys-apps/gentoo-functions-0.10 b/metadata/md5-cache/sys-apps/gentoo-functions-0.10 index caf7ec6d1a09..672165435fd5 100644 --- a/metadata/md5-cache/sys-apps/gentoo-functions-0.10 +++ b/metadata/md5-cache/sys-apps/gentoo-functions-0.10 @@ -2,9 +2,9 @@ DEFINED_PHASES=install prepare DESCRIPTION=base functions required by all gentoo systems EAPI=5 HOMEPAGE=https://www.gentoo.org -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt LICENSE=GPL-2 SLOT=0 SRC_URI=https://github.com/gentoo/gentoo-functions/archive/0.10.tar.gz -> gentoo-functions-0.10.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=0efb76ddba64b61aaa1ca038f952efc2 +_md5_=6cc3bbfc4787edd9cd01ccb1408d2c8f diff --git a/metadata/md5-cache/sys-apps/iproute2-4.3.0 b/metadata/md5-cache/sys-apps/iproute2-4.3.0 index e882852a1379..d3c4892277e1 100644 --- a/metadata/md5-cache/sys-apps/iproute2-4.3.0 +++ b/metadata/md5-cache/sys-apps/iproute2-4.3.0 @@ -4,10 +4,10 @@ DESCRIPTION=kernel routing and traffic control utilities EAPI=5 HOMEPAGE=http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2 IUSE=atm berkdb +iptables ipv6 minimal selinux -KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 +KEYWORDS=alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 LICENSE=GPL-2 RDEPEND=!net-misc/arpd !minimal? ( net-libs/libmnl ) iptables? ( >=net-firewall/iptables-1.4.20:= ) berkdb? ( sys-libs/db:= ) atm? ( net-dialup/linux-atm ) selinux? ( sys-libs/libselinux ) SLOT=0 SRC_URI=mirror://kernel/linux/utils/net/iproute2/iproute2-4.3.0.tar.xz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=462c5e0d38f9974ca75abc5502f67130 +_md5_=ea21337bf3ed199d1473c2b95809f3fd diff --git a/metadata/md5-cache/sys-apps/kmod-21 b/metadata/md5-cache/sys-apps/kmod-21 index 5a8099c0d385..7c3b7a3d8a9f 100644 --- a/metadata/md5-cache/sys-apps/kmod-21 +++ b/metadata/md5-cache/sys-apps/kmod-21 @@ -4,7 +4,7 @@ DESCRIPTION=library and tools for managing linux kernel modules EAPI=5 HOMEPAGE=https://git.kernel.org/?p=utils/kernel/kmod/kmod.git IUSE=debug doc lzma python static-libs +tools zlib python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 LICENSE=LGPL-2 RDEPEND=!sys-apps/module-init-tools !sys-apps/modutils !=app-arch/xz-utils-5.0.4-r1 ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) zlib? ( >=sys-libs/zlib-1.2.6 ) REQUIRED_USE=python? ( || ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/kernel/kmod/kmod-21.tar.xz _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=8f2bfd96de351c1a0444bf4523b382e5 +_md5_=ef21ea2ae8e2e36316b1e2047d24724c diff --git a/metadata/md5-cache/sys-apps/less-481 b/metadata/md5-cache/sys-apps/less-481 index 15cfe0325505..196e90fba584 100644 --- a/metadata/md5-cache/sys-apps/less-481 +++ b/metadata/md5-cache/sys-apps/less-481 @@ -4,10 +4,10 @@ DESCRIPTION=Excellent text file viewer EAPI=5 HOMEPAGE=http://www.greenwoodsoftware.com/less/ IUSE=pcre unicode -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( GPL-3 BSD-2 ) RDEPEND=>=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= pcre? ( dev-libs/libpcre ) SLOT=0 SRC_URI=http://www.greenwoodsoftware.com/less/less-481.tar.gz http://www-zeuthen.desy.de/~friebel/unix/less/code2color -> code2color-0.2 _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=ee47625ce11250ad65b130993321ef49 +_md5_=f903440598729486d27896192ac4834e diff --git a/metadata/md5-cache/sys-apps/toybox-0.7.0 b/metadata/md5-cache/sys-apps/toybox-0.7.0 index 97ff4eee4629..0af1002aad45 100644 --- a/metadata/md5-cache/sys-apps/toybox-0.7.0 +++ b/metadata/md5-cache/sys-apps/toybox-0.7.0 @@ -9,4 +9,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://landley.net/code/toybox/downloads/toybox-0.7.0.tar.gz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 portability ff2a0005fbb7fa61f74e9fa5f3a0ecf4 savedconfig 7de7daa586f6bf361639e77d6f2299db toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=752d228a8d6927a9c483b83f11309a66 +_md5_=082dc06c8281def3ee19adade9577989 diff --git a/metadata/md5-cache/sys-devel/patch-2.7.5 b/metadata/md5-cache/sys-devel/patch-2.7.5 index 8cb731005151..b12acfc44734 100644 --- a/metadata/md5-cache/sys-devel/patch-2.7.5 +++ b/metadata/md5-cache/sys-devel/patch-2.7.5 @@ -4,10 +4,10 @@ DESCRIPTION=Utility to apply diffs to files EAPI=4 HOMEPAGE=https://www.gnu.org/software/patch/patch.html IUSE=static test xattr -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=xattr? ( sys-apps/attr ) SLOT=0 SRC_URI=mirror://gnu/patch/patch-2.7.5.tar.xz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=df5e99d5a83be583df35ea3d7cd3a59f +_md5_=15dbc095e5ffbfcb79e5e0336000245f diff --git a/metadata/md5-cache/sys-kernel/hardened-sources-4.4.3 b/metadata/md5-cache/sys-kernel/hardened-sources-4.4.3 new file mode 100644 index 000000000000..c02a692a4406 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/hardened-sources-4.4.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) +DESCRIPTION=Hardened kernel sources (kernel series 4.4) +EAPI=5 +HOMEPAGE=http://www.gentoo.org/proj/en/hardened/ +IUSE=deblob symlink build deblob +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +RDEPEND=>=sys-devel/gcc-4.5 !build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=4.4.3 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz deblob? ( http://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags/4.4-gnu/deblob-4.4 http://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags/4.4-gnu/deblob-check -> deblob-check-4.4 ) http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-4.4.3-1.extras.tar.bz2 mirror://gentoo/genpatches-4.4-5.base.tar.xz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e kernel-2 f745fe70cd0e35af07412905687b9a7f multilib 3972ca401cf7dbb430df9995f5d8d580 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=cddd4467fc3f9781f5e2890094d5ad0c diff --git a/metadata/md5-cache/sys-kernel/linux-headers-4.3 b/metadata/md5-cache/sys-kernel/linux-headers-4.3 index 290649e9772d..8b7cc6c89e55 100644 --- a/metadata/md5-cache/sys-kernel/linux-headers-4.3 +++ b/metadata/md5-cache/sys-kernel/linux-headers-4.3 @@ -3,11 +3,11 @@ DEPEND=app-arch/xz-utils dev-lang/perl DESCRIPTION=Linux system headers EAPI=4 HOMEPAGE=https://www.kernel.org/ https://www.gentoo.org/ -KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux LICENSE=GPL-2 RDEPEND=!!media-sound/alsa-headers RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://gentoo/gentoo-headers-base-4.3.tar.xz mirror://gentoo/gentoo-headers-4.3-1.tar.xz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e kernel-2 f745fe70cd0e35af07412905687b9a7f multilib 3972ca401cf7dbb430df9995f5d8d580 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ecec5725607e2231c11b3f0085f225df +_md5_=6f37bbd48a481c05dcc62563c442fd98 diff --git a/metadata/md5-cache/sys-libs/libcap-2.24-r2 b/metadata/md5-cache/sys-libs/libcap-2.24-r2 index 77fa9ed957f4..675794c1a77a 100644 --- a/metadata/md5-cache/sys-libs/libcap-2.24-r2 +++ b/metadata/md5-cache/sys-libs/libcap-2.24-r2 @@ -4,10 +4,10 @@ DESCRIPTION=POSIX 1003.1e capabilities EAPI=4 HOMEPAGE=http://www.friedhoff.org/posixfilecaps.html IUSE=pam static-libs 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 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux LICENSE=|| ( GPL-2 BSD ) RDEPEND=>=sys-apps/attr-2.4.47-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(-)?] pam? ( virtual/pam ) SLOT=0 SRC_URI=mirror://kernel/linux/libs/security/linux-privs/libcap2/libcap-2.24.tar.xz _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=2ee11468ed2901c26246cbb3084a2de4 +_md5_=bc8788c2167e4577fac499ec5908f7d5 diff --git a/metadata/md5-cache/sys-libs/libseccomp-2.3.0 b/metadata/md5-cache/sys-libs/libseccomp-2.3.0 new file mode 100644 index 000000000000..92c014b5879b --- /dev/null +++ b/metadata/md5-cache/sys-libs/libseccomp-2.3.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=sys-kernel/linux-headers-4.3 +DESCRIPTION=high level interface to Linux seccomp filter +EAPI=5 +HOMEPAGE=https://github.com/seccomp/libseccomp +IUSE=static-libs 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=-* ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~x86 +LICENSE=LGPL-2.1 +SLOT=0 +SRC_URI=https://github.com/seccomp/libseccomp/releases/download/v2.3.0/libseccomp-2.3.0.tar.gz +_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=185f51f4acea1eb3efd307d698362bb1 diff --git a/metadata/md5-cache/virtual/perl-File-Path-2.90.0-r3 b/metadata/md5-cache/virtual/perl-File-Path-2.90.0-r3 index d82c105f8e5f..b588a9cd7a8e 100644 --- a/metadata/md5-cache/virtual/perl-File-Path-2.90.0-r3 +++ b/metadata/md5-cache/virtual/perl-File-Path-2.90.0-r3 @@ -1,7 +1,7 @@ DEFINED_PHASES=- DESCRIPTION=Virtual for File-Path EAPI=5 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris RDEPEND=|| ( =dev-lang/perl-5.22* =dev-lang/perl-5.20* ~perl-core/File-Path-2.90.0 ) !perl-core/File-Path-2.90.0-r999 SLOT=0 -_md5_=515b818e104d00b5518872176c533930 +_md5_=1e6fd0fb6a373f852724b1977c76b4bd diff --git a/metadata/md5-cache/www-apache/passenger-5.0.25 b/metadata/md5-cache/www-apache/passenger-5.0.25 new file mode 100644 index 000000000000..1c3501299153 --- /dev/null +++ b/metadata/md5-cache/www-apache/passenger-5.0.25 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test unpack +DEPEND=ruby_targets_ruby20? ( dev-ruby/rake[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rake[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rake[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby20] >=dev-ruby/rake-0.8.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby21] >=dev-ruby/rake-0.8.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rake-0.8.1[ruby_targets_ruby22] ) ) >=dev-libs/libuv-1.5.0 net-misc/curl[ssl] www-servers/apache[apache2_modules_unixd(+)] =www-servers/apache-2* ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) +DESCRIPTION=Passenger makes deployment of Ruby on Rails applications a breeze +EAPI=5 +HOMEPAGE=https://www.phusionpassenger.com/ +IUSE=debug test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby20] >=dev-ruby/rake-0.8.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby21] >=dev-ruby/rake-0.8.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rake-0.8.1[ruby_targets_ruby22] ) >=dev-libs/libuv-1.5.0 net-misc/curl[ssl] www-servers/apache[apache2_modules_unixd(+)] =www-servers/apache-2* ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) +REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) +SLOT=0 +SRC_URI=http://s3.amazonaws.com/phusion-passenger/releases/passenger-5.0.25.tar.gz +_eclasses_=apache-module 5e66430013d92dfe0bf8672b05319b6d depend.apache e3c541cb90838388f81620d630c28f41 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e java-utils-2 4f0e83a2c108b9f3d74ecebf32e2f483 multilib 3972ca401cf7dbb430df9995f5d8d580 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=654ac24da138838142a4a4c6b33990ac diff --git a/metadata/md5-cache/www-apps/icingaweb2-2.2.0 b/metadata/md5-cache/www-apps/icingaweb2-2.2.0 new file mode 100644 index 000000000000..dc27f163cdc6 --- /dev/null +++ b/metadata/md5-cache/www-apps/icingaweb2-2.2.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=config install postinst setup +DEPEND=>=net-analyzer/icinga2-2.1.1 dev-lang/php:5.6[apache2?,cli,gd,json,intl,ldap?,mysql?,pdo,postgres?,sockets,ssl,xslt,xml] dev-php/pecl-imagick apache2? ( >=www-servers/apache-2.4.0 ) nginx? ( >=www-servers/nginx-1.7.0:* ) apache2? ( =www-servers/apache-2* ) +DESCRIPTION=Icinga Web 2 - Frontend for icinga2 +EAPI=5 +HOMEPAGE=http://www.icinga.org/ +IUSE=apache2 ldap mysql nginx postgres apache2 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=net-analyzer/icinga2-2.1.1 dev-lang/php:5.6[apache2?,cli,gd,json,intl,ldap?,mysql?,pdo,postgres?,sockets,ssl,xslt,xml] dev-php/pecl-imagick apache2? ( >=www-servers/apache-2.4.0 ) nginx? ( >=www-servers/nginx-1.7.0:* ) apache2? ( =www-servers/apache-2* ) +SLOT=0 +SRC_URI=https://codeload.github.com/Icinga/icingaweb2/tar.gz/v2.2.0 -> icingaweb2-2.2.0.tar.gz +_eclasses_=depend.apache e3c541cb90838388f81620d630c28f41 eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 +_md5_=2bb982344cb1f2756da050031fd88185 diff --git a/metadata/md5-cache/www-apps/icingaweb2-module-pnp4nagios-1.0.1 b/metadata/md5-cache/www-apps/icingaweb2-module-pnp4nagios-1.0.1 new file mode 100644 index 000000000000..f3c87bd08c3d --- /dev/null +++ b/metadata/md5-cache/www-apps/icingaweb2-module-pnp4nagios-1.0.1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install +DEPEND=>=net-analyzer/icinga2-2.1.1 >=www-apps/icingaweb2-2.0.0 +DESCRIPTION=Icinga Web 2 plugin for pnp4nagios +EAPI=5 +HOMEPAGE=http://www.icinga.org/ +LICENSE=GPL-2 +RDEPEND=>=net-analyzer/icinga2-2.1.1 >=www-apps/icingaweb2-2.0.0 +SLOT=0 +SRC_URI=https://codeload.github.com/Icinga/icingaweb2-module-pnp/tar.gz/v1.0.1 -> icingaweb2-module-pnp4nagios-1.0.1.tar.gz +_md5_=96fb3b297935d0e4542babd1469d22bc diff --git a/metadata/md5-cache/www-apps/rt-4.2.12 b/metadata/md5-cache/www-apps/rt-4.2.12-r1 similarity index 97% rename from metadata/md5-cache/www-apps/rt-4.2.12 rename to metadata/md5-cache/www-apps/rt-4.2.12-r1 index 9f69132f0712..413720fa4225 100644 --- a/metadata/md5-cache/www-apps/rt-4.2.12 +++ b/metadata/md5-cache/www-apps/rt-4.2.12-r1 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst prepare prerm setup -DEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/dbix-searchbuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/DateManip dev-perl/Devel-GlobalDestruction dev-perl/Email-Address dev-perl/Email-Address-List dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png,gif] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Format dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-modules dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/locale-maketext-fuzzy dev-perl/net-server dev-perl/regexp-common dev-perl/text-template dev-perl/text-wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 +DEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/dbix-searchbuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/DateManip dev-perl/Devel-GlobalDestruction dev-perl/Email-Address dev-perl/Email-Address-List dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png,gif] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Format dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-modules dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/Locale-Maketext-Fuzzy dev-perl/net-server dev-perl/regexp-common dev-perl/text-template dev-perl/text-wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 DESCRIPTION=RT is an enterprise-grade ticketing system EAPI=5 HOMEPAGE=http://www.bestpractical.com/rt/ IUSE=mysql +postgres fastcgi lighttpd vhosts KEYWORDS=~amd64 LICENSE=GPL-2 -RDEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/dbix-searchbuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/DateManip dev-perl/Devel-GlobalDestruction dev-perl/Email-Address dev-perl/Email-Address-List dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png,gif] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Format dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-modules dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/locale-maketext-fuzzy dev-perl/net-server dev-perl/regexp-common dev-perl/text-template dev-perl/text-wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) virtual/mta !lighttpd? ( =www-servers/apache-2* ) lighttpd? ( >=www-servers/lighttpd-1.3.13 sys-apps/openrc ) >=app-admin/webapp-config-1.50.15 +RDEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/dbix-searchbuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/DateManip dev-perl/Devel-GlobalDestruction dev-perl/Email-Address dev-perl/Email-Address-List dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png,gif] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Format dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-modules dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/Locale-Maketext-Fuzzy dev-perl/net-server dev-perl/regexp-common dev-perl/text-template dev-perl/text-wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) virtual/mta !lighttpd? ( =www-servers/apache-2* ) lighttpd? ( >=www-servers/lighttpd-1.3.13 sys-apps/openrc ) >=app-admin/webapp-config-1.50.15 REQUIRED_USE=^^ ( mysql postgres ) RESTRICT=test -SLOT=4.2.12 +SLOT=4.2.12-r1 SRC_URI=http://download.bestpractical.com/pub/rt/release/rt-4.2.12.tar.gz _eclasses_=depend.apache e3c541cb90838388f81620d630c28f41 eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 webapp 42c6ef7af496b228f9854b3c81e4b226 -_md5_=c1268894dea52080da6ec6b87bae4d77 +_md5_=6cd313e07666112d3b357ca694ecd895 diff --git a/metadata/md5-cache/x11-misc/dmenu-9999 b/metadata/md5-cache/x11-misc/dmenu-9999 index f52404e8b416..a1c6a29feca9 100644 --- a/metadata/md5-cache/x11-misc/dmenu-9999 +++ b/metadata/md5-cache/x11-misc/dmenu-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile install postinst prepare unpack DEPEND=media-libs/fontconfig x11-libs/libX11 x11-libs/libXft xinerama? ( x11-libs/libXinerama ) virtual/pkgconfig xinerama? ( x11-proto/xineramaproto ) x11-proto/xproto >=dev-vcs/git-1.8.2.1 DESCRIPTION=a generic, highly customizable, and efficient menu for the X Window System -EAPI=5 +EAPI=6 HOMEPAGE=http://tools.suckless.org/dmenu/ IUSE=xinerama savedconfig LICENSE=MIT RDEPEND=media-libs/fontconfig x11-libs/libX11 x11-libs/libXft xinerama? ( x11-libs/libXinerama ) SLOT=0 _eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 portability ff2a0005fbb7fa61f74e9fa5f3a0ecf4 savedconfig 7de7daa586f6bf361639e77d6f2299db toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 -_md5_=d2d3d470f0d173bc97222597360b3e2a +_md5_=362c764a36a5e1bc6fa9118c4587f280 diff --git a/metadata/md5-cache/x11-plugins/wmmsg-1.0.1-r2 b/metadata/md5-cache/x11-plugins/wmmsg-1.0.1-r2 new file mode 100644 index 000000000000..9171bebcf076 --- /dev/null +++ b/metadata/md5-cache/x11-plugins/wmmsg-1.0.1-r2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=prepare +DEPEND=x11-libs/gtk+:2 media-libs/imlib2[X] x11-libs/libXpm x11-libs/libXext x11-libs/libX11 virtual/pkgconfig x11-libs/libXt !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=universal visual notification dockapp +EAPI=6 +HOMEPAGE=http://swapspace.net/~matt/wmmsg +KEYWORDS=~amd64 ~ppc ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/gtk+:2 media-libs/imlib2[X] x11-libs/libXpm x11-libs/libXext x11-libs/libX11 +SLOT=0 +SRC_URI=http://swapspace.net/~matt/wmmsg/wmmsg-1.0.1.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 +_md5_=fb9395316533a4b35394b775c1b5f8bd diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 2ee41ec83231..98c54ec8e036 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Mon, 29 Feb 2016 05:08:59 +0000 +Tue, 01 Mar 2016 05:09:00 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index bb937654dce5..c29de39cd7ea 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Mon Feb 29 05:08:10 UTC 2016 +Tue Mar 1 05:08:10 UTC 2016 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 2307e264bcce..5868001dd126 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Mon, 29 Feb 2016 05:30:01 +0000 +Tue, 01 Mar 2016 05:30:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 26ca8f98801e..046bea1112aa 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1456722601 Mon 29 Feb 2016 05:10:01 AM UTC +1456809002 Tue 01 Mar 2016 05:10:02 AM UTC diff --git a/net-irc/quassel/metadata.xml b/net-irc/quassel/metadata.xml index 57a75067f29e..f6e13eadffbc 100644 --- a/net-irc/quassel/metadata.xml +++ b/net-irc/quassel/metadata.xml @@ -3,19 +3,12 @@ patrick@gentoo.org + Patrick Lauer johu@gentoo.org Johannes Huber - - sputnick@quassel-irc.org - Upstream author, please CC on bugs - - - proxy-maint@gentoo.org - Proxy Maintainers - Build Standalone client with integrated core, no external diff --git a/net-misc/x2goserver/files/x2goserver-4.0.1.19-use_bash_in_Xsession.patch b/net-misc/x2goserver/files/x2goserver-4.0.1.19-use_bash_in_Xsession.patch new file mode 100644 index 000000000000..0eab0d391b69 --- /dev/null +++ b/net-misc/x2goserver/files/x2goserver-4.0.1.19-use_bash_in_Xsession.patch @@ -0,0 +1,26 @@ +X-Git-Url: http://code.x2go.org/gitweb?p=x2goserver.git;a=blobdiff_plain;f=x2goserver-xsession%2Fetc%2FXsession;h=7ad477ffc439ef0f7f0ccbbee40f55504a8f2dd6;hp=ab32a1062cdbec6b3ccbea29682d240f06046394;hb=7ae2669b596d3b84f0ba09552d5a8c0e653ce86d;hpb=1cc93d59f6bb2559b1c42daba26cf3b9b50f3e69 + +diff --git a/x2goserver-xsession/etc/Xsession b/x2goserver-xsession/etc/Xsession +index ab32a10..7ad477f 100755 +--- a/x2goserver-xsession/etc/Xsession ++++ b/x2goserver-xsession/etc/Xsession +@@ -208,16 +208,16 @@ elif [ -f /etc/redhat-release ] || [ -f /etc/gentoo-release ] || [ -f /etc/SUSE- + + # XCLIENTS_D=/etc/x2go/Xclients.d + #if [ -d "$XCLIENTS_D" -a -x "$XCLIENTS_D/Xclients.${XSESSION_EXEC}.sh" ]; then +- # exec -l $SHELL -c "$CK_XINIT_SESSION $SSH_AGENT $XCLIENTS_D/Xclients.$1.sh" ++ # exec /bin/bash -c "exec -l \"$SHELL\" -c \"$CK_XINIT_SESSION $SSH_AGENT $XCLIENTS_D/Xclients.$1.sh\"" + #fi + + # switchdesk support is also totally deprecated in RHEL, but we leave it here + # as a reminder, as well, in case we need it in the future for special setups... + #if [ -x "$SWITCHDESKPATH/Xclients.${XSESSION_EXEC}" ]; then +- # exec -l "$SHELL" -c "$SWITCHDESKPATH/Xclients.${XSESSION_EXEC}"; ++ # exec /bin/bash -c "exec -l \"$SHELL\" -c \"$SWITCHDESKPATH/Xclients.${XSESSION_EXEC}\"" + #fi + +- exec $CK_XINIT_SESSION $SSH_AGENT /bin/sh -c "exec -l $SHELL -c \"$STARTUP\"" ++ exec $CK_XINIT_SESSION $SSH_AGENT /bin/bash -c "exec -l \"$SHELL\" -c \"$STARTUP\"" + fi + + exit 0 diff --git a/net-misc/x2goserver/x2goserver-4.0.1.19-r2.ebuild b/net-misc/x2goserver/x2goserver-4.0.1.19-r2.ebuild new file mode 100644 index 000000000000..83207b667674 --- /dev/null +++ b/net-misc/x2goserver/x2goserver-4.0.1.19-r2.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit multilib systemd toolchain-funcs user + +DESCRIPTION="The X2Go server" +HOMEPAGE="http://www.x2go.org" +SRC_URI="http://code.x2go.org/releases/source/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+fuse postgres +sqlite" + +REQUIRED_USE="|| ( postgres sqlite )" + +DEPEND="" +RDEPEND="dev-perl/Capture-Tiny + dev-perl/Config-Simple + dev-perl/File-BaseDir + dev-perl/File-ReadBackwards + dev-perl/File-Which + media-fonts/font-cursor-misc + media-fonts/font-misc-misc[nls] + >=net-misc/nx-3.5.0.25 + net-misc/openssh + >=sys-apps/iproute2-4.3.0 + x11-apps/xauth + x11-apps/xhost + x11-apps/xwininfo + fuse? ( sys-fs/sshfs-fuse ) + postgres? ( dev-perl/DBD-Pg ) + sqlite? ( dev-perl/DBD-SQLite )" + +pkg_setup() { + # Force the group creation, #479650 + enewgroup x2gouser + enewgroup x2goprint + enewuser x2gouser -1 -1 /var/lib/x2go x2gouser + enewuser x2goprint -1 -1 /var/spool/x2goprint x2goprint +} + +src_prepare() { + # Do not install Xresources symlink (#521126) + sed -e '\#$(INSTALL_SYMLINK) /etc/X11/Xresources# s/^/#/' -i x2goserver-xsession/Makefile || die "Xresources symlink sed failed" + # Multilib clean + sed -e "/^LIBDIR=/s/lib/$(get_libdir)/" -i Makefile */Makefile || die "multilib sed failed" + # Skip man2html build + sed -e "s/build-indep: build_man2html/build-indep:/" -i Makefile */Makefile || die "man2html sed failed" + # Use nxagent directly + sed -i -e "/NX_TEMP=/s/x2goagent/nxagent/" x2goserver/bin/x2gostartagent || die "sed failed" + + eapply "${FILESDIR}"/${P}-use_bash_in_Xsession.patch + eapply_user +} + +src_compile() { + emake CC="$(tc-getCC)" PREFIX=/usr +} + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr install + + fowners root:x2goprint /usr/bin/x2goprint + fperms 2755 /usr/bin/x2goprint + fperms 0750 /etc/sudoers.d + fperms 0440 /etc/sudoers.d/x2goserver + dosym /usr/share/applications /etc/x2go/applications + + newinitd "${FILESDIR}"/${PN}.init x2gocleansessions + systemd_dounit "${FILESDIR}"/x2gocleansessions.service +} + +pkg_postinst() { + if use sqlite ; then + elog "To use sqlite and create the initial database, run:" + elog " # x2godbadmin --createdb" + fi + if use postgres ; then + elog "To use a PostgreSQL databse, more information is availabe here:" + elog "http://www.x2go.org/doku.php/wiki:advanced:multi-node:x2goserver-pgsql" + fi + + elog "For password authentication, you need to enable PasswordAuthentication" + elog "in /etc/ssh/sshd_config (disabled by default in Gentoo)" + elog "An init script was installed for x2gocleansessions" +} diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 809a38686ff8..3a9be5229e60 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,3 +1,3 @@ DIST youtube-dl-2016.01.01.tar.gz 1874602 SHA256 732f37c99d71b4239d72d61dd32214b5a5a618671fb0629c8f8deb28209a172c SHA512 fdb022bed426250e5ee1c2bcc1354dd195c0f9793ca479ca8ca4cfe2f71e07ba100b0dbcda2fb9f310308ab130587d06b16a6a86f9036f0d196b317d2e5b5e92 WHIRLPOOL 152e709ba15264c35a89644ea0d4793bb47c82b317e54043ccfff72e40bdf95e42d76605e801233632d3863537a945cfb9ecc2f75245171b8de31b51ce6af801 -DIST youtube-dl-2016.02.22.tar.gz 1971515 SHA256 14cf17af94a23d451c1c8d2fcc8ee072ee99746d6bc7487c91043498599d630a SHA512 9b1e5bf5cfe8aef0dd55093c046669358b7efc01d0a89abd8a75a4f3dd132dec90b74f1e7bddadf22d4ea21a91168f4962752739c9acd9c232c6757c2307054c WHIRLPOOL 45690a4b1e1e0233d3217d481b9c078b3a4833eaa9857bc762eab4d2c6f663f7bcdbf7a1e065d52b555a6194572cff1e0bcafaf687381153f1e4c3b74c0da361 DIST youtube-dl-2016.02.27.tar.gz 1982455 SHA256 fe22ed108ec94f35e66b0907edffc6e67af54ead95a6f71e4b1ac53d2e1e006e SHA512 cec7d1d3dea8276d8bf14f1f6892ee080fcb50aa2db86eeb06a3ac3e71035ce8168b2ededf57b5d10d66af4fd7d802efb8268baf1f6fc9e79b1f8bd663e8f498 WHIRLPOOL 607adfcc682bc2020f1262cd6128a8ea86c8ed3d7d9909f2f920e866ae5cd946b21aa68bfbcca1260c2b498f3dc19e2827c9504a9e7c2207fb690f682192af6b +DIST youtube-dl-2016.03.01.tar.gz 1983124 SHA256 fc0f9aebcf3983a848a35631ed1aa465ff3feca507387bff72286a9b49f14d70 SHA512 2b2c273ef047dbc3b9d70945e32e49ee11067a11c9cb518c05cb1998f53a20f341cca60906db4cb48fbbd9d464b6a35566d1296e85d65b2db7dc007f4c74f262 WHIRLPOOL b24b72c96cc352a13edd8f21fd0f2145be4c2d701d236c677d1867f1e48bad1876c74a90057a09723dfe9144ece7549af685ad7fed60a928412ce9f599002bc1 diff --git a/net-misc/youtube-dl/youtube-dl-2016.02.22.ebuild b/net-misc/youtube-dl/youtube-dl-2016.03.01.ebuild similarity index 100% rename from net-misc/youtube-dl/youtube-dl-2016.02.22.ebuild rename to net-misc/youtube-dl/youtube-dl-2016.03.01.ebuild diff --git a/net-nds/389-ds-base/389-ds-base-1.3.4.7-r2.ebuild b/net-nds/389-ds-base/389-ds-base-1.3.4.8.ebuild similarity index 83% rename from net-nds/389-ds-base/389-ds-base-1.3.4.7-r2.ebuild rename to net-nds/389-ds-base/389-ds-base-1.3.4.8.ebuild index 0166bf8b82ae..1da378b9ecc5 100644 --- a/net-nds/389-ds-base/389-ds-base-1.3.4.7-r2.ebuild +++ b/net-nds/389-ds-base/389-ds-base-1.3.4.8.ebuild @@ -5,22 +5,22 @@ EAPI=5 WANT_AUTOMAKE="1.9" -MY_P=${P/_alpha/.a} -MY_P=${MY_P/_rc/.rc} inherit user eutils multilib flag-o-matic autotools DESCRIPTION="389 Directory Server (core librares and daemons )" HOMEPAGE="http://port389.org/" -SRC_URI="http://directory.fedoraproject.org/sources/${MY_P}.tar.bz2" +SRC_URI="http://directory.fedoraproject.org/sources/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="autobind auto-dn-suffix debug doc +pam-passthru +dna +ldapi +bitwise +presence kerberos selinux" +# Pinned to db:4.8 as it is the current stable, can change to a later db version < 6 when they stabilize. +# The --with-db-inc line in econf will need to be updated as well when changing db version. COMMON_DEPEND=" - sys-libs/db:5.3 + sys-libs/db:4.8 >=dev-libs/cyrus-sasl-2.1.19 >=net-analyzer/net-snmp-5.1.2 >=dev-libs/icu-3.4:= @@ -46,8 +46,6 @@ RDEPEND="${COMMON_DEPEND} virtual/perl-Time-Local virtual/perl-MIME-Base64" -S="${WORKDIR}/${MY_P}" - pkg_setup() { enewgroup dirsrv enewuser dirsrv -1 -1 -1 dirsrv @@ -55,10 +53,7 @@ pkg_setup() { src_prepare() { #0001-Ticket-47840-add-configure-option-to-disable-instanc.patch - epatch "${FILESDIR}/${P}-no-instance-script.patch" - - #0001-Ticket-48448-dirsrv-start-stop-fail-in-certain-shell.patch - epatch "${FILESDIR}/${P}-shell-corrections.patch" + epatch "${FILESDIR}/389-ds-base-1.3.4-no-instance-script.patch" # as per 389 documentation, when 64bit, export USE_64 use amd64 && export USE_64=1 @@ -71,11 +66,9 @@ src_prepare() { } src_configure() { - local myconf="" - - use auto-dn-suffix && myconf="${myconf} --enable-auto-dn-suffix" - - # for 1.3.5.X, will add --enable-gcc-security + # for 1.3.5.X, will add --enable-gcc-security. + # auto-dn-suffix currently throws warning in configure script, + # see https://fedorahosted.org/389/ticket/48710 econf \ $(use_enable debug) \ $(use_enable pam-passthru) \ @@ -86,17 +79,14 @@ src_configure() { $(use_enable presence) \ $(use_with kerberos) \ $(use_enable debug) \ + $(use_enable auto-dn-suffix) \ --enable-maintainer-mode \ - --enable-autobind \ --with-fhs \ --with-openldap \ - --with-db-inc=/usr/include/${CHOST}/db5.3/ \ --sbindir=/usr/sbin \ --bindir=/usr/bin \ - $myconf + --with-db-inc=/usr/include/db4.8 - # This relies on bug https://fedorahosted.org/389/ticket/48447 - #--without-initddir \ } src_compile() { diff --git a/net-nds/389-ds-base/Manifest b/net-nds/389-ds-base/Manifest index 57022ecef5ad..4e427cc785a4 100644 --- a/net-nds/389-ds-base/Manifest +++ b/net-nds/389-ds-base/Manifest @@ -1 +1 @@ -DIST 389-ds-base-1.3.4.7.tar.bz2 3397520 SHA256 08dae55ed0732e8d316bb65910c74ee913fc215c3436299239e362a3670e76e6 SHA512 02159ce8e9d1e5797d6d6952202b430429bf750179279348430333f7a4b557e305a2041a1e4e7ffe652d34825c9678d3fbf8a3eaea401f257bd922034dbce875 WHIRLPOOL 97af90f6b3f01a2a11e236f1141d1851016711f69b618f2e3122715e8575541040aa09c03f66f7a20cca9e2136bb2d3612c8fcec16b616f981dba39c4f449453 +DIST 389-ds-base-1.3.4.8.tar.bz2 3396105 SHA256 a00468afcfa50de375f921a827a04dd53b6a11b632982bb0db98cafca509e701 SHA512 ac85223cb38d4cebb3ff61b23e3c0312b0cd30a0c6bf0d9644842c6ecfbc9379ea4a639c80b3e78a13a67f273342fec78e9ecf4672cc72e289d72d74c2fa0d8f WHIRLPOOL 4c7645be5b70c108ef437aaf6d50293a99fa6a552c859f649904c6974c8830e5bf96286a0f998c5d187c1f66f3e0922bbe1e756889e6b0a33e8d9db56f0aa005 diff --git a/net-nds/389-ds-base/files/389-ds-base-1.2.11-fix-mozldap.patch b/net-nds/389-ds-base/files/389-ds-base-1.2.11-fix-mozldap.patch deleted file mode 100644 index 7c99085e3d3b..000000000000 --- a/net-nds/389-ds-base/files/389-ds-base-1.2.11-fix-mozldap.patch +++ /dev/null @@ -1,28 +0,0 @@ -commit f5bd0ed47523b39aedb6bcc1f9c0754371159a77 -Author: Rich Megginson -Date: Fri Sep 14 09:20:18 2012 -0600 - - Ticket #461 - fix build problem with mozldap c sdk - - https://fedorahosted.org/389/ticket/461 - Reviewed by: rmeggins - Fixed by: cgrzemba - Branch: master - Fix Description: mozldap does not define LDAP_MOD_OP so define it - Platforms tested: RHEL6 x86_64 - Flag Day: no - Doc impact: no - -diff --git a/ldap/servers/slapd/pw.c b/ldap/servers/slapd/pw.c -index bfd48b1..4736e82 100644 ---- a/ldap/servers/slapd/pw.c -+++ b/ldap/servers/slapd/pw.c -@@ -61,6 +61,9 @@ - #if defined( _WIN32 ) - #undef LDAPDebug - #endif /* _WIN32 */ -+#if defined( USE_MOZLDAP ) -+#define LDAP_MOD_OP (0x0007) -+#endif /* USE_MOZLDAP */ - - #include "slap.h" diff --git a/net-nds/389-ds-base/files/389-ds-base-1.3.4.7-no-instance-script.patch b/net-nds/389-ds-base/files/389-ds-base-1.3.4-no-instance-script.patch similarity index 100% rename from net-nds/389-ds-base/files/389-ds-base-1.3.4.7-no-instance-script.patch rename to net-nds/389-ds-base/files/389-ds-base-1.3.4-no-instance-script.patch diff --git a/net-nds/389-ds-base/files/389-ds-base-1.3.4.7-shell-corrections.patch b/net-nds/389-ds-base/files/389-ds-base-1.3.4.7-shell-corrections.patch deleted file mode 100644 index 0842382dad58..000000000000 --- a/net-nds/389-ds-base/files/389-ds-base-1.3.4.7-shell-corrections.patch +++ /dev/null @@ -1,242 +0,0 @@ -From 340cdd3c9648c4b35ef95cc0498413b763e71859 Mon Sep 17 00:00:00 2001 -From: William Brown -Date: Sun, 31 Jan 2016 14:27:13 +1000 -Subject: [PATCH] Ticket 48448 - dirsrv start-stop fail in certain shell - environments. - -Bug Description: Dirsrv fails to start and stop with certain shell environments -. This is due to the usage of the pattern - - cd $SERVERBIN_DIR - ./ns-slapd ... - -Fix Description: Change all invocations of commands to use explicit paths: - - $SERVERBIN_DIR/ns-slapd - -https://fedorahosted.org/389/ticket/48448 - -Author: wibrown - -Review by: ??? ---- - ldap/admin/src/scripts/start-dirsrv.in | 2 +- - ldap/admin/src/scripts/template-bak2db.in | 3 +-- - ldap/admin/src/scripts/template-db2bak.in | 5 ++--- - ldap/admin/src/scripts/template-db2index.in | 5 ++--- - ldap/admin/src/scripts/template-db2ldif.in | 3 +-- - ldap/admin/src/scripts/template-dbverify.in | 5 ++--- - ldap/admin/src/scripts/template-dn2rdn.in | 5 ++--- - ldap/admin/src/scripts/template-ldif2db.in | 3 +-- - ldap/admin/src/scripts/template-ldif2ldap.in | 5 ++--- - ldap/admin/src/scripts/template-monitor.in | 5 ++--- - ldap/admin/src/scripts/template-restoreconfig.in | 5 ++--- - ldap/admin/src/scripts/template-saveconfig.in | 5 ++--- - ldap/admin/src/scripts/template-suffix2instance.in | 5 ++--- - ldap/admin/src/scripts/template-upgradedb.in | 3 +-- - ldap/admin/src/scripts/template-upgradednformat.in | 5 ++--- - ldap/admin/src/scripts/template-vlvindex.in | 3 +-- - 16 files changed, 26 insertions(+), 41 deletions(-) - -diff --git a/ldap/admin/src/scripts/start-dirsrv.in b/ldap/admin/src/scripts/start-dirsrv.in -index 458f0e8..513addb 100755 ---- a/ldap/admin/src/scripts/start-dirsrv.in -+++ b/ldap/admin/src/scripts/start-dirsrv.in -@@ -70,7 +70,7 @@ start_instance() { - return 1 - fi - else -- cd $SERVERBIN_DIR; ./ns-slapd -D $CONFIG_DIR -i $PIDFILE -w $STARTPIDFILE "$@" -+ $SERVERBIN_DIR/ns-slapd -D $CONFIG_DIR -i $PIDFILE -w $STARTPIDFILE "$@" - if [ $? -ne 0 ]; then - return 1 - fi -diff --git a/ldap/admin/src/scripts/template-bak2db.in b/ldap/admin/src/scripts/template-bak2db.in -index 1725aba..01a12fa 100755 ---- a/ldap/admin/src/scripts/template-bak2db.in -+++ b/ldap/admin/src/scripts/template-bak2db.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./bak2db "$@" -Z {{SERV-ID}} -+{{SERVERBIN-DIR}}/bak2db "$@" -Z {{SERV-ID}} - exit $? -diff --git a/ldap/admin/src/scripts/template-db2bak.in b/ldap/admin/src/scripts/template-db2bak.in -index 50fd5ed..70a4a2b 100755 ---- a/ldap/admin/src/scripts/template-db2bak.in -+++ b/ldap/admin/src/scripts/template-db2bak.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./db2bak "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/db2bak "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-db2index.in b/ldap/admin/src/scripts/template-db2index.in -index a7a633d..9c7c5ec 100755 ---- a/ldap/admin/src/scripts/template-db2index.in -+++ b/ldap/admin/src/scripts/template-db2index.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./db2index "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/db2index "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-db2ldif.in b/ldap/admin/src/scripts/template-db2ldif.in -index b85ffdc..3881911 100755 ---- a/ldap/admin/src/scripts/template-db2ldif.in -+++ b/ldap/admin/src/scripts/template-db2ldif.in -@@ -1,6 +1,5 @@ - #!/bin/sh - - cwd=`pwd` --cd {{SERVERBIN-DIR}} --./db2ldif "$@" -Z {{SERV-ID}} -c $cwd -+{{SERVERBIN-DIR}}/db2ldif "$@" -Z {{SERV-ID}} -c $cwd - exit $? -diff --git a/ldap/admin/src/scripts/template-dbverify.in b/ldap/admin/src/scripts/template-dbverify.in -index 71e3e4e..abcc58e 100755 ---- a/ldap/admin/src/scripts/template-dbverify.in -+++ b/ldap/admin/src/scripts/template-dbverify.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./dbverify "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/dbverify "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-dn2rdn.in b/ldap/admin/src/scripts/template-dn2rdn.in -index b3d8e82..9ecae08 100755 ---- a/ldap/admin/src/scripts/template-dn2rdn.in -+++ b/ldap/admin/src/scripts/template-dn2rdn.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./dn2rdn "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/dn2rdn "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-ldif2db.in b/ldap/admin/src/scripts/template-ldif2db.in -index f3fa58e..f38fce3 100755 ---- a/ldap/admin/src/scripts/template-ldif2db.in -+++ b/ldap/admin/src/scripts/template-ldif2db.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./ldif2db "$@" -Z {{SERV-ID}} -+{{SERVERBIN-DIR}}/ldif2db "$@" -Z {{SERV-ID}} - exit $? -diff --git a/ldap/admin/src/scripts/template-ldif2ldap.in b/ldap/admin/src/scripts/template-ldif2ldap.in -index 806ddcc..c785742 100755 ---- a/ldap/admin/src/scripts/template-ldif2ldap.in -+++ b/ldap/admin/src/scripts/template-ldif2ldap.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./ldif2ldap "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/ldif2ldap "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-monitor.in b/ldap/admin/src/scripts/template-monitor.in -index 2f93337..c89bb8a 100755 ---- a/ldap/admin/src/scripts/template-monitor.in -+++ b/ldap/admin/src/scripts/template-monitor.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./monitor "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/monitor "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-restoreconfig.in b/ldap/admin/src/scripts/template-restoreconfig.in -index f4b2d06..5109561 100755 ---- a/ldap/admin/src/scripts/template-restoreconfig.in -+++ b/ldap/admin/src/scripts/template-restoreconfig.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./restoreconfig "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/restoreconfig "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-saveconfig.in b/ldap/admin/src/scripts/template-saveconfig.in -index c77cce1..7784e83 100755 ---- a/ldap/admin/src/scripts/template-saveconfig.in -+++ b/ldap/admin/src/scripts/template-saveconfig.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./saveconfig "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/saveconfig "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-suffix2instance.in b/ldap/admin/src/scripts/template-suffix2instance.in -index 03bcba8..e29408d 100755 ---- a/ldap/admin/src/scripts/template-suffix2instance.in -+++ b/ldap/admin/src/scripts/template-suffix2instance.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./suffix2instance "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/suffix2instance "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-upgradedb.in b/ldap/admin/src/scripts/template-upgradedb.in -index ce879bb..ae28ac2 100755 ---- a/ldap/admin/src/scripts/template-upgradedb.in -+++ b/ldap/admin/src/scripts/template-upgradedb.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./upgradedb "$@" -Z {{SERV-ID}} -+{{SERVERBIN-DIR}}/upgradedb "$@" -Z {{SERV-ID}} - exit $? -diff --git a/ldap/admin/src/scripts/template-upgradednformat.in b/ldap/admin/src/scripts/template-upgradednformat.in -index 5fd8ef9..74c18e8 100755 ---- a/ldap/admin/src/scripts/template-upgradednformat.in -+++ b/ldap/admin/src/scripts/template-upgradednformat.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./upgradednformat "$@" -Z {{SERV-ID}} --exit $? -\ No newline at end of file -+{{SERVERBIN-DIR}}/upgradednformat "$@" -Z {{SERV-ID}} -+exit $? -diff --git a/ldap/admin/src/scripts/template-vlvindex.in b/ldap/admin/src/scripts/template-vlvindex.in -index 0249696..a7ffb40 100755 ---- a/ldap/admin/src/scripts/template-vlvindex.in -+++ b/ldap/admin/src/scripts/template-vlvindex.in -@@ -1,5 +1,4 @@ - #!/bin/sh - --cd {{SERVERBIN-DIR}} --./vlvindex "$@" -Z {{SERV-ID}} -+{{SERVERBIN-DIR}}/vlvindex "$@" -Z {{SERV-ID}} - exit $? --- -2.5.0 - diff --git a/net-nds/389-ds-base/files/389-ds.initd b/net-nds/389-ds-base/files/389-ds.initd deleted file mode 100644 index 5afe506086c9..000000000000 --- a/net-nds/389-ds-base/files/389-ds.initd +++ /dev/null @@ -1,78 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -DIRSRV_EXEC="/usr/sbin/ns-slapd" -PID_DIRECTORY="/var/run/dirsrv" -DIRSRV_CONF_DIR="/etc/dirsrv" -DS_INSTANCES=${DIRSRV_CONF_DIR}/slapd-* -F389DS_INSTANCES="" - -depend() { - need net logger - use dns - provide dirsvr ldap -} - -checkconfig() { - if [ -z "${DS_INSTANCES}" ]; then - eerror "389 Directory Server has not been configured." - eend 1 - return 1 - fi -} - -start() { - checkconfig || return 1 - - for instance in ${DS_INSTANCES}; do - instance=$(basename ${instance}) - # skip .removed instances, bug #338133 - if [ "${instance%%.removed}" != "${instance}" ]; then - continue - fi - ebegin "Starting 389 Directory Server: instance ${instance}" - start-stop-daemon --start --quiet -m \ - --pidfile ${PID_DIRECTORY}/${instance}.startpid \ - --exec ${DIRSRV_EXEC} -- -D ${DIRSRV_CONF_DIR}/${instance} \ - -i ${PID_DIRECTORY}/${instance}.pid \ - -w ${PID_DIRECTORY}/${instance}.startpid - sts=${?} - eend ${sts} - if [ "${sts}" != "0" ]; then - return 1 - fi - done -} - - - -stop() { - checkconfig || return 1 - - for instance in ${DS_INSTANCES}; do - instance=$(basename ${instance}) - ebegin "Stopping 389 Directory Server: instance ${instance}" - start-stop-daemon --stop --quiet \ - --pidfile ${PID_DIRECTORY}/${instance}.pid \ - --exec ${DIRSRV_EXEC} - eend ${?} - done -} - -status() { - for instance in ${DS_INSTANCES}; do - instance=$(basename ${instance}) - if [ -e ${PID_DIRECTORY}/${instance}.pid ]; then - pid=$(cat ${PID_DIRECTORY}/${instance}.pid) - if [ $(echo "$pid" | grep -c $pid) -ge 1 ]; then - einfo "389 Directory Server: instance ${instance} (pid $pid) running." - else - ewarn "389 Directory Server: instance ${instance} (pid $pid) NOT running." - fi - else - eerror "389 Directory Server: instance ${instance} is NOT running." - fi - done -} diff --git a/net-p2p/airdcpp-webclient/airdcpp-webclient-0.16.5.ebuild b/net-p2p/airdcpp-webclient/airdcpp-webclient-0.16.5.ebuild index e7ca695037a4..fd9a9a6f2593 100644 --- a/net-p2p/airdcpp-webclient/airdcpp-webclient-0.16.5.ebuild +++ b/net-p2p/airdcpp-webclient/airdcpp-webclient-0.16.5.ebuild @@ -23,6 +23,7 @@ RDEPEND=" dev-cpp/tbb virtual/libiconv net-libs/miniupnpc + net-libs/libnatpmp dev-libs/leveldb dev-cpp/websocketpp dev-libs/boost diff --git a/perl-core/JSON-PP/JSON-PP-2.273.0.ebuild b/perl-core/JSON-PP/JSON-PP-2.273.0.ebuild new file mode 100644 index 000000000000..22c176ad4fa7 --- /dev/null +++ b/perl-core/JSON-PP/JSON-PP-2.273.0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=MAKAMAKA +DIST_VERSION=2.27300 +inherit perl-module + +DESCRIPTION="JSON::XS compatible pure-Perl module" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~amd64-fbsd ~amd64-linux ~arm ~arm64 ~hppa ~hppa-hpux ~ia64 ~ia64-hpux ~ia64-linux ~m68k ~m68k-mint ~mips ~ppc ~ppc64 ~ppc-aix ~ppc-macos ~s390 ~sh ~sparc ~sparc64-solaris ~sparc-solaris ~x64-freebsd ~x64-macos ~x64-solaris ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~x86-linux ~x86-macos ~x86-solaris" +IUSE="" diff --git a/perl-core/JSON-PP/Manifest b/perl-core/JSON-PP/Manifest new file mode 100644 index 000000000000..fae17c3012e0 --- /dev/null +++ b/perl-core/JSON-PP/Manifest @@ -0,0 +1 @@ +DIST JSON-PP-2.27300.tar.gz 41365 SHA256 5feef3067be4acd99ca0ebb29cf1ac1cdb338fe46977585bd1e473ea4bab71a3 SHA512 b278cf67e1916f1d3053106d79be0ab07ebfd3726a39245f540d17657411d901bd13b23eecaea41b412041f5c8962aa44060dce6e409e89153c5270cb42922f2 WHIRLPOOL ddac5b3288990b85b65528dc974bc146d952fe736c8837cfb70faa3581310d60890f687a2974996d486e2e7e650114a98efe81398b09e69100432ca0cde1969b diff --git a/perl-core/JSON-PP/metadata.xml b/perl-core/JSON-PP/metadata.xml new file mode 100644 index 000000000000..2b9a936fc0a1 --- /dev/null +++ b/perl-core/JSON-PP/metadata.xml @@ -0,0 +1,8 @@ + + + + + perl@gentoo.org + Gentoo Perl Project + + diff --git a/profiles/license_groups b/profiles/license_groups index c8e35c352367..cc088c1a9652 100644 --- a/profiles/license_groups +++ b/profiles/license_groups @@ -31,7 +31,7 @@ OSI-APPROVED AFL-3.0 AGPL-3 AGPL-3+ Apache-1.1 Apache-2.0 APL-1.0 APSL-2 Artisti # TODO: maybe add a category for BSD-alike MISC-FREE licenses for easy # separation? # BSD-4 alikes: dom4j FastCGI icu JDOM -MISC-FREE ACE Allegro alternate bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 canfep CDDL-Schily CeCILL-C CLX CMake CPL-0.5 CRACKLIB Crypt-IDEA cryptopp czyborra DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh File-MMagic Flashpix FLEX flexmock FLTK freemarker FVWM gd gsm HTML-Tidy htmlc iASL IBPP-1.1 icu IDPL imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE keynote LambdaMOO LIBGLOSS libmng libodialog libpng libtiff LLGPL-2.1 LPPL-1.3 LPPL-1.3b lsof Mail-Sendmail mapm-4.9.5 matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 nap NCSA-HDF netcat NEWLIB ngrep noweb Old-MIT openafs-krb5-a Openwall otter PCRE perforce photopc PHP-2.02 PIZZA-WARE pngcrush pngnq Princeton psutils qmail-nelson rc regexp-UofT RSA rwpng scanlogd Sendmail Sendmail-Open-Source shrimp SMAIL Snd SNIA SSLeay Subversion SVFL tablelist tcltk tcp_wrappers_license TermReadKey TeX TeX-other-free Time-Format Time-modules tm-align totd UCAR-Unidata URT VTK w3m wxWinLL-3.1 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX zpaq ZSH +MISC-FREE ACE Allegro alternate bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 canfep CDDL-Schily CeCILL-C CLX CMake CPL-0.5 CRACKLIB Crypt-IDEA cryptopp czyborra DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh File-MMagic Flashpix FLEX flexmock FLTK freemarker FVWM gd gsm HTML-Tidy htmlc iASL icu IDPL imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE keynote LambdaMOO LIBGLOSS libmng libodialog libpng libtiff LLGPL-2.1 LPPL-1.3 LPPL-1.3b lsof Mail-Sendmail mapm-4.9.5 matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 nap NCSA-HDF netcat NEWLIB ngrep noweb Old-MIT openafs-krb5-a Openwall otter PCRE perforce photopc PHP-2.02 PIZZA-WARE pngcrush pngnq Princeton psutils qmail-nelson rc regexp-UofT RSA rwpng scanlogd Sendmail Sendmail-Open-Source shrimp SMAIL Snd SNIA SSLeay Subversion SVFL tablelist tcltk tcp_wrappers_license TermReadKey TeX TeX-other-free Time-Format Time-modules tm-align totd UCAR-Unidata URT VTK w3m wxWinLL-3.1 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX zpaq ZSH # The following are NOT valid in @MISC-FREE: # arj - usage restrictions # freedist - Doesn't grant the right to do modifications. diff --git a/profiles/package.mask b/profiles/package.mask index 82314e3c66e0..b5f80b9a9d22 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,6 +30,15 @@ #--- END OF EXAMPLES --- +# James Le Cuirot (29 Feb 2016) +# Dead upstream and doesn't build with Java 8. Removal in 30 days. +sci-biology/readseq + +# Patrice Clement (29 Feb 2016) +# Duplicate of dev-libs/libedit. +# Masked for removal in 30 days. +sys-libs/libedit + # Patrick Lauer (22 Feb 2016) # Inactive upstream, build failures, obsoleted by rakudo/perl6 dev-lang/niecza @@ -227,10 +236,6 @@ www-apache/mod_auth_pgsql # Errorneously added. Is already in perl-core. Please uninstall. dev-perl/ExtUtils-Constant -# Pacho Ramos (08 Jan 2016) -# Doesn't work at all, bug #564106. Removal in a month. -media-gfx/fr0st - # Pacho Ramos (06 Jan 2016) # Unbuildable for a long time, bug #522916. Removal in a month. net-im/silc-server diff --git a/profiles/updates/1Q-2016 b/profiles/updates/1Q-2016 index af58b2ebe19e..4a1817727f8a 100644 --- a/profiles/updates/1Q-2016 +++ b/profiles/updates/1Q-2016 @@ -15,3 +15,4 @@ move sci-mathematics/csdp sci-libs/coinor-csdp move dev-perl/ImageInfo dev-perl/Image-Info move dev-perl/ImageSize dev-perl/Image-Size move media-tv/xbmc media-tv/kodi +move dev-perl/locale-maketext-fuzzy dev-perl/Locale-Maketext-Fuzzy diff --git a/profiles/use.local.desc b/profiles/use.local.desc index ad64547a356b..f5004172ecaa 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -33,123 +33,133 @@ app-admin/clsync:extra-hardened - Enable extra security checks. This will hurt p app-admin/clsync:gio - Enable GIO for FS monitoring (glib based alternative to inotify interface, not recommended; if both are compiled, may be selected at runtime). app-admin/clsync:highload-locks - Allows to use spinlocks for short delays instead of mutexes, but only on SMP systems. app-admin/clsync:namespaces - Enable namespaces isolation. -app-admin/collectd:collectd_plugins_aggregation - Build the aggregation plugin (aggregate multiplte values into a single value) -app-admin/collectd:collectd_plugins_apache - Build the apache input plugin (transferred bytes, handled requests, detailed scoreboard statistics) -app-admin/collectd:collectd_plugins_apcups - Build the apcups input plugin (UPS charge, load, input/output/battery voltage, etc.) -app-admin/collectd:collectd_plugins_ascent - Build the ascent input plugin (statistics about a free server for World of Warcraft) -app-admin/collectd:collectd_plugins_battery - Build the battery input plugin (charge, current and voltage of ACPI and PMU based laptop batteries) -app-admin/collectd:collectd_plugins_bind - Build the bind input plugin (name server and resolver statistics) -app-admin/collectd:collectd_plugins_ceph - Build the plugin for sys-cluster/ceph -app-admin/collectd:collectd_plugins_cgroups - Build the cgroups CPU accounting collection plugin -app-admin/collectd:collectd_plugins_conntrack - Build the conntrack input plugin (number of nf_conntrack entries) -app-admin/collectd:collectd_plugins_contextswitch - Build the contextswitch input plugin (number of context switches done by the operating system) -app-admin/collectd:collectd_plugins_cpu - Build the cpu input plugin (time spent in the system, user, nice, idle, and related states) -app-admin/collectd:collectd_plugins_cpufreq - Build the cpufreq input plugin (CPU frequency, for laptops with speedstep or similar) -app-admin/collectd:collectd_plugins_csv - Build the csv output plugin (write to comma separated values (CSV) files) -app-admin/collectd:collectd_plugins_curl - Build the curl input plugin (parse statistics from websites using regular expressions) -app-admin/collectd:collectd_plugins_curl_json - Build the curl_json input plugin (get json data via curl and parse it) -app-admin/collectd:collectd_plugins_curl_xml - Build the curl_xml input plugin (get xml data via curl and parse it) -app-admin/collectd:collectd_plugins_dbi - Build the dbi input plugin (execute SQL statements on databases and interpret the reply) -app-admin/collectd:collectd_plugins_df - Build the df input plugin (mountpoint usage) -app-admin/collectd:collectd_plugins_disk - Build the disk input plugin (sectors read/written, number of read/write actions, average completion time of IO-operations) -app-admin/collectd:collectd_plugins_dns - Build the dns input plugin (collects statistics of your DNS traffic on port udp/53) -app-admin/collectd:collectd_plugins_drbd - Build the plugin for DRBD statistics +app-admin/collectd:collectd_plugins_aggregation - Build the aggregation plugin (aggregates multiplte values into a single value) +app-admin/collectd:collectd_plugins_amqp - Build the AMQP output plugin (transmits or receives values collected by collectd via the Advanced Message Queuing Protocol (AMQP)) +app-admin/collectd:collectd_plugins_apache - Build the apache input plugin (collects statistics from Apache's mod_status module) +app-admin/collectd:collectd_plugins_apcups - Build the apcups input plugin (reads various statistics about a connected uninterruptible power supply (UPS)) +app-admin/collectd:collectd_plugins_ascent - Build the ascent input plugin (reads and parses the statistics page of Ascent) +app-admin/collectd:collectd_plugins_battery - Build the battery input plugin (collects the battery's charge, the drawn current and the battery's voltage) +app-admin/collectd:collectd_plugins_bind - Build the bind input plugin (collects statistics from bind instances) +app-admin/collectd:collectd_plugins_ceph - Build the Ceph input plugin (collects statistics from the Ceph distributed storage system) +app-admin/collectd:collectd_plugins_cgroups - Build the cgroups input plugin (collects CPU accounting information for processes in a cgroup) +app-admin/collectd:collectd_plugins_conntrack - Build the conntrack input plugin (tracks the number of entries in Linux's connection tracking table) +app-admin/collectd:collectd_plugins_contextswitch - Build the contextswitch input plugin (collects the number of context switches done by the operating system) +app-admin/collectd:collectd_plugins_cpu - Build the cpu input plugin (collects the amount of time spent by the CPU in various states) +app-admin/collectd:collectd_plugins_cpufreq - Build the cpufreq input plugin (collects the current CPU's frequency) +app-admin/collectd:collectd_plugins_csv - Build the csv output plugin (writes to comma separated values (CSV) files) +app-admin/collectd:collectd_plugins_curl - Build the curl input plugin (reads streams using net-misc/curl and then parses them according to the configuration) +app-admin/collectd:collectd_plugins_curl_json - Build the curl_json input plugin (queries JavaScript Object Notation (JSON) data using net-misc/curl and parses it according to the user's configuration using dev-libs/yajl) +app-admin/collectd:collectd_plugins_curl_xml - Build the curl_xml input plugin (reads files using net-misc/curl and parses it as Extensible Markup Language (XML)) +app-admin/collectd:collectd_plugins_dbi - Build the dbi input plugin (executes SQL statements on databases and reads back the result) +app-admin/collectd:collectd_plugins_df - Build the df input plugin (collects file system usage information, i. e. basically how much space on a mounted partition is used and how much is available) +app-admin/collectd:collectd_plugins_disk - Build the disk input plugin (collects performance statistics of disks and, where supported, partitions) +app-admin/collectd:collectd_plugins_dns - Build the dns input plugin (collects statistics of your DNS traffic on port udp/53 using net-libs/libpcap) +app-admin/collectd:collectd_plugins_drbd - Build the Linux's Distributed Replicated Block Device (DRBD) input plugin (reads Linux's DRBD statistics) app-admin/collectd:collectd_plugins_email - Build the email input plugin (opens a UNIX domain socket and starts accepting connections on that socket) -app-admin/collectd:collectd_plugins_entropy - Build the entropy input plugin (available entropy on a system) -app-admin/collectd:collectd_plugins_ethstat - Build the ethstat input plugin (performance statistics of Linux ethernet cards) +app-admin/collectd:collectd_plugins_entropy - Build the entropy input plugin (collects the available entropy on a system) +app-admin/collectd:collectd_plugins_ethstat - Build the ethstat input plugin (reads performance statistics directly from ethernet cards) app-admin/collectd:collectd_plugins_exec - Build the exec input/output plugin (executes scripts / applications and reads values back) -app-admin/collectd:collectd_plugins_fhcount - Build the plugin for File handles statistics -app-admin/collectd:collectd_plugins_filecount - Build the filecount input plugin (countd the number of files in a directory and all its subdirectories) -app-admin/collectd:collectd_plugins_fscache - Build the fscache input plugin (information about the caching infrastructure for network file-systems etc) -app-admin/collectd:collectd_plugins_gmond - Build the gmond input plugin (receive data from gmond, the client daemon of the Ganglia project) -app-admin/collectd:collectd_plugins_hddtemp - Build the hddtemp input plugin (temperature of hard disks) -app-admin/collectd:collectd_plugins_interface - Build the interface input plugin (information about traffic, packets and errors of interfaces) -app-admin/collectd:collectd_plugins_ipc - Build the plugin for IPC statistics -app-admin/collectd:collectd_plugins_ipmi - Build the ipmi input plugin (read hardware sensors from servers using the Intelligent Platform Management Interface (IPMI)) -app-admin/collectd:collectd_plugins_iptables - Build the iptables input plugin (statistics from a ip_tables based packet filter) -app-admin/collectd:collectd_plugins_irq - Build the irq input plugin (number of times each interrupt has been handled by the os) +app-admin/collectd:collectd_plugins_fhcount - Build the file handles input plugin (reports the number of used file handles) +app-admin/collectd:collectd_plugins_filecount - Build the filecount input plugin (counts the number of files in a directory and all its subdirectories) +app-admin/collectd:collectd_plugins_fscache - Build the fscache input plugin (collects information about the file-system based caching infrastructure for network file-systems and other slow media) +app-admin/collectd:collectd_plugins_genericjmx - Build the GenericJMX input plugin (reads Managed Beans (MBeans) from an MBeanServer using JMX input plugin; Requires JAVA) +app-admin/collectd:collectd_plugins_gmond - Build the gmond input plugin (receives data from gmond, the client daemon of the Ganglia project) +app-admin/collectd:collectd_plugins_hddtemp - Build the hddtemp input plugin (collects the temperature of disks from hddtemp daemon) +app-admin/collectd:collectd_plugins_interface - Build the interface input plugin (collects information about the traffic, packets per second and errors of interfaces) +app-admin/collectd:collectd_plugins_ipc - Build the IPC input plugin (collects information related to shared memory) +app-admin/collectd:collectd_plugins_ipmi - Build the ipmi input plugin (reads hardware sensors from servers using the Intelligent Platform Management Interface (IPMI)) +app-admin/collectd:collectd_plugins_iptables - Build the iptables input plugin (collects statistics from a ip_tables based packet filter) +app-admin/collectd:collectd_plugins_ipvs - Build the IPVS input plugin (collects statistics from Linux IP Virtual Server) +app-admin/collectd:collectd_plugins_irq - Build the irq input plugin (collects the number of times each interrupt has been handled by the operating system) app-admin/collectd:collectd_plugins_java - Build the java input plugin (embeds a JVM into collectd for writing plugins) -app-admin/collectd:collectd_plugins_libvirt - Build the libvirt input plugin (statistics about virtualized guests on a system) -app-admin/collectd:collectd_plugins_load - Build the load input plugin (system load) -app-admin/collectd:collectd_plugins_log_logstash - Build the plugin for Logstash json_event compatible logging -app-admin/collectd:collectd_plugins_logfile - Build the logfile output plugin (writes log messages to a text file) -app-admin/collectd:collectd_plugins_lvm - Build the LVM input plugin -app-admin/collectd:collectd_plugins_madwifi - Build the madwifi input plugin (information about Atheros wireless LAN chipsets) +app-admin/collectd:collectd_plugins_libvirt - Build the (lib)virt input plugin (collects statistics about virtualized guests on a system) +app-admin/collectd:collectd_plugins_load - Build the load input plugin (collects the system load) +app-admin/collectd:collectd_plugins_log_logstash - Build the Logstash output plugin (writes collectd logs and events as Logstash JSON formatted events) +app-admin/collectd:collectd_plugins_logfile - Build the logfile output plugin (receives log messages from collectd and writes them to a text file) +app-admin/collectd:collectd_plugins_lvm - Build the LVM input plugin (collects the size of logical volumes (LV) and free space inside a volume group (VG) from Linux' Logical Volume Manager (LVM)) +app-admin/collectd:collectd_plugins_madwifi - Build the madwifi input plugin (collects information about Atheros wireless LAN chipsets from the MadWifi driver) app-admin/collectd:collectd_plugins_match_empty_counter - Build the match_empty_counter filter plugin app-admin/collectd:collectd_plugins_match_hashed - Build the match_hashed filter plugin app-admin/collectd:collectd_plugins_match_regex - Build the match_regex filter plugin app-admin/collectd:collectd_plugins_match_timediff - Build the match_timediff filter plugin app-admin/collectd:collectd_plugins_match_value - Build the match_value filter plugin -app-admin/collectd:collectd_plugins_mbmon - Build the mbmon input plugin (information from mainboard sensors) -app-admin/collectd:collectd_plugins_md - Build the md input plugin (disk states in Linux md devices) -app-admin/collectd:collectd_plugins_memcachec - Build the memcachec input plugin (connects to a memcached server) -app-admin/collectd:collectd_plugins_memcached - Build the memcached input plugin (connects to a memcached daemon) -app-admin/collectd:collectd_plugins_memory - Build the memory input plugin (physical memory utilization) +app-admin/collectd:collectd_plugins_mbmon - Build the mbmon input plugin (collects information from mainboard sensors) +app-admin/collectd:collectd_plugins_md - Build the md input plugin (reports the number of disks in various states in Linux software RAID devices) +app-admin/collectd:collectd_plugins_memcachec - Build the memcachec input plugin (queries one or more given pages from a memcached instance and parses the returned data according to user specification) +app-admin/collectd:collectd_plugins_memcached - Build the memcached input plugin (collects statistics from memcached daemon) +app-admin/collectd:collectd_plugins_memory - Build the memory input plugin (collects physical memory utilization) +app-admin/collectd:collectd_plugins_modbus - Build the Modbus input plugin (reads register values from a Modbus "slave" via Modbus/TCP) app-admin/collectd:collectd_plugins_multimeter - Build the multimeter input plugin (reads a voltage or current from a multimeter connected to a serial bus) -app-admin/collectd:collectd_plugins_mysql - Build the mysql input plugin (connects to an MySQL-database and issues a SHOW STATUS command) -app-admin/collectd:collectd_plugins_netlink - Build the netlink input plugin (opens a netlink socket to the Linux kernel for getting statistics) -app-admin/collectd:collectd_plugins_network - Build the network input/output plugin (communicates with other instances of collectd) -app-admin/collectd:collectd_plugins_nfs - Build the nfs input plugin (usage of the Network File System) -app-admin/collectd:collectd_plugins_nginx - Build the nginx input plugin (number of requests handled by the nginx daemon) -app-admin/collectd:collectd_plugins_notify_desktop - Build the notify_desktop output plugin (uses libnotify to display notifications to the user) -app-admin/collectd:collectd_plugins_notify_email - Build the notify_email output plugin (uses libESMTP to send notifications to a configured email address) -app-admin/collectd:collectd_plugins_ntpd - Build the ntpd input plugin (queries an NTP server) -app-admin/collectd:collectd_plugins_numa - Build the numa input plugin (statistics of the Linux Non-Uniform Memory Access (NUMA) subsystem) +app-admin/collectd:collectd_plugins_mysql - Build the mysql input plugin (collects values from 'SHOW STATUS' command of a MySQL server) +app-admin/collectd:collectd_plugins_netlink - Build the netlink input plugin (collects statistics for interfaces, qdiscs, classes and filters using netlink socket) +app-admin/collectd:collectd_plugins_network - Build the network input/output plugin (send values to other and/or receive values from from other collectd instances) +app-admin/collectd:collectd_plugins_nfs - Build the nfs input plugin (collects information about the usage of the Network File System (NFS)) +app-admin/collectd:collectd_plugins_nginx - Build the nginx input plugin (collects number of requests handled and the number of current connections by connection state by the nginx daemon) +app-admin/collectd:collectd_plugins_notify_desktop - Build the notify_desktop output plugin (uses x11-libs/libnotify to display notifications to the user) +app-admin/collectd:collectd_plugins_notify_email - Build the notify_email output plugin (uses net-libs/libesmtp to send notifications to a configured email address) +app-admin/collectd:collectd_plugins_ntpd - Build the ntpd input plugin (collects statistics from a NTP server) +app-admin/collectd:collectd_plugins_numa - Build the numa input plugin (collects statistics of the Linux Non-Uniform Memory Access (NUMA) subsystem) app-admin/collectd:collectd_plugins_nut - Build the nut input plugin (collects UPS statistics using the Network UPS Tools) app-admin/collectd:collectd_plugins_olsrd - Build the olsrd input plugin (reads information about the Optimized Link State Routing daemon) -app-admin/collectd:collectd_plugins_onewire - Build the onewire input plugin (collects temperature information from sensors) -app-admin/collectd:collectd_plugins_openldap - Build the plugin for OpenLDAP statistics +app-admin/collectd:collectd_plugins_onewire - Build the onewire (1-Wire) input plugin (collects temperature information from sensors) +app-admin/collectd:collectd_plugins_openldap - Build the OpenLDAP input plugin (reads monitoring information from OpenLDAP's cn=Monitor subtree) app-admin/collectd:collectd_plugins_openvpn - Build the openvpn input plugin (reads the status file printed by OpenVPN) -app-admin/collectd:collectd_plugins_oracle - Build the oracle input plugin (SQL-queries one or more Oracle database systems) +app-admin/collectd:collectd_plugins_oracle - Build the oracle input plugin (executes SQL statements against Oracle database systems) app-admin/collectd:collectd_plugins_perl - Build the perl language binding plugin (embeds a Perl interpreter into collectd for writing plugins) app-admin/collectd:collectd_plugins_ping - Build the ping input plugin (measures network latency) -app-admin/collectd:collectd_plugins_postgresql - Build the postgresql input plugin (connects to and executes SQL statements on a PostgreSQL database) -app-admin/collectd:collectd_plugins_powerdns - Build the powerdns input plugin (connects to a local PowerDNS instance) -app-admin/collectd:collectd_plugins_processes - Build the processes input plugin (statistics about processes) -app-admin/collectd:collectd_plugins_protocols - Build the protocols input plugin (network protocols) +app-admin/collectd:collectd_plugins_postgresql - Build the postgresql input plugin (executes SQL statements against a PostgreSQL database) +app-admin/collectd:collectd_plugins_powerdns - Build the powerdns input plugin (collects statistics from the PowerDNS name server or recursor via control socket) +app-admin/collectd:collectd_plugins_processes - Build the processes input plugin (collects the number of processes, grouped by their state or detailed statistics about selected processes) +app-admin/collectd:collectd_plugins_protocols - Build the protocols input plugin (collects information about the network protocols supported by the system) app-admin/collectd:collectd_plugins_python - Build the python language binding plugin (embeds a Python interpreter into collectd for writing plugins) -app-admin/collectd:collectd_plugins_redis - Build the Redis input plugin -app-admin/collectd:collectd_plugins_routeros - Build the routeros input plugin (collect information on devices running RouterOS) +app-admin/collectd:collectd_plugins_redis - Build the Redis input plugin (collects usage information from Redis instances) +app-admin/collectd:collectd_plugins_routeros - Build the routeros input plugin (collects information from devices running RouterOS) app-admin/collectd:collectd_plugins_rrdcached - Build the rrdcached input/output plugin (connects to rrdcached and submits updates for RRD files) app-admin/collectd:collectd_plugins_rrdtool - Build the rrdtool output plugin (writes values to RRD-files) -app-admin/collectd:collectd_plugins_sensors - Build the sensors input plugin (uses lm-sensors to read hardware sensors) +app-admin/collectd:collectd_plugins_sensors - Build the sensors input plugin (reads hardware sensors from lm-sensors) app-admin/collectd:collectd_plugins_serial - Build the serial input plugin (collects the traffic on serial interfaces) -app-admin/collectd:collectd_plugins_smart - Build the plugin for SMART statistics -app-admin/collectd:collectd_plugins_snmp - Build the snmp input plugin (read values from network devices using SNMP) +app-admin/collectd:collectd_plugins_sigrok - Build the sigrok input plugin (reads measurements from any supported hardware from sigrok project) +app-admin/collectd:collectd_plugins_smart - Build the S.M.A.R.T input plugin (collects S.M.A.R.T statistics from disk drives) +app-admin/collectd:collectd_plugins_snmp - Build the snmp input plugin (reads values from network devices using SNMP) app-admin/collectd:collectd_plugins_statsd - Build the statsd input plugin (accepts statsd-type metrics from a UDP socket) -app-admin/collectd:collectd_plugins_swap - Build the swap input plugin (amount of memory currently written to swap) +app-admin/collectd:collectd_plugins_swap - Build the swap input plugin (collects amount of memory currently written to swap) app-admin/collectd:collectd_plugins_syslog - Build the syslog output plugin (receives messages from collectd and dispatches them to syslog) app-admin/collectd:collectd_plugins_table - Build the table input plugin (parses table-like structured plain text) -app-admin/collectd:collectd_plugins_tail - Build the tail input plugin (follows logfiles as e.g. tail -f) +app-admin/collectd:collectd_plugins_tail - Build the tail input plugin (follows logfiles, e.g. tail -f) +app-admin/collectd:collectd_plugins_tail_csv - Build the tail_csv input plugin (follows and parses CSV files, e.g. tail -f *.csv) app-admin/collectd:collectd_plugins_target_notification - Build the target_notification filter plugin app-admin/collectd:collectd_plugins_target_replace - Build the target_replace filter plugin app-admin/collectd:collectd_plugins_target_scale - Build the target_scale filter plugin app-admin/collectd:collectd_plugins_target_set - Build the target_set filter plugin -app-admin/collectd:collectd_plugins_tcpconns - Build the tcpconns input plugin (number of TCP connections to or from a specified port) +app-admin/collectd:collectd_plugins_tcpconns - Build the tcpconns input plugin (collects numbers of TCP connections to or from a specified port) app-admin/collectd:collectd_plugins_teamspeak2 - Build the teamspeak2 input plugin (collects traffic statistics from a teamspeak2 instance) app-admin/collectd:collectd_plugins_ted - Build the ted input plugin (connects to The Energy Detective and reads the current power over connected power lines) -app-admin/collectd:collectd_plugins_thermal - Build the thermal input plugin (ACPI thermal zone information) +app-admin/collectd:collectd_plugins_thermal - Build the thermal input plugin (reads ACPI thermal zone information) app-admin/collectd:collectd_plugins_threshold - Build the threshold plugin (checks values against configured thresholds and creates notifications if values are out of bounds) -app-admin/collectd:collectd_plugins_tokyotyrant - Build the tokyotyrant input plugin (number of records and file size from a running Tokyo Tyrant server) -app-admin/collectd:collectd_plugins_turbostat - Build the plugin for Advanced statistic on Intel cpu states -app-admin/collectd:collectd_plugins_unixsock - Build the unixsock output plugin (opens a UNIX domain socket and accepts connections) -app-admin/collectd:collectd_plugins_uptime - Build the uptime input plugin (system uptime) -app-admin/collectd:collectd_plugins_users - Build the users input plugin (number of users currently logged in) +app-admin/collectd:collectd_plugins_tokyotyrant - Build the tokyotyrant input plugin (collects number of records and file size from a running Tokyo Tyrant server) +app-admin/collectd:collectd_plugins_turbostat - Build the turbostat input plugin (reads CPU frequency and C-state residency on modern Intel turbo-capable processors) +app-admin/collectd:collectd_plugins_unixsock - Build the unixsock input/output plugin (opens a UNIX domain socket and accepts connections) +app-admin/collectd:collectd_plugins_uptime - Build the uptime input plugin (keeps track of the system uptime) +app-admin/collectd:collectd_plugins_users - Build the users input plugin (counts the number of users currently logged into the system) app-admin/collectd:collectd_plugins_uuid - Build the uuid plugin (tries hard to determine the UUID of the system it is running on) -app-admin/collectd:collectd_plugins_varnish - Build the varnish input plugin -app-admin/collectd:collectd_plugins_virt - Build the libvirt input plugin (statistics about virtualized guests on a system) -app-admin/collectd:collectd_plugins_vmem - Build the vmem input plugin (information about the virtual memory subsystem) -app-admin/collectd:collectd_plugins_wireless - Build the wireless input plugin (signal quality, signal power and signal-to-noise ratio for wireless LAN cards) -app-admin/collectd:collectd_plugins_write_graphite - Build the write_graphite output plugin (sends the values collected by collectd to Carbon, the storage layer of the Graphite time-series database) -app-admin/collectd:collectd_plugins_write_http - Build the write_http output plugin (sends the values collected by collectd to a web-server) -app-admin/collectd:collectd_plugins_write_log - Build the Log output plugin -app-admin/collectd:collectd_plugins_write_mongodb - Build the write_mongodb output plugin (sends the values collected by collectd to a MongoDB) -app-admin/collectd:collectd_plugins_write_redis - Build the Redis output plugin -app-admin/collectd:collectd_plugins_write_sensu - Build the Sensu output plugin -app-admin/collectd:collectd_plugins_write_tsdb - Build the TSDB output plugin -app-admin/collectd:collectd_plugins_zfs_arc - Build the plugin for ZFS ARC statistics -app-admin/collectd:collectd_plugins_zookeeper - Build the plugin for Zookeeper statistics +app-admin/collectd:collectd_plugins_varnish - Build the varnish input plugin (collects information about Varnish) +app-admin/collectd:collectd_plugins_virt - Build the (lib)virt input plugin (collects statistics about virtualized guests on a system) +app-admin/collectd:collectd_plugins_vmem - Build the vmem input plugin (collects information about the virtual memory subsystem of the kernel) +app-admin/collectd:collectd_plugins_vserver - Build the vserver input plugin (collects information about the virtual servers running on a system, using Linux-Vserver) +app-admin/collectd:collectd_plugins_wireless - Build the wireless input plugin (collects signal quality, signal power and signal-to-noise ratio for wireless LAN cards) +app-admin/collectd:collectd_plugins_write_graphite - Build the write_graphite output plugin (stores values in Carbon, the storage layer of Graphite) +app-admin/collectd:collectd_plugins_write_http - Build the write_http output plugin (sends metrics to a web-server using HTTP POST requests) +app-admin/collectd:collectd_plugins_write_log - Build the write_log output plugin (writes metrics to a file) +app-admin/collectd:collectd_plugins_write_mongodb - Build the MongoDB output plugin (writes metrics to a MongoDB) +app-admin/collectd:collectd_plugins_write_redis - Build the Redis output plugin (stores values in Redis) +app-admin/collectd:collectd_plugins_write_riemann - Build the Riemann output plugin (stores values in Riemann, a stream processing and monitoring system) +app-admin/collectd:collectd_plugins_write_sensu - Build the Sensu output plugin (sends metrics to Sensu Core, an open-source monitoring project) +app-admin/collectd:collectd_plugins_write_tsdb - Build the TSDB output plugin (writes metrics to OpenTSDB, an open-source distributed time-series database based on Apache HBase) +app-admin/collectd:collectd_plugins_zfs_arc - Build the ZFS ARC input plugin (reports information such as the cache size, the various hits and misses (also as a ratio) and the transferred data) +app-admin/collectd:collectd_plugins_zookeeper - Build the zookeeper input plugin (reads data from Apache Zookeeper MNTR command) app-admin/collectd:contrib - Install user-contributed files in the doc directory +app-admin/collectd:filecaps - When set collectd daemon will have set required capabilities to run most plugins even if run as unprivileged user +app-admin/collectd:java - Must be set (workaround for java-pkg-opt-2 eclass limitation) when you want java or genericjmx plugin app-admin/conky:apcupsd - Enable support for sys-power/apcupsd app-admin/conky:audacious - Enable monitoring of music played by media-sound/audacious app-admin/conky:cmus - Enable monitoring of music played by media-sound/cmus @@ -663,6 +673,7 @@ app-emulation/rkt:actool - Install the actool for ACI manipulation app-emulation/rkt:rkt_stage1_coreos - Download and use a prebuilt stage1.aci from CoreOS app-emulation/rkt:rkt_stage1_fly - Build stage1-fly.aci app-emulation/rkt:rkt_stage1_host - Assemble stage1.aci from host binaries +app-emulation/rkt:rkt_stage1_kvm - Build stage1-kvm.aci app-emulation/rkt:rkt_stage1_src - Build the stage1.aci from source app-emulation/spice:smartcard - Enable smartcard remoting using app-emulation/libcacard app-emulation/spice-vdagent:consolekit - Use sys-auth/consolekit to determine the master vdagentd in case of multiple running vdagentds (highly recommended) diff --git a/sci-astronomy/idlastro/Manifest b/sci-astronomy/idlastro/Manifest index 295eb27cad9a..08cf9ffb2a01 100644 --- a/sci-astronomy/idlastro/Manifest +++ b/sci-astronomy/idlastro/Manifest @@ -1,2 +1 @@ -DIST idlastro-20130501.tar.gz 1114612 SHA256 3e4cbec977cee457b470baa02d4cf911229f0d62cdfb8cf94f2abbbd68a282e3 SHA512 ca0cfe9f07554f788de4b4aa190fb651a3d854730905791828c6f9ebeef13ed4ee75713001ffe1ea8e24769086a9da4982362db2df8daa4a907c41373fadd37d WHIRLPOOL cf9643d896004284bfddc8896a70722ebb79a87f77d3e3da10905b399b9894f2bdc78620acb47f1b7e421831cc5324818478709d5a720d04695401e57afb03d4 -DIST idlastro-20140125.tar.gz 1129440 SHA256 b562e172e5426061ea4f3c3e2204c4563c17b516ab2628b15494fbda425a0f8a SHA512 dd2049d1c9b52d5728b995f8db388862a2e9ca8e9f8f4ba72320100ee6676495d012eb2d20296e6a84335cb1e0a6ea34fa73ac030cb1d0c32a5f918ecf84ab6d WHIRLPOOL d9320c935c330652d253df873ca3ddc8147d9b318ff4c925e3d9cdfe8d8b1ed2e0ce64538a3d56c6d74d1ec67aa5b536f420fc015ce1a959e236b845b1b4213c +DIST idlastro-20160225.tar.gz 1148454 SHA256 c844b2e18e174d68dc7cebc3aa4adbe1de9f56c49406be7b3e1b441fbbf20318 SHA512 4b5b64be8cd37b9e400e525ef001332c7a463fc42beccabac792f023a01e5829af5dd7b345819c9323c1cd199d81652d18efb46992d3c8930f55d2d2336da0c7 WHIRLPOOL 8a4b0d717ac95c4fac7975a7b177fd6eb1f6be6cd40ed542ce8a93441092c8f5a391fca12ee5fd37487c5f0ac3741b52302ba44d64e283bd347c8d696927ec62 diff --git a/sci-astronomy/idlastro/idlastro-20130501.ebuild b/sci-astronomy/idlastro/idlastro-20130501.ebuild deleted file mode 100644 index 55267ee2b523..000000000000 --- a/sci-astronomy/idlastro/idlastro-20130501.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -DESCRIPTION="Astronomical user routines for IDL" -HOMEPAGE="http://idlastro.gsfc.nasa.gov/" -SRC_URI="${HOMEPAGE}/ftp/astron.tar.gz -> ${P}.tar.gz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="" -DEPEND="" -RDEPEND=">=dev-lang/gdl-0.9.2-r1" - -S="${WORKDIR}" - -src_install() { - insinto /usr/share/gnudatalanguage/${PN} - doins -r pro/* - dodoc *txt text/* -} diff --git a/sci-astronomy/idlastro/idlastro-20140125.ebuild b/sci-astronomy/idlastro/idlastro-20160225.ebuild similarity index 90% rename from sci-astronomy/idlastro/idlastro-20140125.ebuild rename to sci-astronomy/idlastro/idlastro-20160225.ebuild index 55a8b00cc515..b7029dea4f68 100644 --- a/sci-astronomy/idlastro/idlastro-20140125.ebuild +++ b/sci-astronomy/idlastro/idlastro-20160225.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 DESCRIPTION="Astronomical user routines for IDL" HOMEPAGE="http://idlastro.gsfc.nasa.gov/" diff --git a/sci-astronomy/sofa_c/Manifest b/sci-astronomy/sofa_c/Manifest index cead38fc4fe0..078a0f3e879b 100644 --- a/sci-astronomy/sofa_c/Manifest +++ b/sci-astronomy/sofa_c/Manifest @@ -1 +1 @@ -DIST sofa_c-20120301_a.tar.gz 1267551 SHA256 3534538b4abda067ef07f1aaef869f3b72ddc7f246447558b708d2968e63e66f SHA512 00da8e834e790922200c25b55cba3b48e49770cbada2271e4b7720f5170a422c9a47e6ebd1c51787256e88aaa656c347f21add14fbc353a9346d395ea3eda2c2 WHIRLPOOL d4f13d08b6ff1f67c808ba09858cd0f77664031ea466b71fc65f48f09bd216cd384db7660b574385d1c65ddcbdd5f894a2631335be557ffb29f1b8703d517a46 +DIST sofa_c-20150209_a.tar.gz 1685051 SHA256 b542c5e4ca42d91ada3c66e8d5b86eb9dec085bf1a07d058c01920c6c0b1174a SHA512 45524228db30c388315ce76c1d85db422fac09da3c3ed1442e362a6a2b4a10d27c19ea4a2d51c854280102a99706663622e0375b4afbf096b79877e7602fec4c WHIRLPOOL f4b084145cb3b9c2d722885ed89d2b8298d8fa4a21da25778852d76d20342331c3e7e2c6e28b3d0df04bc9bdf6fc921fe0e60f545ca91dcf69fe86316252006f diff --git a/sci-astronomy/sofa_c/files/sofa_c-makefile.patch b/sci-astronomy/sofa_c/files/sofa_c-makefile.patch index b992d401d3fa..3a942e3bed92 100644 --- a/sci-astronomy/sofa_c/files/sofa_c-makefile.patch +++ b/sci-astronomy/sofa_c/files/sofa_c-makefile.patch @@ -1,5 +1,5 @@ ---- makefile.orig 2013-05-22 20:51:58.398491342 +0000 -+++ makefile 2013-05-22 21:05:52.055466710 +0000 +--- src/makefile.orig ++++ src/makefile @@ -49,7 +49,7 @@ # Specify the installation home directory. @@ -9,7 +9,7 @@ # Specify the installation directory for the library. -@@ -63,9 +63,10 @@ +@@ -63,9 +63,9 @@ # of your preferred C compiler (CCOMPC) and compilation flags (CFLAGF # for functions, CFLAGX for executables) here. @@ -17,17 +17,15 @@ -CFLAGF = -c -pedantic -Wall -W -O -CFLAGX = -pedantic -Wall -W -O +CCOMPC = $(CC) -+CFLAGF = -c -pedantic -Wall -W -fPIC $(CFLAGS) -+CFLAGX = -pedantic -Wall -W $(CFLAGS) -+ ++CFLAGF = $(CPPFLAGS) -I. -c -fPIC $(CFLAGS) ++CFLAGX = $(CPPFLAGS) -I. $(CFLAGS) #----YOU SHOULDN'T HAVE TO MODIFY ANYTHING BELOW THIS LINE--------- -@@ -80,6 +81,12 @@ +@@ -80,6 +80,11 @@ SOFA_LIB_NAME = libsofa_c.a SOFA_LIB = $(SOFA_LIB_DIR)$(SOFA_LIB_NAME) -+ +# Name the SOFA/C library in its source and target locations. + +SOFA_SHLIB_NAME = libsofa_c.so @@ -36,7 +34,7 @@ # Name the SOFA/C testbed in its source and target locations. SOFA_TEST_NAME = t_sofa_c.c -@@ -88,7 +95,7 @@ +@@ -88,7 +93,7 @@ # Name the SOFA/C includes in their source and target locations. SOFA_INC_NAMES = sofa.h sofam.h @@ -44,8 +42,8 @@ +SOFA_INC = $(SOFA_INC_NAMES:%=$(SOFA_INC_DIR)%) # The list of SOFA/C library object files. - SOFA_OBS = iauA2af.o \ -@@ -285,29 +292,32 @@ + +@@ -321,28 +326,31 @@ #----------------------------------------------------------------------- # Build (but do not install) the library. @@ -63,22 +61,21 @@ + cp $(SOFA_SHLIB_NAME).0.0 $(SOFA_LIB_DIR) + ln -s $(SOFA_SHLIB_NAME).0.0 $(SOFA_SHLIB).0 + ln -s $(SOFA_SHLIB_NAME).0 $(SOFA_SHLIB) ++ # Deinstall the library and header files. - deinstall: -- rm -f $(SOFA_LIB) $(SOFA_INC) -+ rm -f $(SOFA_LIB) $(SOFA_SHLIB)* $(SOFA_INC) + uninstall: +- - $(RM) $(SOFA_LIB) $(SOFA_INC) ++ - $(RM) $(SOFA_LIB) $(SOFA_SHLIB)* $(SOFA_INC) # Test the build. - check: $(SOFA_TEST_NAME) $(SOFA_INC_NAMES) $(SOFA_LIB_NAME) +-check: $(SOFA_TEST_NAME) $(SOFA_INC_NAMES) $(SOFA_LIB_NAME) - $(CCOMPC) $(CFLAGX) $(SOFA_TEST_NAME) $(SOFA_LIB_NAME) \ ++check: $(SOFA_TEST_NAME) $(SOFA_INC_NAMES) $(SOFA_SHLIB_NAME) + $(CCOMPC) $(CFLAGX) $(SOFA_TEST_NAME) $(SOFA_SHLIB_NAME).0.0 \ -lm -o $(SOFA_TEST) - ./$(SOFA_TEST) -- rm -f $(SOFA_TEST) -+ ln -s $(SOFA_SHLIB_NAME).0.0 $(SOFA_SHLIB_NAME).0 -+ LD_LIBRARY_PATH="$(LD_LIBRARY_PATH):." ./$(SOFA_TEST) -+ rm -f $(SOFA_TEST) $(SOFA_SHLIB_NAME).0 ++ LD_LIBRARY_PATH="$${LD_LIBRARY_PATH}:." ./$(SOFA_TEST) # Test the installed library. -installcheck test: $(SOFA_TEST_NAME) $(SOFA_INC) $(SOFA_LIB) @@ -86,27 +83,22 @@ $(CCOMPC) $(CFLAGX) $(SOFA_TEST_NAME) -I$(SOFA_INC_DIR) \ -L$(SOFA_LIB_DIR) -lsofa_c -lm -o $(SOFA_TEST) ./$(SOFA_TEST) -@@ -315,11 +325,11 @@ +@@ -353,7 +361,7 @@ - # Local clean up. - clean realclean: -- rm -f $(SOFA_OBS) $(SOFA_LIB_NAME) -+ rm -f $(SOFA_OBS) $(SOFA_LIB_NAME) $(SOFA_SHLIB_NAME) - - # Clean up and deinstall. - distclean: -- rm -f $(SOFA_OBS) $(SOFA_LIB_NAME) $(SOFA_INC) $(SOFA_LIB) -+ rm -f $(SOFA_OBS) $(SOFA_LIB_NAME) $(SOFA_INC) $(SOFA_LIB) $(SOFA_SHLIB_NAME) + # Delete all generated binaries in the current directory. + realclean distclean : clean +- - $(RM) $(SOFA_LIB_NAME) $(SOFA_TEST) ++ - $(RM) $(SOFA_LIB_NAME) $(SOFA_SHLIB_NAME)* $(SOFA_TEST) # Create the installation directories if not already present. $(INSTALL_DIRS): -@@ -329,6 +339,10 @@ +@@ -363,6 +371,10 @@ $(SOFA_LIB_NAME): $(SOFA_OBS) ar ru $(SOFA_LIB_NAME) $? +$(SOFA_SHLIB_NAME): $(SOFA_OBS) -+ $(CC) $(LDFLAGS) -shared -Wl,-soname,$(SOFA_SHLIB_NAME).0 -lm -o $(SOFA_SHLIB_NAME).0.0 $? -+ ++ $(CC) $(LDFLAGS) -shared -Wl,-soname,$(SOFA_SHLIB_NAME).0 -lm $? -o $(SOFA_SHLIB_NAME).0.0 ++ ln -sfn $(SOFA_SHLIB_NAME).0.0 $(SOFA_SHLIB_NAME).0 + # Install the header files. $(SOFA_INC) : $(INSTALL_DIRS) $(SOFA_INC_NAMES) diff --git a/sci-astronomy/sofa_c/sofa_c-20120301a.ebuild b/sci-astronomy/sofa_c/sofa_c-20150209a.ebuild similarity index 77% rename from sci-astronomy/sofa_c/sofa_c-20120301a.ebuild rename to sci-astronomy/sofa_c/sofa_c-20150209a.ebuild index 55d0acfd5227..39ee91a668d1 100644 --- a/sci-astronomy/sofa_c/sofa_c-20120301a.ebuild +++ b/sci-astronomy/sofa_c/sofa_c-20150209a.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit eutils flag-o-matic multilib +inherit toolchain-funcs YYYY=${PV:0:4} MMDD=${PV:4:4} @@ -22,16 +22,18 @@ IUSE="doc" RDEPEND="" DEPEND="" +PATCHES=( "${FILESDIR}/${PN}-makefile.patch" ) + S="${WORKDIR}/sofa/${MYPV}/c/src" src_prepare() { - epatch "${FILESDIR}"/${PN}-makefile.patch + default sed -i -e "s:/lib:/$(get_libdir):" makefile || die - replace-flags -O? -O1 + tc-export CC } src_install() { - emake DESTDIR="${ED}" -j1 install + emake DESTDIR="${ED}" install cd .. dodoc 00READ.ME use doc && dodoc doc/*.lis doc/*.pdf diff --git a/sci-astronomy/swarp/Manifest b/sci-astronomy/swarp/Manifest index 085dae02d6a5..48df37c5eac8 100644 --- a/sci-astronomy/swarp/Manifest +++ b/sci-astronomy/swarp/Manifest @@ -1 +1 @@ -DIST swarp-2.19.1.tar.gz 1962393 SHA256 26e72defa0526e5be59e854bd54f54dc13b28f9ccede40571729c426b030d8cb SHA512 26c5f7522d9b4f6e7d58a818dad62c0eb811f7bbe6e0547a8200f0d4e19bca4f7dc55043d459814abd4b255f75147b975a3bfe9595334ef8c1b0e0b51d31ce9f WHIRLPOOL 84049875eeeba67c579fbad84d0d792d7829a9d74d35483e8933910709e0fb3f91ccf589b5bf46683998bcb06f5c3a46c3d184010835e013dbed9afddd16be6d +DIST swarp-2.38.0.tar.gz 2063462 SHA256 f54a637f6c17ef2d94f767da641afea9bec726c31501cb828d9b948b1507c7c4 SHA512 80f4ade59738df3d4c9b47bda04148b53c6ba995d523fa8d1e02fb5d952b6078a53cc7d273849a033505de127a4f318b95adf2bf5a2dc38e8cc9bdaf5658487a WHIRLPOOL e328be5011ac0a89858ce7420d57715f2a178012b81f649953f63bbac6ae5a75c86905c01f58c4bc0a2149b41291e3092e40dbfd302667a1fcb7b2aa9688ac40 diff --git a/sci-astronomy/swarp/files/swarp-nodoc.patch b/sci-astronomy/swarp/files/swarp-nodoc.patch deleted file mode 100644 index dd8471ef2f96..000000000000 --- a/sci-astronomy/swarp/files/swarp-nodoc.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.am.orig 2010-06-08 21:48:23.000000000 +0100 -+++ Makefile.am 2010-06-08 21:48:34.000000000 +0100 -@@ -2,7 +2,7 @@ - # Copyright (C) 2003-2009 Emmanuel Bertin. - AUTOMAKE_OPTIONS = foreign no-dependencies - SUBDIRS = man src --dist_pkgdata_DATA = doc xsl/swarp.xsl -+dist_pkgdata_DATA = xsl/swarp.xsl - EXTRA_DIST = AUTHORS BUGS ChangeLog COPYRIGHT HISTORY INSTALL \ - README THANKS TODO \ - acx_pthread.m4 acx_prog_cc_optim.m4 \ diff --git a/sci-astronomy/swarp/swarp-2.19.1.ebuild b/sci-astronomy/swarp/swarp-2.38.0.ebuild similarity index 52% rename from sci-astronomy/swarp/swarp-2.19.1.ebuild rename to sci-astronomy/swarp/swarp-2.38.0.ebuild index 9884a43beb0a..16fd61bf6931 100644 --- a/sci-astronomy/swarp/swarp-2.19.1.ebuild +++ b/sci-astronomy/swarp/swarp-2.38.0.ebuild @@ -1,31 +1,27 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 -inherit eutils autotools +EAPI=6 DESCRIPTION="Resample and coadd astronomical FITS images" -HOMEPAGE="http://astromatic.iap.fr/software/swarp" -SRC_URI="ftp://ftp.iap.fr/pub/from_users/bertin/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.astromatic.net/software/swarp" +SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -LICENSE="CeCILL-2" +LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + IUSE="doc threads" + RDEPEND="" DEPEND="${RDEPEND}" -src_prepare() { - epatch "${FILESDIR}"/${PN}-nodoc.patch - eautoreconf -} - src_configure() { econf $(use_enable threads) } -src_install() { +src_install () { default use doc && dodoc doc/* } diff --git a/sci-astronomy/xephem/Manifest b/sci-astronomy/xephem/Manifest index 5205d307a459..22e06f8105a1 100644 --- a/sci-astronomy/xephem/Manifest +++ b/sci-astronomy/xephem/Manifest @@ -1,2 +1,3 @@ DIST xephem-3.7.5.tar.gz 18908521 SHA256 edda7975bb690f74b1853d2729de2b0f4ada69fb37a08117ace7a22c23ee7d1a SHA512 58cd75e4cf8b541d818631e50453f14275cf81ca3349c442ac62eb7fa15509d3d2d57f88420f866312e41ecfd333c8aeeade7656a84e6e527811f98a26b8588d WHIRLPOOL 6d97bf755cc5e98909aa66c1a0ae942f32dd74541ef6e7c03d7c76214462a10929935a38a5a7c468e28ba315f019d9a0489e345f95ee547238d2250fdc9f8005 DIST xephem-3.7.6.tar.gz 17975496 SHA256 2080b628d80d52d9ff7148787e3093eb56f21fef5fba404f123b6198b2d64d05 SHA512 96d77852045e3d3cb996de5884a9272b2f3157216816acf3ad05a0bc60f20673fccc0f1efd54443cf7c38d0aaa86da1cf3f11989c2e37e26feb0cbd78855c84f WHIRLPOOL 94bba9595863cc30f5a058ea72dc4d4824d62355ce0bfef05c63a741667c064febb26bc4da884d7cc15ee04b74cf402031efbdbae844c458acc1c8cb0ec2a91a +DIST xephem-3.7.7.tar.gz 18128523 SHA256 d1f8e17cfc5d2e3af5fd5a8bcf34bbf99a79d40f66326c098a819f82af62b4b7 SHA512 d9cfecf0ce8aa495f66fcf6772ca7df0638cef8b9f18d9d6cbf013846a7575786ae9b5c515abc2058783baa7610320c893ddbc6f68bae28c65661a1c73b88634 WHIRLPOOL 1986700ee6207b4a68ea8e5acb3c37f45286b48c5ed392934eb0b9beb2f9e733c2e995fc367da1f4079b7b48d9d92e2e5400658b9ed36cbf3961969f26e6013c diff --git a/sci-astronomy/xephem/files/xephem-3.7.7-implicits.patch b/sci-astronomy/xephem/files/xephem-3.7.7-implicits.patch new file mode 100644 index 000000000000..4c340711e0e8 --- /dev/null +++ b/sci-astronomy/xephem/files/xephem-3.7.7-implicits.patch @@ -0,0 +1,12 @@ +sunmenu.c:920:3: warning: implicit declaration of function ‘strptime’ + +--- a/GUI/xephem/sunmenu.c ++++ b/GUI/xephem/sunmenu.c +@@ -1,6 +1,7 @@ + /* code to manage the sun display + */ + ++#define _XOPEN_SOURCE /* See feature_test_macros(7) */ + #include + #include + #include diff --git a/sci-astronomy/xephem/files/xephem-3.7.7-respect_env_vars.patch b/sci-astronomy/xephem/files/xephem-3.7.7-respect_env_vars.patch new file mode 100644 index 000000000000..e916bd339782 --- /dev/null +++ b/sci-astronomy/xephem/files/xephem-3.7.7-respect_env_vars.patch @@ -0,0 +1,137 @@ +diff -ruN a/GUI/xephem/Makefile b/GUI/xephem/Makefile +--- a/GUI/xephem/Makefile 2015-08-09 22:36:50.000000000 +0100 ++++ b/GUI/xephem/Makefile 2016-01-24 09:34:24.378578717 +0000 +@@ -10,9 +10,9 @@ + # one executable, xephem. + + # These -I and -L flags point to the supporting XEphem libraries +-LIBINC = -I../../libastro -I../../libip -I../../liblilxml -I../../libjpegd -I../../libpng -I../../libz +-LIBLNK = -L../../libastro -L../../libip -L../../liblilxml -L../../libjpegd -L../../libpng -L../../libz +-LIBLIB = -lastro -lip -llilxml -ljpegd -lpng -lz ++LIBINC = -I../../libastro -I../../libip -I../../liblilxml ++LIBLNK = -L../../libastro -L../../libip -L../../liblilxml ++LIBLIB = -lastro -lip -llilxml -ljpeg -lpng -lz + + # MOTIFI is the directory containing the Xm directory of include files. + # MOTIFL is the directory containing the libXm.a library. +@@ -30,12 +30,9 @@ + endif + + # for linux and Apple OS X +-CC = gcc +-CLDFLAGS = -g +-CFLAGS = $(LIBINC) $(CLDFLAGS) -O2 -Wall -I$(MOTIFI) -I/opt/X11/include +-LDFLAGS = $(LIBLNK) $(CLDFLAGS) -L$(MOTIFL) -L/opt/X11/lib + XLIBS = -lXm -lXp -lXt -lXext -lXmu -lX11 +-LIBS = $(XLIBS) $(LIBLIB) -lm ++CFLAGS := $(LIBINC) $(CFLAGS) ++LIBS = $(LIBLNK) $(XLIBS) $(LIBLIB) -lm + + # static linking on Apple using X11 libs from ports + # CC = gcc +@@ -68,9 +65,9 @@ + # MOTIFI = -I/usr/include + # MOTIFL = -L/usr/lib + # CC = cc +-# CLDFLAGS = ++# CLDFLAGS = + # CFLAGS = $(LIBINC) $(CLDFLAGS) -O -I$(MOTIFI) +-# LDFLAGS = $(LIBLNK) $(CLDFLAGS) -L$(MOTIFL) ++# LDFLAGS = $(LIBLNK) $(CLDFLAGS) -L$(MOTIFL) + # XLIBS = -lXm -lXt -lX11 + # LIBS = $(XLIBS) $(LIBLIB) -lsocket -lnsl -lc -lm /usr/ucblib/libucb.a + # Note: if you get regex undefined, add -lgen to the end of LIBS. +@@ -195,12 +192,9 @@ + nroff -man $? > $@ + + libs: +- cd ../../libastro; make +- cd ../../libip; make +- cd ../../libjpegd; make +- cd ../../liblilxml; make +- cd ../../libpng; make +- cd ../../libz; make ++ $(MAKE) -C ../../libastro ++ $(MAKE) -C ../../libip ++ $(MAKE) -C ../../liblilxml + + clean: + rm -fr *.o ../../lib*/*.[ao] +diff -ruN a/libastro/Makefile b/libastro/Makefile +--- a/libastro/Makefile 2006-02-24 03:37:31.000000000 +0000 ++++ b/libastro/Makefile 2016-01-24 09:30:28.745982455 +0000 +@@ -4,8 +4,6 @@ + # compiler and flags + + # gcc +-CC = gcc +-CFLAGS= -O2 -Wall + + # macosx universal binary + # CFLAGS= -O2 -Wall -arch i386 -arch ppc +@@ -83,11 +81,11 @@ + vsop87_data.o + + libastro.a: $(HS) $(OBJS) +- ar rv $@ $(OBJS) +- ranlib $@ ++ $(AR) rv $@ $(OBJS) ++ $(RANLIB) $@ + + libastro.so: $(HS) $(OBJS) +- $(CC) -shared -o $@ $(OBJS) ++ $(CC) $(LDFLAGS) -shared -o $@ $(OBJS) + + clobber: + rm -f *.o libastro.a +diff -ruN a/libip/Makefile b/libip/Makefile +--- a/libip/Makefile 2009-01-05 20:53:46.000000000 +0000 ++++ b/libip/Makefile 2016-01-24 09:30:28.745982455 +0000 +@@ -2,8 +2,7 @@ + # (C) 2001 Elwood Charles Downey + + # gcc +-CC = gcc +-CFLAGS= -I../libastro -O2 -Wall ++CFLAGS += -I../libastro + + # macosx universal binary + # CFLAGS= -I../libastro -O2 -Wall -arch i386 -arch ppc +@@ -36,11 +35,11 @@ + HS = ip.h fsmatch.h + + libip.a: $(HS) $(OBJS) +- ar rv $@ $(OBJS) +- ranlib $@ ++ $(AR) rv $@ $(OBJS) ++ $(RANLIB) $@ + + libip.so: $(OBJS) +- gcc -shared -o $@ $(OBJS) ++ $(CC) $(LDFLAGS) -shared -o $@ $(OBJS) + + clobber: + rm -f *.o libip.a +diff -ruN a/liblilxml/Makefile b/liblilxml/Makefile +--- a/liblilxml/Makefile 2006-02-24 03:37:32.000000000 +0000 ++++ b/liblilxml/Makefile 2016-01-24 09:30:28.745982455 +0000 +@@ -4,8 +4,6 @@ + # compiler and flags + + # gcc +-CC = gcc +-CFLAGS= -O2 -Wall + + # macosx universal binary + # CFLAGS= -O2 -Wall -arch i386 -arch ppc +@@ -27,8 +25,8 @@ + OBJS = lilxml.o base64.o + + liblilxml.a: $(HS) $(OBJS) +- ar r $@ $(OBJS) +- ranlib $@ ++ $(AR) r $@ $(OBJS) ++ $(RANLIB) $@ + + liltest: liltest.o liblilxml.a + $(CC) $(LDFLAGS) -o liltest liltest.o liblilxml.a diff --git a/sci-astronomy/xephem/xephem-3.7.7.ebuild b/sci-astronomy/xephem/xephem-3.7.7.ebuild new file mode 100644 index 000000000000..967573d37c37 --- /dev/null +++ b/sci-astronomy/xephem/xephem-3.7.7.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils toolchain-funcs + +DESCRIPTION="Interactive tool for astronomical ephemeris and sky simulation" +HOMEPAGE="http://www.clearskyinstitute.com/xephem" +SRC_URI="http://97.74.56.125/free/${P}.tar.gz" + +LICENSE="XEphem" +SLOT=0 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=">=x11-libs/motif-2.3:0 + virtual/jpeg:0= + media-libs/libpng:0=" +DEPEND="${RDEPEND} + sys-apps/groff" + +PATCHES=( + "${FILESDIR}/${P}-respect_env_vars.patch" + "${FILESDIR}/${P}-implicits.patch" +) + +src_prepare() { + default + echo > "${T}"/XEphem "XEphem.ShareDir: /usr/share/${PN}" + echo > "${T}"/99xephem "XEHELPURL=/usr/share/doc/${PF}/html/xephem.html" +} + +src_compile() { + tc-export CC AR RANLIB + emake -C GUI/xephem +} + +src_install() { + insinto /usr/share/X11/app-defaults + has_version ' disable - # --enable-static is required for tests, see bug 355071 - # Hack to make it not generate docs on the fly; xmlto is - # needed for man pages (xsltproc is only needed for web pages) - econf WITH_XMLTO=yes WITH_XSLTPROC=no \ - --build=${CBUILD} \ - --disable-dependency-tracking \ - --disable-bluetooth \ - --enable-static \ - --enable-gpsd-user=gpsd \ - --enable-gpsd-group=uucp \ - $(use_enable dbus) \ - $(use_enable ipv6) \ - $(use_enable ntp ntpshm) \ - $(use_enable ntp pps) \ - ${myopts} -} - -src_install() { - # no it can't be done using emake cause it is non-compliant - make DESTDIR="${D}" install || die - - # needs this header for libQgpsmm - if use qt4 ; then - insinto /usr/include - doins libQgpsmm/libQgpsmm_global.h - fi - - # no need for .la files here - find "${D}" -type f -name '*.la' -exec rm -f '{}' + - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd || die - newinitd "${FILESDIR}"/gpsd.init-2 gpsd || die -} diff --git a/sci-geosciences/gpsd/gpsd-2.96-r1.ebuild b/sci-geosciences/gpsd/gpsd-2.96-r1.ebuild deleted file mode 100644 index d87b67e38c45..000000000000 --- a/sci-geosciences/gpsd/gpsd-2.96-r1.ebuild +++ /dev/null @@ -1,117 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 - -PYTHON_DEPEND="2:2.6" - -inherit python autotools user eutils - -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" -HOMEPAGE="http://gpsd.berlios.de/" -#SRC_URI="mirror://berlios/gpsd/${P}bis.tar.gz" -SRC_URI="mirror://gentoo/${P}bis.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" - -GPSD_PROTOCOLS="ashtech aivdm clientdebug earthmate evermore fv18 garmin - garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver - oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip - tripmate tnt ubx" -for protocol in ${GPSD_PROTOCOLS}; do - IUSE_GPSD_PROTOCOLS+=" gpsd_protocols_${protocol}" -done - -IUSE="${IUSE_GPSD_PROTOCOLS} dbus ipv6 ntp qt4 test udev" - -# those harddeps are de-facto automagicall -RDEPEND=" - dev-python/pygtk:2 - sys-libs/ncurses - virtual/libusb:1 - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ntp? ( net-misc/ntp ) - qt4? ( dev-qt/qtgui:4 )" - -DEPEND="${RDEPEND} - app-text/xmlto - =app-text/docbook-xml-dtd-4.1* - test? ( sys-devel/bc )" - -PATCHES=( - "${FILESDIR}/2.95-disable-strip.patch" - "${FILESDIR}/${PV}-fix-ldflags.patch" - "${FILESDIR}/${PV}-fix-tests.patch" - "${FILESDIR}/${PV}-pkgconfig.patch" -) - -pkg_setup() { - python_set_active_version 2 - - # Run the gpsd daemon as gpsd and group uucp - enewuser gpsd -1 -1 -1 "uucp" -} - -src_prepare() { - epatch ${PATCHES[@]} - epatch_user - eautoreconf -} - -src_configure() { - local myopts - - # enable specified protocols - for protocol in ${GPSD_PROTOCOLS}; do - myopts+=" $(use_enable gpsd_protocols_${protocol} ${protocol})" - done - - if ! use qt4 ; then - myopts+=" --disable-libQgpsmm --disable-libgpsmm" - fi - - # --disable-bluetooth: considered experimental -> disable - # Hack to make it not generate docs on the fly; xmlto is - # needed for man pages (xsltproc is only needed for web pages) - WITH_XMLTO=yes WITH_XSLTPROC=no econf \ - --disable-dependency-tracking \ - --disable-bluetooth \ - --disable-static \ - --enable-gpsd-user=gpsd \ - --enable-gpsd-group=uucp \ - $(use_enable dbus) \ - $(use_enable ipv6) \ - $(use_enable ntp ntpshm) \ - $(use_enable ntp pps) \ - ${myopts} -} - -src_install() { - # no it can't be done using emake cause it is non-compliant - make DESTDIR="${D}" install || die - - if use udev ; then - insinto /lib/udev/rules.d/ - newins gpsd.rules 25-gpsd.rules - exeinto /lib/udev/ - doexe gpsd.hotplug{,.wrapper} - fi - - # needs this header for libQgpsmm - if use qt4 ; then - insinto /usr/include - doins libQgpsmm/libQgpsmm_global.h - fi - - # no need for .la files here - find "${D}" -type f -name '*.la' -exec rm -f '{}' + - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd || die - newinitd "${FILESDIR}"/gpsd.init-2 gpsd || die -} diff --git a/sci-geosciences/gpsd/gpsd-3.10.ebuild b/sci-geosciences/gpsd/gpsd-3.10.ebuild index 804c9beec259..6662e5a3db4d 100644 --- a/sci-geosciences/gpsd/gpsd-3.10.ebuild +++ b/sci-geosciences/gpsd/gpsd-3.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -18,7 +18,7 @@ else KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" fi -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" +DESCRIPTION="GPS daemon and library for USB/serial GPS devices and GPS/mapping clients" HOMEPAGE="http://catb.org/gpsd/" LICENSE="BSD" @@ -37,7 +37,7 @@ REQUIRED_USE="X? ( python ) python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="X? ( dev-python/pygtk:2[${PYTHON_USEDEP}] ) - ncurses? ( sys-libs/ncurses ) + ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( diff --git a/sci-geosciences/gpsd/gpsd-3.11.ebuild b/sci-geosciences/gpsd/gpsd-3.11.ebuild index 21233f8d6b2d..4fb5430ad0e1 100644 --- a/sci-geosciences/gpsd/gpsd-3.11.ebuild +++ b/sci-geosciences/gpsd/gpsd-3.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -18,7 +18,7 @@ else KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" fi -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" +DESCRIPTION="GPS daemon and library for USB/serial GPS devices and GPS/mapping clients" HOMEPAGE="http://catb.org/gpsd/" LICENSE="BSD" @@ -37,7 +37,7 @@ REQUIRED_USE="X? ( python ) python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="X? ( dev-python/pygtk:2[${PYTHON_USEDEP}] ) - ncurses? ( sys-libs/ncurses ) + ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( diff --git a/sci-geosciences/gpsd/gpsd-3.13.ebuild b/sci-geosciences/gpsd/gpsd-3.13.ebuild deleted file mode 100644 index 94c09c310965..000000000000 --- a/sci-geosciences/gpsd/gpsd-3.13.ebuild +++ /dev/null @@ -1,166 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -DISTUTILS_OPTIONAL=1 -PYTHON_COMPAT=( python2_7 ) -SCONS_MIN_VERSION="1.2.1" - -inherit eutils udev user multilib distutils-r1 scons-utils toolchain-funcs - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.savannah.nongnu.org/gpsd.git" - inherit git-2 -else - SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -fi - -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" -HOMEPAGE="http://catb.org/gpsd/" - -LICENSE="BSD" -SLOT="0" - -GPSD_PROTOCOLS=( - aivdm ashtech earthmate evermore fury fv18 garmin garmintxt - geostar gpsclock itrax mtk3301 navcom nmea0183 nmea2000 ntrip - oceanserver oncore passthrough rtcm104v2 rtcm104v3 sirf superstar2 - tnt tripmate tsip ublox -) -IUSE_GPSD_PROTOCOLS=${GPSD_PROTOCOLS[@]/#/gpsd_protocols_} -IUSE="${IUSE_GPSD_PROTOCOLS} bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets static test udev usb X" -REQUIRED_USE="X? ( python ) - gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) - python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND="X? ( dev-python/pygtk:2[${PYTHON_USEDEP}] ) - ncurses? ( sys-libs/ncurses ) - bluetooth? ( net-wireless/bluez ) - usb? ( virtual/libusb:1 ) - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ntp? ( || ( net-misc/ntp net-misc/chrony ) ) - qt4? ( dev-qt/qtgui:4 ) - python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( sys-devel/bc )" - -# xml packages are for man page generation -if [[ ${PV} == "9999" ]] ; then - DEPEND+=" - app-text/xmlto - =app-text/docbook-xml-dtd-4.1*" -fi - -src_prepare() { - # Make sure our list matches the source. - local src_protocols=$(echo $( - sed -n '/# GPS protocols/,/# Time service/{s:#.*::;s:[(",]::g;p}' "${S}"/SConstruct | awk '{print $1}' | LC_ALL=C sort - ) ) - if [[ ${src_protocols} != ${GPSD_PROTOCOLS[*]} ]] ; then - eerror "Detected protocols: ${src_protocols}" - eerror "Ebuild protocols: ${GPSD_PROTOCOLS[*]}" - die "please sync ebuild & source" - fi - - epatch "${FILESDIR}"/${PN}-3.8-ldflags.patch - epatch "${FILESDIR}"/${PN}-3.11-rpath.patch - epatch "${FILESDIR}"/${PN}-3.13-ntpshm.patch - - # Avoid useless -L paths to the install dir - sed -i \ - -e 's:\:SYSROOT:g' \ - SConstruct || die - - use python && distutils-r1_src_prepare -} - -python_prepare_all() { - python_export_best - # Extract python info out of SConstruct so we can use saner distribute - pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } - local pybins=$(pyvar python_progs | tail -1) - local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) - local packet=$("${PYTHON}" -c "${pysrcs}; print(python_extensions['gps/packet'])") - local client=$("${PYTHON}" -c "${pysrcs}; print(python_extensions['gps/clienthelpers'])") - sed \ - -e "s|@VERSION@|$(pyvar gpsd_version)|" \ - -e "s|@URL@|$(pyvar website)|" \ - -e "s|@EMAIL@|$(pyvar devmail)|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - -e "s|@GPS_PACKET_SOURCES@|${packet}|" \ - -e "s|@GPS_CLIENT_SOURCES@|${client}|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - "${FILESDIR}"/${PN}-3.3-setup.py > setup.py || die - distutils-r1_python_prepare_all -} - -src_configure() { - myesconsargs=( - prefix="${EPREFIX}/usr" - libdir="\$prefix/$(get_libdir)" - udevdir="$(get_udevdir)" - chrpath=False - gpsd_user=gpsd - gpsd_group=uucp - nostrip=True - python=False - manbuild=False - shared=$(usex !static True False) - $(use_scons bluetooth bluez) - $(use_scons cxx libgpsmm) - $(use_scons debug clientdebug) - $(use_scons dbus dbus_export) - $(use_scons ipv6) - $(use_scons latency_timing timing) - $(use_scons ncurses) - $(use_scons ntp ntpshm) - $(use_scons ntp pps) - $(use_scons shm shm_export) - $(use_scons sockets socket_export) - $(use_scons qt4 libQgpsmm) - $(use_scons usb) - ) - - # enable specified protocols - local protocol - for protocol in ${GPSD_PROTOCOLS[@]} ; do - myesconsargs+=( $(use_scons gpsd_protocols_${protocol} ${protocol}) ) - done -} - -src_compile() { - export CHRPATH= - tc-export CC CXX PKG_CONFIG - export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} - escons - - use python && distutils-r1_src_compile -} - -src_install() { - DESTDIR="${D}" escons install $(usex udev udev-install "") - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd - newinitd "${FILESDIR}"/gpsd.init-2 gpsd - - if use python ; then - distutils-r1_src_install - # Delete all X related packages if user doesn't want them - if ! use X ; then - rm "${ED%/}"/usr/bin/xgps* || die - fi - fi -} - -pkg_preinst() { - # Run the gpsd daemon as gpsd and group uucp; create it here - # as it doesn't seem to be needed during compile/install ... - enewuser gpsd -1 -1 -1 "uucp" -} diff --git a/sci-geosciences/gpsd/gpsd-3.15.ebuild b/sci-geosciences/gpsd/gpsd-3.15.ebuild index 9249bcc9d940..bc687ae87124 100644 --- a/sci-geosciences/gpsd/gpsd-3.15.ebuild +++ b/sci-geosciences/gpsd/gpsd-3.15.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -18,7 +18,7 @@ else KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" fi -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" +DESCRIPTION="GPS daemon and library for USB/serial GPS devices and GPS/mapping clients" HOMEPAGE="http://catb.org/gpsd/" LICENSE="BSD" @@ -37,7 +37,7 @@ REQUIRED_USE="X? ( python ) python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="X? ( dev-python/pygtk:2[${PYTHON_USEDEP}] ) - ncurses? ( sys-libs/ncurses ) + ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( diff --git a/sci-geosciences/gpsd/gpsd-3.6.ebuild b/sci-geosciences/gpsd/gpsd-3.6.ebuild deleted file mode 100644 index 2e3655eac447..000000000000 --- a/sci-geosciences/gpsd/gpsd-3.6.ebuild +++ /dev/null @@ -1,163 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -PYTHON_DEPEND="python? 2:2.6" -RESTRICT_PYTHON_ABIS="3.*" -SUPPORT_PYTHON_ABIS="1" -SCONS_MIN_VERSION="1.2.1" - -inherit eutils user multilib distutils scons-utils toolchain-funcs - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.savannah.nongnu.org/gpsd.git" - inherit git-2 -else - SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -fi - -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" -HOMEPAGE="http://catb.org/gpsd/" - -LICENSE="BSD" -SLOT="0" - -GPSD_PROTOCOLS=( - ashtech aivdm clientdebug earthmate evermore fv18 garmin - garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver - oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip - tripmate tnt ubx -) -IUSE_GPSD_PROTOCOLS=${GPSD_PROTOCOLS[@]/#/gpsd_protocols_} -IUSE="${IUSE_GPSD_PROTOCOLS} bluetooth cxx debug dbus ipv6 ncurses ntp python qt4 +shm +sockets test udev usb X" -REQUIRED_USE="X? ( python )" - -RDEPEND="X? ( dev-python/pygtk:2 ) - ncurses? ( sys-libs/ncurses ) - bluetooth? ( net-wireless/bluez ) - usb? ( virtual/libusb:1 ) - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ntp? ( || ( net-misc/ntp net-misc/chrony ) ) - qt4? ( dev-qt/qtgui:4 )" -DEPEND="${RDEPEND} - test? ( sys-devel/bc )" - -# xml packages are for man page generation -if [[ ${PV} == "9999" ]] ; then - DEPEND+=" - app-text/xmlto - =app-text/docbook-xml-dtd-4.1*" -fi - -pkg_setup() { - use python && python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-3.3-ldflags.patch - epatch "${FILESDIR}"/${PN}-3.4-always-install-man-pages.patch - epatch "${FILESDIR}"/${PN}-3.4-no-man-gen.patch - epatch "${FILESDIR}"/${PN}-3.6-debug.patch - epatch "${FILESDIR}"/${PN}-3.6-rpath.patch - - # Avoid useless -L paths to the install dir - sed -i \ - -e '/^env.Prepend(LIBPATH=.installdir(.libdir.).)$/d' \ - -e 's:\:SYSROOT:g' \ - SConstruct || die - - # Extract python info out of SConstruct so we can use saner distribute - if use python ; then - pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } - local pybins=$(pyvar python_progs) - local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) - local packet=$(python -c "${pysrcs}; print(python_extensions['gps/packet'])") - local client=$(python -c "${pysrcs}; print(python_extensions['gps/clienthelpers'])") - sed \ - -e "s|@VERSION@|$(pyvar gpsd_version)|" \ - -e "s|@URL@|$(pyvar website)|" \ - -e "s|@EMAIL@|$(pyvar devmail)|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - -e "s|@GPS_PACKET_SOURCES@|${packet}|" \ - -e "s|@GPS_CLIENT_SOURCES@|${client}|" \ - -e "s|@SCRIPTS@|$(pyvar python_progs)|" \ - "${FILESDIR}"/${PN}-3.3-setup.py > setup.py || die - distutils_src_prepare - fi -} - -src_configure() { - myesconsargs=( - prefix="${EPREFIX}/usr" - libdir="\$prefix/$(get_libdir)" - chrpath=False - gpsd_user=gpsd - gpsd_group=uucp - strip=False - python=False - $(use_scons bluetooth bluez) - $(use_scons cxx libgpsmm) - $(use_scons debug) - $(use_scons dbus dbus_export) - $(use_scons ipv6) - $(use_scons ncurses) - $(use_scons ntp ntpshm) - $(use_scons ntp pps) - $(use_scons shm shm_export) - $(use_scons sockets socket_export) - $(use_scons qt4 libQgpsmm) - $(use_scons usb) - ) - - # enable specified protocols - local protocol - for protocol in ${GPSD_PROTOCOLS[@]} ; do - myesconsargs+=( $(use_scons gpsd_protocols_${protocol} ${protocol}) ) - done -} - -src_compile() { - tc-export CC CXX PKG_CONFIG - export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} - escons - - use python && distutils_src_compile -} - -src_install() { - DESTDIR="${D}" escons install $(usex udev udev-install "") - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd - newinitd "${FILESDIR}"/gpsd.init-2 gpsd - - if use python ; then - distutils_src_install - # Delete all X related packages if user doesn't want them - if ! use X ; then - local p - for p in $(grep -Il 'import .*pygtk' *) ; do - find "${D}"/usr/bin -name "${p}*" -delete - done - fi - fi -} - -pkg_preinst() { - # Run the gpsd daemon as gpsd and group uucp; create it here - # as it doesn't seem to be needed during compile/install ... - enewuser gpsd -1 -1 -1 "uucp" -} - -pkg_postinst() { - use python && distutils_pkg_postinst -} - -pkg_postrm() { - use python && distutils_pkg_postrm -} diff --git a/sci-geosciences/gpsd/gpsd-3.7.ebuild b/sci-geosciences/gpsd/gpsd-3.7.ebuild deleted file mode 100644 index d6dd080405bf..000000000000 --- a/sci-geosciences/gpsd/gpsd-3.7.ebuild +++ /dev/null @@ -1,168 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -PYTHON_DEPEND="python? 2:2.6" -RESTRICT_PYTHON_ABIS="3.*" -SUPPORT_PYTHON_ABIS="1" -SCONS_MIN_VERSION="1.2.1" - -inherit eutils udev user multilib distutils scons-utils toolchain-funcs - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.savannah.nongnu.org/gpsd.git" - inherit git-2 -else - SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" - KEYWORDS="amd64 arm ppc ppc64 x86" -fi - -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" -HOMEPAGE="http://catb.org/gpsd/" - -LICENSE="BSD" -SLOT="0" - -GPSD_PROTOCOLS=( - ashtech aivdm clientdebug earthmate evermore fv18 garmin - garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver - oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip - tripmate tnt ubx -) -IUSE_GPSD_PROTOCOLS=${GPSD_PROTOCOLS[@]/#/gpsd_protocols_} -IUSE="${IUSE_GPSD_PROTOCOLS} bluetooth cxx debug dbus ipv6 ncurses ntp python qt4 +shm +sockets test udev usb X" -REQUIRED_USE="X? ( python )" - -RDEPEND="X? ( dev-python/pygtk:2 ) - ncurses? ( sys-libs/ncurses ) - bluetooth? ( net-wireless/bluez ) - usb? ( virtual/libusb:1 ) - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ntp? ( || ( net-misc/ntp net-misc/chrony ) ) - qt4? ( dev-qt/qtgui:4 )" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( sys-devel/bc )" - -# xml packages are for man page generation -if [[ ${PV} == "9999" ]] ; then - DEPEND+=" - app-text/xmlto - =app-text/docbook-xml-dtd-4.1*" -fi - -pkg_setup() { - use python && python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-3.3-ldflags.patch - epatch "${FILESDIR}"/${PN}-3.4-always-install-man-pages.patch - epatch "${FILESDIR}"/${PN}-3.4-no-man-gen.patch - epatch "${FILESDIR}"/${PN}-3.7-rpath.patch - epatch "${FILESDIR}"/${PN}-3.7-gps_regress.patch #441760 - epatch "${FILESDIR}"/${PN}-3.7-no-export-t.patch #463850 - - # Avoid useless -L paths to the install dir - sed -i \ - -e '/^env.Prepend(LIBPATH=.installdir(.libdir.).)$/d' \ - -e 's:\:SYSROOT:g' \ - SConstruct || die - - # Extract python info out of SConstruct so we can use saner distribute - if use python ; then - pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } - local pybins=$(pyvar python_progs) - local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) - local packet=$(python -c "${pysrcs}; print(python_extensions['gps/packet'])") - local client=$(python -c "${pysrcs}; print(python_extensions['gps/clienthelpers'])") - sed \ - -e "s|@VERSION@|$(pyvar gpsd_version)|" \ - -e "s|@URL@|$(pyvar website)|" \ - -e "s|@EMAIL@|$(pyvar devmail)|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - -e "s|@GPS_PACKET_SOURCES@|${packet}|" \ - -e "s|@GPS_CLIENT_SOURCES@|${client}|" \ - -e "s|@SCRIPTS@|$(pyvar python_progs)|" \ - "${FILESDIR}"/${PN}-3.3-setup.py > setup.py || die - distutils_src_prepare - fi - - sed -i -e "s:/lib/udev:$(get_udevdir):" gpsd.rules SConstruct || die -} - -src_configure() { - myesconsargs=( - prefix="${EPREFIX}/usr" - libdir="\$prefix/$(get_libdir)" - chrpath=False - gpsd_user=gpsd - gpsd_group=uucp - strip=False - python=False - $(use_scons bluetooth bluez) - $(use_scons cxx libgpsmm) - $(use_scons debug) - $(use_scons dbus dbus_export) - $(use_scons ipv6) - $(use_scons ncurses) - $(use_scons ntp ntpshm) - $(use_scons ntp pps) - $(use_scons shm shm_export) - $(use_scons sockets socket_export) - $(use_scons qt4 libQgpsmm) - $(use_scons usb) - ) - - # enable specified protocols - local protocol - for protocol in ${GPSD_PROTOCOLS[@]} ; do - myesconsargs+=( $(use_scons gpsd_protocols_${protocol} ${protocol}) ) - done -} - -src_compile() { - export CHRPATH= - tc-export CC CXX PKG_CONFIG - export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} - escons - - use python && distutils_src_compile -} - -src_install() { - DESTDIR="${D}" escons install $(usex udev udev-install "") - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd - newinitd "${FILESDIR}"/gpsd.init-2 gpsd - - if use python ; then - distutils_src_install - # Delete all X related packages if user doesn't want them - if ! use X ; then - local p - for p in $(grep -Il 'import .*pygtk' *) ; do - find "${D}"/usr/bin -name "${p}*" -delete - done - fi - fi -} - -pkg_preinst() { - # Run the gpsd daemon as gpsd and group uucp; create it here - # as it doesn't seem to be needed during compile/install ... - enewuser gpsd -1 -1 -1 "uucp" -} - -pkg_postinst() { - use python && distutils_pkg_postinst -} - -pkg_postrm() { - use python && distutils_pkg_postrm -} diff --git a/sci-geosciences/gpsd/gpsd-3.8.ebuild b/sci-geosciences/gpsd/gpsd-3.8.ebuild deleted file mode 100644 index 6fa713d03ec5..000000000000 --- a/sci-geosciences/gpsd/gpsd-3.8.ebuild +++ /dev/null @@ -1,184 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -PYTHON_DEPEND="python? 2:2.6" -RESTRICT_PYTHON_ABIS="3.*" -SUPPORT_PYTHON_ABIS="1" -SCONS_MIN_VERSION="1.2.1" - -inherit eutils udev user multilib distutils scons-utils toolchain-funcs - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.savannah.nongnu.org/gpsd.git" - inherit git-2 -else - SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -fi - -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" -HOMEPAGE="http://catb.org/gpsd/" - -LICENSE="BSD" -SLOT="0" - -GPSD_PROTOCOLS=( - aivdm ashtech earthmate evermore fury fv18 garmin garmintxt - geostar gpsclock itrax mtk3301 navcom nmea nmea2000 ntrip - oceanserver oncore rtcm104v2 rtcm104v3 sirf superstar2 tnt - tripmate tsip ubx -) -IUSE_GPSD_PROTOCOLS=${GPSD_PROTOCOLS[@]/#/gpsd_protocols_} -IUSE="${IUSE_GPSD_PROTOCOLS} bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets test udev usb X" -REQUIRED_USE="X? ( python ) - gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm )" - -RDEPEND="X? ( dev-python/pygtk:2 ) - ncurses? ( sys-libs/ncurses ) - bluetooth? ( net-wireless/bluez ) - usb? ( virtual/libusb:1 ) - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ntp? ( || ( net-misc/ntp net-misc/chrony ) ) - qt4? ( dev-qt/qtgui:4 )" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( sys-devel/bc )" - -# xml packages are for man page generation -if [[ ${PV} == "9999" ]] ; then - DEPEND+=" - app-text/xmlto - =app-text/docbook-xml-dtd-4.1*" -fi - -pkg_setup() { - use python && python_pkg_setup -} - -src_unpack() { - default - - # Make sure our list matches the source. - local src_protocols=$(echo $( - sed -n '/GPS protocols/,/Time service/{s:#.*::;s:[(",]::g;p}' "${S}"/SConstruct | awk '{print $1}' | LC_ALL=C sort - ) ) - if [[ ${src_protocols} != ${GPSD_PROTOCOLS[*]} ]] ; then - eerror "Detected protocols: ${src_protocols}" - eerror "Ebuild protocols: ${GPSD_PROTOCOLS[*]}" - die "please sync ebuild & source" - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-3.8-ldflags.patch - epatch "${FILESDIR}"/${PN}-3.8-libgps.patch - epatch "${FILESDIR}"/${PN}-3.8-udev.patch - epatch "${FILESDIR}"/${PN}-3.4-no-man-gen.patch - epatch "${FILESDIR}"/${PN}-3.7-rpath.patch - epatch "${FILESDIR}"/${PN}-3.7-gps_regress.patch #441760 - epatch "${FILESDIR}"/${PN}-3.8-no-export-t.patch #463850 - - # Avoid useless -L paths to the install dir - sed -i \ - -e '/^env.Prepend(LIBPATH=.installdir(.libdir.).)$/d' \ - -e 's:\:SYSROOT:g' \ - SConstruct || die - - # Extract python info out of SConstruct so we can use saner distribute - if use python ; then - pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } - local pybins=$(pyvar python_progs) - local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) - local packet=$(python -c "${pysrcs}; print(python_extensions['gps/packet'])") - local client=$(python -c "${pysrcs}; print(python_extensions['gps/clienthelpers'])") - sed \ - -e "s|@VERSION@|$(pyvar gpsd_version)|" \ - -e "s|@URL@|$(pyvar website)|" \ - -e "s|@EMAIL@|$(pyvar devmail)|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - -e "s|@GPS_PACKET_SOURCES@|${packet}|" \ - -e "s|@GPS_CLIENT_SOURCES@|${client}|" \ - -e "s|@SCRIPTS@|$(pyvar python_progs)|" \ - "${FILESDIR}"/${PN}-3.3-setup.py > setup.py || die - distutils_src_prepare - fi -} - -src_configure() { - myesconsargs=( - prefix="${EPREFIX}/usr" - libdir="\$prefix/$(get_libdir)" - udevdir="$(get_udevdir)" - chrpath=False - gpsd_user=gpsd - gpsd_group=uucp - strip=False - python=False - $(use_scons bluetooth bluez) - $(use_scons cxx libgpsmm) - $(use_scons debug clientdebug) - $(use_scons dbus dbus_export) - $(use_scons ipv6) - $(use_scons latency_timing timing) - $(use_scons ncurses) - $(use_scons ntp ntpshm) - $(use_scons ntp pps) - $(use_scons shm shm_export) - $(use_scons sockets socket_export) - $(use_scons qt4 libQgpsmm) - $(use_scons usb) - ) - - # enable specified protocols - local protocol - for protocol in ${GPSD_PROTOCOLS[@]} ; do - myesconsargs+=( $(use_scons gpsd_protocols_${protocol} ${protocol}) ) - done -} - -src_compile() { - export CHRPATH= - tc-export CC CXX PKG_CONFIG - export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} - escons - - use python && distutils_src_compile -} - -src_install() { - DESTDIR="${D}" escons install $(usex udev udev-install "") - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd - newinitd "${FILESDIR}"/gpsd.init-2 gpsd - - if use python ; then - distutils_src_install - # Delete all X related packages if user doesn't want them - if ! use X ; then - local p - for p in $(grep -Il 'import .*pygtk' *) ; do - find "${D}"/usr/bin -name "${p}*" -delete - done - fi - fi -} - -pkg_preinst() { - # Run the gpsd daemon as gpsd and group uucp; create it here - # as it doesn't seem to be needed during compile/install ... - enewuser gpsd -1 -1 -1 "uucp" -} - -pkg_postinst() { - use python && distutils_pkg_postinst -} - -pkg_postrm() { - use python && distutils_pkg_postrm -} diff --git a/sci-geosciences/gpsd/gpsd-3.9-r1.ebuild b/sci-geosciences/gpsd/gpsd-3.9-r1.ebuild index ae73424a6e15..0c4dc52f5c81 100644 --- a/sci-geosciences/gpsd/gpsd-3.9-r1.ebuild +++ b/sci-geosciences/gpsd/gpsd-3.9-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -19,7 +19,7 @@ else KEYWORDS="amd64 arm ppc ppc64 x86" fi -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" +DESCRIPTION="GPS daemon and library for USB/serial GPS devices and GPS/mapping clients" HOMEPAGE="http://catb.org/gpsd/" LICENSE="BSD" diff --git a/sci-geosciences/gpsd/gpsd-3.9.ebuild b/sci-geosciences/gpsd/gpsd-3.9.ebuild deleted file mode 100644 index 9e251de697ff..000000000000 --- a/sci-geosciences/gpsd/gpsd-3.9.ebuild +++ /dev/null @@ -1,180 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -PYTHON_DEPEND="python? 2:2.6" -RESTRICT_PYTHON_ABIS="3.*" -SUPPORT_PYTHON_ABIS="1" -SCONS_MIN_VERSION="1.2.1" - -inherit eutils udev user multilib distutils scons-utils toolchain-funcs - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.savannah.nongnu.org/gpsd.git" - inherit git-2 -else - SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" - KEYWORDS="amd64 arm ppc ppc64 x86" -fi - -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" -HOMEPAGE="http://catb.org/gpsd/" - -LICENSE="BSD" -SLOT="0" - -GPSD_PROTOCOLS=( - aivdm ashtech earthmate evermore fury fv18 garmin garmintxt - geostar gpsclock itrax mtk3301 navcom nmea nmea2000 ntrip - oceanserver oncore rtcm104v2 rtcm104v3 sirf superstar2 tnt - tripmate tsip ubx -) -IUSE_GPSD_PROTOCOLS=${GPSD_PROTOCOLS[@]/#/gpsd_protocols_} -IUSE="${IUSE_GPSD_PROTOCOLS} bluetooth cxx debug dbus ipv6 latency_timing ncurses ntp python qt4 +shm +sockets test udev usb X" -REQUIRED_USE="X? ( python ) - gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm )" - -RDEPEND="X? ( dev-python/pygtk:2 ) - ncurses? ( sys-libs/ncurses ) - bluetooth? ( net-wireless/bluez ) - usb? ( virtual/libusb:1 ) - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ntp? ( || ( net-misc/ntp net-misc/chrony ) ) - qt4? ( dev-qt/qtgui:4 )" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( sys-devel/bc )" - -# xml packages are for man page generation -if [[ ${PV} == "9999" ]] ; then - DEPEND+=" - app-text/xmlto - =app-text/docbook-xml-dtd-4.1*" -fi - -pkg_setup() { - use python && python_pkg_setup -} - -src_unpack() { - default - - # Make sure our list matches the source. - local src_protocols=$(echo $( - sed -n '/GPS protocols/,/Time service/{s:#.*::;s:[(",]::g;p}' "${S}"/SConstruct | awk '{print $1}' | LC_ALL=C sort - ) ) - if [[ ${src_protocols} != ${GPSD_PROTOCOLS[*]} ]] ; then - eerror "Detected protocols: ${src_protocols}" - eerror "Ebuild protocols: ${GPSD_PROTOCOLS[*]}" - die "please sync ebuild & source" - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-3.8-ldflags.patch - epatch "${FILESDIR}"/${PN}-3.4-no-man-gen.patch - epatch "${FILESDIR}"/${PN}-3.7-rpath.patch - - # Avoid useless -L paths to the install dir - sed -i \ - -e '/^env.Prepend(LIBPATH=.installdir(.libdir.).)$/d' \ - -e 's:\:SYSROOT:g' \ - SConstruct || die - - # Extract python info out of SConstruct so we can use saner distribute - if use python ; then - pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } - local pybins=$(pyvar python_progs) - local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) - local packet=$(python -c "${pysrcs}; print(python_extensions['gps/packet'])") - local client=$(python -c "${pysrcs}; print(python_extensions['gps/clienthelpers'])") - sed \ - -e "s|@VERSION@|$(pyvar gpsd_version)|" \ - -e "s|@URL@|$(pyvar website)|" \ - -e "s|@EMAIL@|$(pyvar devmail)|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - -e "s|@GPS_PACKET_SOURCES@|${packet}|" \ - -e "s|@GPS_CLIENT_SOURCES@|${client}|" \ - -e "s|@SCRIPTS@|$(pyvar python_progs)|" \ - "${FILESDIR}"/${PN}-3.3-setup.py > setup.py || die - distutils_src_prepare - fi -} - -src_configure() { - myesconsargs=( - prefix="${EPREFIX}/usr" - libdir="\$prefix/$(get_libdir)" - udevdir="$(get_udevdir)" - chrpath=False - gpsd_user=gpsd - gpsd_group=uucp - strip=False - python=False - $(use_scons bluetooth bluez) - $(use_scons cxx libgpsmm) - $(use_scons debug clientdebug) - $(use_scons dbus dbus_export) - $(use_scons ipv6) - $(use_scons latency_timing timing) - $(use_scons ncurses) - $(use_scons ntp ntpshm) - $(use_scons ntp pps) - $(use_scons shm shm_export) - $(use_scons sockets socket_export) - $(use_scons qt4 libQgpsmm) - $(use_scons usb) - ) - - # enable specified protocols - local protocol - for protocol in ${GPSD_PROTOCOLS[@]} ; do - myesconsargs+=( $(use_scons gpsd_protocols_${protocol} ${protocol}) ) - done -} - -src_compile() { - export CHRPATH= - tc-export CC CXX PKG_CONFIG - export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} - escons - - use python && distutils_src_compile -} - -src_install() { - DESTDIR="${D}" escons install $(usex udev udev-install "") - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd - newinitd "${FILESDIR}"/gpsd.init-2 gpsd - - if use python ; then - distutils_src_install - # Delete all X related packages if user doesn't want them - if ! use X ; then - local p - for p in $(grep -Il 'import .*pygtk' *) ; do - find "${D}"/usr/bin -name "${p}*" -delete - done - fi - fi -} - -pkg_preinst() { - # Run the gpsd daemon as gpsd and group uucp; create it here - # as it doesn't seem to be needed during compile/install ... - enewuser gpsd -1 -1 -1 "uucp" -} - -pkg_postinst() { - use python && distutils_pkg_postinst -} - -pkg_postrm() { - use python && distutils_pkg_postrm -} diff --git a/sci-geosciences/gpsd/gpsd-9999.ebuild b/sci-geosciences/gpsd/gpsd-9999.ebuild index c0b11a93dcc7..97ef2094b0ce 100644 --- a/sci-geosciences/gpsd/gpsd-9999.ebuild +++ b/sci-geosciences/gpsd/gpsd-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -18,7 +18,7 @@ else KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" fi -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" +DESCRIPTION="GPS daemon and library for USB/serial GPS devices and GPS/mapping clients" HOMEPAGE="http://catb.org/gpsd/" LICENSE="BSD" @@ -37,7 +37,7 @@ REQUIRED_USE="X? ( python ) python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="X? ( dev-python/pygtk:2[${PYTHON_USEDEP}] ) - ncurses? ( sys-libs/ncurses ) + ncurses? ( sys-libs/ncurses:= ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( diff --git a/sci-geosciences/josm/Manifest b/sci-geosciences/josm/Manifest index 1f98ebdf1e90..e202366ad2b8 100644 --- a/sci-geosciences/josm/Manifest +++ b/sci-geosciences/josm/Manifest @@ -1,5 +1,2 @@ -DIST josm-5608.tar.xz 13873780 SHA256 8f57b6045b06a5a37a2f2c399bfc5da55074c3a3d770a9e4b234d9738d90f6ad SHA512 7d5d9a6eed50dd3d4bee490d135f4243dcd6698f1193246c74813d71e7b6d5178772ae157aa041696b2c4d3525823683c4aae201f5bf69b1574e5e8312831ee0 WHIRLPOOL 9f79c504a67f2d14afd42d22e3773348b9a65d3e8598219747bf6df0b58393781dae35b5b4d131fbede4966a2255ad9cb8a4f76880f3b8d111f582224cf134a7 -DIST josm-6060.tar.xz 13999664 SHA256 aa1f113164d5fa05c46419252d22bee59543049510855b4e4cdf46ff530d303e SHA512 bb52c254230fbbcf19a2197a2d9218a0985a73d94c7389665c0bd1943eedef1807073d2216507e8457a3091d228d08e2a62e9ac4eca8a3252e74e8c16f488a45 WHIRLPOOL 12dc5e05be4016412ebbc780d822b4a4bb3a56294e0ec1cec962b37b72be7bddf55fb07f5e10f273667c6adb5d433d999d1c310e3f5931bcb9677b1c774c4692 -DIST josm-7347.tar.gz 25495047 SHA256 8f7af0bc15ff59899b5f35de68e0a164becf820611ef46f27ce0f201b9069073 SHA512 fe338f3617e4099ed0f2745cba8ae80540c04360d5419ecdbbe165b3afd7a459b09b9bf9342b8a38388a3a8803844d1ad4af6f39395c034c68149ba8e244c3b1 WHIRLPOOL 534c04f5472e7c113a092a78e0a5fae0020f231156cd4a6db4c1fa4bc29d777a12d08132d0f90c51a0fb88b168f270f6ecf0f9d4f8ca988c6f02baa47d505d55 DIST josm-8800.tar.gz 39442264 SHA256 50859314c18118e93788b511660012eb9eefc9e90653e72be999bc6aa0e24ea3 SHA512 3a002d49508386daaad656feff9e305734f3fdedfc7da29fd3f821a623c875f25f3855e1cc0a073cee119e66e7dc05f732b4eccf23a2cb1ae0a0eda9d5fc5f86 WHIRLPOOL 2ad4397d34d15efff1233aad593042a90a552574ecd1f89c6b7953133fd9803de348de9a27f89bdc509b3b691e9ce618e6b32a8aba669ed032768873a4a23a54 DIST josm-9060.tar.gz 39757613 SHA256 a6be6ce30f48b9dde83b2a8489fa2b406394c7168763d66bc8d0f6110a3df6e6 SHA512 e5506cd38ba5dec88f66becfd7cdc33741ddebe8fc8cc31c0af20c818c2201a39936f27cad6cd6be9a5bbdbc69c52ccf0fd58f771477f537430dea68d89384bf WHIRLPOOL 13daab7bfa2f0c4b334e821a940f51ecba246c23bd4fe8f3fde3106f7048662ab94a2319117d4faa2b49c4341683ea036a9f69027b345653ae63735776268f8d diff --git a/sci-geosciences/josm/josm-5608.ebuild b/sci-geosciences/josm/josm-5608.ebuild deleted file mode 100644 index 573c66f4cfb6..000000000000 --- a/sci-geosciences/josm/josm-5608.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -JAVA_ANT_ENCODING=UTF-8 - -[[ ${PV} == "9999" ]] && SUBVERSION_ECLASS="subversion" -ESVN_REPO_URI="http://josm.openstreetmap.de/svn/trunk" -inherit eutils java-pkg-2 java-ant-2 ${SUBVERSION_ECLASS} -unset SUBVERSION_ECLASS - -DESCRIPTION="Java-based editor for the OpenStreetMap project" -HOMEPAGE="http://josm.openstreetmap.de/" -[[ ${PV} == "9999" ]] || SRC_URI="http://josm.hboeck.de/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" - -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 -[[ ${PV} == "9999" ]] || \ -KEYWORDS="~amd64 ~x86" - -DEPEND=">=virtual/jdk-1.6" -RDEPEND=">=virtual/jre-1.6" - -S="${WORKDIR}/${P}" - -IUSE="" - -src_prepare() { - if [[ ${PV} == "9999" ]]; then - - # create-revision needs the compile directory to be a svn directory - # see also http://lists.openstreetmap.org/pipermail/dev/2009-March/014182.html - sed -i \ - -e "s:arg[ ]value=\".\":arg value=\"${ESVN_STORE_DIR}\/${PN}\/trunk\":" \ - build.xml || die "Sed failed" - fi -} - -src_compile() { - eant dist-optimized -} - -src_install() { - java-pkg_newjar "dist/${PN}-custom-optimized.jar" "${PN}.jar" || die "java-pkg_newjar failed" - java-pkg_dolauncher "${PN}" --jar "${PN}.jar" || die "java-pkg_dolauncher failed" - - newicon images/logo.png josm.png || die "newicon failed" - make_desktop_entry "${PN}" "Java OpenStreetMap Editor" josm "Utility;Science;Geoscience" -} diff --git a/sci-geosciences/josm/josm-6060.ebuild b/sci-geosciences/josm/josm-6060.ebuild deleted file mode 100644 index bab1795ae45d..000000000000 --- a/sci-geosciences/josm/josm-6060.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -JAVA_ANT_ENCODING=UTF-8 - -[[ ${PV} == "9999" ]] && SUBVERSION_ECLASS="subversion" -ESVN_REPO_URI="http://josm.openstreetmap.de/svn/trunk" -inherit eutils java-pkg-2 java-ant-2 ${SUBVERSION_ECLASS} -unset SUBVERSION_ECLASS - -DESCRIPTION="Java-based editor for the OpenStreetMap project" -HOMEPAGE="http://josm.openstreetmap.de/" -[[ ${PV} == "9999" ]] || SRC_URI="http://josm.hboeck.de/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" - -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 -[[ ${PV} == "9999" ]] || \ -KEYWORDS="~amd64 ~x86" - -DEPEND=">=virtual/jdk-1.7" -RDEPEND=">=virtual/jre-1.7" - -S="${WORKDIR}/${P}" - -IUSE="" - -src_prepare() { - if [[ ${PV} == "9999" ]]; then - - # create-revision needs the compile directory to be a svn directory - # see also http://lists.openstreetmap.org/pipermail/dev/2009-March/014182.html - sed -i \ - -e "s:arg[ ]value=\".\":arg value=\"${ESVN_STORE_DIR}\/${PN}\/trunk\":" \ - build.xml || die "Sed failed" - fi -} - -src_compile() { - eant dist-optimized -} - -src_install() { - java-pkg_newjar "dist/${PN}-custom-optimized.jar" "${PN}.jar" || die "java-pkg_newjar failed" - java-pkg_dolauncher "${PN}" --jar "${PN}.jar" || die "java-pkg_dolauncher failed" - - newicon images/logo.png josm.png || die "newicon failed" - make_desktop_entry "${PN}" "Java OpenStreetMap Editor" josm "Utility;Science;Geoscience" -} diff --git a/sci-geosciences/josm/josm-7347.ebuild b/sci-geosciences/josm/josm-7347.ebuild deleted file mode 100644 index e2132426a8a1..000000000000 --- a/sci-geosciences/josm/josm-7347.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -JAVA_ANT_ENCODING=UTF-8 - -[[ ${PV} == "9999" ]] && SUBVERSION_ECLASS="subversion" -ESVN_REPO_URI="http://josm.openstreetmap.de/svn/trunk" -inherit eutils java-pkg-2 java-ant-2 ${SUBVERSION_ECLASS} -unset SUBVERSION_ECLASS - -DESCRIPTION="Java-based editor for the OpenStreetMap project" -HOMEPAGE="http://josm.openstreetmap.de/" -# Upstream doesn't provide versioned tarballs, so we'll have to create one on our own: -# REVISION=${PV} -# mkdir -p josm-${REVISION} -# svn co -r ${REVISION} http://josm.openstreetmap.de/svn/trunk/ josm-${REVISION} -# cd josm-${REVISION} && ant init-svn-revision-xml && cd - -# tar -cz --exclude=.svn -f /usr/portage/distfiles/josm-${REVISION}.tar.gz josm-${REVISION} -[[ ${PV} == "9999" ]] || SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" - -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 -[[ ${PV} == "9999" ]] || \ -KEYWORDS="~amd64 ~x86" - -DEPEND=">=virtual/jdk-1.7" -RDEPEND=">=virtual/jre-1.7" - -S="${WORKDIR}/${P}" - -IUSE="" - -src_prepare() { - - if [[ ${PV} == "9999" ]]; then - - # create-revision needs the compile directory to be a svn directory - # see also http://lists.openstreetmap.org/pipermail/dev/2009-March/014182.html - sed -i \ - -e "s:arg[ ]value=\".\":arg value=\"${ESVN_STORE_DIR}\/${PN}\/trunk\":" \ - build.xml || die "sed failed" - - else - - # Remove dependency on git and svn just for generating a - # revision - the tarball should already have REVISION.XML - sed -i -e 's:, *init-git-revision-xml::g' \ - -e '/ +Date: Mon, 29 Feb 2016 13:35:05 -0500 +Subject: [PATCH] include sys/sysmacros.h + +The major/minor macros are defined in sys/sysmacros.h. This has +historically been pulled in implicitly by sys/types.h, but C libs +are moving away from that as they aren't in POSIX. Use the header +directly as defined by BSD systems. +--- + toys.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/toys.h b/toys.h +index 8a29730..5e640a1 100644 +--- a/toys.h ++++ b/toys.h +@@ -34,6 +34,7 @@ + #include + #include + #include ++#include + #include + #include + #include +-- +2.6.2 + diff --git a/sys-apps/toybox/toybox-0.7.0.ebuild b/sys-apps/toybox/toybox-0.7.0.ebuild index 71beeaa77fe1..92688c33528d 100644 --- a/sys-apps/toybox/toybox-0.7.0.ebuild +++ b/sys-apps/toybox/toybox-0.7.0.ebuild @@ -26,6 +26,9 @@ SLOT="0" IUSE="" src_prepare() { + epatch "${FILESDIR}"/${P}-parallel-build.patch + epatch "${FILESDIR}"/${P}-includes.patch + epatch "${FILESDIR}"/${P}-sysmacros.patch epatch_user restore_config .config } diff --git a/sys-devel/patch/patch-2.7.5.ebuild b/sys-devel/patch/patch-2.7.5.ebuild index cae9454629ff..f83abe76dd05 100644 --- a/sys-devel/patch/patch-2.7.5.ebuild +++ b/sys-devel/patch/patch-2.7.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/patch/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static test xattr" RDEPEND="xattr? ( sys-apps/attr )" diff --git a/sys-kernel/hardened-sources/Manifest b/sys-kernel/hardened-sources/Manifest index c38ec0ef7001..c245db93a637 100644 --- a/sys-kernel/hardened-sources/Manifest +++ b/sys-kernel/hardened-sources/Manifest @@ -7,9 +7,11 @@ DIST deblob-check-4.4 694225 SHA256 e142bafdd5a05280d5280fbf109aadab3af9ce71152a DIST genpatches-4.1-11.base.tar.xz 233284 SHA256 4189cfd2c7d1a1d7f28c8a596ad36741ce087c7c4cfbe0d5d20a0ee889328d18 SHA512 e5944edf832070d6072ab8efc242165afcfb689874687196c96389c6176ca9772e72e82836aba40ad05840536acae6efd6e72890efd692d903018d47489a90f8 WHIRLPOOL 13cb400b330443025f77dee6c710ca9886991a7032fa3ff925d53ed4fc03d07ece5647dca65de1a149073362db1d7a0b374a21d980eafcae09a4b01584c64cb6 DIST genpatches-4.3-4.base.tar.xz 75572 SHA256 c0c073f12a4f1c0adf9d3865fe5d16dc43ea0e5c95c0867868e16e57f2fd6235 SHA512 a16b75f8fcd868d6f9bc2b91318eb8b8ec4db2b622d244e750d4176c4e8225808751c543c54d768fbd88785da656e9f60d8ef8bc22672b5cb1038573c0c366e1 WHIRLPOOL 04c723b71f440035f57684088a47e83430f1c5b057951e037f128f3681f16669eca16f2f1b8d4b7be4a617420131277d1fe415503a679b83a081e06635df46e3 DIST genpatches-4.4-3.base.tar.xz 26508 SHA256 76f5685698b02b81643d6b2edcd53217e0f6fa00e068a138f2eb3bc596dec2e5 SHA512 255e2ef79c56699e5b032fa392b2748570ce96c74f1172f4a4c1b4d22f8b8b0a9462c388028a0cad92e821815d39cfa6450f171d81fed5f274dce03979c39322 WHIRLPOOL 6da9edc7936f8857b929e589b2adcb17363a76ec5d85b3406fcb8308d6cb2da924f1f9af5062f85ddf4d415ca9d9524b731e8c4e0cde756e14ccc122a6e75c74 +DIST genpatches-4.4-5.base.tar.xz 103432 SHA256 ff3ab9884b3069ab092511aef891c8300668461b768f728bff067dc98fc0dfb9 SHA512 ba36f0f9a87a66534281a17a1bd83aa3271e41f8857ef4f27692b322bff9ef705f9d88e78699ba63055410cfb2b3c2a73c2e40c8599e74b60581bfb0d85b293b WHIRLPOOL c38af636ee6bf5bf5d2b0c5d7d3132c02efa879925b3656355e3b70d51ee253b001328225a862f68cd1a5706eaa3529231bd8cb8ed5af3baba7b072da2d2a319 DIST hardened-patches-4.1.7-2.extras.tar.bz2 1419438 SHA256 c8c0fc29c39eafbcea107b8237087fd0e185297e2df9ffeaafc6b3a4736b7a45 SHA512 dac324e265174777d8b9c2369f57e52833b4228b3291e41952a9791ce41b9abf378e1d9a0521566c3a0e42de15a16afa5fe379985b7fee78b1b2b3b815d7cdd4 WHIRLPOOL 7638001f1b95e4af1d051b13648f486aa0eca524157e1a46dd2023fbd86313e0a5e8043653d7388b7286d42cc6e7c0f07cde2de3d5aee6cc058d12538a0980c1 DIST hardened-patches-4.3.3-5.extras.tar.bz2 1649484 SHA256 2a62a5eb4b98f4fbeb43511a0573d58226277d3112401abec37355d85e01ae23 SHA512 09b7272af44fb1e29cba857f7c3305d97f8997881f228a2f2eb56dda909ae5402a69336c6fccdf3920f8788a7922f10b0977517f5918d44702e1a9b668c708c7 WHIRLPOOL efc152c7680b84b682f9f6857b8c6b2b66b6d505f76b311a8e3289a606f46d4944d90478ff93e3656f41c367fdbcd65dcf3043842354b26b669b462ce49f3471 DIST hardened-patches-4.4.2-1.extras.tar.bz2 1721230 SHA256 81f1417d210e0a6d9f5e180b9f828beb87ddc27571a16c40552d0fa1979982ec SHA512 599dedbef6fa26efc2a62c19e0536accedff6c60968294e9a7246c9844b26491b4414b1b40106eee9bb7540f8cd4ae74ab3720029b0730ce5541e005ba60cb9b WHIRLPOOL 84e22467a6dcc738043e47274ab2476b69f1796f1f23e3ca4ed8e244dd73a7e4998de683c1d93baccdd41eb232327d4ef1eb07d01b8a790510b8690334032f02 +DIST hardened-patches-4.4.3-1.extras.tar.bz2 1678183 SHA256 c333fc07e4a3c841a2799b906f8989f581035169c32bc955fb5c10995aec1306 SHA512 a0420168af099733ae0d761a38afa24162a07f86905384d9b086a7278b9e5e97ffa3e4253de2ca6c369c4e9f7793e6cd301315a10fa477dc8bac4a5695f2c69b WHIRLPOOL 2777088d9729e68f8fae3e099314392491d416a3461c2e4f6f1d1c710ba72d2c8a04e39e6c4ed7b5cfb382935cf16002975dc8317fc2f382be998be13d65adf0 DIST linux-4.1.tar.xz 83017828 SHA256 caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0 WHIRLPOOL 85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8 DIST linux-4.3.tar.xz 86920812 SHA256 4a622cc84b8a3c38d39bc17195b0c064d2b46945dfde0dae18f77b120bc9f3ae SHA512 d25812043850530fdcfdb48523523ee980747f3c2c1266149330844dae2cba0d056d4ddd9c0f129f570f5d1f6df5c20385aec5f6a2e0755edc1e2f5f93e2c6bc WHIRLPOOL e3f131443acc14d4f67bbd3f4e1c57af3d822c41c85a112564d54667a591c8619dce42327fd8166d30a2d7adfaf433c2e2134d4995c91c08f65ac0cc2190f935 DIST linux-4.4.tar.xz 87295988 SHA256 401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e WHIRLPOOL 02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc diff --git a/sys-kernel/hardened-sources/hardened-sources-4.4.3.ebuild b/sys-kernel/hardened-sources/hardened-sources-4.4.3.ebuild new file mode 100644 index 000000000000..e02b06f0882e --- /dev/null +++ b/sys-kernel/hardened-sources/hardened-sources-4.4.3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +ETYPE="sources" +K_WANT_GENPATCHES="base" +K_GENPATCHES_VER="5" +K_DEBLOB_AVAILABLE="1" + +inherit kernel-2 +detect_version + +HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1" +HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2" +SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2" +UNIPATCH_EXCLUDE=" + 1500_XATTR_USER_PREFIX.patch + 2900_dev-root-proc-mount-fix.patch" + +DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})" +HOMEPAGE="http://www.gentoo.org/proj/en/hardened/" +IUSE="deblob" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=sys-devel/gcc-4.5" + +pkg_postinst() { + kernel-2_pkg_postinst + + local GRADM_COMPAT="sys-apps/gradm-3.1*" + + ewarn + ewarn "Users of grsecurity's RBAC system must ensure they are using" + ewarn "${GRADM_COMPAT}, which is compatible with ${PF}." + ewarn "It is strongly recommended that the following command is issued" + ewarn "prior to booting a ${PF} kernel for the first time:" + ewarn + ewarn "emerge -na =${GRADM_COMPAT}" + ewarn +} diff --git a/sys-kernel/linux-headers/linux-headers-4.3.ebuild b/sys-kernel/linux-headers/linux-headers-4.3.ebuild index 3e9962fd3c01..bce212ade243 100644 --- a/sys-kernel/linux-headers/linux-headers-4.3.ebuild +++ b/sys-kernel/linux-headers/linux-headers-4.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,7 +13,7 @@ PATCH_VER="1" SRC_URI="mirror://gentoo/gentoo-headers-base-${PV}.tar.xz ${PATCH_VER:+mirror://gentoo/gentoo-headers-${PV}-${PATCH_VER}.tar.xz}" -KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" DEPEND="app-arch/xz-utils dev-lang/perl" diff --git a/sys-libs/libcap/libcap-2.24-r2.ebuild b/sys-libs/libcap/libcap-2.24-r2.ebuild index 7dafa67a3ed8..666d3b0ca076 100644 --- a/sys-libs/libcap/libcap-2.24-r2.ebuild +++ b/sys-libs/libcap/libcap-2.24-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,7 +13,7 @@ SRC_URI="mirror://kernel/linux/libs/security/linux-privs/libcap2/${P}.tar.xz" # it's available under either of the licenses LICENSE="|| ( GPL-2 BSD )" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux" IUSE="pam static-libs" RDEPEND=">=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}] diff --git a/sys-libs/libseccomp/Manifest b/sys-libs/libseccomp/Manifest index 61e0ddeaaddf..708b42d3a6ce 100644 --- a/sys-libs/libseccomp/Manifest +++ b/sys-libs/libseccomp/Manifest @@ -1,3 +1,4 @@ DIST libseccomp-2.1.1.tar.gz 113133 SHA256 8812c11e407c383f5ad6afb84a88e5a0224477bcfe8ff03f0c548e5abaac841c SHA512 1f2916d80a9b9937d2ab9ecf9c4f1e2a8ffc27f90f14e8481eb2f32c8122ea1756950f753f25fb571053f492cc97c8792760e0f058e7ea07ec4bb442508d1112 WHIRLPOOL 77db55f9317e27930b6fd7e83d122b1dd460849bbf9910d7619424d791b1ecd96ffbc5f741cd35e89f27cdc0ab537d5c7c9febaafbf1556c932b9774b80a8643 DIST libseccomp-2.2.0.tar.gz 516697 SHA256 5aa8a230f8529d6ee777098550245e43d2247395fdfd5a2176e28cf7236f1b10 SHA512 c013fdfc868d19bc6703019e91f4bea9c2b7472417a9f0df4fc593fc5fdf29bf535f4b32defd738652838799483684ca18a57e32eeb4b7fb3512b07fb2a440c5 WHIRLPOOL ec1e42186d813d8cf9aea248c27e732162bd4016f06385b4d66ce573f76cb45418211f7b5c06ccb4a35a3c56ce97619827c21a3910e717e35a7c343ee4adf8dc DIST libseccomp-2.2.3.tar.gz 522755 SHA256 d9b400b703cab7bb04b84b9b6e52076a630b673819d7541757bcc16467b6d49e SHA512 e7bce0627c7ee107ea4780a6d2d7f24da162fdb5a85fc064c94e629918de2ee7ce7ed5ed98490f17392d9ca7ec1204945db3fea4415fae4370495b71c9edb61e WHIRLPOOL a32105a4cf3b514531e3cd7f1c703305318eceb90ef030317139fe08fe62fd14670b5ddc6f0dc8165cac23da1df89ee6efea3c366cec64102194c12ae53eac4f +DIST libseccomp-2.3.0.tar.gz 546948 SHA256 d756e3a77578259a808698a50c43d44612aae3339ea42ab5b15ea983f26b901d SHA512 398643af0920ff446b37a74e48f7a96ad2bec4f514e92fc6f8242b7515dcb8f5d06c2894790b22f62387c2d9b75efd54a4d5944f973239a05f06ec840f2a5a0b WHIRLPOOL 45ced8e8cc5636fdd9861408582277183daf7c6e3b35bc9f16ea16249a27f86cf82ec45c7e9f898a843b91b9c37ff5ab5b0a4a2b79ac2564e92cecaf8a39d61d diff --git a/sys-libs/libseccomp/libseccomp-2.3.0.ebuild b/sys-libs/libseccomp/libseccomp-2.3.0.ebuild new file mode 100644 index 000000000000..ad6a115e0fe8 --- /dev/null +++ b/sys-libs/libseccomp/libseccomp-2.3.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# TODO: Add python support. + +EAPI="5" + +inherit eutils multilib-minimal + +DESCRIPTION="high level interface to Linux seccomp filter" +HOMEPAGE="https://github.com/seccomp/libseccomp" +SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="-* ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~x86" +IUSE="static-libs" + +# We need newer kernel headers; we don't keep strict control of the exact +# version here, just be safe and pull in the latest stable ones. #551248 +DEPEND=">=sys-kernel/linux-headers-4.3" + +src_prepare() { + sed -i \ + -e '/_LDFLAGS/s:-static::' \ + tools/Makefile.in || die +} + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + econf \ + $(use_enable static-libs static) \ + --disable-python +} + +multilib_src_install_all() { + find "${ED}" -name libseccomp.la -delete + einstalldocs +} diff --git a/virtual/perl-File-Path/perl-File-Path-2.90.0-r3.ebuild b/virtual/perl-File-Path/perl-File-Path-2.90.0-r3.ebuild index c4bdb4f7c9bd..ab2f78e3ab15 100644 --- a/virtual/perl-File-Path/perl-File-Path-2.90.0-r3.ebuild +++ b/virtual/perl-File-Path/perl-File-Path-2.90.0-r3.ebuild @@ -10,7 +10,7 @@ SRC_URI="" LICENSE="" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND=" diff --git a/www-apache/passenger/Manifest b/www-apache/passenger/Manifest index 5c448014af71..cb9f2f6dd0d8 100644 --- a/www-apache/passenger/Manifest +++ b/www-apache/passenger/Manifest @@ -2,3 +2,4 @@ DIST passenger-4.0.60.tar.gz 5271049 SHA256 bbb8c18cc371441ce4ee9a4de4d124b6ec5e DIST passenger-5.0.22.tar.gz 5412739 SHA256 0dfefb780ff134e6dd9352886f1086b980777adf27a98507ebfed648938b628f SHA512 9fe709d7d83d65e3f610cd0aacfa07122790d2b0797a5e807be129012254ded63d20b8e6cbe194e47bc7761af8fec67e884ed7f370d18baf06778e3035b0708b WHIRLPOOL 6348af6c8e434d1b64de024ddaf769000d9b6a7d33dc23c5d83d3bdb835f9ee78ca73ead764442f5e481949a28814fe6d2a77891240ebb7a0252c201695e50cb DIST passenger-5.0.23.tar.gz 5413416 SHA256 c659fe84ce95635a8561dd5580455f94a431411a61493ab9aa447b881e23dacf SHA512 6d4b3a28c9b277285fa3dbde0ec99c159de5173873204c76a422b0e99e4035a36efe3e729c42d1b0c2198cc3cd8690d7098991af37cf1b0698f3a0ff7e1e288e WHIRLPOOL 322ef7f90df3d0ec6dca0e752539823aebbb9fdc1854322839bde8ebc436a82f652d24aabca4f7dad298879e943926052641f55e83da8fe0bb93aea71c2e1f53 DIST passenger-5.0.24.tar.gz 5415880 SHA256 06b9cdd18c1ef283628b753815ae1c6eaf764f212fd8d439d7035c9257288f79 SHA512 6b405881b7f9127f4bb093d7113e8ef6b4640ad33c27e1b1c5b860f2e2a5ec8bd4257c1d765a8a765712635c67e2e122cd6230b64186915facd98e14af5a3bce WHIRLPOOL 76382d058b8364d67821ab5839623a96587e4e07eb19452a2163c3c0402e64410f6b08797bd8177cbf826e59b41360383520aeed98a7baf003db715c0d7d2eca +DIST passenger-5.0.25.tar.gz 5302902 SHA256 2a5531cd714a997a09a6105fbea8fb7dd27d168f7076a4db093842e2402c65ca SHA512 6bc7b34f08c4928c566a49d98289041c1663387556fe1e38b50dcad2fdd762fa12fd9afe48b9042942e5694cdd41e3d54f00d692d8eebd2948a406a9019c174d WHIRLPOOL 63ec49320d527f910ec410b3f47ef91e428d07d3c12cf5588445bc4b583992ad0bcf4e4d55a79dedea3711142d110d9c5c4f9b8ba1a7af4050418d6692200c30 diff --git a/www-apache/passenger/passenger-5.0.25.ebuild b/www-apache/passenger/passenger-5.0.25.ebuild new file mode 100644 index 000000000000..dd31905f0f7c --- /dev/null +++ b/www-apache/passenger/passenger-5.0.25.ebuild @@ -0,0 +1,118 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22" + +inherit apache-module flag-o-matic multilib ruby-ng toolchain-funcs + +DESCRIPTION="Passenger makes deployment of Ruby on Rails applications a breeze" +HOMEPAGE="https://www.phusionpassenger.com/" +SRC_URI="http://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +ruby_add_bdepend "dev-ruby/rake" + +ruby_add_rdepend " + >=dev-ruby/rack-1.0.0:* + >=dev-ruby/rake-0.8.1" + +# libev is bundled but with adapations that do not seem to be accepted +# upstream, so we must use the bundled version :-( +CDEPEND=" + >=dev-libs/libuv-1.5.0 + net-misc/curl[ssl] + www-servers/apache[apache2_modules_unixd(+)]" + +RDEPEND="${RDEPEND} ${CDEPEND}" +DEPEND="${DEPEND} ${CDEPEND}" + +APACHE2_MOD_CONF="30_mod_${PN}-5.0.0 30_mod_${PN}" +APACHE2_MOD_DEFINE="PASSENGER" + +need_apache2 + +pkg_setup() { + use debug && append-flags -DPASSENGER_DEBUG +} + +all_ruby_prepare() { + epatch "${FILESDIR}"/${PN}-5.0.20-gentoo.patch + + # Change these with sed instead of a patch so that we can easily use + # the toolchain-funcs methods. + sed -i -e "/^CC/ s/=.*$/= '$(tc-getCC)'/" \ + -e "/^CXX\s/ s/=.*$/= '$(tc-getCXX)'/" \ + -e 's/PlatformInfo.debugging_cflags//' build/basics.rb || die + + # Avoid fixed debugging CFLAGs. + sed -e '/debugging_cflags/areturn ""' -i src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb || die + + # Use sed here so that we can dynamically set the documentation directory. + sed -i -e "s:/usr/share/doc/passenger:/usr/share/doc/${P}:" \ + -e "s:/usr/lib/apache2/modules/mod_passenger.so:${APACHE_MODULESDIR}/mod_passenger.so:" \ + -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \ + src/ruby_supportlib/phusion_passenger.rb || die + sed -i -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" src/cxx_supportlib/ResourceLocator.h || die + + # Don't install a tool that won't work in our setup. + sed -i -e '/passenger-install-apache2-module/d' src/ruby_supportlib/phusion_passenger/packaging.rb || die + rm -f bin/passenger-install-apache2-module || die "Unable to remove unneeded install script." + + # Make sure we use the system-provided version where possible + rm -rf src/cxx_supportlib/vendor-copy/libuv || die "Unable to remove vendored code." + + # Avoid building documentation to avoid a dependency on mizuho. + #sed -i -e 's/, :doc//' build/packaging.rb || die + touch doc/*.html || die + + # Fix hard-coded use of AR + sed -i -e "s/ar cru/"$(tc-getAR)" cru/" build/cplusplus_support.rb || die +} + +all_ruby_compile() { + V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + FS_LIBDIR='/usr/'$(get_libdir) \ + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ + ruby -S rake apache2 || die "rake failed" +} + +each_ruby_compile() { + append-flags -fno-strict-aliasing + + V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + FS_LIBDIR='/usr/'$(get_libdir) \ + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ + ${RUBY} -S rake native_support || die "rake failed" +} + +all_ruby_install() { + APACHE2_MOD_FILE="${S}/buildout/apache2/mod_${PN}.so" + apache-module_src_install + + # Patch in the correct libdir + sed -i -e 's:/usr/lib/:/usr/'$(get_libdir)'/:' "${D}${APACHE_MODULES_CONFDIR}/30_mod_${PN}.conf" || die + + dodoc CHANGELOG README.md +} + +each_ruby_install() { + DISTDIR="${D}" \ + RUBYLIBDIR="$(ruby_rbconfig_value vendordir)" \ + RUBYARCHDIR="$(ruby_rbconfig_value archdir)" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + FS_LIBDIR='/usr/'$(get_libdir) \ + EXTRA_LDFLAGS="${LDFLAGS}" \ + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ + ${RUBY} -S rake fakeroot || die "rake failed" +} diff --git a/www-apps/icingaweb2-module-pnp4nagios/Manifest b/www-apps/icingaweb2-module-pnp4nagios/Manifest index e69de29bb2d1..d212309247c3 100644 --- a/www-apps/icingaweb2-module-pnp4nagios/Manifest +++ b/www-apps/icingaweb2-module-pnp4nagios/Manifest @@ -0,0 +1 @@ +DIST icingaweb2-module-pnp4nagios-1.0.1.tar.gz 5988 SHA256 956d2afe1dc3895994381baf40f3ac326ba1f771c84c86b54ba39c64b78483df SHA512 594a8d2a141bdf682fa37dc7b677a78f255dfa3d05071878a416b7426ed6355abc2a2864394e333a00c08aba8fd4f898e42c5a49ffeaf689a16de175f6ddb333 WHIRLPOOL 03d0b7c008d724055fd930e86a88e0e1ecaba9bd803882cab0acba1fa01d1784f9efdda4f2dad943af411fd0fedafd87563e7e1b179c6b7bea3baba9c5fe1684 diff --git a/www-apps/icingaweb2-module-pnp4nagios/icingaweb2-module-pnp4nagios-1.0.1.ebuild b/www-apps/icingaweb2-module-pnp4nagios/icingaweb2-module-pnp4nagios-1.0.1.ebuild new file mode 100644 index 000000000000..95062237cd8b --- /dev/null +++ b/www-apps/icingaweb2-module-pnp4nagios/icingaweb2-module-pnp4nagios-1.0.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +DESCRIPTION="Icinga Web 2 plugin for pnp4nagios" +HOMEPAGE="http://www.icinga.org/" +MY_PN="icingaweb2-module-pnp" +SRC_URI="https://codeload.github.com/Icinga/${MY_PN}/tar.gz/v${PV} -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="" + +DEPEND=">=net-analyzer/icinga2-2.1.1 + >=www-apps/icingaweb2-2.0.0" +RDEPEND="${DEPEND}" + +src_install() { + mkdir -p "${D}/usr/share/icingaweb2/modules/pnp" + cp -R "${S}"/* "${D}/usr/share/icingaweb2/modules/pnp" +} diff --git a/www-apps/icingaweb2/Manifest b/www-apps/icingaweb2/Manifest index 00a6c24c25f4..ec131548c4c2 100644 --- a/www-apps/icingaweb2/Manifest +++ b/www-apps/icingaweb2/Manifest @@ -1,2 +1,3 @@ DIST icingaweb2-2.1.0.tar.gz 9957758 SHA256 1fa15efe4056eca4012358d009da1b90c4b4dd3e18d446de33eeaa48728389fd SHA512 fa694bdaba51b82c33b8fd726807df4c626cd944f1d2949cc8768df3e9bbebdb78888f6aaeba2e88f1f843dab8608d69e1b69f6630e438ab9854d3c8b99f4502 WHIRLPOOL 6b3cba5a701757000909c664d115755efaf3564a77a34a71bc4baa96b058efe1d682867fbaedae22e6a1126aa3dfb47389f8474c42f5a45fbffebc77529a7261 DIST icingaweb2-2.1.2.tar.gz 9800997 SHA256 869a4d0cf72506d098418f3c6bfd642b459dc5e68b5bf349b1e59fb20c3ee73d SHA512 00755ea4dff7084d7fb91cfb36ff14632f18f75231eeecbb09afb293a6a143d84df86dc36d5f4fe47cc36c633857d0897c62278d0fa0c95bd60972b43dd500c7 WHIRLPOOL a4c1662258337d747662e0d3d73f54324a981b595c319e88e094df85dff5d226f925010bbcd64f0cc5639c1ceb606bc7eeca89829faf2115278086295700e5cc +DIST icingaweb2-2.2.0.tar.gz 9803668 SHA256 f240b35a4082b4835127608d0b11a27a4bf53bb0c88857344255225ce9611201 SHA512 e07948e284e59ac16f94191607d9da88b06e9e311af9f79b3fb19e1a7d943144515d4122dae4b01d09927b586ae4ccf15cce54e47e0e784882a422d6eb434f59 WHIRLPOOL 32734309b65e4ed0d04b060fadeef617ec9f7da7c227c563d76ede12e5839305b3a384f0b355aa8bc6a62d1220f4bf78f2299cddcbedcc7a9f2c1b1972dc5059 diff --git a/www-apps/icingaweb2/icingaweb2-2.2.0.ebuild b/www-apps/icingaweb2/icingaweb2-2.2.0.ebuild new file mode 100644 index 000000000000..81d827688cc8 --- /dev/null +++ b/www-apps/icingaweb2/icingaweb2-2.2.0.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit depend.apache eutils multilib user + +DESCRIPTION="Icinga Web 2 - Frontend for icinga2" +HOMEPAGE="http://www.icinga.org/" +SRC_URI="https://codeload.github.com/Icinga/${PN}/tar.gz/v${PV} -> ${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +IUSE="apache2 ldap mysql nginx postgres" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=net-analyzer/icinga2-2.1.1 + dev-lang/php:5.6[apache2?,cli,gd,json,intl,ldap?,mysql?,pdo,postgres?,sockets,ssl,xslt,xml] + dev-php/pecl-imagick + apache2? ( >=www-servers/apache-2.4.0 ) + nginx? ( >=www-servers/nginx-1.7.0:* )" +RDEPEND="${DEPEND}" + +want_apache2 + +pkg_setup() { + depend.apache_pkg_setup + + enewgroup icingaweb2 + enewgroup icingacmd + use nginx && usermod -a -G icingacmd,icingaweb2 nginx + use apache2 && usermod -a -G icingacmd,icingaweb2 apache2 +} + +pkg_config() { + if [[ -d /etc/icingaweb2 ]] ; then + einfo "Updating existing installation ..." + else + einfo "Running first time setup ..." + einfo "Creating configuration directory ..." + /usr/share/${PN}/bin/icingacli setup config directory + einfo "Creating authentication token for web setup ..." + /usr/share/${PN}/bin/icingacli setup token create + if use apache2 ; then + einfo "The following might be useful for your Apache2 configuration:" + /usr/share/${PN}/bin/icingacli setup config webserver apache --document-root /usr/share/${PN}/public + fi + if use nginx ; then + einfo "The following might be useful for your NGinx configuration:" + /usr/share/${PN}/bin/icingacli setup config webserver nginx --document-root /usr/share/${PN}/public + fi + fi + einfo "All done." +} + +src_install() { + mkdir -p "${D}/usr/share/${PN}" + cp -R "${S}"/* "${D}/usr/share/${PN}" + chmod -R a+rX "${D}/usr/share/${PN}/public" +} + +pkg_postinst() { + einfo "Run 'emerge --config =${CATEGORY}/${PF}' to finish setup." +} diff --git a/www-apps/rt/rt-4.2.12.ebuild b/www-apps/rt/rt-4.2.12-r1.ebuild similarity index 99% rename from www-apps/rt/rt-4.2.12.ebuild rename to www-apps/rt/rt-4.2.12-r1.ebuild index b63bfacfc4fc..c9e073f7cd5c 100644 --- a/www-apps/rt/rt-4.2.12.ebuild +++ b/www-apps/rt/rt-4.2.12-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -101,7 +101,7 @@ DEPEND=" dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl - dev-perl/locale-maketext-fuzzy + dev-perl/Locale-Maketext-Fuzzy dev-perl/net-server dev-perl/regexp-common dev-perl/text-template diff --git a/x11-misc/dmenu/dmenu-9999.ebuild b/x11-misc/dmenu/dmenu-9999.ebuild index 65eabbb5fff7..79a2f8b8ba17 100644 --- a/x11-misc/dmenu/dmenu-9999.ebuild +++ b/x11-misc/dmenu/dmenu-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit eutils git-r3 savedconfig toolchain-funcs DESCRIPTION="a generic, highly customizable, and efficient menu for the X Window System" @@ -35,6 +35,8 @@ src_prepare() { epatch "${FILESDIR}"/${P}-gentoo.patch + eapply_user + restore_config config.def.h } diff --git a/x11-misc/dmenu/files/dmenu-9999-gentoo.patch b/x11-misc/dmenu/files/dmenu-9999-gentoo.patch index b6940d195edc..faeed310c886 100644 --- a/x11-misc/dmenu/files/dmenu-9999-gentoo.patch +++ b/x11-misc/dmenu/files/dmenu-9999-gentoo.patch @@ -27,7 +27,7 @@ +LIBS = ${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} # flags - CPPFLAGS = -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} + CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -s ${LIBS} +CFLAGS = -std=c99 -pedantic -Wall ${INCS} ${CPPFLAGS} diff --git a/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch b/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch index da54e7a6d7db..76d2e26fbc61 100644 --- a/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch +++ b/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch @@ -1,6 +1,6 @@ -diff -Naur src/wmgeneral.orig/list.c src/wmgeneral/list.c ---- src/wmgeneral.orig/list.c 2016-01-04 13:03:23.206828813 +0100 -+++ src/wmgeneral/list.c 2016-01-04 13:03:32.358832037 +0100 +diff -Naur wmmsg-1.0.1/src/wmgeneral.orig/list.c wmmsg-1.0.1/src/wmgeneral/list.c +--- wmmsg-1.0.1/src/wmgeneral.orig/list.c 2016-01-04 13:03:23.206828813 +0100 ++++ wmmsg-1.0.1/src/wmgeneral/list.c 2016-01-04 13:03:32.358832037 +0100 @@ -38,7 +38,7 @@ /* Return a cons cell produced from (head . tail) */ @@ -85,9 +85,9 @@ diff -Naur src/wmgeneral.orig/list.c src/wmgeneral/list.c { while (list) { -diff -Naur src/wmgeneral.orig/list.h src/wmgeneral/list.h ---- src/wmgeneral.orig/list.h 2016-01-04 13:03:23.206828813 +0100 -+++ src/wmgeneral/list.h 2016-01-04 13:03:46.741837100 +0100 +diff -Naur wmmsg-1.0.1/src/wmgeneral.orig/list.h wmmsg-1.0.1/src/wmgeneral/list.h +--- wmmsg-1.0.1/src/wmgeneral.orig/list.h 2016-01-04 13:03:23.206828813 +0100 ++++ wmmsg-1.0.1/src/wmgeneral/list.h 2016-01-04 13:03:46.741837100 +0100 @@ -29,12 +29,6 @@ #ifndef __LIST_H_ #define __LIST_H_ diff --git a/x11-plugins/wmmsg/wmmsg-1.0.1-r2.ebuild b/x11-plugins/wmmsg/wmmsg-1.0.1-r2.ebuild new file mode 100644 index 000000000000..68eb8e3fbe86 --- /dev/null +++ b/x11-plugins/wmmsg/wmmsg-1.0.1-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit autotools + +DESCRIPTION="universal visual notification dockapp" +HOMEPAGE="http://swapspace.net/~matt/wmmsg" +SRC_URI="http://swapspace.net/~matt/wmmsg/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + media-libs/imlib2[X] + x11-libs/libXpm + x11-libs/libXext + x11-libs/libX11" +DEPEND="${RDEPEND} + virtual/pkgconfig + x11-libs/libXt" + +DOCS=( AUTHORS ChangeLog README wmmsgrc ) +PATCHES=( + "${FILESDIR}"/${P}-use_gtk2.patch + "${FILESDIR}"/${P}-alt-desktop.patch + "${FILESDIR}"/${P}-list.patch + ) + +src_prepare() { + default + + eautoreconf +}