Sync with portage [Thu May 5 14:09:10 MSK 2016].

mhiretskiy 328
root 8 years ago
parent 610dc1fba3
commit 51d56d0a8b

@ -1,3 +1,3 @@
DIST pyaml-14.05.7.tar.gz 7401 SHA256 8c1edf635edc0658d9f6cd222f175e35aecaaef1cad432b188206b71a9cdbd30 SHA512 4a977de705a85341ff817b51e29facea6029c0082cdc0d9b212748d6992a1be3c461d59a5a41f131a14c0cfc0b6db3aad9091e0ff86c05da70974fd3651eaea9 WHIRLPOOL ed5fe07b7dd686a8d460841bfcbbb326d833124f0078a7aa70a80ddd3c85fcc245d9808a2aa19676636fea3d299be986fefead3022d96f846e6a9571ae67024f
DIST pyaml-15.5.7.tar.gz 14374 SHA256 85c44970d9bca68742faef77cb10a16d4a81be81281541c8d39c10f504042bc6 SHA512 c92250bba3bfded1a4d047940098b532989f9fe020d1e7ccdd45779260e1114c8720d9ef4d98de0abfa699807d9377e29e9ad9c979dd086456eade0fecf6f0ae WHIRLPOOL e7cb76e586f32eebb8cb56af949925030dabc81e5f2f7b1a575980b49ab020968c393739deb6b69afb98f2c4b3ef21601a43166b7ce092c1e88aa3e2e95758cf
DIST pyaml-15.6.3.tar.gz 14459 SHA256 2df761472d0974205b779dab469903cc9ddf257dcd126acc4a97b9d4c970e662 SHA512 9d0789342f59adfc415bef54cdc52b75cbcf1fa71940e1b9534ea0c141c5737449104e45fb0feea968e58d0886a74d9a5bbec0ba05b7d72cf5d93d3a674b5868 WHIRLPOOL 7c2e06dedf40c7c13474824090bf1f5a0453d2d955d446053479be93388c55b30480dc41eaec32a31a2303ae1971de5902922776a48c6d54cdb107a2356a1786
DIST pyaml-15.8.2.tar.gz 16544 SHA256 9c54fb5f17b58572c4cef50affea60bb73f445ab153580dac07a12383712b5b8 SHA512 74f1fdacdd601f0b6f710457627e4dcbc42e7301fe5faa061d3e8d593842d6e5dd85041625aba576bba9cda2a713ee07ca3067221a720cbddc6dcd417fccee64 WHIRLPOOL 8f443fe904e1da77a78a3a2b8591cd5526b4bd7a07e736d959ad842aede43d31c96391389f666796ec4497b03cd79e72582b5f4b4bc6385c5627ab65ba8df09f

@ -8,5 +8,6 @@
<upstream>
<remote-id type="pypi">pyaml</remote-id>
<remote-id type="github">mk-fg/pretty-yaml</remote-id>
<bugs-to>https://github.com/mk-fg/pretty-yaml/issues</bugs-to>
</upstream>
</pkgmetadata>

@ -1,9 +1,10 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=(python{2_7,3_{3,4}})
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
inherit distutils-r1
@ -14,10 +15,19 @@ SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
LICENSE="WTFPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
KEYWORDS="~amd64 ~arm ~x86"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
${RDEPEND}
dev-python/unidecode[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
"${PYTHON}" pyaml/tests/dump.py || die "tests failed under ${EPYTHON}"
}

