parent
71ebdbdca9
commit
ea05fe785b
@ -0,0 +1,92 @@
|
||||
# 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/${MY_P}.tgz"
|
||||
|
||||
LICENSE="BSD LGPL-2"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
|
||||
IUSE="cxx 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_with cxx) \
|
||||
$(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 CHANGELOG Copyright
|
||||
dodoc "${FILESDIR}"/README.Gentoo
|
||||
pushd build/doc
|
||||
newman ecl.man ecl.1
|
||||
newman ecl-config.man ecl-config.1
|
||||
popd
|
||||
}
|
@ -0,0 +1,92 @@
|
||||
# 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="cxx 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_with cxx) \
|
||||
$(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
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_PN=${PN/-/_}
|
||||
MY_P=${MY_PN}-${PV}
|
||||
|
||||
DESCRIPTION="Test vectors for the cryptography package"
|
||||
HOMEPAGE="https://pypi.python.org/pypi/cryptography-vectors/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="|| ( Apache-2.0 BSD )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
RDEPEND=""
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
@ -0,0 +1,48 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Library providing cryptographic recipes and primitives"
|
||||
HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.python.org/pypi/cryptography/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="|| ( Apache-2.0 BSD )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="libressl test"
|
||||
|
||||
RDEPEND="
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
libressl? ( dev-libs/libressl )
|
||||
$(python_gen_cond_dep '>=dev-python/cffi-1.4.1:=[${PYTHON_USEDEP}]' 'python*')
|
||||
$(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 python3_3 pypy)
|
||||
>=dev-python/idna-2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyasn1-0.1.8[${PYTHON_USEDEP}]
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.4.1[${PYTHON_USEDEP}]
|
||||
$(python_gen_cond_dep '>=virtual/pypy-2.6.0' pypy )
|
||||
virtual/python-ipaddress[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
~dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}]
|
||||
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||||
dev-python/iso8601[${PYTHON_USEDEP}]
|
||||
dev-python/pretend[${PYTHON_USEDEP}]
|
||||
dev-python/pyasn1-modules[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst )
|
||||
|
||||
python_test() {
|
||||
py.test -v -v -x || die "Tests fail with ${EPYTHON}"
|
||||
}
|
@ -1,4 +1,6 @@
|
||||
DIST yappi-0.93.tar.gz 24367 SHA256 09c028fafb31423a46305d3dc55cf30734b66ec4607541d1b561a2ddb17d2081 SHA512 5e187c3502f44a83d2dd91809ba73d1509c3d9300a038a32ef18a128e8ad5582f888844ec9f3237606d09b447e9fa7b12add132aa723dbb1cea61d628f26331d WHIRLPOOL 4cd9a3f2a8f340a4d86d2aa0c08b56cc2531ac20887da587350b080422110331edb506626b43b902e2a5edc00a816e530920442f97f0c2fc18282d1402a4dfb5
|
||||
DIST yappi-0.94.tar.gz 25173 SHA256 15cc17dba1252ecaae29ced1e96c216165d93fd3e9ea05dff1f5e5866f16bd59 SHA512 420295f20b395229822a077848514db2138c7630a1cfc6207462e61eab3179e6fbad8b42569ae2557f0fa639fd8863bc876183554511b0dbf3d8664f8072bb28 WHIRLPOOL 2ebafad1489aa3e9d97d7c9bc6b51e9679941c783ea91ba06c82202d8500e69e7f1db2b1078c2becea2d548cbd65fb3b48774d18b1db388e1c80ee9faf311535
|
||||
EBUILD yappi-0.93.ebuild 546 SHA256 7bab8bf51fb90e8d9627d59bfe0e99ef1d2a58e2a24b77bbc22e4de0c3d043bb SHA512 94d917459564b415c6df2c4aeaabed6a86fccd6a44071d3f4e68df83f6fe03d4fc2b500c3a14207e760bd6f74a246435b4f4aebb4eb7c2b6e179a77a53de7d71 WHIRLPOOL c495fe1dc3518dad575021c7afae232a78474f9556c0af792901302fd9a12a7cea9b5b85137c5d2bc8f6661b6abdbd7520a3ba2b881a30ed9eecfa3361ce1ae3
|
||||
EBUILD yappi-0.94.ebuild 533 SHA256 5d16942f73e2e686b64a0d27615b0ac1cdd3853a63bba2f9c772ccfd816d1b27 SHA512 51dbe1cfa7a39eb81c9a6cfce755cedb9bba02d78ad942b4e584cce699c228692f3c46209837e7808e4ba55413a4c92e26d53a653df77ecdede4a00f096defc1 WHIRLPOOL d9443028b4b81f08010838c90074414e0294f5deffd5f20049cd6c73acc63484a5796d6705d0a4d432e0d027b6ac81890b44eff61255162448ce5b15bc6f7318
|
||||
MISC ChangeLog 1069 SHA256 d663968cd1585e09fedc6b07fb5273b46650abbc0036fcfe82f44bd2d7fa416c SHA512 d9b00f6070882ff7a534612361a41fcc576c46e2b4a862bb2e56f0ed5a1a7d7ab21fd76dd99d93f89cefd29404169734468e3182cef766e1784285c372502b86 WHIRLPOOL e84310c9cc14b6e1f934c2a7704d9383260f114bc52ecac046996ce192511350cca725cf913b16915bbe20ad4a306341ee70052e9687d0570125258cf25e8142
|
||||
MISC metadata.xml 491 SHA256 fcc5b9d2eb6c079f5e228299115196e1c931b4b1669cba1bedb5067f4fdfb525 SHA512 d058a5d7d593e801967cbd8764ce0e55480580995a68cd3d35802932249fa015267052895d360fc13cda379333d1cf8222e02f486e68477afe1e2af1168731fc WHIRLPOOL 75ab1c071ce66ab0833d4e70f499cbc27de84a1c606fbbf2b26c9919ef92e379a16f6dac57653d1a8bcb511f6c2c90372d6a8f0fda0d50f9f96ec7d90ac87c82
|
||||
|
@ -0,0 +1,24 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=(python{2_7,3_{3,4,5}})
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Yet Another Python Profiler"
|
||||
HOMEPAGE="https://bitbucket.org/sumerc/yappi/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
|
||||
|
||||
python_test() {
|
||||
esetup.py test
|
||||
}
|
@ -1,7 +1,9 @@
|
||||
DIST cucumber-rails-1.4.1.gem 404480 SHA256 6c4c97732c5539d4c9da3ea1dfb7d49fffecc27e089d30b62085f0752f895575 SHA512 6f0dd5a08a72a7d37e3ca0343c374a66071f893ba9389bacd51516ccbd129396e6f770bb18e10a80d00588b833bfa23b288f8e2b73dd3d7e618bae0ff40179fd WHIRLPOOL a73ff228acaec8ece7c7cd52dd8868d265fe800521a1c659fd020be0051719af74d08d8851b100400cc8625783c102f95b1f9999397472f059dfd1f2acaec903
|
||||
DIST cucumber-rails-1.4.2.gem 404480 SHA256 42cfe2f754a6676ec32825d2e3db59f49d68fcdf7606af18ba191f0180c555f3 SHA512 bacaf0f3ab153dc374a688ffe9b4a18bd015cbbef2d8715a7d0916748287ab674708c9af42116b31b4b8055a28d10aa7148c39b88bd6063154e0227bbe6c9b18 WHIRLPOOL c1a0399ced2f2f5ef804dfff300694cdc8b522462efe7a5b9a83e1182f8b43cc7c367b840ac8f34247ae6d7ef471f61725249b2516c99c2a77d0603363b7cb1e
|
||||
DIST cucumber-rails-1.4.3.gem 405504 SHA256 35f210b2bf2a0c9d102f64d89e3b2a6245bb52154fcef9650b5b4840bb81af3f SHA512 44b5653fc44f483a20f32fc6ed99e446fd9c22e9abe3a5c5430b7b84ce0e95a0d806f21809fedcc1c1848244d6b0f8351299f1981882f9995a8491b896db5391 WHIRLPOOL f52f63f2cd1da0bc5f422986f9b733342c92a3b5470b362d0e956cf89437ce12e824a95622d501d927e587898a04dac5501bc77756b53e99ae52c22eda627034
|
||||
EBUILD cucumber-rails-1.4.1.ebuild 1139 SHA256 97fa53ae5196adcac9a3029ef82c78d529b3a52a6d0f719a94c2f5ad5f08bccd SHA512 88cfe5e05ec19c2e04de1f28a9f2539b61d93be1deb1e6567fde2fda6dbb2a97b79dcb42be3075ab3a7d24e8667a788ffba959d5fea299ddc5c324bf3e6d4d30 WHIRLPOOL 5c48818e388942ab6c4c74904233fbfe94d6d0e16247ed33cd90f643bf04f2e021908db53e9a19702f02e3c74362631451b2a48aca4c4278eda2868bd78dbbe4
|
||||
EBUILD cucumber-rails-1.4.2.ebuild 1146 SHA256 64906287e5d9e4716fdfdc472917cffe66f562a3ad327877b46eeb9c20fd688d SHA512 7bf29f7d37865b213fdeb60d1e4e3f7e3dace21d137ec1991890b671caeb4ca6420e4ed2f88752106aeb17c97bae71713a9117cb5a002c67af6521da354b9468 WHIRLPOOL 9a5dc431491da38006cb98214932a5f93a6435a8475e331416a89b50efa38ee71a106d5827b45743cb1ba090535aa33dcc2468e4f183202bf3604dd8b9804585
|
||||
EBUILD cucumber-rails-1.4.3.ebuild 1224 SHA256 312f29e3a3c731422765891fe57879afd00136e914215b636923efef82688e23 SHA512 872489de18624579c49e9fbd837bc3ad6a89090bb9f2a866e80093cec165aa1a10e274aa8abb39186f3f650e21b0685295f9f0032335519f2b540be616af6dfe WHIRLPOOL 4a7ce0b0ad2ac686775412df2506bee80e3ebe11f12da9a77985d1de38a17162047f5e9d4d2dd2ac299b740d8381dae57b44c7a1413d03fa2a2a169b80b25b48
|
||||
MISC ChangeLog 2263 SHA256 11163ca3f749b7c238a815203a5d9dcac8d3ec5526e0cbea42198703148c979f SHA512 8471bf7764285164ec77703f8ed85f054b0ec927ab68c3910fd59a03ceb5b12c6885a0166bd15e2884a519ba2ab05a78645f42d5e775bd3cf35c4465dd9cb78f WHIRLPOOL 852f2c8dc7d9efbeaf811261927f8e40d3ad71dd8f7225f6214ee0909f3b52ca2a3dde95dcfe07f55340ae3562cf8115ce2f240b0fb90c08d453fc906a73bda3
|
||||
MISC ChangeLog-2015 5174 SHA256 029db9c25aa3288761afb18cda1e52bc6de7721a62483a3ebd194c7dda7d45a7 SHA512 3fe812d5cdddba009695314f40e964e70479ee8ac3bbd149938eff0c87f8c58b0e47bc1391209eaecca196049be4ed28b5b3ff2216aa7c70ab0932b8b595cdb0 WHIRLPOOL 08fe015a96d3b42167475f565cb4d4b089370e274acdfca70210dfd02d16b3553671bd366f66f0fde69ef30bc584c2735125fe927920a715cdb23250f31b5481
|
||||
MISC metadata.xml 299 SHA256 c63039fa6294d21a5a0d6f48b752ee029315095e01a647a5ee11dc6069f3f697 SHA512 b655a45650726e475ccae46d7bc062ba32c527277160c9033382684f6a7aed520220c6a197f7abb9dfe18f8ebea051b5fdcbfd10c744031f123ac684ce3225c7 WHIRLPOOL 399c3aaea815357250e07a3a6086b729f2815e76408489582f452ba9dba86219fbe236dd23a58c9286197b0a8b94181817095a46b0f212a4991c2ef21dbaa75a
|
||||
|
@ -0,0 +1,48 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
USE_RUBY="ruby20 ruby21 ruby22"
|
||||
|
||||
RUBY_FAKEGEM_TASK_DOC=""
|
||||
|
||||
# There are also cucumber features. They require a Rails project with
|
||||
# factory girl which we don't have packaged yet.
|
||||
RUBY_FAKEGEM_RECIPE_TEST="rspec"
|
||||
|
||||
RUBY_FAKEGEM_EXTRADOC="History.md README.md"
|
||||
|
||||
RUBY_FAKEGEM_GEMSPEC="cucumber-rails.gemspec"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="Executable feature scenarios for Rails"
|
||||
HOMEPAGE="https://github.com/cucumber/cucumber/wikis"
|
||||
LICENSE="Ruby"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="1"
|
||||
IUSE=""
|
||||
|
||||
# Restrict tests since Appraisal is now mandatory to manage different
|
||||
# rails versions, even for the specs.
|
||||
RESTRICT="test"
|
||||
#ruby_add_bdepend "
|
||||
# test? (
|
||||
# >=dev-ruby/ammeter-0.2.2
|
||||
# >=dev-ruby/rspec-rails-2.7.0:2
|
||||
# )"
|
||||
|
||||
ruby_add_rdepend "
|
||||
>=dev-util/cucumber-1.3.8 <dev-util/cucumber-3
|
||||
>=dev-ruby/nokogiri-1.5.0
|
||||
>=dev-ruby/capybara-1.1.2:* <dev-ruby/capybara-3:*
|
||||
>=dev-ruby/railties-3.0.0:* <dev-ruby/railties-5:*
|
||||
>=dev-ruby/mime-types-1.16:* <dev-ruby/mime-types-4:*"
|
||||
|
||||
all_ruby_prepare() {
|
||||
rm Gemfile || die
|
||||
sed -i -e '/[Bb]undler/d' Rakefile || die
|
||||
sed -i -e '/git ls/d' ${RUBY_FAKEGEM_GEMSPEC} || die
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
inherit cmake-utils flag-o-matic
|
||||
|
||||
WEIRD_UPSTREAM_VERSION=0.5
|
||||
|
||||
DESCRIPTION="find unused include directives in C/C++ programs"
|
||||
HOMEPAGE="http://include-what-you-use.org/"
|
||||
SRC_URI="http://include-what-you-use.org/downloads/${PN}-${WEIRD_UPSTREAM_VERSION}.src.tar.gz -> ${P}.src.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND=">=sys-devel/llvm-3.7
|
||||
>=sys-devel/clang-3.7
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S=${WORKDIR}/${PN}
|
||||
|
||||
src_configure() {
|
||||
append-libs -L$(llvm-config --libdir)
|
||||
|
||||
local mycmakeargs=(
|
||||
-DLLVM_PATH=$(llvm-config --libdir)
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
@ -0,0 +1,140 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads"
|
||||
|
||||
inherit bash-completion-r1 elisp-common eutils distutils-r1 flag-o-matic
|
||||
|
||||
DESCRIPTION="Scalable distributed SCM"
|
||||
HOMEPAGE="http://mercurial.selenic.com/"
|
||||
SRC_URI="http://mercurial.selenic.com/release/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="bugzilla emacs gpg test tk"
|
||||
|
||||
RDEPEND="bugzilla? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
|
||||
gpg? ( app-crypt/gnupg )
|
||||
tk? ( dev-lang/tk )
|
||||
app-misc/ca-certificates"
|
||||
DEPEND="emacs? ( virtual/emacs )
|
||||
test? ( app-arch/unzip
|
||||
dev-python/pygments[${PYTHON_USEDEP}] )"
|
||||
|
||||
SITEFILE="70${PN}-gentoo.el"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${PN}-3.0.1-po_fixes.patch" )
|
||||
|
||||
python_prepare_all() {
|
||||
# fix up logic that won't work in Gentoo Prefix (also won't outside in
|
||||
# certain cases), bug #362891
|
||||
sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_configure_all() {
|
||||
strip-flags -ftracer -ftree-vectorize
|
||||
# Note: make it impl-conditional if py3 is supported
|
||||
append-flags -fno-strict-aliasing
|
||||
|
||||
"${PYTHON}" setup.py build_mo || die
|
||||
}
|
||||
|
||||
python_compile_all() {
|
||||
rm -r contrib/{win32,macosx} || die
|
||||
if use emacs; then
|
||||
cd contrib || die
|
||||
elisp-compile mercurial.el || die "elisp-compile failed!"
|
||||
fi
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
newbashcomp contrib/bash_completion hg
|
||||
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins contrib/zsh_completion _hg
|
||||
|
||||
rm -f doc/*.?.txt
|
||||
dodoc CONTRIBUTORS
|
||||
cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/ || die
|
||||
|
||||
dobin hgeditor
|
||||
dobin contrib/hgk
|
||||
python_foreach_impl python_doscript contrib/hg-ssh
|
||||
|
||||
if use emacs; then
|
||||
elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!"
|
||||
elisp-site-file-install "${FILESDIR}"/${SITEFILE}
|
||||
fi
|
||||
|
||||
local RM_CONTRIB=(hgk hg-ssh bash_completion zsh_completion wix buildrpm plan9
|
||||
*.el mercurial.spec)
|
||||
for f in ${RM_CONTRIB[@]}; do
|
||||
rm -r contrib/$f || die
|
||||
done
|
||||
|
||||
dodoc -r contrib
|
||||
docompress -x /usr/share/doc/${PF}/contrib
|
||||
doman doc/*.?
|
||||
|
||||
cat > "${T}/80mercurial" <<-EOF
|
||||
HG="${EPREFIX}/usr/bin/hg"
|
||||
EOF
|
||||
doenvd "${T}/80mercurial"
|
||||
|
||||
insinto /etc/mercurial/hgrc.d
|
||||
doins "${FILESDIR}/cacerts.rc"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
pushd tests &>/dev/null || die
|
||||
rm -rf *svn* # Subversion tests fail with 1.5
|
||||
rm -f test-archive* # Fails due to verbose tar output changes
|
||||
rm -f test-convert-baz* # GNU Arch baz
|
||||
rm -f test-convert-cvs* # CVS
|
||||
rm -f test-convert-darcs* # Darcs
|
||||
rm -f test-convert-git* # git
|
||||
rm -f test-convert-mtn* # monotone
|
||||
rm -f test-convert-tla* # GNU Arch tla
|
||||
#rm -f test-doctest* # doctest always fails with python 2.5.x
|
||||
rm -f test-largefiles* # tends to time out
|
||||
|
||||
popd &>/dev/null || die
|
||||
distutils-r1_src_test
|
||||
}
|
||||
|
||||
python_test() {
|
||||
local TEST_DIR
|
||||
|
||||
rm -rf "${TMPDIR}"/test
|
||||
distutils_install_for_testing
|
||||
cd tests || die
|
||||
"${PYTHON}" run-tests.py --verbose \
|
||||
--tmpdir="${TMPDIR}"/test \
|
||||
--with-hg="${TEST_DIR}"/scripts/hg \
|
||||
|| die "Tests fail with ${EPYTHON}"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use emacs && elisp-site-regen
|
||||
|
||||
elog "If you want to convert repositories from other tools using convert"
|
||||
elog "extension please install correct tool:"
|
||||
elog " dev-vcs/cvs"
|
||||
elog " dev-vcs/darcs"
|
||||
elog " dev-vcs/git"
|
||||
elog " dev-vcs/monotone"
|
||||
elog " dev-vcs/subversion"
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
use emacs && elisp-site-regen
|
||||
}
|
@ -1 +1 @@
|
||||
Wed, 02 Mar 2016 05:08:49 +0000
|
||||
Wed, 02 Mar 2016 09:38:50 +0000
|
||||
|
@ -1 +1 @@
|
||||
Wed, 02 Mar 2016 05:08:49 +0000
|
||||
Wed, 02 Mar 2016 09:38:50 +0000
|
||||
|
@ -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=cxx 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.0.0
|
||||
SRC_URI=https://common-lisp.net/project/ecl/files/ecl-16.0.0.tgz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=673d36eb346b9c4e3cfa511481baf01f
|
@ -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=cxx 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_=ac58fd095b42c5bea7616e9a85c01513
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(-)]
|
||||
DESCRIPTION=Test vectors for the cryptography package
|
||||
EAPI=5
|
||||
HOMEPAGE=https://pypi.python.org/pypi/cryptography-vectors/
|
||||
IUSE=python_targets_pypy python_targets_pypy3 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 ~x86-fbsd
|
||||
LICENSE=|| ( Apache-2.0 BSD )
|
||||
RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/c/cryptography-vectors/cryptography_vectors-1.2.3.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_=57d198a52e906de18fa0c265a34c7105
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-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_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_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
DESCRIPTION=Yet Another Python Profiler
|
||||
EAPI=5
|
||||
HOMEPAGE=https://bitbucket.org/sumerc/yappi/
|
||||
IUSE=test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5
|
||||
KEYWORDS=~x86 ~amd64
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-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_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_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/y/yappi/yappi-0.94.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_=93ad5eff10f5fdb5e84911ef174ad9c8
|
@ -0,0 +1,15 @@
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=test? ( ruby_targets_ruby20? ( >=dev-util/cucumber-1.3.8[ruby_targets_ruby20] <dev-util/cucumber-3[ruby_targets_ruby20] >=dev-ruby/nokogiri-1.5.0[ruby_targets_ruby20] >=dev-ruby/capybara-1.1.2:*[ruby_targets_ruby20] <dev-ruby/capybara-3:*[ruby_targets_ruby20] >=dev-ruby/railties-3.0.0:*[ruby_targets_ruby20] <dev-ruby/railties-5:*[ruby_targets_ruby20] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby20] <dev-ruby/mime-types-4:*[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-util/cucumber-1.3.8[ruby_targets_ruby21] <dev-util/cucumber-3[ruby_targets_ruby21] >=dev-ruby/nokogiri-1.5.0[ruby_targets_ruby21] >=dev-ruby/capybara-1.1.2:*[ruby_targets_ruby21] <dev-ruby/capybara-3:*[ruby_targets_ruby21] >=dev-ruby/railties-3.0.0:*[ruby_targets_ruby21] <dev-ruby/railties-5:*[ruby_targets_ruby21] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby21] <dev-ruby/mime-types-4:*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-util/cucumber-1.3.8[ruby_targets_ruby22] <dev-util/cucumber-3[ruby_targets_ruby22] >=dev-ruby/nokogiri-1.5.0[ruby_targets_ruby22] >=dev-ruby/capybara-1.1.2:*[ruby_targets_ruby22] <dev-ruby/capybara-3:*[ruby_targets_ruby22] >=dev-ruby/railties-3.0.0:*[ruby_targets_ruby22] <dev-ruby/railties-5:*[ruby_targets_ruby22] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby22] <dev-ruby/mime-types-4:*[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/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_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[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=Executable feature scenarios for Rails
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/cucumber/cucumber/wikis
|
||||
IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test test
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=Ruby
|
||||
RDEPEND=ruby_targets_ruby20? ( >=dev-util/cucumber-1.3.8[ruby_targets_ruby20] <dev-util/cucumber-3[ruby_targets_ruby20] >=dev-ruby/nokogiri-1.5.0[ruby_targets_ruby20] >=dev-ruby/capybara-1.1.2:*[ruby_targets_ruby20] <dev-ruby/capybara-3:*[ruby_targets_ruby20] >=dev-ruby/railties-3.0.0:*[ruby_targets_ruby20] <dev-ruby/railties-5:*[ruby_targets_ruby20] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby20] <dev-ruby/mime-types-4:*[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-util/cucumber-1.3.8[ruby_targets_ruby21] <dev-util/cucumber-3[ruby_targets_ruby21] >=dev-ruby/nokogiri-1.5.0[ruby_targets_ruby21] >=dev-ruby/capybara-1.1.2:*[ruby_targets_ruby21] <dev-ruby/capybara-3:*[ruby_targets_ruby21] >=dev-ruby/railties-3.0.0:*[ruby_targets_ruby21] <dev-ruby/railties-5:*[ruby_targets_ruby21] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby21] <dev-ruby/mime-types-4:*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-util/cucumber-1.3.8[ruby_targets_ruby22] <dev-util/cucumber-3[ruby_targets_ruby22] >=dev-ruby/nokogiri-1.5.0[ruby_targets_ruby22] >=dev-ruby/capybara-1.1.2:*[ruby_targets_ruby22] <dev-ruby/capybara-3:*[ruby_targets_ruby22] >=dev-ruby/railties-3.0.0:*[ruby_targets_ruby22] <dev-ruby/railties-5:*[ruby_targets_ruby22] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby22] <dev-ruby/mime-types-4:*[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 )
|
||||
RESTRICT=test
|
||||
SLOT=1
|
||||
SRC_URI=mirror://rubygems/cucumber-rails-1.4.3.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_=da3b1c07abbf2a8a2360ec4b5396a07d
|
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=>=sys-devel/llvm-3.7 >=sys-devel/clang-3.7 sys-devel/make >=dev-util/cmake-2.8.12
|
||||
DESCRIPTION=find unused include directives in C/C++ programs
|
||||
EAPI=6
|
||||
HOMEPAGE=http://include-what-you-use.org/
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=sys-devel/llvm-3.7 >=sys-devel/clang-3.7
|
||||
SLOT=0
|
||||
SRC_URI=http://include-what-you-use.org/downloads/include-what-you-use-0.5.src.tar.gz -> include-what-you-use-3.7.src.tar.gz
|
||||
_eclasses_=cmake-utils fa44804882ff16943e9f71b544f56bc9 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=cc6696cc3d6493827f204f9530462c97
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm prepare test
|
||||
DEPEND=emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
|
||||
DESCRIPTION=Scalable distributed SCM
|
||||
EAPI=6
|
||||
HOMEPAGE=http://mercurial.selenic.com/
|
||||
IUSE=bugzilla emacs gpg test tk python_targets_python2_7
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) app-misc/ca-certificates python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 )
|
||||
SLOT=0
|
||||
SRC_URI=http://mercurial.selenic.com/release/mercurial-3.7.2.tar.gz
|
||||
_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 distutils-r1 4e8ac1ba76ddacd8f7c0289aa586a34c elisp-common 9f56c4e9bf1282dbfc2a5a09e1124e74 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=41a85d9d072dcb75333b9deebd7d5a44
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup
|
||||
DEPEND=net-firewall/iptables snmp? ( net-analyzer/net-snmp ) virtual/linux-sources virtual/pkgconfig kernel_linux? ( virtual/modutils ) sys-apps/sed kernel_linux? ( virtual/linux-sources )
|
||||
DESCRIPTION=Netflow iptables module
|
||||
EAPI=6
|
||||
HOMEPAGE=http://sourceforge.net/projects/ipt-netflow
|
||||
IUSE=debug snmp kernel_linux
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=net-firewall/iptables snmp? ( net-analyzer/net-snmp ) kernel_linux? ( virtual/modutils )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/ipt-netflow/ipt-netflow-2.2.tgz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e linux-info fd1e29abbb02cbc49f1a14299846e9c4 linux-mod 4755518412586c2fd655ff6e55780bcb multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=5e3c7cd90902ae42010fdf7417ff2074
|
@ -1,14 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] 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_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)]
|
||||
DESCRIPTION=Graphical Network Simulator
|
||||
EAPI=5
|
||||
EAPI=6
|
||||
HOMEPAGE=http://www.gns3.net/
|
||||
IUSE=+qt4 qt5 python_targets_python3_3 python_targets_python3_4
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=>=dev-python/libcloud-0.15.1[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/ws4py-0.3.4[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.6.0[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/paramiko-1.15.1[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/psutil-3.0.0[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=net-misc/gns3-converter-1.2.3[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =net-misc/gns3-server-1.4.1[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] qt4? ( dev-qt/qtgui:4[accessibility] dev-qt/qtsvg:4 >=dev-python/PyQt4-4.11.2[X,svg,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) qt5? ( dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-python/PyQt5[svg,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) 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_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)]
|
||||
RDEPEND=>=dev-python/libcloud-0.15.1[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/ws4py-0.3.4[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.6.0[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/paramiko-1.15.1[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/psutil-3.0.0[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=net-misc/gns3-converter-1.3.0[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] =net-misc/gns3-server-1.4.4[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] qt4? ( dev-qt/qtgui:4[accessibility] dev-qt/qtsvg:4 >=dev-python/PyQt4-4.11.2[X,svg,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) qt5? ( dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-python/PyQt5[svg,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) 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_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)]
|
||||
REQUIRED_USE=?? ( qt4 qt5 ) || ( python_targets_python3_3 python_targets_python3_4 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/GNS3/gns3-gui/archive/v1.4.1.tar.gz -> gns3-gui-1.4.1.tar.gz
|
||||
SRC_URI=https://github.com/GNS3/gns3-gui/archive/v1.4.4.tar.gz -> gns3-gui-1.4.4.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_=a6a1e762425637f5af20335dce3e89b7
|
||||
_md5_=74ab317c33c7bc67dcb4543e24f29700
|
@ -1,14 +0,0 @@
|
||||
DEFINED_PHASES=configure install prepare
|
||||
DEPEND=ssl? ( >=dev-libs/openssl-0.9.6 ) readline? ( >=sys-libs/readline-4.1 ) tcpd? ( sys-apps/tcp-wrappers )
|
||||
DESCRIPTION=Multipurpose relay (SOcket CAT)
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.dest-unreach.org/socat/
|
||||
IUSE=ssl readline ipv6 tcpd
|
||||
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6 ) readline? ( >=sys-libs/readline-4.1 ) tcpd? ( sys-apps/tcp-wrappers )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=http://www.dest-unreach.org/socat/download/socat-1.7.3.0.tar.bz2
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=b03365dc5c076d785262f323938a42cc
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=configure install prepare setup test
|
||||
DEPEND=!static? ( idn? ( net-dns/libidn ) pcre? ( dev-libs/libpcre ) ssl? ( gnutls? ( net-libs/gnutls:0= ) !gnutls? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl ) ) ) uuid? ( sys-apps/util-linux ) zlib? ( sys-libs/zlib ) ) app-arch/xz-utils virtual/pkgconfig static? ( idn? ( net-dns/libidn[static-libs(+)] ) pcre? ( dev-libs/libpcre[static-libs(+)] ) ssl? ( gnutls? ( net-libs/gnutls:0=[static-libs(+)] ) !gnutls? ( !libressl? ( dev-libs/openssl:0=[static-libs(+)] ) libressl? ( dev-libs/libressl[static-libs(+)] ) ) ) uuid? ( sys-apps/util-linux[static-libs(+)] ) zlib? ( sys-libs/zlib[static-libs(+)] ) ) test? ( || ( dev-lang/python:3.4 >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/perl dev-perl/HTTP-Daemon dev-perl/HTTP-Message dev-perl/IO-Socket-SSL ) nls? ( sys-devel/gettext )
|
||||
DESCRIPTION=Network utility to retrieve files from the WWW
|
||||
EAPI=5
|
||||
HOMEPAGE=https://www.gnu.org/software/wget/
|
||||
IUSE=debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib
|
||||
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
|
||||
RDEPEND=!static? ( idn? ( net-dns/libidn ) pcre? ( dev-libs/libpcre ) ssl? ( gnutls? ( net-libs/gnutls:0= ) !gnutls? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl ) ) ) uuid? ( sys-apps/util-linux ) zlib? ( sys-libs/zlib ) )
|
||||
REQUIRED_USE=ntlm? ( !gnutls ssl ) gnutls? ( ssl )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnu/wget/wget-1.17.1.tar.xz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=bb105c3380c0fe20a210c33d02a75162
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install
|
||||
DEPEND=virtual/blas virtual/lapack virtual/pkgconfig doc? ( virtual/latex-base dev-texlive/texlive-latexextra )
|
||||
DESCRIPTION=Just Another Gibbs Sampler for Bayesian MCMC simulation
|
||||
EAPI=6
|
||||
HOMEPAGE=http://mcmc-jags.sourceforge.net/
|
||||
IUSE=doc
|
||||
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=virtual/blas virtual/lapack
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/JAGS-4.2.0.tar.gz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=8490efcc3943b44bb09504ef5f9d36e0
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm prepare test
|
||||
DEPEND=dev-python/numpy[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(-)] >=dev-python/PyQt4-4.11.4[X,svg,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(-)] 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(-)] dev-python/sip[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(-)] test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
|
||||
DESCRIPTION=Qt scientific plotting package with good Postscript output
|
||||
EAPI=5
|
||||
HOMEPAGE=http://home.gna.org/veusz/
|
||||
IUSE=dbus doc emf fits hdf5 minuit vo python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 test
|
||||
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-python/numpy[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(-)] >=dev-python/PyQt4-4.11.4[X,svg,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(-)] dbus? ( dev-python/dbus-python[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(-)] ) emf? ( dev-python/pyemf[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) fits? ( dev-python/astropy[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(-)] ) hdf5? ( dev-python/h5py[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(-)] ) minuit? ( dev-python/pyminuit[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(-)] ) vo? ( dev-python/astropy[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(-)] dev-python/sampy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) 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=http://download.gna.org/veusz/veusz-1.23.2.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 virtualx 86c9305a59b3e0459e7fbef3a5f30b96
|
||||
_md5_=47b573bbf9688fcb0823510646fb8195
|
@ -1 +1 @@
|
||||
Wed, 02 Mar 2016 05:08:49 +0000
|
||||
Wed, 02 Mar 2016 09:38:50 +0000
|
||||
|
@ -1 +1 @@
|
||||
Wed Mar 2 05:08:00 UTC 2016
|
||||
Wed Mar 2 09:38:00 UTC 2016
|
||||
|
@ -1 +1 @@
|
||||
Wed, 02 Mar 2016 05:30:01 +0000
|
||||
Wed, 02 Mar 2016 10:00:01 +0000
|
||||
|
@ -1 +1 @@
|
||||
1456895101 Wed 02 Mar 2016 05:05:01 AM UTC
|
||||
1456911301 Wed 02 Mar 2016 09:35:01 AM UTC
|
||||
|
@ -0,0 +1,88 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
MY_PN="${PN/_/-}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
inherit linux-info linux-mod toolchain-funcs
|
||||
|
||||
DESCRIPTION="Netflow iptables module"
|
||||
HOMEPAGE="http://sourceforge.net/projects/ipt-netflow"
|
||||
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tgz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
IUSE="debug snmp"
|
||||
|
||||
RDEPEND="
|
||||
net-firewall/iptables
|
||||
snmp? ( net-analyzer/net-snmp )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/linux-sources
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
# set S before MODULE_NAMES
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
pkg_setup() {
|
||||
BUILD_TARGETS="all"
|
||||
MODULE_NAMES="ipt_NETFLOW(ipt_netflow:${S})"
|
||||
IPT_LIB="/usr/$(get_libdir)/xtables"
|
||||
local CONFIG_CHECK="~IP_NF_IPTABLES"
|
||||
use debug && CONFIG_CHECK+=" ~DEBUG_FS"
|
||||
linux-mod_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e 's:make -C:$(MAKE) -C:g' \
|
||||
-e 's:gcc -O2:$(CC) $(CFLAGS) $(LDFLAGS):' \
|
||||
-e 's:gcc:$(CC) $(CFLAGS) $(LDFLAGS):' \
|
||||
Makefile.in || die
|
||||
|
||||
# Checking for directory is enough
|
||||
sed -i -e 's:-s /etc/snmp/snmpd.conf:-d /etc/snmp:' configure || die
|
||||
|
||||
# bug #455984
|
||||
eapply "${FILESDIR}/${PN}-2.0-configure.patch"
|
||||
|
||||
eapply_user
|
||||
}
|
||||
|
||||
do_conf() {
|
||||
echo ./configure $*
|
||||
./configure $* ${EXTRA_ECONF} || die 'configure failed'
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local IPT_VERSION="$($(tc-getPKG_CONFIG) --modversion xtables)"
|
||||
# this configure script is not based on autotools
|
||||
# ipt-src need to be defined, see bug #455984
|
||||
do_conf \
|
||||
--disable-dkms \
|
||||
--ipt-lib="${IPT_LIB}" \
|
||||
--ipt-src="/usr/" \
|
||||
--ipt-ver="${IPT_VERSION}" \
|
||||
--kdir="${KV_DIR}" \
|
||||
--kver="${KV_FULL}" \
|
||||
$(use debug && echo '--enable-debugfs') \
|
||||
$(use snmp && echo '--enable-snmp-rules' || echo '--disable-snmp-agent')
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" all
|
||||
}
|
||||
|
||||
src_install() {
|
||||
linux-mod_src_install
|
||||
exeinto "${IPT_LIB}"
|
||||
doexe libipt_NETFLOW.so
|
||||
use snmp && emake DESTDIR="${D}" SNMPTGSO="/usr/$(get_libdir)/snmp/dlmod/snmp_NETFLOW.so" sinstall
|
||||
doheader ipt_NETFLOW.h
|
||||
dodoc README*
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
DIST gns3-converter-1.2.4.tar.gz 33134 SHA256 dc6f4e6e93989a6b72924e5dad6fab6c4404ba03f1b8d526f54dfc36baa222e1 SHA512 68ad9b395f7cd9683afa10775cb21f8eec155603ea5da1a4fc903addbc18b66b11f7d5b3389f7dac7e07ba2d2eac052fc078ef48cd5a4e2388f8baf554db9235 WHIRLPOOL 5946fb748c394bdcc7f96a75535d441fb6cf85333bc7dd9933c1a4c69991f3550079a4097ac9669ecb6f2776e2f8a76d1b1103bd14d0fa73ade7292885abc9cf
|
||||
EBUILD gns3-converter-1.2.4.ebuild 493 SHA256 95cd47027ad60b789a3f3f62d3923917103a18e398f412944daa091500f49973 SHA512 b05508b6c5fc3c7d11a1426e269f871f0390dd99bab60c09a82998562e7a407ccfb2d988e53e30dbe6dc8149867799f972c4ad5b3d948bca1657fe294431c5c2 WHIRLPOOL c87ec0a91a89fbd84b5dd2b9506c355c08d285f7be6618789c2324379289093bcf183c3ee0a6ed79fbccf47cc98a64022178891f08ea2fca6fd84c7de7a37c54
|
||||
DIST gns3-converter-1.3.0.tar.gz 45837 SHA256 771b3ab878de87007d00342507bdd381c8d60870afa1537b20e791f5d4d80716 SHA512 ac2e44b3f02c8f0429158e11c964bf342973809139dcf34863071905400964006d7adbc3ddb80efe57a5ecc5eaf59e228bf7d07a7e5776dd6bcf51b4e1d3fe57 WHIRLPOOL 1d5616b74f9d910e5a6cb342a70e2b726469decb20fce1b90c16e00e56ae3ed228a213a57cfcce03ad66599e1b4d07a5ff5b2d1e20053f8908bcea9f96287284
|
||||
EBUILD gns3-converter-1.3.0.ebuild 518 SHA256 0dbeee2d2b769ecb15206cfb170dda159f51d3761d384c620e014f856e5bd777 SHA512 8ce3c40532b0e0531e6e1cb6406035a38d5511b06e94dda4f6c087aab3a22919c44de146ce92125a47ae5b2c281a2689939198fcf85331b65202229293fa0a16 WHIRLPOOL b41efaf92ac34d2b246e0392b717383a9918a10e16963f62e3503344769edf67dac82f416bd8b5af5a6b92040c93f74d14d0d8b9fe836391b4f78eb4a5091d1b
|
||||
MISC ChangeLog 2561 SHA256 cced6e1ecb434ce0dde01b9d625e2d0b1b8fbd5ae58de2d8739ce658676dc912 SHA512 07662e13db5890e855852024d2a509e7bbb564a236af72e4e7e47c94ab682f685ebe3cbe790e3ea9ea86ebcdc7544cfb57967c1aa10702128ddf4cb6af90edaa WHIRLPOOL 917e6f09bd2c8237588e12a751ef5658ca45183ad15d0b85c8a14c10038ea3b4e182cebb367fbe291b303723a6ee16c9a1ec28f8d8081e62115b05aad80f7716
|
||||
MISC ChangeLog-2015 1035 SHA256 b4060b693cc9b8fcdb7b0ef93e4a795153ebd0e7b138fae39d5474bb6c5e3e32 SHA512 5d146bb8184e17c30b42624763e1ef9f34e502ef38fcac3ba7e3b138c8ee0f90b8a70c6e5bf792e1b943086ee33cded3a970ebb79dbb0807a920bcf15c20cef2 WHIRLPOOL 73bbbf1b8b4a0d231f84aecc6f29b3ab467c3638c389f7d03d7a7f996b01410248b3dca6fc7d69fd6fc2d53bd20c9438a3b14662b9eb75f3b7a06c63bd0e1d8c
|
||||
MISC metadata.xml 395 SHA256 bd1d2bc2828a738c4683f05be8609ba71d0ce829b75df2ae2b1600ccaffa79cc SHA512 cf58363cf65161ed7735df5cbc87bbe3a45d86860ffdef60a7befb7575103edd65b4cd28b715804bff243630054e6d8bf4c9fac7f7ec1e310a6b3eeb2fe57c54 WHIRLPOOL d672b0639c0ceb6a73337d9d82d99e44d8050f174c4692a459b9dde7ce87a5a535b222bd473a1be94932939763900bbe714f561dc01668daf45b53e0681016a4
|
||||
|
@ -1,5 +1,5 @@
|
||||
DIST gns3-gui-1.4.1.tar.gz 5701562 SHA256 0ec52ecc015050c1ed59e8133b11c5548ce4f8a713d9665fbe6f0f799ccd86b8 SHA512 9173773544e72a016d1942c9b247608c7c04f640ef5890ab23aa7de7a7f0d10fa77ba39c7aeb4693a15fb59a0c45f84817734fa2c51e9760beb1cf465dd79a7e WHIRLPOOL 9a2a94734a5126d90a0366e272a8a7e97d4804fe574f4114149cab24eb08c8d04d89c1dec7f60f0775588b7debbe7dbe22f876a00185fc6ac2976b5b764d3ac4
|
||||
EBUILD gns3-gui-1.4.1.ebuild 1268 SHA256 e24683ce96e2c4609a7080d1010a136876be378f51445f6bf737229ba4eaf867 SHA512 7c8d5afc69fcb80c84641eb5e62f71ab25db93c7f44ce30973a8ab0cec631535051d8bbb60c9a9f60660d9021b4a903346752d2afcff00d2d3bf5384ecaee0a0 WHIRLPOOL 2acfc40465dfe2d939171a1a35fb594fef07ae31061ccebe2d6ae39fdd4c27fd13a64e9e09d29725d5bc199502ba7ac844aa63b8807cf4b5e72f6912b74fa44b
|
||||
DIST gns3-gui-1.4.4.tar.gz 5725385 SHA256 28ae4bb797e1a20bbb16eca3e58b37c80e93046f44393366780544cf090cf657 SHA512 e77977ea03f686fc5dd15416ed7f8e1262c8a3e1d5b6af598cf6ff938e75c8b65de1930aa75ad3d14f3d2f5c348ddba6c22ed1c5d91842538940c60aba0e985d WHIRLPOOL 46a4480a94ffcfe31e68302f68e01d87c46da43bac2bd635bd2a8c7aa9c03af66416f6eec44b387f084268b5ccec1fbd38100593d89469c51fb111a72cfd7b16
|
||||
EBUILD gns3-gui-1.4.4.ebuild 1433 SHA256 dc935291fa655891531d8b13b6c65064d6f2b7361e7b553c49b1e2be0fa95c37 SHA512 06b47bc3428301a74db0dd13b0577755e72b358daf669db16766a1b2d0c876691b6067d14a903903c0aa57a9b1fe7424063d9f2f6d793f4e788883ff76a4161f WHIRLPOOL 2a3fc799af41dd4ca3704b4c7c75d569626cdabe8a9b8976764802762d2e045c9086babcd4ddaa01adb6917ac207bdec990794bae7b472d84dd4b9dfd57c9179
|
||||
MISC ChangeLog 2932 SHA256 02e1e4fcb14e9edb0630fa2286e179cd892b20e422ab0f0c7bf84884c1cbcc04 SHA512 8825c63e93cd85f115f0d7862f6643b3c28a2835bf0e901c7112bcd147c40a9a3db9462d42cecbb13461813c9b49ed920927d7f00638ab815d7e97855697d4f2 WHIRLPOOL 709b7f45274e35645d8ea4871f69f0893fe32a72012199036de3cf04efcefd4e11bd6e9f6b69dd111b34f6ab3b03197d542fc318ccd50c88c97581a32aa75b89
|
||||
MISC ChangeLog-2015 2034 SHA256 d011044acae838fa36220890e3e0c443e0c9cca46ff7276afacc458ccaf9ca5b SHA512 0940c7caac70bb815b75cdd09ad069ba31e949cc6533d652e708bce7343b970fb9d5e97c9c2338dc6d031eab2c9024257e32b0d1e8017e5e94014b9cbc188d7e WHIRLPOOL ba87271014843f996fbc5e23ec389c38c580f3af2468bcc5a970b134e5d8ce294797dbc52096ceb64c46604dbe0e4a6714e17f64cd2095dbe9324529ebe3645d
|
||||
MISC metadata.xml 321 SHA256 85c4e52344c00e203c22a471987357fe937966744a84b96b724f6558702b9304 SHA512 e77ef39a67a818a1851acbc0b9d7b8f9f7bc133a8a11daad14ce5c8e9ba22d586c0d14452d5d0bfec29f0877596aa35b937bc2929d8bc7427f04d44008e185e4 WHIRLPOOL 9e96b469932c761578382bf696c6980c62faed597d8a4a0d200ce5d7890d0f33e26618538235758a80d6fe7ef891cd47bc075dc3c7a08aa7e1bc2d1c02f40e4d
|
||||
|
@ -1,5 +1,5 @@
|
||||
DIST gns3-server-1.4.1.tar.gz 243818 SHA256 86aea03bb0c66f4d97a4b69b9fb1d5fa34d19c77e9f3b8707f5967b12e219db8 SHA512 278409aebb54263571b4ffb472952bcfada3dc6293b6a44edc917edf05d5090718c7179825fa3cd1ae1ba0fd3f0a22637dbcbce9c136ca86b4b7305aab182bf1 WHIRLPOOL 2b77e410bb4ab970cfe3f6e83543c2e3e7e2ec92dc32b41c28d10d3693633c9c3eb1cbe5a1538d5ac2552409c7b2f43bee85e501b6ebcc52a88c5521143a316a
|
||||
EBUILD gns3-server-1.4.1.ebuild 1358 SHA256 74b4f12ca94caea584c472ae03dbfe069d8fa1f7ccae8bf610d0ca0c15e3c344 SHA512 0cb0c51dbc8da0cbb95f35d077c27b6754e058272a8fbbe81097eb538cb1dcd54d1ff5554d89e1901ffd6d56389e1e0805c5c60e3b1e04d9f709d206f437ac41 WHIRLPOOL b4892bd0678b068ac69c16a9b2a476cdbff863ef90350ecd13443a2eb0d3f4581c17f3ae4c6dc469356b8901a96525460325134d0c04da050bfb89a5e5340ccf
|
||||
DIST gns3-server-1.4.4.tar.gz 240044 SHA256 8414dc70a034673265b8c3b80265782d2f91bce9e8c710c9aff01c4b653f6f14 SHA512 9c9f4ab54ffe4e1b8c139cffcf8241dbb33f3e20c55c0c6bfd6edb9135e5ce9ece467c3f934d465e705d815d0b158062cd5f5c4861bc5bd944502caf8b2204ed WHIRLPOOL a1e0a32a04d7b616adedbb1518b234bc0f1154994fef93518f58148efaf44b25d2688dd95530119cb3e5f551e1fc60b2ce2976d0f244881c67d4df25fbfa0bd3
|
||||
EBUILD gns3-server-1.4.4.ebuild 1358 SHA256 bce97813d76594e0f915c735c30cd630fda8e0ba6035b1eb08d5eb6ad8ea23c4 SHA512 538e8563ae4f9a8f88e501e09a4164aebb870124716e1751cb2dafbb87d4e524441a353928f704252720ba01da4357e01b31d20abf746e1a1fa5941c65ffa6c1 WHIRLPOOL 4ad7db063a0330d682d6f00ba5fa89d68ebc57f02caa43e722cdf910c7a85fcacf4496c45c747d2bec4554f570ffd01ebea1805040596fea5907b6427ae4b5a2
|
||||
MISC ChangeLog 2976 SHA256 c372982402f2aad2074e6264c5033ccaee271efc4e38fcacd3954cde2a6e350b SHA512 3a4d6210dcdc4c4e36991d263116dd89f914bcbf7991f22a56e8907994e704c7a308668e32c550bc2ad2077d7358dfa8d450d8cb7952b0ab250b5ba3df00e7c1 WHIRLPOOL 22f6a69ea09207c9c280131784ec806eee6fd22f52b4eca6a5243179ad3e88775108f8cc8918da2945195c485a28b5e78862554d86f9e634e31ae9fc8275942b
|
||||
MISC ChangeLog-2015 1677 SHA256 be354caad1517ef6043426c755b3a2913419f21af3684a3897f9416b9f382cf3 SHA512 75b4cb38f31d3af199db662be124838980cf5e77224e809672b12dd5bdc83872b718c4e8800f274c05285155e22112dc73929ce3bb5b63c9739a48dfa3331707 WHIRLPOOL a1a54309236c9503d7e5ae06a1bb955015094b76e89d43d21344ba468ffc42fa13488020b1cd18d213b39c18b050ac24c848e501dc2e6b0116fdab4b7bf1b542
|
||||
MISC metadata.xml 324 SHA256 5cb130d4305f1283d6f243750623c376d6360654ffb87ae3c14939072152b071 SHA512 382cfe1bb7dd64cdd6f84ee886b8daec43751f78795dc1d56e975fd1e32e4be2776d926f58cf50293849071e12b654b1c2263249439aa7a5f625c9b35531854b WHIRLPOOL 9981e00224de5641fea42a13e34e965acc2acda8b8a1cc9b61efe01a73f103cfe9950d8623d4b8252f4bd9dd35edf075161855ab6c9e9ae7e08dc38d13e61fdf
|
||||
|
@ -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
|
||||
|
||||
PYTHON_COMPAT=( python{3_3,3_4} )
|
||||
|
@ -1,50 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
inherit eutils flag-o-matic toolchain-funcs
|
||||
|
||||
DESCRIPTION="Multipurpose relay (SOcket CAT)"
|
||||
HOMEPAGE="http://www.dest-unreach.org/socat/"
|
||||
MY_P=${P/_beta/-b}
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
SRC_URI="http://www.dest-unreach.org/socat/download/${MY_P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
||||
IUSE="ssl readline ipv6 tcpd"
|
||||
|
||||
DEPEND="
|
||||
ssl? ( >=dev-libs/openssl-0.9.6 )
|
||||
readline? ( >=sys-libs/readline-4.1 )
|
||||
tcpd? ( sys-apps/tcp-wrappers )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
DOCS=(
|
||||
BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${P}-filan-build.patch
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
filter-flags '-Wno-error*' #293324
|
||||
tc-export AR
|
||||
econf \
|
||||
$(use_enable ssl openssl) \
|
||||
$(use_enable readline) \
|
||||
$(use_enable ipv6 ip6) \
|
||||
$(use_enable tcpd libwrap)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
dohtml doc/*.html doc/*.css
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
From 7099f4899880eaefc2c40a3dc7693ab4174a819b Mon Sep 17 00:00:00 2001
|
||||
From: Darshit Shah <darnir@gmail.com>
|
||||
Date: Mon, 22 Feb 2016 15:08:15 +0100
|
||||
Subject: [PATCH] Sanitize value sent to memset to prevent SEGFAULT
|
||||
|
||||
---
|
||||
src/progress.c | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/src/progress.c b/src/progress.c
|
||||
index 93f6246..8a5df21 100644
|
||||
--- a/src/progress.c
|
||||
+++ b/src/progress.c
|
||||
@@ -1164,6 +1164,8 @@ create_image (struct bar_progress *bp, double dl_total_time, bool done)
|
||||
}
|
||||
|
||||
padding = bp->width - count_cols (bp->buffer);
|
||||
+ assert (padding > 0 && "Padding length became non-positive!");
|
||||
+ padding = padding > 0 ? padding : 0;
|
||||
memset (p, ' ', padding);
|
||||
p += padding;
|
||||
*p = '\0';
|
||||
@@ -1174,6 +1176,9 @@ create_image (struct bar_progress *bp, double dl_total_time, bool done)
|
||||
* from the release code since we do not want Wget to crash and burn when the
|
||||
* assertion fails. Instead Wget should continue downloading and display a
|
||||
* horrible and irritating progress bar that spams the screen with newlines.
|
||||
+ *
|
||||
+ * By default, all assertions are disabled in a Wget build and are enabled
|
||||
+ * only with the --enable-assert configure option.
|
||||
*/
|
||||
assert (count_cols (bp->buffer) == bp->width);
|
||||
}
|
||||
--
|
||||
2.6.2
|
||||
|
@ -0,0 +1,94 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
PYTHON_COMPAT=( python{3_3,3_4} )
|
||||
|
||||
inherit flag-o-matic python-any-r1 toolchain-funcs eutils
|
||||
|
||||
DESCRIPTION="Network utility to retrieve files from the WWW"
|
||||
HOMEPAGE="https://www.gnu.org/software/wget/"
|
||||
SRC_URI="mirror://gnu/wget/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
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"
|
||||
IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
|
||||
REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
|
||||
|
||||
LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
|
||||
pcre? ( dev-libs/libpcre[static-libs(+)] )
|
||||
ssl? (
|
||||
gnutls? ( net-libs/gnutls:0=[static-libs(+)] )
|
||||
!gnutls? (
|
||||
!libressl? ( dev-libs/openssl:0=[static-libs(+)] )
|
||||
libressl? ( dev-libs/libressl[static-libs(+)] )
|
||||
)
|
||||
)
|
||||
uuid? ( sys-apps/util-linux[static-libs(+)] )
|
||||
zlib? ( sys-libs/zlib[static-libs(+)] )"
|
||||
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/xz-utils
|
||||
virtual/pkgconfig
|
||||
static? ( ${LIB_DEPEND} )
|
||||
test? (
|
||||
${PYTHON_DEPS}
|
||||
dev-lang/perl
|
||||
dev-perl/HTTP-Daemon
|
||||
dev-perl/HTTP-Message
|
||||
dev-perl/IO-Socket-SSL
|
||||
)
|
||||
nls? ( sys-devel/gettext )"
|
||||
|
||||
DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc )
|
||||
|
||||
pkg_setup() {
|
||||
use test && python-any-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${P}-progress-bar-segv.patch
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# fix compilation on Solaris, we need filio.h for FIONBIO as used in
|
||||
# the included gnutls -- force ioctl.h to include this header
|
||||
[[ ${CHOST} == *-solaris* ]] && append-cppflags -DBSD_COMP=1
|
||||
|
||||
if use static ; then
|
||||
append-ldflags -static
|
||||
tc-export PKG_CONFIG
|
||||
PKG_CONFIG+=" --static"
|
||||
fi
|
||||
econf \
|
||||
--disable-assert \
|
||||
--disable-rpath \
|
||||
$(use_with ssl ssl $(usex gnutls gnutls openssl)) \
|
||||
$(use_enable ssl opie) \
|
||||
$(use_enable ssl digest) \
|
||||
$(use_enable idn iri) \
|
||||
$(use_enable ipv6) \
|
||||
$(use_enable nls) \
|
||||
$(use_enable ntlm) \
|
||||
$(use_enable pcre) \
|
||||
$(use_enable debug) \
|
||||
$(use_with uuid libuuid) \
|
||||
$(use_with zlib)
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
sed -i \
|
||||
-e "s:/usr/local/etc:${EPREFIX}/etc:g" \
|
||||
"${ED}"/etc/wgetrc \
|
||||
"${ED}"/usr/share/man/man1/wget.1 \
|
||||
"${ED}"/usr/share/info/wget.info
|
||||
}
|
@ -1,9 +1,11 @@
|
||||
DIST JAGS-3.4.0.tar.gz 1677450 SHA256 2beaa9a2672c2c95efc55ffa4c8b597a872f20232373daebd17ad539d3d7d82b SHA512 7a330ea41eab63b23d8ae3622c6920f0dc3dba653a18256957b9b862bb86b746ff706e9e9bf3f806524250b439161a6df4ad05af682354073f9b0074f9825896 WHIRLPOOL 48f2bf92f80ea0558697701320e142a61b3eb5cfefe234973a6a189096b7887ec5ea829f8f6183bf9ad4a0f6fb07d769c710b721ec1e211772cbeaea0187c8e2
|
||||
DIST JAGS-4.0.0.tar.gz 1880476 SHA256 a1d572269029d90d4e8b25757fd7ae9678994bd682937ec505ddcf06185d2c4c SHA512 bbe4f4600dff0fc1db6f8548b8d386ea804174d69788646681de6d006a0e0ab018fb01257b5737f871d10c8b59865950fb91b6a9cad5d1e6addc415004c6f82c WHIRLPOOL d1f2ad15834252c63300259c789f69ca0fa008d0c2008d504db2c394642f7a63180baae76bc272a33a92c83addc373fd9ce026063ea74b40397ac902c2272aed
|
||||
DIST JAGS-4.1.0.tar.gz 1872634 SHA256 45ecf31b5b2127620a79875745b8ea4203ca2430a8b3625f5e80adc897cdf522 SHA512 76b52764e57e6c4450cc52c7c7c3de384f93bd6e57d8b88f1863b7c329bdd2ec39834902c223d433d263bcf29362b958807a9cb96b9066d4f75832b366339fd8 WHIRLPOOL b0187c02a971ccc733c34aa2e4f8e1ed32d1c767d97fb667034cd6035c08f63c2a6c014dcb5d5dd7ed080fdc9fae34be7bf002d0d631a6a454b849cf7c3cec67
|
||||
DIST JAGS-4.2.0.tar.gz 1875538 SHA256 af3e9d2896d3e712f99e2a0c81091c6b08f096650af6aa9d0c631c0790409cf7 SHA512 316483cd1a879c70c9b8ad6f23665196b95b9745da3924a47e14f4b0fd7c1abf9237575561cb31044623594360b6e991de68e1d9746baedeb285c65b77baada8 WHIRLPOOL 84e13b5c581cb740a25bd94d95049d6e8830e3b9403b29b188d0ab1ec552e99015620fa93f0e6da85ce293db3bf8b07f1d763e48f6d7cef745c9d9a424ea637c
|
||||
EBUILD jags-3.4.0.ebuild 984 SHA256 63011c54b9a7bd44a82ecce50454a026ea61b32d48dd089804cc4d99f1845d33 SHA512 4b180651e5c726ceafab00ead31923b95028756d46f0a5e7d921bf3ca283fa8369a8961054ad3feb8b9ce91238499e70dc3bd3ebc6c03ec320f336fce0fb61b5 WHIRLPOOL 337ebd23fd0e95ed020f824b86f459a2ab9b1524b8cc0777b309ee4f7ae6b4f2832dac1be60767e35edb238daa97e07d49737c5a4eacf9be39bfcd2179466317
|
||||
EBUILD jags-4.0.0.ebuild 981 SHA256 8b7611ee2602df145cb9efd0511dbff7df38066449e5809e45654b3b8491a61b SHA512 58e7d95f9b990be89d8db5d73326fd6d806fb3ec11d4d3ca375763e11ae728af37691131c696549f49f37acd75f29a5897f6cd4fab8b9eb70bdefc8b9364672f WHIRLPOOL 4a0246a646320f893d53d3ed35c1600009425bba10eed2f545153f6c8f938ff8f85251b772d3ebfeea7fd987213c1d62aa5cc86d849fc275a197e74f427d9112
|
||||
EBUILD jags-4.1.0.ebuild 892 SHA256 56edf9abec25d1ecd0216e42c20b54bd5f69f864d3ef56f024f3201a35b61ffb SHA512 c874443b58b8814dcce3d224d6bbf9eddbfcf8be523e6834b83432e1649b1df08916c650bcf91ca3faf4209d453308eb8354ff9efc27c4b7c656882c9d4e726b WHIRLPOOL a10a4465df3a258df83e0c932eab6c56d769af3c89ad2895bfe7b5825cbc344ce2b978dbf25b7b835b9bb77a7f3f411aed319089d2a30fd20ba2a29c8531b05d
|
||||
EBUILD jags-4.2.0.ebuild 892 SHA256 56edf9abec25d1ecd0216e42c20b54bd5f69f864d3ef56f024f3201a35b61ffb SHA512 c874443b58b8814dcce3d224d6bbf9eddbfcf8be523e6834b83432e1649b1df08916c650bcf91ca3faf4209d453308eb8354ff9efc27c4b7c656882c9d4e726b WHIRLPOOL a10a4465df3a258df83e0c932eab6c56d769af3c89ad2895bfe7b5825cbc344ce2b978dbf25b7b835b9bb77a7f3f411aed319089d2a30fd20ba2a29c8531b05d
|
||||
MISC ChangeLog 3015 SHA256 f353d897d2496e86454d5fb21021abba4aa1dcd0b1503f62a064205bd75d7819 SHA512 5657cfd5436fb50ceb628b43b3084615bcaefae9649afcbd6faebfc82e759babff349519439025e4cbb3d4c83e8e5744b82293089661f49b7927addeee4130b0 WHIRLPOOL a9f3dc5eb63ed78c572643006559916c9490a8e2ce073ef6a9272fcafbf611c73b9e96f63192801305f476ed0421f59f1e03bad81d1eddae8bcda5638b74db5c
|
||||
MISC ChangeLog-2015 2622 SHA256 c9791b23299a7ec79040216f9ad658acd88e87af8af99c684128fdbc130f2203 SHA512 fb1ddcabf2dc73340f12bb6b40126aa60ba6c1961d2219a87b9005a7c7bac0ebc39c0013c7f9c188a064e43eab467d43334ccb0c989b60c7186fd4a2f86f6eef WHIRLPOOL 39b4efb4b474404f7d31ecd2a402afec4948ba148a43aac36334b01f4ce7d77db2d2d29a5a3a7be8cb6ad271a05a0e2e1569f266a6d3f99a83c4a895c96af72b
|
||||
MISC metadata.xml 862 SHA256 079ae87016ad150693389b962d6bbb83d70918805168e1adfbbe6fd6aeae945a SHA512 86f27a081286b51ba645006d3c65ec43d69aa4e15218bac97730295e2ebd1cab67c592f1c7fefdbdd9b959b68e54eaf358173f7d599cb1ab5ff13dea7eef3705 WHIRLPOOL e5bce84891d4ea260adccec1e4f7a1163d5aff07494f09cf84365148fbeaa94758c5f12c90c2dbe411e19a363b896b5c64cc09b3925867afa1547bd11b7df651
|
||||
|
@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit eutils toolchain-funcs
|
||||
|
||||
MYP="JAGS-${PV}"
|
||||
|
||||
DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
|
||||
HOMEPAGE="http://mcmc-jags.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND="
|
||||
virtual/blas
|
||||
virtual/lapack"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
doc? (
|
||||
virtual/latex-base
|
||||
dev-texlive/texlive-latexextra
|
||||
)"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
|
||||
--with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake all $(usex doc docs "")
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
use doc && dodoc doc/manual/*.pdf
|
||||
prune_libtool_files
|
||||
}
|
@ -0,0 +1,78 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{3,4} )
|
||||
|
||||
inherit eutils fdo-mime distutils-r1 virtualx
|
||||
|
||||
DESCRIPTION="Qt scientific plotting package with good Postscript output"
|
||||
HOMEPAGE="http://home.gna.org/veusz/"
|
||||
SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="dbus doc emf fits hdf5 minuit vo"
|
||||
|
||||
CDEPEND="
|
||||
dev-python/numpy[${PYTHON_USEDEP}]
|
||||
>=dev-python/PyQt4-4.11.4[X,svg,${PYTHON_USEDEP}]
|
||||
"
|
||||
RDEPEND="${CDEPEND}
|
||||
dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
|
||||
emf? ( dev-python/pyemf[$(python_gen_usedep 'python2*')] )
|
||||
fits? ( dev-python/astropy[${PYTHON_USEDEP}] )
|
||||
hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )
|
||||
minuit? ( dev-python/pyminuit[${PYTHON_USEDEP}] )
|
||||
vo? (
|
||||
dev-python/astropy[${PYTHON_USEDEP}]
|
||||
dev-python/sampy[$(python_gen_usedep 'python2*')]
|
||||
)"
|
||||
DEPEND="${CDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
dev-python/sip[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
python_test() {
|
||||
distutils_install_for_testing
|
||||
cd tests || die
|
||||
VIRTUALX_COMMAND="${EPYTHON}" \
|
||||
VEUSZ_RESOURCE_DIR="${S}" \
|
||||
virtualmake runselftest.py
|
||||
}
|
||||
|
||||
python_install() {
|
||||
distutils-r1_python_install
|
||||
# symlink the license, bug #341653
|
||||
rm "${D}/$(python_get_sitedir)"/${PN}/{COPYING,AUTHORS,ChangeLog} || die
|
||||
mkdir -p "${D}/$(python_get_sitedir)" || die
|
||||
cat >> "${D}/$(python_get_sitedir)"/${PN}/COPYING <<- EOF
|
||||
Please visit
|
||||
|
||||
https://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
for the full license text.
|
||||
EOF
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
use doc && dodoc Documents/manual.pdf && \
|
||||
dohtml -r Documents/{manimages,manual.html}
|
||||
|
||||
doicon icons/veusz.png
|
||||
domenu "${FILESDIR}"/veusz.desktop
|
||||
insinto /usr/share/mime/packages
|
||||
doins "${FILESDIR}"/veusz.xml
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fdo-mime_desktop_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
fdo-mime_desktop_database_update
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
DIST py3status-2.8.tar.gz 75031 SHA256 a462609eb05ae1ea31d2fd63cab31ce21ab9e9cdd03b4ef83f538ae727e50d81 SHA512 813a587f43a45492427325a772604f531682ff6d1ddf4cff0778b0e7def57f5a87a296fac254bddc44b8673f828cbe1b4e607d7b5ac391638adcf87b69b6bd54 WHIRLPOOL 4858ab2fd8296bb501076ddc601296b8d1ae4ef57fe4d596d9eb319bcd6efcf370e3dd93dd0de57060635777477c78ae71d996028798aa1b29c8b037a838b08a
|
||||
EBUILD py3status-2.8.ebuild 609 SHA256 9a6e230385fba88d6d134cb9f806e02716696152e6b04186da0b5c6b15e5c0e7 SHA512 ba473a9e4bd6539ec86c643d85363de334016660f54aa3e49485d5993fff4dab21393d7cafb6c49bd3230aaf97493029f02a8ddffe3a9dfa02869cb833bab1b3 WHIRLPOOL 823219a3f59a28276ead249afa2d6b8a8a9d6ffc9bb44b21030841bc76e6b79d2270750fa160af769faaa7352866c119a2f3b4a170a505d50ef737c7f06b2318
|
||||
DIST py3status-2.9.tar.gz 83350 SHA256 ad2e8f0c2164453f4fdf1eb3ef88491d31f78ea056eb3b15a461793852bf9e6d SHA512 cdc8bb76e45faf97a107eeda6e10833d5c9f55b0e6e1bc955bede41e83932ec591683350723bfc9088526a9f9f3a13e3979c1e46b5eb5ffc114975a03ddc6f9e WHIRLPOOL 3c679b9f7a76037c1534053accb7e9cec37f5e8798b3292021fc12505fe01977f2ca96c3d315d18bef168fdc23c5f5f9900e0b74fc7871787581aecdd4d1cf3c
|
||||
EBUILD py3status-2.9.ebuild 609 SHA256 0f665c44bdd345bf997633bfd7922339fe29a3729361314031fe2a72c62a110f SHA512 50211a2f11ce9dc845f44edb44a34d09c3d4f018818b6e7a4a7021910d10604081f669f4a2e50b7fb107e2dd1009c97d881b016697ff6bdaf969b016fcb21b87 WHIRLPOOL bbd6bfb27cc9fe4d1c78bbc4a05bca53dd4c696413bb1f4a29e1dc93d0433957767d47ed975759c972fcd521f9043748f92fbd106d8d77992793ff3feb9d83ce
|
||||
MISC ChangeLog 2882 SHA256 bb1d5d6c259b55edde982072c546d88aa381ff20d4e241b613176a0c539b66b7 SHA512 ec4f668ddbd8f10aa5e72cebeed63244400114bb2d6fc4c5d1e4050567d2e1a3391abcdf1ea70e35dc31e17bd8de8522a9d58c23e93d29f47f68cfb3631a23aa WHIRLPOOL 5785fc7b762ec57991b94d1de2c4351aa3e3e695e510b300af2e1b1106ffabf3ec9c305b5d716a36a965a6394524db6f5e500404de3089ce9ab27bf60ec07e95
|
||||
MISC ChangeLog-2015 2444 SHA256 f4864a57c0923e2a2cadc4994a620c1bf34bc5e9fc3ed21073ee560dddc0f620 SHA512 2a19de0fe574f217027141e43c7426a1e9b9cb6c3b367c01173790dcaa10dad88e1d46ad02f36da4f0888b10a27e118ff1a3c827f24c2077933640a8c1217ff0 WHIRLPOOL 50fcee5361925b67ac3a5e82d1e7b94fe1e8be1c8b797bb467c628bbc94ee205f5363887c9b9b47b05b20389adc309332719afd1ca7906bdf5228acb60cf7422
|
||||
MISC metadata.xml 486 SHA256 4311d53e5833ef5d5a6fc21ab1bba93636c1f99da42d4921be153f8d3a234fdd SHA512 378bcd232d4250773cd0d0493f93a3c26e8323e3526d83467bfb835409a8037a970804e2d188bc71bff2712c979845d06ff5396b14a25b0b7fae67dc45e40fc0 WHIRLPOOL cd7db9c8bf5ca028ee4812e8de71a67d970b7c90f805df99c798f49a187db099c71d1cd672e4aef5ca32faa7658622968095b4210c79721abb79c617f965e037
|
||||
|
@ -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$
|
||||
|
Loading…
Reference in new issue