@ -0,0 +1,74 @@
# HG changeset patch
# User Philip Jenvey <pjenvey@underboss.org>
# Date 1414136649 25200
# Branch py3k
# Node ID 8c340acffe279d63dd2df525173713b2054619c8
# Parent a87e6542c186bdc7408ea027aed83c62820a9c49
issue1899: fix broken bytes usage from default
diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py
--- a/lib_pypy/_tkinter/app.py
+++ b/lib_pypy/_tkinter/app.py
@@ -439,7 +439,7 @@
if isinstance(s, int):
return s
s = s.encode('utf-8')
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("int*")
res = tklib.Tcl_GetBoolean(self.interp, s, v)
@@ -451,7 +451,7 @@
if isinstance(s, int):
return s
s = s.encode('utf-8')
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("int*")
res = tklib.Tcl_GetInt(self.interp, s, v)
@@ -463,7 +463,7 @@
if isinstance(s, float):
return s
s = s.encode('utf-8')
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("double*")
res = tklib.Tcl_GetDouble(self.interp, s, v)
@@ -472,7 +472,7 @@
return v[0]
def exprboolean(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("int*")
res = tklib.Tcl_ExprBoolean(self.interp, s, v)
@@ -481,7 +481,7 @@
return v[0]
def exprlong(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("long*")
res = tklib.Tcl_ExprLong(self.interp, s, v)
@@ -490,7 +490,7 @@
return v[0]
def exprdouble(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("double*")
res = tklib.Tcl_ExprDouble(self.interp, s, v)
@@ -499,7 +499,7 @@
return v[0]
def exprstring(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
res = tklib.Tcl_ExprString(self.interp, s)
if res == tklib.TCL_ERROR:

@ -87,6 +87,7 @@ src_prepare() {
"${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch"
epatch "${FILESDIR}/2.4.0-ncurses6.patch"
epatch "${FILESDIR}"/pypy3-2.4.0-libressl.patch
epatch "${FILESDIR}/pypy3-2.4.0-fix-tkinter-regression.patch"
sed -e "s^@EPREFIX@^${EPREFIX}^" \
-e "s^@libdir@^$(get_libdir)^" \

@ -0,0 +1,74 @@
# HG changeset patch
# User Philip Jenvey <pjenvey@underboss.org>
# Date 1414136649 25200
# Branch py3k
# Node ID 8c340acffe279d63dd2df525173713b2054619c8
# Parent a87e6542c186bdc7408ea027aed83c62820a9c49
issue1899: fix broken bytes usage from default
diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py
--- a/lib_pypy/_tkinter/app.py
+++ b/lib_pypy/_tkinter/app.py
@@ -439,7 +439,7 @@
if isinstance(s, int):
return s
s = s.encode('utf-8')
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("int*")
res = tklib.Tcl_GetBoolean(self.interp, s, v)
@@ -451,7 +451,7 @@
if isinstance(s, int):
return s
s = s.encode('utf-8')
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("int*")
res = tklib.Tcl_GetInt(self.interp, s, v)
@@ -463,7 +463,7 @@
if isinstance(s, float):
return s
s = s.encode('utf-8')
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("double*")
res = tklib.Tcl_GetDouble(self.interp, s, v)
@@ -472,7 +472,7 @@
return v[0]
def exprboolean(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("int*")
res = tklib.Tcl_ExprBoolean(self.interp, s, v)
@@ -481,7 +481,7 @@
return v[0]
def exprlong(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("long*")
res = tklib.Tcl_ExprLong(self.interp, s, v)
@@ -490,7 +490,7 @@
return v[0]
def exprdouble(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
v = tkffi.new("double*")
res = tklib.Tcl_ExprDouble(self.interp, s, v)
@@ -499,7 +499,7 @@
return v[0]
def exprstring(self, s):
- if '\x00' in s:
+ if b'\x00' in s:
raise TypeError
res = tklib.Tcl_ExprString(self.interp, s)
if res == tklib.TCL_ERROR:

@ -82,6 +82,7 @@ src_prepare() {
"${FILESDIR}"/2.3.1-shared-lib.patch # 517002
epatch "${FILESDIR}/2.4.0-ncurses6.patch"
epatch "${FILESDIR}"/${PN}-2.4.0-libressl.patch
epatch "${FILESDIR}/${PN}-2.4.0-fix-tkinter-regression.patch" # 533384
sed -e "s^@EPREFIX@^${EPREFIX}^" \
-e "s^@libdir@^$(get_libdir)^" \

@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="Subversion GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~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 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~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="apache2 berkdb ctypes-python debug doc +dso extras gnome-keyring +http java kde nls perl python ruby sasl test vim-syntax"
COMMON_DEPEND=">=dev-db/sqlite-3.7.12

@ -1,5 +1,6 @@
DIST ImageMagick-6.9.0-3.tar.xz 7898568 SHA256 f00452ba2c05c2df9624c62d7adb49ecf17140edd6e5f355cceca051dab1fb38 SHA512 0ff1ac91fa4330544cf6ba9ac8bfd48fce5a0a702b4578e1dcd23989c52c2287e1d6291c231591457a87652a59d908bade148e4e94676a887293671dfec99a4c WHIRLPOOL 0ca86ecb04a18aee95aa2990b73f0f87a7c800b028c45c6af5a906bc0b2f9a380b2ac52bf825cfda8396b4c8dc9b1768be7b46000b9bee9b6f4aaa1bf7d7dea8
DIST ImageMagick-6.9.1-8.tar.xz 8286604 SHA256 987b353058482b5ba15d42746eebc51c15eb05241ce94f22381b8aae0b841617 SHA512 feace56b4a409fa91b2827a3eae1a870541528a3f327e5d06a96ff4f97e8d94418c8f92e731b7276c41aef321584a75a4621fa2f361e9b20309a546d9a1f9fea WHIRLPOOL d2e3aa949a216829c5f2bea1149c31b0cd5ef83d0855863e6b0682afc0ee9fcc1f516893b9b0f612c5e64cb746225c3f9c2ab1c3f29332a6904ca53cb9117e7b
DIST ImageMagick-6.9.2-10.tar.xz 8755528 SHA256 da2f6fba43d69f20ddb11783f13f77782b0b57783dde9cda39c9e5e733c2013c SHA512 707e4f8008a74dd4203f3535569e4f00006341d5ecadcd6924826768f94dafc3eb3b67f8d04cf9d6310c6d8cc87c86b2eb6b6529020481fc0412911cfa2defba WHIRLPOOL 33a405cfd89832cd1adc8c72b4559d86120e303ec44df814ec5af79d8ef3e2c67d404110b8090e8b52b4eb6c1e843e24478859f47425ec67a23a5ff5b78fc219
DIST ImageMagick-6.9.3-10.tar.xz 8784108 SHA256 e33f021c879f31703f9e620f578ccf7d221a34941589da4bbe967b16a814336a SHA512 d448c1ffa2327d2690c783edc3089d3450f5f8acaa517dfec167d78834e23ea8d231acda8a5f2c05d98110effaa5647f4b5cdcc4fc464a8ea8703603908c8708 WHIRLPOOL 5b560ba3270c8d6179414cb2f8f94de840ee405ceee3aa99c1007bbc41639fa8e5771a4ba6f88c7754b3a02d68c0ac18758a962d4bb33fe7cef504c520485c7b
DIST ImageMagick-6.9.3-9.tar.xz 8777400 SHA256 cec69db7d14cb1ab2d173381e5676219c678ca27b7af8878c6ffec18ec932960 SHA512 c7136018a03af279ab4ce19c99b148aeae47e6ad35662b032c040d69a85ed7ecc1c04010190375448a8c7df9eb247cc5cf845e5417343a688a880f85747864f9 WHIRLPOOL 1e1b133291c0216ff90a01c3e1ba5beac8d60bb6167f927324f8ef69582b2a2a81dd4a0f3ef38f332e80e42a8eb2965b78099db847419c3f726fe4ba46d6f5fa
DIST ImageMagick-7.0.1-0.tar.xz 8288172 SHA256 bd15aaef2aa2393b3d62b821f5752d5f4066a90d3b0d9259d93217ad47c056d9 SHA512 bbfc384820e6f933738c9c433ad9b471d1ac946179c3ef6cbd7d05cd566f13301021c5db0587f36e9c8eb9fd402b565d6c5373ee53294ebe3c29b2ca5731bbf6 WHIRLPOOL 90fc0095f24e6ebe0954f71bcd8364b8d185f487321d524f383289a9da91593153c95ba58307d0d944db309476a01824ff4bf1289a7b05a193966c4570f83586
DIST ImageMagick-7.0.1-1.tar.xz 8288208 SHA256 d7b6c9fcd2278e3c29dc57ac2da64673f35a7ca79a74bfe90d173d170db6b2c9 SHA512 a9c6b3189be18236c74c33817b9708d92ff16c284981ce6945070fd48d395161d62aca2d03928a10e244ff4727fb3fb75761c6341c5232f959045ece9edd836b WHIRLPOOL a2209d2a1192e388561649d152ee98e46b80adcbd7ccf71ff5a4127b68eb93025da35e9a290db39aad7d70582191161f312d0b94712909aefda243677315aab9

@ -0,0 +1,178 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils flag-o-matic libtool multilib toolchain-funcs versionator
MY_P=ImageMagick-$(replace_version_separator 3 '-')
DESCRIPTION="A collection of tools and libraries for many image formats"
HOMEPAGE="http://www.imagemagick.org/"
SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
LICENSE="imagemagick"
SLOT="0/${PV}"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
RESTRICT="perl? ( userpriv )"
RDEPEND="
dev-libs/libltdl:0
autotrace? ( >=media-gfx/autotrace-0.31.1 )
bzip2? ( app-arch/bzip2 )
corefonts? ( media-fonts/corefonts )
djvu? ( app-text/djvu )
fftw? ( sci-libs/fftw:3.0 )
fontconfig? ( media-libs/fontconfig )
fpx? ( >=media-libs/libfpx-1.3.0-r1 )
graphviz? ( media-gfx/graphviz )
jbig? ( >=media-libs/jbigkit-2:= )
jpeg? ( virtual/jpeg:0 )
jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
lcms? ( media-libs/lcms:2= )
lqr? ( media-libs/liblqr )
opencl? ( virtual/opencl )
openexr? ( media-libs/openexr:0= )
pango? ( x11-libs/pango )
perl? ( >=dev-lang/perl-5.8.8:0= )
png? ( media-libs/libpng:0= )
postscript? ( app-text/ghostscript-gpl )
raw? ( media-gfx/ufraw )
svg? ( gnome-base/librsvg )
tiff? ( media-libs/tiff:0= )
truetype? (
media-fonts/urw-fonts
>=media-libs/freetype-2
)
webp? ( media-libs/libwebp:0= )
wmf? ( media-libs/libwmf )
X? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libXext
x11-libs/libXt
)
xml? ( dev-libs/libxml2:= )
lzma? ( app-arch/xz-utils )
zlib? ( sys-libs/zlib:= )"
DEPEND="${RDEPEND}
!media-gfx/graphicsmagick[imagemagick]
virtual/pkgconfig
X? ( x11-proto/xextproto )"
REQUIRED_USE="corefonts? ( truetype )
test? ( corefonts )"
S=${WORKDIR}/${MY_P}
src_prepare() {
default
elibtoolize # for Darwin modules
# For testsuite, see https://bugs.gentoo.org/show_bug.cgi?id=500580#c3
shopt -s nullglob
mesa_cards=$(echo -n /dev/dri/card* | sed 's/ /:/g')
if test -n "${mesa_cards}"; then
addpredict "${mesa_cards}"
fi
ati_cards=$(echo -n /dev/ati/card* | sed 's/ /:/g')
if test -n "${ati_cards}"; then
addpredict "${ati_cards}"
fi
shopt -u nullglob
addpredict /dev/nvidiactl
}
src_configure() {
local depth=16
use q8 && depth=8
use q32 && depth=32
use q64 && depth=64
local openmp=disable
use openmp && { tc-has-openmp && openmp=enable; }
[[ ${CHOST} == *-solaris* ]] && append-ldflags -lnsl -lsocket
CONFIG_SHELL=$(type -P bash) \
econf \
$(use_enable static-libs static) \
$(use_enable hdri) \
$(use_enable opencl) \
--with-threads \
--with-modules \
--with-quantum-depth=${depth} \
$(use_with cxx magick-plus-plus) \
$(use_with perl) \
--with-perl-options='INSTALLDIRS=vendor' \
--with-gs-font-dir="${EPREFIX}"/usr/share/fonts/urw-fonts \
$(use_with bzip2 bzlib) \
$(use_with X x) \
$(use_with zlib) \
$(use_with autotrace) \
$(use_with postscript dps) \
$(use_with djvu) \
--with-dejavu-font-dir="${EPREFIX}"/usr/share/fonts/dejavu \
$(use_with fftw) \
$(use_with fpx) \
$(use_with fontconfig) \
$(use_with truetype freetype) \
$(use_with postscript gslib) \
$(use_with graphviz gvc) \
$(use_with jbig) \
$(use_with jpeg) \
$(use_with jpeg2k openjp2) \
$(use_with lcms) \
$(use_with lqr) \
$(use_with lzma) \
$(use_with openexr) \
$(use_with pango) \
$(use_with png) \
$(use_with svg rsvg) \
$(use_with tiff) \
$(use_with webp) \
$(use_with corefonts windows-font-dir "${EPREFIX}"/usr/share/fonts/corefonts) \
$(use_with wmf) \
$(use_with xml) \
--${openmp}-openmp \
--with-gcc-arch=no-automagic
}
src_test() {
LD_LIBRARY_PATH="${S}/coders/.libs:${S}/filters/.libs:${S}/Magick++/lib/.libs:${S}/magick/.libs:${S}/wand/.libs" \
emake check
}
src_install() {
# Ensure documentation installation files and paths with each release!
emake \
DESTDIR="${D}" \
DOCUMENTATION_PATH="${EPREFIX}"/usr/share/doc/${PF}/html \
install
rm -f "${ED}"/usr/share/doc/${PF}/html/{ChangeLog,LICENSE,NEWS.txt}
dodoc {AUTHORS,README}.txt ChangeLog
if use perl; then
find "${ED}" -type f -name perllocal.pod -exec rm -f {} +
find "${ED}" -depth -mindepth 1 -type d -empty -exec rm -rf {} +
fi
find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
if use opencl; then
cat <<-EOF > "${T}"/99${PN}
SANDBOX_PREDICT="/dev/nvidiactl:/dev/ati/card:/dev/dri/card"
EOF
insinto /etc/sandbox.d
doins "${T}"/99${PN} #472766
fi
insinto /usr/share/${PN}
doins config/*icm
}

@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
RDEPEND="sys-libs/zlib

@ -1 +1 @@
Thu, 05 May 2016 08:40:16 +0000
Thu, 05 May 2016 10:38:51 +0000

@ -1 +1 @@
Thu, 05 May 2016 08:40:16 +0000
Thu, 05 May 2016 10:38:51 +0000

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools[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(-)] 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(-)]
DESCRIPTION=PyYAML-based module to produce pretty and readable YAML-serialized data
EAPI=5
HOMEPAGE=https://github.com/mk-fg/pretty-yaml
IUSE=python_targets_python2_7 python_targets_python3_3 python_targets_python3_4
KEYWORDS=~amd64
LICENSE=WTFPL-2
RDEPEND=dev-python/pyyaml[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(-)] 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(-)]
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 )
SLOT=0
SRC_URI=mirror://pypi/p/pyaml/pyaml-14.05.7.tar.gz
_eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 792f83d5ec9536cb5ccef375469d8bde multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 23ae8c186171e6476af098d2a50d0ee0 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb
_md5_=3fd389dfcd9568f8076651d02e493895

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/unidecode[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
DESCRIPTION=PyYAML-based module to produce pretty and readable YAML-serialized data
EAPI=6
HOMEPAGE=https://github.com/mk-fg/pretty-yaml
IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5
KEYWORDS=~amd64 ~arm ~x86
LICENSE=WTFPL-2
RDEPEND=dev-python/pyyaml[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 )
SLOT=0
SRC_URI=mirror://pypi/p/pyaml/pyaml-15.8.2.tar.gz
_eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 23ae8c186171e6476af098d2a50d0ee0 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb
_md5_=05cd6d99f9f2377edd5d49664d5057b1

@ -11,4 +11,4 @@ RDEPEND=>=sys-libs/zlib-1.1.3:0= virtual/libffi:0= virtual/libintl:0= dev-libs/e
SLOT=0/2.4
SRC_URI=https://bitbucket.org/pypy/pypy/downloads/pypy3-2.4.0-src.tar.bz2
_eclasses_=check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils 792f83d5ec9536cb5ccef375469d8bde multilib 23ae8c186171e6476af098d2a50d0ee0 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=8d32fc227b6b986055e2f0a9c76b4535
_md5_=ac0771e643e731c9c93df81d025ea395

@ -12,4 +12,4 @@ REQUIRED_USE=!jit? ( !shadowstack ) x86? ( !cpu_flags_x86_sse2? ( !jit !shadowst
SLOT=0/2.4
SRC_URI=https://bitbucket.org/pypy/pypy/downloads/pypy3-2.4.0-src.tar.bz2 amd64? ( jit? ( shadowstack? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/2.4.0-nossl2/pypy3-bin-2.4.0-nossl2-amd64+bzip2+jit+ncurses+shadowstack.tar.lz ) ) jit? ( !shadowstack? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/2.4.0-nossl2/pypy3-bin-2.4.0-nossl2-amd64+bzip2+jit+ncurses.tar.lz ) ) !jit? ( !shadowstack? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/2.4.0-nossl2/pypy3-bin-2.4.0-nossl2-amd64+bzip2+ncurses.tar.lz ) ) ) x86? ( cpu_flags_x86_sse2? ( jit? ( shadowstack? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/2.4.0-nossl2/pypy3-bin-2.4.0-nossl2-x86+bzip2+jit+ncurses+shadowstack+sse2.tar.lz ) ) jit? ( !shadowstack? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/2.4.0-nossl2/pypy3-bin-2.4.0-nossl2-x86+bzip2+jit+ncurses+sse2.tar.lz ) ) !jit? ( !shadowstack? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/2.4.0-nossl2/pypy3-bin-2.4.0-nossl2-x86+bzip2+ncurses+sse2.tar.lz ) ) ) !cpu_flags_x86_sse2? ( !jit? ( !shadowstack? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/2.4.0-nossl2/pypy3-bin-2.4.0-nossl2-x86+bzip2+ncurses.tar.lz ) ) ) )
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde multilib 23ae8c186171e6476af098d2a50d0ee0 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb unpacker 45d07319df5f40ee6af58418b0f930be versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=500b5d5f42303e231f1dd65064005b83
_md5_=d732ee605c1aeab9821ada8d6f451fb8

@ -4,11 +4,11 @@ DESCRIPTION=Advanced version control system
EAPI=5
HOMEPAGE=http://subversion.apache.org/
IUSE=apache2 berkdb ctypes-python debug doc +dso extras gnome-keyring +http java kde nls perl python ruby sasl test vim-syntax apache2 python_targets_python2_7 elibc_FreeBSD java
KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~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 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~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=Subversion GPL-2
RDEPEND=>=dev-db/sqlite-3.7.12 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat sys-apps/file sys-libs/zlib app-arch/bzip2 berkdb? ( >=sys-libs/db-4.0.14:= ) ctypes-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(-)] ) gnome-keyring? ( dev-libs/glib:2 sys-apps/dbus gnome-base/libgnome-keyring ) kde? ( sys-apps/dbus dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 >=kde-base/kdelibs-4:4 ) perl? ( dev-lang/perl:= ) 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(-)] ) ruby? ( || ( dev-lang/ruby:2.0 dev-lang/ruby:2.1 dev-lang/ruby:2.2 ) virtual/rubygems ) sasl? ( dev-libs/cyrus-sasl ) http? ( >=net-libs/serf-1.2.1 ) apache2? ( www-servers/apache[apache2_modules_dav] ) java? ( >=virtual/jre-1.5 ) kde? ( kde-apps/kwalletd:4 ) nls? ( virtual/libintl ) perl? ( dev-perl/URI ) apache2? ( =www-servers/apache-2* ) java? ( >=dev-java/java-config-2.2.0-r3 )
REQUIRED_USE=ctypes-python? ( || ( python_targets_python2_7 ) ) python? ( || ( python_targets_python2_7 ) ) test? ( || ( python_targets_python2_7 ) !dso )
SLOT=0
SRC_URI=mirror://apache/subversion/subversion-1.8.16.tar.bz2
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 db-use a4966c7f4f7df444ead1212848c13cc9 depend.apache e3c541cb90838388f81620d630c28f41 distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c elisp-common 9f56c4e9bf1282dbfc2a5a09e1124e74 eutils 792f83d5ec9536cb5ccef375469d8bde flag-o-matic d270fa247153df66074f795fa42dba3e java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 9e28057f28d9dbd057aa04aacd786b94 libtool 4890219c51da247200223277f993e054 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 23ae8c186171e6476af098d2a50d0ee0 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module c584f9e0fe426f3dcc2c46c6f7cb95ce python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 ruby-single c49250968781888465d5a8597376297f ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs d513d423d449877e49d99af3f7af7acb unpacker 45d07319df5f40ee6af58418b0f930be versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=8f863408fdaac0537671c1f6b8337bc5
_md5_=3b5c212dfa870fc8b9c8ab65ae95d6bf

@ -0,0 +1,15 @@
DEFINED_PHASES=configure install prepare test
DEPEND=dev-libs/libltdl:0 autotrace? ( >=media-gfx/autotrace-0.31.1 ) bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-gfx/ufraw ) svg? ( gnome-base/librsvg ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= ) !media-gfx/graphicsmagick[imagemagick] virtual/pkgconfig X? ( x11-proto/xextproto )
DESCRIPTION=A collection of tools and libraries for many image formats
EAPI=6
HOMEPAGE=http://www.imagemagick.org/
IUSE=autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
LICENSE=imagemagick
RDEPEND=dev-libs/libltdl:0 autotrace? ( >=media-gfx/autotrace-0.31.1 ) bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-gfx/ufraw ) svg? ( gnome-base/librsvg ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= )
REQUIRED_USE=corefonts? ( truetype ) test? ( corefonts )
RESTRICT=perl? ( userpriv )
SLOT=0/6.9.3.10
SRC_URI=mirror://imagemagick/ImageMagick-6.9.3-10.tar.xz
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde flag-o-matic d270fa247153df66074f795fa42dba3e libtool 4890219c51da247200223277f993e054 multilib 23ae8c186171e6476af098d2a50d0ee0 toolchain-funcs d513d423d449877e49d99af3f7af7acb versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=eb032adc67f4bafd724742437c340b55

@ -9,7 +9,7 @@ LICENSE=imagemagick
RDEPEND=dev-libs/libltdl:0 autotrace? ( >=media-gfx/autotrace-0.31.1 ) bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-gfx/ufraw ) svg? ( gnome-base/librsvg ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= )
REQUIRED_USE=corefonts? ( truetype ) test? ( corefonts )
RESTRICT=perl? ( userpriv )
SLOT=0/7.0.1.0
SRC_URI=mirror://imagemagick/ImageMagick-7.0.1-0.tar.xz
SLOT=0/7.0.1.1
SRC_URI=mirror://imagemagick/ImageMagick-7.0.1-1.tar.xz
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde flag-o-matic d270fa247153df66074f795fa42dba3e libtool 4890219c51da247200223277f993e054 multilib 23ae8c186171e6476af098d2a50d0ee0 toolchain-funcs d513d423d449877e49d99af3f7af7acb versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=eb032adc67f4bafd724742437c340b55

@ -3,10 +3,10 @@ DEPEND=sys-libs/zlib media-libs/libpng:0 sys-apps/findutils
DESCRIPTION=Compress PNG files without affecting image quality
EAPI=4
HOMEPAGE=http://optipng.sourceforge.net/
KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
KEYWORDS=~alpha ~amd64 ~arm ~ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
LICENSE=ZLIB
RDEPEND=sys-libs/zlib media-libs/libpng:0
SLOT=0
SRC_URI=mirror://sourceforge/optipng/optipng-0.7.6.tar.gz
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde multilib 23ae8c186171e6476af098d2a50d0ee0 toolchain-funcs d513d423d449877e49d99af3f7af7acb
_md5_=2ca61f08aa20097125142a060c694bb2
_md5_=7b38213aa1e91933d3a4d535d12e6f94

@ -1,15 +1,15 @@
DEFINED_PHASES=compile configure install postinst prepare
DEPEND=>=net-im/jabber-base-0.01 >=dev-libs/expat-1.95 >=dev-libs/libyaml-0.1.4 >=dev-lang/erlang-17.1[ssl] odbc? ( dev-db/unixODBC[-minimal] ) ldap? ( =net-nds/openldap-2* ) dev-libs/openssl:0 captcha? ( media-gfx/imagemagick[truetype,png] ) zlib? ( >=sys-libs/zlib-1.2.3 ) ssl? ( || ( dev-libs/openssl:0 dev-libs/libressl:0 ) ) virtual/pkgconfig
DEPEND=>=net-im/jabber-base-0.01 >=dev-libs/expat-1.95 >=dev-libs/libyaml-0.1.4 >=dev-lang/erlang-17.1[ssl] odbc? ( dev-db/unixODBC[-minimal] ) ldap? ( =net-nds/openldap-2* ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) captcha? ( media-gfx/imagemagick[truetype,png] ) zlib? ( >=sys-libs/zlib-1.2.3 ) ssl? ( || ( dev-libs/openssl:0 dev-libs/libressl:0 ) ) virtual/pkgconfig
DESCRIPTION=The Erlang Jabber Daemon
EAPI=5
HOMEPAGE=http://www.ejabberd.im/ https://github.com/processone/ejabberd/
IUSE=captcha debug elixir +iconv +lager ldap mssql mysql odbc pam postgres redis riak sqlite ssl tools +zlib mod_bosh mod_irc mod_muc mod_proxy65 mod_pubsub ssl
IUSE=captcha debug elixir +iconv +lager ldap libressl mssql mysql odbc pam postgres redis riak sqlite ssl tools +zlib mod_bosh mod_irc mod_muc mod_proxy65 mod_pubsub ssl
KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~sparc ~x86
LICENSE=GPL-2
RDEPEND=>=net-im/jabber-base-0.01 >=dev-libs/expat-1.95 >=dev-libs/libyaml-0.1.4 >=dev-lang/erlang-17.1[ssl] odbc? ( dev-db/unixODBC[-minimal] ) ldap? ( =net-nds/openldap-2* ) dev-libs/openssl:0 captcha? ( media-gfx/imagemagick[truetype,png] ) zlib? ( >=sys-libs/zlib-1.2.3 ) >=sys-apps/shadow-4.1.4.2-r3 elixir? ( !dev-lang/elixir ) pam? ( virtual/pam )
RDEPEND=>=net-im/jabber-base-0.01 >=dev-libs/expat-1.95 >=dev-libs/libyaml-0.1.4 >=dev-lang/erlang-17.1[ssl] odbc? ( dev-db/unixODBC[-minimal] ) ldap? ( =net-nds/openldap-2* ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) captcha? ( media-gfx/imagemagick[truetype,png] ) zlib? ( >=sys-libs/zlib-1.2.3 ) >=sys-apps/shadow-4.1.4.2-r3 elixir? ( !dev-lang/elixir ) pam? ( virtual/pam )
REQUIRED_USE=mssql? ( odbc )
RESTRICT=mirror
SLOT=0
SRC_URI=http://www.process-one.net/downloads/ejabberd/16.01/ejabberd-16.01.tgz mysql? ( https://github.com/processone/mysql/archive/1.0.0.zip -> mysql-1.0.0.zip ) postgres? ( https://github.com/processone/pgsql/archive/1.0.0.zip -> pgsql-1.0.0.zip ) sqlite? ( https://github.com/alexeyr/erlang-sqlite3/archive/cbc3505f7a131254265d3ef56191b2581b8cc172.zip -> erlang-sqlite3-cbc3505f7a131254265d3ef56191b2581b8cc172.zip ) pam? ( https://github.com/processone/epam/archive/1.0.0.zip -> epam-1.0.0.zip ) zlib? ( https://github.com/processone/zlib/archive/1.0.0.zip -> zlib-1.0.0.zip ) riak? ( https://github.com/basho/riak-erlang-client/archive/527722d12d0433b837cdb92a60900c2cb5df8942.zip -> riak-erlang-client-527722d12d0433b837cdb92a60900c2cb5df8942.zip https://github.com/basho/riak_pb/archive/1a43334c03cfe81712c71c6f166b68fe9270f008.zip -> riak_pb-1a43334c03cfe81712c71c6f166b68fe9270f008.zip https://github.com/hyperthunk/hamcrest-erlang/archive/908a24fda4a46776a5135db60ca071e3d783f9f6.zip -> hamcrest-erlang-908a24fda4a46776a5135db60ca071e3d783f9f6.zip https://github.com/basho/erlang_protobuffs/archive/6e7fc924506e2dc166a6170e580ce1d95ebbd5bd.zip -> erlang_protobuffs-6e7fc924506e2dc166a6170e580ce1d95ebbd5bd.zip ) elixir? ( https://github.com/processone/rebar_elixir_plugin/archive/0.1.0.zip -> rebar_elixir_plugin-0.1.0.zip https://github.com/elixir-lang/elixir/archive/f2a9c7016633ca63541a8160c63a53eb7edbccdb.zip -> elixir-f2a9c7016633ca63541a8160c63a53eb7edbccdb.zip ) iconv? ( https://github.com/processone/eiconv/archive/0.9.0.zip -> eiconv-0.9.0.zip ) lager? ( https://github.com/basho/lager/archive/3.0.2.zip -> lager-3.0.2.zip https://github.com/DeadZen/goldrush/archive/212299233c7e7eb63a97be2777e1c05ebaa58dbe.zip -> goldrush-212299233c7e7eb63a97be2777e1c05ebaa58dbe.zip ) !lager? ( https://github.com/processone/p1_logger/archive/1.0.0.zip -> p1_logger-1.0.0.zip ) tools? ( https://github.com/eproxus/meck/archive/0.8.2.zip -> meck-0.8.2.zip ) redis? ( https://github.com/wooga/eredis/archive/cbc013f516e464706493c01662e5e9dd82d1db01.zip -> eredis-cbc013f516e464706493c01662e5e9dd82d1db01.zip ) https://github.com/processone/tls/archive/1.0.0.zip -> tls-1.0.0.zip https://github.com/processone/stringprep/archive/1.0.0.zip -> stringprep-1.0.0.zip https://github.com/processone/xml/archive/1.1.1.zip -> xml-1.1.1.zip https://github.com/processone/p1_sip/archive/1.0.0.zip -> p1_sip-1.0.0.zip https://github.com/processone/stun/archive/0.9.0.zip -> stun-0.9.0.zip https://github.com/processone/p1_yaml/archive/1.0.0.zip -> p1_yaml-1.0.0.zip https://github.com/processone/p1_utils/archive/1.0.2.zip -> p1_utils-1.0.2.zip https://github.com/processone/cache_tab/archive/1.0.1.zip -> cache_tab-1.0.1.zip https://github.com/davisp/jiffy/archive/0.14.5.zip -> jiffy-0.14.5.zip https://github.com/kivra/oauth2/archive/8d129fbf8866930b4ffa6dd84e65bd2b32b9acb8.zip -> oauth2-8d129fbf8866930b4ffa6dd84e65bd2b32b9acb8.zip https://github.com/rds13/xmlrpc/archive/1.15.zip -> xmlrpc-1.15.zip
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde flag-o-matic d270fa247153df66074f795fa42dba3e multilib 23ae8c186171e6476af098d2a50d0ee0 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 ssl-cert b031e94f4c7c34e1d677376b8929821a systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs d513d423d449877e49d99af3f7af7acb
_md5_=903c161d661b77b8fd5a685eca2cee3e
_md5_=e27c2ae9698d5d4f63dfac37e7c97209

@ -4,7 +4,7 @@ DESCRIPTION=Portage is the package management and distribution system for Gentoo
EAPI=5
HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Portage
IUSE=build doc epydoc +ipc linguas_ru selinux xattr python_targets_pypy python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5
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
LICENSE=GPL-2
PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) )
RDEPEND=>=app-arch/tar-1.27 dev-lang/python-exec:2 !build? ( >=sys-apps/sed-4.0.5 app-shells/bash:0[readline] >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 selinux? ( >=sys-libs/libselinux-2.0.94[python,python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) xattr? ( kernel_linux? ( >=sys-apps/install-xattr-0.3 python_targets_pypy? ( dev-python/pyxattr[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/pyxattr[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) ) !<app-admin/logrotate-3.8.0 python_targets_pypy? ( virtual/pypy:0=[bzip2(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[bzip2(+)] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[bzip2(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[bzip2(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[bzip2(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
@ -12,4 +12,4 @@ REQUIRED_USE=epydoc? ( python_targets_python2_7 ) || ( python_targets_pypy pytho
SLOT=0
SRC_URI=mirror://gentoo/portage-2.2.28.tar.bz2 https://dev.gentoo.org/~dolsen/releases/portage/portage-2.2.28.tar.bz2
_eclasses_=distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c eutils 792f83d5ec9536cb5ccef375469d8bde multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 23ae8c186171e6476af098d2a50d0ee0 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb
_md5_=d2b75642c3d2042e791b0d3f69eb18e7
_md5_=37946177d3e5cea9e72c43e2aabc8c69

@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
LICENSE=GPL-2 freedist
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc )
RESTRICT=binchecks strip
SLOT=3.14.67
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.14.67.xz mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz
SLOT=3.14.68
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.14.68.xz mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde kernel-2 f745fe70cd0e35af07412905687b9a7f multilib 23ae8c186171e6476af098d2a50d0ee0 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=0dc8fcb8286cc84f96e1568a488616d6

@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
LICENSE=GPL-2 freedist
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc )
RESTRICT=binchecks strip
SLOT=4.4.8
SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.4.8.xz mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz
SLOT=4.4.9
SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.4.9.xz mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde kernel-2 f745fe70cd0e35af07412905687b9a7f multilib 23ae8c186171e6476af098d2a50d0ee0 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=0dc8fcb8286cc84f96e1568a488616d6

@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
LICENSE=GPL-2 freedist
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc )
RESTRICT=binchecks strip
SLOT=4.5.2
SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.5.2.xz mirror://kernel/linux/kernel/v4.x/linux-4.5.tar.xz
SLOT=4.5.3
SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.5.3.xz mirror://kernel/linux/kernel/v4.x/linux-4.5.tar.xz
_eclasses_=eutils 792f83d5ec9536cb5ccef375469d8bde kernel-2 f745fe70cd0e35af07412905687b9a7f multilib 23ae8c186171e6476af098d2a50d0ee0 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs d513d423d449877e49d99af3f7af7acb versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=0dc8fcb8286cc84f96e1568a488616d6

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtsql:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtxmlpatterns:5 spell? ( kde-frameworks/sonnet ) sys-devel/make >=dev-util/cmake-2.8.12
DESCRIPTION=Project aiming to recreate classic Opera (12.x) UI using Qt5
EAPI=5
HOMEPAGE=http://otter-browser.org/
IUSE=spell
KEYWORDS=~amd64
LICENSE=GPL-3
RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtsql:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtxmlpatterns:5 spell? ( kde-frameworks/sonnet )
SLOT=0
SRC_URI=https://github.com/Emdek/otter/archive/v0.9.10.tar.gz -> otter-0.9.10.tar.gz
_eclasses_=cmake-utils 422bbd1bee2557490177a34dbe0a662b eutils 792f83d5ec9536cb5ccef375469d8bde flag-o-matic d270fa247153df66074f795fa42dba3e multilib 23ae8c186171e6476af098d2a50d0ee0 toolchain-funcs d513d423d449877e49d99af3f7af7acb versionator 99ae9d758cbe7cfed19170e7d48f5a9c
_md5_=4815933f80fbadda842ecef976fb3bd2

@ -1 +1 @@
Thu, 05 May 2016 08:40:16 +0000
Thu, 05 May 2016 10:38:51 +0000

@ -1 +1 @@
Thu May 5 08:39:21 UTC 2016
Thu May 5 10:37:58 UTC 2016

@ -1 +1 @@
Thu, 05 May 2016 09:00:01 +0000
Thu, 05 May 2016 11:00:01 +0000

@ -1 +1 @@
1462437601 Thu 05 May 2016 08:40:01 AM UTC
1462444802 Thu 05 May 2016 10:40:02 AM UTC

@ -1 +1 @@
Thu, 05 May 2016 08:40:16 +0000
Thu, 05 May 2016 10:38:51 +0000

@ -185,7 +185,7 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
EJABBERD_MODULES="mod_bosh mod_irc mod_muc mod_proxy65 mod_pubsub"
IUSE="captcha debug elixir +iconv +lager ldap mssql mysql odbc pam postgres redis riak sqlite ssl tools +zlib ${EJABBERD_MODULES}"
IUSE="captcha debug elixir +iconv +lager ldap libressl mssql mysql odbc pam postgres redis riak sqlite ssl tools +zlib ${EJABBERD_MODULES}"
DEPEND=">=net-im/jabber-base-0.01
>=dev-libs/expat-1.95
@ -193,7 +193,8 @@ DEPEND=">=net-im/jabber-base-0.01
>=dev-lang/erlang-17.1[ssl]
odbc? ( dev-db/unixODBC[-minimal] )
ldap? ( =net-nds/openldap-2* )
dev-libs/openssl:0
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
captcha? ( media-gfx/imagemagick[truetype,png] )
zlib? ( >=sys-libs/zlib-1.2.3 )"
RDEPEND="${DEPEND}

@ -17,7 +17,7 @@ DESCRIPTION="Portage is the package management and distribution system for Gento
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"
LICENSE="GPL-2"
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"
SLOT="0"
IUSE="build doc epydoc +ipc linguas_ru selinux xattr"

@ -10,11 +10,11 @@ DIST linux-4.4.tar.xz 87295988 SHA256 401d7c8fef594999a460d10c72c5a94e9c2e1022f1
DIST linux-4.5.tar.xz 88375040 SHA256 a40defb401e01b37d6b8c8ad5c1bbab665be6ac6310cdeed59950c96b31a519c SHA512 cb0d5f30baff37dfea40fbc1119a1482182f95858c883e019ee3f81055c8efbdb9dba7dfc02ebcc4216db38f03ece58688e69efc0fce1dade359af30bd5426de WHIRLPOOL 8faa0b02c5733fc45dbe61f82a7022e9246b9b1665f27541d4afa5d14c310b9dce7a8532dfac8273898edf8c6923654ee2fbcf2cec1ec2a220f4c9f926f2b333
DIST patch-3.10.101.xz 1269636 SHA256 6a23fe951e7c4f50b4b0ca54bc31a3190406327dfb44be91b351ad13cad39e4b SHA512 90dc8a22653fbfda1214d382ae59408cd37479fe6e466d0ff66d13a2a44fd1c6a72e5c8658d0df39bb18d4306e58303d843fafdf527bd6d9b54386202059e80e WHIRLPOOL 21364bf10c635cc941f8eedd726c267a0273ccc75c9cdc98f8a99d1a02f7cdebaf21dee46e8e133c6f45e8f0fc62b9a149a8cb99924a268e0c7d5ba8c2df44b3
DIST patch-3.12.59.xz 1545540 SHA256 dd965830cf34f141d48a50c550b059b70fd62a1480cc9351a1c7087072ec8c49 SHA512 1484602b8a23ac6380a51195ce6ab8d890f532b1fddea7b89504f8c1f988f6a68d719aa77f5cf40cbce22c90a4e49b416b2000c8ed44d60634f79d89144445b8 WHIRLPOOL 3e96fd895eb877d9145e5a4036f2ad9b017cf1e3a65359430fc99213e5976ac60f6ca5ff130d318468da899629ceaf234e18ee2ae61298bdc1803aeaaa7c1e0b
DIST patch-3.14.67.xz 1152132 SHA256 71352f56cbce2a07efa569cc6564dcc6cbaa92345daf1abf6728df45b3e356f5 SHA512 0c91ad72b457837d318cd6191ec5f96c3a1c48623070c5b980ff8b5fdc70668328f25b8caece6827a3860f91016809fef9d7edf36fb8f8be1a795242f4cfdf8e WHIRLPOOL 91d8dc194f2c15e62fa678bd0f56e94ef8d063653a9e71f0585ee8846046d20501de2a67c8224e99d258f16ec2765a205adc945ccf04898a1bbe48db0a15515c
DIST patch-3.14.68.xz 1159488 SHA256 77147238b1b31ecb9f440ef43c2019159e07bd60289b9db050813677ffa92a35 SHA512 e717eca99e980c7deb8bb505f1ab1b92629a1d7c9861957b2b0ff205dd874ca7e0855acac41c190dd0bf5c6bdb699ea14f540e5a864a3368ed35684ec26db8cb WHIRLPOOL a5357f619d12f576d4774db47d4a224c0181ea573480cbd3387dcc5c952c44c380bae8d0d9fad5e6a02a0762c461a761e4913ea63dad149f1fc993dd10e69aec
DIST patch-3.16.35.xz 1203316 SHA256 721c550daf6caf0d6910787097fee9b4f5ed74daeee913bb3a0ad33bb45acf58 SHA512 c23591049f4fe8b5d4e5b473a0209c779ac32d9eb365477bf75fbe68ccb9dcc5e2958b2df22111d8cdd7b5a982bbc04232e0d18f6999432560432a5ac4354ffd WHIRLPOOL ebed71eb081d80d50318a858ba6b5ef78d5ae9b664638ec0fc58c02ba94b2b3202e9c1493013c3c3527975eca8f9596cd879a6084eb63606c17d994b65112b6f
DIST patch-3.18.32.xz 890188 SHA256 63c163fbb5bb68eed94c7925e807ec34fed1e888112810e6784b874828784c84 SHA512 ff42317009800a447fd5cd7c97537a2e5c5e4883e6c243ce2b8ca154f42c25c01810540ae70568d816c704400b8824ae870ba08c2cab6bdaf65f38c3afc75040 WHIRLPOOL 38f5ca159aaefad33b18591361d1ec68f858b6842b364c725c7575364e8f3aab97e80d765cbf11b604beb7cfb33d4d56fa5f3e93e6886c57788f1af86f44529b
DIST patch-3.2.80.xz 1595888 SHA256 2a1aba4ba5fe3752de0dbfe60963daad934a1abf67e87bf2cc88de8ca22720f7 SHA512 ec7fdf71586fa04d0a1e683ce8a3521bb2104d6756a3b92c21096df0bc80cf5db1fdcef15174ed3ebe7404e86befb5c3d3bec612cb7910592174574588acc706 WHIRLPOOL aeb7cfb31c224811b1fb22c34ec50ad4c4a668ab0391b5d1b3c257f95d862d8fb2dc3bf3e6c5e609408f363911092394a08c7379e86b256cce2a1766c83249d6
DIST patch-3.4.112.xz 1337588 SHA256 01d33e0582be65f75835599ebf659f46c0ad0b7f64b826c78e5402550f2224c8 SHA512 474bb722b4c5adcb81d73df2091f4a0873be01a7f287a34bed7d68b134bcdc8dee3ef7a658f2e9f0e3572bb1ca83ed8b06ece31346fe3685476a1fabb9bc0a2e WHIRLPOOL 5bb15bb566ed73dc5f316d2e57b655733de4263c1bf78f2af61c34097cce49ebf5480d4dffff4748e5725a7ed83dac4230a083135e30b19379ec05ffd84cc96f
DIST patch-4.1.23.xz 703592 SHA256 b27ac56715c859cab298ad34dfc055b71fd7b8bc8aa066e0c9ef71c192440569 SHA512 5c861ef224a7de1839d5dd0a656d1e93cdcb00511447cfd7119140dd2b7c9d20e632109764cb00d7cff5474c0d70ebc317ec8df3f4866a70f90937dea12380aa WHIRLPOOL 5568b638e5def7050c483c51e5b680cb68cbeae9c701d4eb368c1dac23cdc2ad651fcc9ec258b02b0625faa057d517c227a10aedcc4f6d91d0f775a7bb4b3382
DIST patch-4.4.8.xz 331620 SHA256 11ec99ae0600bd831ff8d71b77e64592f4b6918b7857fd9ff0284ea4cf267b4e SHA512 d53d6950bc121107fecec91b4cd33473b0b18e7188bd387cd02f3ab4ece0f7dc6f1530ad9b7a44655afb7d823fb94ad8d8710902367c9b12911eb2247a12f2c7 WHIRLPOOL 1fc7e059c5dcbdac3f6c7d485371f27d24a99c4be0d08d3a3d752edc22b251990cb56da92d4c9029444502696aca895ea23934e6f577917293ed8369252964fa
DIST patch-4.5.2.xz 115772 SHA256 a9913a04ddbd06acde9b00b3179c41fddb99f61168ef5d01d3e8cf72385038b1 SHA512 cc0ba1c2205ab44d41c9792e03e0164cc8bb79eae3d324d138f61ef714513d06abdedc5467d6f0b5fa6601d47032cea66840c01104dfe8f5b606c76483a5355a WHIRLPOOL 870d89edc089017ca850d66b37aeb1810199034ef4250778c09be177d47ce292fbc2f64e7cadcc122f7752f046d2ea5b8616a0b1a41a2eda05aecd8ffbf59c82
DIST patch-4.4.9.xz 370700 SHA256 44be6ca02de24c3f2041d0000d163a458a62d75e926e54b628cc30e41e9fde6b SHA512 19d2192d36b8ea9def64396d878b14db00e8f738bc399b769f9ca31a495cb64bb6b4b60b9477ca3830db07283b43d2b57037f3d54beb8fe9f1fcbca6263e1c2c WHIRLPOOL e5af8d0655b52bed2aa30ccf0c15ec0bca5b6f2e3e02a9b26543a39faf041a0f2364b68f4eaa2b69a3b1e3cead19c8c3fdec734cac69332219b14d9f2a77a6f4
DIST patch-4.5.3.xz 170636 SHA256 02a1a3fb190031130f6a304a1d3ebb72ce0b4e6dcc608c9e423780e4df10dec7 SHA512 e29e87e8e38f92cac62e351d6d716f0de0b67764de8f8955e3730b6aa5d5090e71c8442ac55547f5f7c776a269e651eaefaadae514a8e0b442df5459409e793b WHIRLPOOL a3bde400b5bfe3e4f5be88e4138c8559c2102242941e5e9c4cc5d3bc78c21e92f779cd21d6a057211b63743e836eb1e7d9577003c369f41f5898b8c2ec65a9b0

@ -1 +1,2 @@
DIST otter-0.9.09.tar.gz 3197615 SHA256 4fb555da8c8268cce3893a5af8c777b355978da4f87184a5a413a5c233622c6c SHA512 269d896784f6cdcc051c4d6c1b182910d62c10998b10993cb90387cc81a8ca032a36cbe0182695d441b3e470a7a5ba7f54ffb5436cbf566a3ccd9bf3911734b1 WHIRLPOOL 1bd3acf698b6d04bd4f65abcac1bef2c0708bdf56bf53eeb36b42bc36a36b06baf5c5239fcaca15dbf48a701eebca6701bba4ba7db39e7a0dfe91c606554ae43
DIST otter-0.9.10.tar.gz 3521313 SHA256 276c35a31991d4cb274fcf3630b985ddb5876773400ef39893469c2f1c0e35e2 SHA512 04372d082a31bee906abee0d10e5489763b3f0a72d7e20b4c0fcbe85be0c29142294d4e32e9af56b6d7f4c529ffddc20347c0be6104bb6a64d8245724e20d96f WHIRLPOOL 5406db98000828c8db7017f990d777329049516545cd640443106196c256724adcf6aac72f39e564392f3dc11b4fa709fac056701ff030a79ee7e9ce7b100e02

@ -0,0 +1,61 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
WANT_CMAKE="always"
inherit eutils cmake-utils
DESCRIPTION="Project aiming to recreate classic Opera (12.x) UI using Qt5"
HOMEPAGE="http://otter-browser.org/"
SRC_URI="https://github.com/Emdek/${PN}/archive/v${PV/_p/-dev}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="spell"
DEPEND="
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtnetwork:5[ssl]
dev-qt/qtprintsupport:5
dev-qt/qtscript:5
dev-qt/qtsql:5
dev-qt/qtwebkit:5
dev-qt/qtwidgets:5
dev-qt/qtxmlpatterns:5
spell? ( kde-frameworks/sonnet )
"
RDEPEND="
${DEPEND}
"
S=${WORKDIR}/${PN}-browser-${PV/_p/-dev}
DOCS=( CHANGELOG CONTRIBUTING.md TODO )
src_prepare() {
if [[ -n ${LINGUAS} ]]; then
local lingua
for lingua in resources/translations/*.qm; do
lingua=$(basename ${lingua})
lingua=${lingua/otter-browser_/}
lingua=${lingua/.qm/}
if ! has ${lingua} ${LINGUAS}; then
rm resources/translations/otter-browser_${lingua}.qm || die
fi
done
fi
if ! use spell; then
sed -i -e '/find_package(KF5Sonnet)/d' CMakeLists.txt || die
fi
}
src_install() {
cmake-utils_src_install
domenu ${PN}-browser.desktop
}
Loading…
Cancel
Save