[gentoo-commits] dev/graaff:master commit in: dev-lang/pony/

2016-10-15 Thread Hans de Graaff
commit: 5138906abf43e308f60962fe015fa4d455c1623e
Author: Hans de Graaff  degraaff  org>
AuthorDate: Sun Oct 16 05:23:17 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Oct 16 05:23:17 2016 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=5138906a

dev-lang/pony: add 0.5.1

Package-Manager: portage-2.3.0

 dev-lang/pony/Manifest  |  1 +
 dev-lang/pony/metadata.xml  |  2 +-
 dev-lang/pony/pony-0.5.1.ebuild | 63 +
 3 files changed, 65 insertions(+), 1 deletion(-)

diff --git a/dev-lang/pony/Manifest b/dev-lang/pony/Manifest
index 7474693..51c5770 100644
--- a/dev-lang/pony/Manifest
+++ b/dev-lang/pony/Manifest
@@ -2,3 +2,4 @@ DIST pony-0.2.1.20160303.tar.gz 846774 SHA256 
9c67b4a86b4dc4e2747512224401536180
 DIST pony-0.2.1.20160331.tar.gz 862815 SHA256 
a773855e038ff345c2387ae9eb67be74791e5684cb694a0029ef6930255e88dd SHA512 
602b9159466c81f2473974b04cd53340e8aa018ba6faae7029e430cd5aad164f0892dc79e972dd973d0d3177f09793afd4878a8f545f557aea0b5a5dc6ac5e2d
 WHIRLPOOL 
ffc6a4c68f9eaff901d792d498d95812aa3c8f072c02df1e3ee5341b74df3fa40e7f1954b068dbb039bdfd5e898d8e668eb5acebcaab3a87a404121f1812838c
 DIST pony-0.2.1.20160615.tar.gz 915674 SHA256 
92950a618c0f822e84d53db66692f0dc207a40cdc66f155f8b2fc4be0cbc322b SHA512 
1bcb63621a4cd44eed7da864964d6669f0e55541addd1c36953753f642b927d9e21d8f35f7b37da6f3b2b0db0b321c29a9dc2e8ae640bbde57b49e076366f153
 WHIRLPOOL 
953ea1b5ddcd668ee7c1ef0a63556541a3953695bafaba6fc6213070ad464dd4a421a2ef6a9c79e40fc9829a05cf6ed5406b669eb9f720c297d24422989bb298
 DIST pony-0.3.0.tar.gz 950828 SHA256 
4b0fa26dd194663f648f8782af79e420bc962281f280233cadecbd9b6cad195f SHA512 
59e584afb47d64a37282a459e2871c1a353acc12c9b81f7ec4f966229abca091f2d5c91d9b81e1781436c1185b64e4b430903f76c5a31346f4103003a1790e46
 WHIRLPOOL 
f2d7f2941ccafc90cc2e18965c4d739c908ab23ae94d20210218544e41ae9cb26051bcc278f11b6fb6cb65434ca514590439275adc2102d840e40dd3d015cc7c
+DIST pony-0.5.1.tar.gz 967344 SHA256 
3d78952ca0912ca1a3b3a6d8c51a87c9bcfcb03666eb9880b76d0f9755843786 SHA512 
8bae478241f4a238d9243b756dd5b7c505b5bfd9d26730127eda425e946ae49efc3269dad26811855f48da8fa01114c82f779e17e4cda2f0a44850d544058187
 WHIRLPOOL 
cf7b23cc36fd7962db743f8da96891ebe625572f71fa48c1daa4f576ee2e846a7b48f27d4269b3f4f0b3b7cc59799bee0523ce524b50eed7fe8314260834dc2d

diff --git a/dev-lang/pony/metadata.xml b/dev-lang/pony/metadata.xml
index f977299..bd70e45 100644
--- a/dev-lang/pony/metadata.xml
+++ b/dev-lang/pony/metadata.xml
@@ -1,5 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-gra...@gentoo.org
+gra...@gentoo.org
 

diff --git a/dev-lang/pony/pony-0.5.1.ebuild b/dev-lang/pony/pony-0.5.1.ebuild
new file mode 100644
index 000..8e196d9
--- /dev/null
+++ b/dev-lang/pony/pony-0.5.1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Compiler for the Pony language"
+HOMEPAGE="http://www.ponylang.org/;
+SRC_URI="https://github.com/ponylang/ponyc/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="strip"
+
+RDEPEND="dev-libs/libpcre2
+   dev-libs/openssl:=
+   sys-devel/llvm:0/3.6
+   sys-libs/ncurses:=
+   sys-libs/zlib
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+S="${WORKDIR}/ponyc-${PV}"
+
+src_prepare() {
+   # bug #457530 means that '-ltinfo' might be needed besides '-lncurses' 
if a USE flag is enabled
+   # for sys-libs/ncurses, so we use pkg-config to get the ncurses libs
+   sed -i \
+   -e 's/-Werror//' \
+   -e 's/-O3//' \
+   -e 's/LINKER_FLAGS =/LINKER_FLAGS = $(LDFLAGS)/' \
+   -e 's/-march=$(arch)/$(CFLAGS)/' \
+   -e 's#ln -sf $(destdir)#ln -sf ../lib/pony/$(tag)#' \
+   -e "s#-lncurses#$(pkg-config ncurses --libs)#" \
+   Makefile
+
+   gcc_lib_dir="$(gcc-config -L | cut -d ':' -f 1)"
+   sed -i \
+   -e "s#/lib/x86_64-linux-gnu#${gcc_lib_dir}#" \
+   src/libponyc/codegen/genexe.c
+
+   # Avoid net/Broadcast test since it requires a working network
+   # connection.
+   sed -i -e '/test(_TestBroadcast)/d' packages/net/_test.pony || die
+}
+
+common_make_args="config=release prefix=\"${D}usr\" verbose=yes"
+
+src_compile() {
+   emake ${common_make_args}
+}
+
+src_test() {
+   emake ${common_make_args} test
+}
+
+src_install() {
+   emake ${common_make_args} install
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/mocha/

2016-10-15 Thread Hans de Graaff
commit: 1a914730b29d4b5a9d32a71278df0010ad0be0ba
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Oct 16 05:02:16 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Oct 16 05:02:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a914730

dev-ruby/mocha: add 1.2.1

Package-Manager: portage-2.3.0

 dev-ruby/mocha/Manifest   |  1 +
 dev-ruby/mocha/mocha-1.2.1.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-ruby/mocha/Manifest b/dev-ruby/mocha/Manifest
index b95e42a..d2ac5e5 100644
--- a/dev-ruby/mocha/Manifest
+++ b/dev-ruby/mocha/Manifest
@@ -5,3 +5,4 @@ DIST mocha-0.13.3.gem 82432 SHA256 
4f979512dd32f2e0881c143132160dea433a392287df4
 DIST mocha-0.14.0.gem 82944 SHA256 
4bb00fdc69d628b15ad2b89ca6f490aaf92486f640282b8943fe3b43dee9a145 SHA512 
918e45f2ee761c7dc399c7958e4d406f9e186c90f479fd01a421aa542944b47e9b2c5e938f4fc5292a7da345726447b2d47dc5f417e114201f8a4d9893c4d461
 WHIRLPOOL 
816cb472c08739b5e342b6b3a8f3ae5c0a4fee9d40234ecd1ed73f4b4a16cffc7d36034d5987c943d1f52c06a1e953fc9e41d2b5ecec6620b2b611dae2a228e3
 DIST mocha-1.1.0.gem 87552 SHA256 
f1d3385b5bed21bdcdcb9d26fd10139b2c7a67b1572e789ec014edf5acadf680 SHA512 
5a07c8364ae649a6be821c4b61c349d79e1dbf1e574ed95b07848f5dae3a2860e2f2e06499fc15b8352ec2146f273cc40ee8e65e670214f0f0669b6eedf698bb
 WHIRLPOOL 
b2f2621d6a039b8bf9000fd508680b359b14fdb913c883c5d86a3cd79736084a456577e621a20060a11dc3cdfa503a0c32a4ffd9c3c2b06af45e412a6ef2d7d6
 DIST mocha-1.2.0.gem 90112 SHA256 
0526557184a50ed7aa5554b9e3e61267cb96e8dbe08c3b2086f6212c623fec73 SHA512 
cedbbafb095ebc54b74cdb848d11acddaf44333c6f844282fc217906c551f1ec7f0d33bc881e1c410e59917bcfc0b2b7d15d8c549d56ef9c6663907d0d7c0a87
 WHIRLPOOL 
3424f0ddc1984f53c01c5e0eb5d82e94b5357412370660fc195115fc3f4a119692fcd052ca4ebed6e93d8f8ed81b372ca4d2e6ef96e3c08270b4648dce2632a2
+DIST mocha-1.2.1.gem 90624 SHA256 
7de99b005aa41dc46841442afe468451a145f2c6d9b10fac0c23f0d911bef50d SHA512 
318fc7275b7ef14b6839ce68beb4a6dcd2a06325bcc5e69d82bd6842dc39c78b8a09d6d06d36dbf0f43e59bbcf441be9a6b1d3037f0cbde25be9d04ae44b2aed
 WHIRLPOOL 
04c1f2d8c1b7844ba1fd6c92ef5077bff05a368ae19208182b29356972090368c77fc00e91c12f31b8895bdf7d452a34a3980ba79b119c8de0dfc26bcaffa4dd

diff --git a/dev-ruby/mocha/mocha-1.2.1.ebuild 
b/dev-ruby/mocha/mocha-1.2.1.ebuild
new file mode 100644
index ..47e7835
--- /dev/null
+++ b/dev-ruby/mocha/mocha-1.2.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_TEST="test:units"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md RELEASE.md"
+
+RUBY_FAKEGEM_EXTRAINSTALL="init.rb"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Mocking and stubbing using a syntax like that of JMock and 
SchMock"
+HOMEPAGE="http://gofreerange.com/mocha/docs/;
+
+LICENSE="MIT"
+SLOT="1.0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+ruby_add_bdepend "
+   test? ( >=dev-ruby/test-unit-2.5.1-r1 dev-ruby/introspection )"
+
+ruby_add_rdepend "=dev-ruby/metaclass-0.0*"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/ s:^:#:' -e '1iload "lib/mocha/version.rb"' 
Rakefile || die
+}
+
+each_ruby_test() {
+   export MOCHA_NO_DOCS=true
+   each_fakegem_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/bundler/

2016-10-15 Thread Hans de Graaff
commit: b9242d20ac36b0cc9e58f5f404b71940082a512e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Oct 16 05:06:50 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Oct 16 05:06:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9242d20

dev-ruby/bundler: add 1.12.6

Package-Manager: portage-2.3.0

 dev-ruby/bundler/Manifest  |  1 +
 dev-ruby/bundler/bundler-1.12.6.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/dev-ruby/bundler/Manifest b/dev-ruby/bundler/Manifest
index 81b4524..f25f533 100644
--- a/dev-ruby/bundler/Manifest
+++ b/dev-ruby/bundler/Manifest
@@ -2,5 +2,6 @@ DIST bundler-1.10.6.tar.gz 313526 SHA256 
6c700c2183577be4991b82a975b981bf85a6eb3
 DIST bundler-1.11.2.tar.gz 329289 SHA256 
8f84487d197f7fcd1753dbe92403febb1ad1ac4ef847fadb473ca9ec62647c8d SHA512 
04f324b1a6c23b4e92f2b8c1c974a9420af21f95569b8617d600c9d307af142d109c606cce5f64601e79620f31194d1b4b9f72982b7009c37c5a7a5dd1d973a6
 WHIRLPOOL 
45fb426c454da025c938bab216f6cd41832779b827736aa66b8536877ae5eb161813f34ffcd1280f410a55140673ad10916f4407bf894eec6c23fcad0045ba80
 DIST bundler-1.12.4.tar.gz 370935 SHA256 
70610320a6a124d2414a0bd5022e7d17e77f61be1a30508f8dd5b91cc402615a SHA512 
c76c392c0621cf43ddcbd5ae5e33e8b0758ad818a5cb517be05467e9d3b8ba54266be456893f9be6b4096ba6c7638f5bc8ec6e5cddae25f0eed4f3bacf97b01d
 WHIRLPOOL 
8c371b453addf4d65df30b3addbac23bc0071b1f6186dc415b7797bc0512f0e40af1905eee09f3fc66e7c5ae0cbb0cfc015016e7896530427f738328157aeabd
 DIST bundler-1.12.5.tar.gz 371552 SHA256 
d4a421ca23fbd87664e7cdf070d6fe404969960b027554eeccb2d4e1aedbcaaf SHA512 
d42b2a10b97ab9724b9f3c6d1493a46ac212a918acc556ae90faed63b128190fd365cc0ba8c9ed9db30fc285e5c4d4183ddb698eee9a8607e9e40e860e78518d
 WHIRLPOOL 
fe790e697c62f4745d786cb0f089a57cef7d0a16275c1c9dcfddb54077625887eee26b5e47274a973b0d2cdb2ddf71dbe33fb62592047f5467f86f61c6275b88
+DIST bundler-1.12.6.tar.gz 371581 SHA256 
d87a47940a46d0bae17de1be0fcdf739c5f623943adf6f311ef30180cde8aeb0 SHA512 
3015841ec31f06d4cc50d6fdca97efb429cd2ce552907f3e35f0f7b096da0d27752d4a9534dd77377d99e16859b8ef384015a1efe9127d66eccaeede86da3221
 WHIRLPOOL 
33ef0b7fc5203c056a0530c0eec01710a55242b2356add81b67b7bf69e0a83ec5091742fe4dde07ee9397a717d6c923fc01af7505c7ce325b74ba12fac755e85
 DIST bundler-1.8.9.tar.gz 290462 SHA256 
9ecbe18147b990e8c5c7f299e9bc7b63eb274f54b05134ad334e0abeb943f733 SHA512 
2e3378e2c329c53eb6e578b496e1fb332c4f96eca58299e59dd8cb7f5d3b78f43bc6bf96c452cbeb99a0459c016a824248f907b58dcc2081490e4f59ea7a32ba
 WHIRLPOOL 
887a72075093405dd5c94902865589e4946d70f1cc390725e8ae35f6a36cdc2bdd05b9c27958a5c2497d6f42011791c2432f15ab45e1ccbc8c7f0d7da37799c9
 DIST bundler-1.9.10.tar.gz 301546 SHA256 
ea56d906a96f14ffb8ebd3bd5f35ebb4389901be10c8470f6741d6567f16f844 SHA512 
0cd05ae67543c5993d2e33cc9287dc375703cda3250de3556442ae513825b200d534640a9232806b1c4bdec192937de2b40d54563030d9aff8f7727f349a7b17
 WHIRLPOOL 
ac2a118bd85d5b6c9ef2819dec95c6580c769a4985429fd959cffc0e0a6be1f6e37106b2d713e42c360dd19761b71f93dbf519f68fd5bcda0ffb09f97e5eff89

diff --git a/dev-ruby/bundler/bundler-1.12.6.ebuild 
b/dev-ruby/bundler/bundler-1.12.6.ebuild
new file mode 100644
index ..a83f9ba
--- /dev/null
+++ b/dev-ruby/bundler/bundler-1.12.6.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+#RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+# No documentation task
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md ISSUES.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINDIR="exe"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An easy way to vendor gem dependencies"
+HOMEPAGE="https://github.com/carlhuda/bundler;
+SRC_URI="https://github.com/carlhuda/bundler/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc test"
+
+ruby_add_rdepend virtual/rubygems
+
+ruby_add_bdepend "doc? ( app-text/ronn )"
+
+# ruby_add_bdepend "test? ( app-text/ronn )"
+
+# The specs require a number of gems to be installed in a temporary
+# directory, but this requires network access. All tests should still
+# pass with network access.
+RESTRICT="test"
+
+RDEPEND+=" dev-vcs/git"
+
+all_ruby_prepare() {
+   # Bundler only supports running the specs from git:
+   # https://github.com/carlhuda/bundler/issues/issue/738
+   sed -i -e '/when Bundler is bundled/,/^  end/ s:^:#:' 
spec/runtime/setup_spec.rb || die
+
+   # Fails randomly and no clear cause can be found. Might be related
+   # to bug 346357. This was broken in previous releases without a
+   # failing spec, so patch out this spec for now since it is not a
+   # regression.
+   sed -i 

[gentoo-commits] repo/user/johnmh:master commit in: games-strategy/freeorion/

2016-10-15 Thread John Harris
commit: a19baf43c0dacc6437e3234f1e6c17906e9c71b5
Author: John M. Harris  openblox  org>
AuthorDate: Sun Oct 16 03:51:35 2016 +
Commit: John Harris  openblox  org>
CommitDate: Sun Oct 16 03:51:35 2016 +
URL:https://gitweb.gentoo.org/repo/user/johnmh.git/commit/?id=a19baf43

games-strategy/freeorion: Update ebuild

 games-strategy/freeorion/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-strategy/freeorion/Manifest 
b/games-strategy/freeorion/Manifest
index 5abeee4..533743a 100644
--- a/games-strategy/freeorion/Manifest
+++ b/games-strategy/freeorion/Manifest
@@ -1,2 +1,2 @@
 DIST freeorion-0.4.6.tar.gz 145720274 SHA256 
3e3ff3a758c8a1ffa71773dff18faff2c792051bb5162758b5f5b8ea59e8e311 SHA512 
0488e36286358e8db2dcfe0cdae68e4638388fd2d4c627a258cdecf0afd57e9dbac03111f7683c3ef22edecbedd197a172d177400ddbb585a50f34804a50c50a
 WHIRLPOOL 
30d56a2ca76158168492aa0d1b3fe5a9f164afd7dc378128fe2796ce149a9d65a64cd10c41c5b6c1510773e9ead564dff452869e6c384d949cd0789a51198b6c
-EBUILD freeorion-0.4.6.ebuild 2250 SHA256 
1e3d7be89cc4b40f5b6c6b9dbbc5a097ba83bd2221d07d5f940a085670a3a74f SHA512 
75b426ca813fe3c4da4afd5ab179145e978af1b1d940c38f69d01720a11aaada8db97851a90d52b9ae30f45b3b591da2314ee622943004d76785aa33d3c318ab
 WHIRLPOOL 
cf189ab2436037a9fa8a4ec14fcfe75f6d34479d99499bcfdff7d02c885e2961de2db5d21ac0f4f0aa64b0dab2b7a93829b433568463a0117412d2e3fc262ac2
+EBUILD freeorion-0.4.6.ebuild 2229 SHA256 
81a2042cfc6943919aed4bf20c34ba9438238e7634d71e57617e8ef2ac392d19 SHA512 
9f4fc17d0b811278f1bd41a71bed0ae4ed8c9014d7e208aa7c3e299f1e2225d9f0f66d752f95aa9fde03042861db32f3024e2cf289529a01abec30ae6f4499e2
 WHIRLPOOL 
01abd20e0391ebcbea14f87e5a0a55ca79df608265147b8b53ee3c2d9a8d44edfdd7803f33dc1a4125e0032d9c83dcb2c073481b2c3c5bdb2f61c81e89c404fc



[gentoo-commits] repo/user/johnmh:master commit in: games-strategy/freeorion/

2016-10-15 Thread John Harris
commit: 2ce46a48d0f41b43eaa06bbf8d1cbda5878ef284
Author: John M. Harris  openblox  org>
AuthorDate: Sun Oct 16 03:50:26 2016 +
Commit: John Harris  openblox  org>
CommitDate: Sun Oct 16 03:50:26 2016 +
URL:https://gitweb.gentoo.org/repo/user/johnmh.git/commit/?id=2ce46a48

games-strategy/freeorion: Update ebuild

 games-strategy/freeorion/freeorion-0.4.6.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/games-strategy/freeorion/freeorion-0.4.6.ebuild 
b/games-strategy/freeorion/freeorion-0.4.6.ebuild
index 1722cba..4dd558e 100644
--- a/games-strategy/freeorion/freeorion-0.4.6.ebuild
+++ b/games-strategy/freeorion/freeorion-0.4.6.ebuild
@@ -27,7 +27,6 @@ RDEPEND="
media-libs/libsdl[X,opengl,video]
media-libs/libvorbis
media-libs/openal
-   sci-physics/bullet
sys-libs/zlib
virtual/opengl"
 DEPEND="${RDEPEND}
@@ -86,7 +85,7 @@ src_install() {
dogameslib "${CMAKE_BUILD_DIR}"/libGiGi*.so || die
 
# other
-   dodoc "${CMAKE_USE_DIR}"/changelog.txt || die
+   dodoc "${CMAKE_USE_DIR}"/ChangeLog.md || die
newicon "${CMAKE_USE_DIR}"/default/data/art/icons/FO_Icon_32x32.png \
${PN}.png || die
make_desktop_entry ${PN} ${PN} ${PN}



[gentoo-commits] repo/user/johnmh:master commit in: games-strategy/freeorion/

2016-10-15 Thread John Harris
commit: 1892603a52508990eef3cbc768b2a215a26b619b
Author: John M. Harris  openblox  org>
AuthorDate: Sun Oct 16 03:02:01 2016 +
Commit: John Harris  openblox  org>
CommitDate: Sun Oct 16 03:02:01 2016 +
URL:https://gitweb.gentoo.org/repo/user/johnmh.git/commit/?id=1892603a

games-strategy/freeorion: Update ebuild

Remove boost epatch

 games-strategy/freeorion/Manifest   | 2 +-
 games-strategy/freeorion/freeorion-0.4.6.ebuild | 5 -
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/games-strategy/freeorion/Manifest 
b/games-strategy/freeorion/Manifest
index c5ac6a7..5abeee4 100644
--- a/games-strategy/freeorion/Manifest
+++ b/games-strategy/freeorion/Manifest
@@ -1,2 +1,2 @@
 DIST freeorion-0.4.6.tar.gz 145720274 SHA256 
3e3ff3a758c8a1ffa71773dff18faff2c792051bb5162758b5f5b8ea59e8e311 SHA512 
0488e36286358e8db2dcfe0cdae68e4638388fd2d4c627a258cdecf0afd57e9dbac03111f7683c3ef22edecbedd197a172d177400ddbb585a50f34804a50c50a
 WHIRLPOOL 
30d56a2ca76158168492aa0d1b3fe5a9f164afd7dc378128fe2796ce149a9d65a64cd10c41c5b6c1510773e9ead564dff452869e6c384d949cd0789a51198b6c
-EBUILD freeorion-0.4.6.ebuild 2443 SHA256 
e7e06c17d02e185a8c7bf952b2cd8db4ecf3dbd95b2e4fe30db940dd813dbdd5 SHA512 
0800deeada52609a2a198b68a3b429b6859c8bcff284fdb326ccf0735e9f71ad06c2cd973b4ce5c0713454b247f7d0d274a3839fe19f81918693f16f9e449d12
 WHIRLPOOL 
dd8aa4c676ec27834a55bcbc9a1adf7486dc0c5012f6006b094119cd7f6c81bdb0d4013d724559c7b57e9d626e7a74ce1d0f863eb49e170d9ca094d83f0685fc
+EBUILD freeorion-0.4.6.ebuild 2250 SHA256 
1e3d7be89cc4b40f5b6c6b9dbbc5a097ba83bd2221d07d5f940a085670a3a74f SHA512 
75b426ca813fe3c4da4afd5ab179145e978af1b1d940c38f69d01720a11aaada8db97851a90d52b9ae30f45b3b591da2314ee622943004d76785aa33d3c318ab
 WHIRLPOOL 
cf189ab2436037a9fa8a4ec14fcfe75f6d34479d99499bcfdff7d02c885e2961de2db5d21ac0f4f0aa64b0dab2b7a93829b433568463a0117412d2e3fc262ac2

diff --git a/games-strategy/freeorion/freeorion-0.4.6.ebuild 
b/games-strategy/freeorion/freeorion-0.4.6.ebuild
index 096d918..1722cba 100644
--- a/games-strategy/freeorion/freeorion-0.4.6.ebuild
+++ b/games-strategy/freeorion/freeorion-0.4.6.ebuild
@@ -51,11 +51,6 @@ src_unpack() {
 src_prepare() {
# parse subdir sets -O3
sed -e "s:-O3::" -i parse/CMakeLists.txt
-   epatch "${FILESDIR}/${P}-boost-1.61.patch"
-
-   # For snapshots, the following can be used to the set revision
-   # for display in game -- update on bump!
-   # sed -i -e 's/???/8051/' CMakeLists.txt
 }
 
 src_configure() {



[gentoo-commits] repo/user/johnmh:master commit in: games-strategy/freeorion/

2016-10-15 Thread John Harris
commit: d8b675f682795fa1d964b5934044087fd511b37a
Author: John M. Harris  openblox  org>
AuthorDate: Sun Oct 16 02:50:03 2016 +
Commit: John Harris  openblox  org>
CommitDate: Sun Oct 16 02:53:02 2016 +
URL:https://gitweb.gentoo.org/repo/user/johnmh.git/commit/?id=d8b675f6

games-strategy/freeorion: new ebuild

 games-strategy/freeorion/Manifest   |   2 +
 games-strategy/freeorion/freeorion-0.4.6.ebuild | 101 
 2 files changed, 103 insertions(+)

diff --git a/games-strategy/freeorion/Manifest 
b/games-strategy/freeorion/Manifest
new file mode 100644
index 000..c5ac6a7
--- /dev/null
+++ b/games-strategy/freeorion/Manifest
@@ -0,0 +1,2 @@
+DIST freeorion-0.4.6.tar.gz 145720274 SHA256 
3e3ff3a758c8a1ffa71773dff18faff2c792051bb5162758b5f5b8ea59e8e311 SHA512 
0488e36286358e8db2dcfe0cdae68e4638388fd2d4c627a258cdecf0afd57e9dbac03111f7683c3ef22edecbedd197a172d177400ddbb585a50f34804a50c50a
 WHIRLPOOL 
30d56a2ca76158168492aa0d1b3fe5a9f164afd7dc378128fe2796ce149a9d65a64cd10c41c5b6c1510773e9ead564dff452869e6c384d949cd0789a51198b6c
+EBUILD freeorion-0.4.6.ebuild 2443 SHA256 
e7e06c17d02e185a8c7bf952b2cd8db4ecf3dbd95b2e4fe30db940dd813dbdd5 SHA512 
0800deeada52609a2a198b68a3b429b6859c8bcff284fdb326ccf0735e9f71ad06c2cd973b4ce5c0713454b247f7d0d274a3839fe19f81918693f16f9e449d12
 WHIRLPOOL 
dd8aa4c676ec27834a55bcbc9a1adf7486dc0c5012f6006b094119cd7f6c81bdb0d4013d724559c7b57e9d626e7a74ce1d0f863eb49e170d9ca094d83f0685fc

diff --git a/games-strategy/freeorion/freeorion-0.4.6.ebuild 
b/games-strategy/freeorion/freeorion-0.4.6.ebuild
new file mode 100644
index 000..096d918
--- /dev/null
+++ b/games-strategy/freeorion/freeorion-0.4.6.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+inherit cmake-utils python-any-r1 games
+
+DESCRIPTION="A free turn-based space empire and galactic conquest game"
+HOMEPAGE="http://www.freeorion.org;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/FreeOrion_v0.4.6_2016-09-16.49f9123_Source.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="cg"
+
+# Needs it's own version of GG(dev-games/gigi) which it ships.
+# The split version dev-games/gigi is not used anymore as of 0.4.3
+RDEPEND="
+   !dev-games/gigi
+   media-libs/libsdl2
+   >=dev-libs/boost-1.47[python]
+   media-libs/freealut
+   media-libs/libogg
+   media-libs/libsdl[X,opengl,video]
+   media-libs/libvorbis
+   media-libs/openal
+   sci-physics/bullet
+   sys-libs/zlib
+   virtual/opengl"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   virtual/pkgconfig"
+
+CMAKE_USE_DIR="${S}"
+CMAKE_VERBOSE="1"
+
+pkg_setup() {
+   # build system is using FindPythonLibs.cmake which needs python:2
+   python-any-r1_pkg_setup
+   games_pkg_setup
+}
+
+src_unpack() {
+   default
+   mv src-tarball "${P}" || die
+   }
+
+src_prepare() {
+   # parse subdir sets -O3
+   sed -e "s:-O3::" -i parse/CMakeLists.txt
+   epatch "${FILESDIR}/${P}-boost-1.61.patch"
+
+   # For snapshots, the following can be used to the set revision
+   # for display in game -- update on bump!
+   # sed -i -e 's/???/8051/' CMakeLists.txt
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DRELEASE_COMPILE_FLAGS=""
+   -DCMAKE_SKIP_RPATH=ON
+   )
+
+   append-cppflags 
-DBOOST_OPTIONAL_CONFIG_USE_OLD_IMPLEMENTATION_OF_OPTIONAL
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+}
+
+src_install() {
+   # data files
+   rm "${CMAKE_USE_DIR}"/default/COPYING || die
+   insinto "${GAMES_DATADIR}"/${PN}
+   doins -r "${CMAKE_USE_DIR}"/default || die
+
+   # bin
+   dogamesbin "${CMAKE_BUILD_DIR}"/${PN}{ca,d} || die
+   newgamesbin "${CMAKE_BUILD_DIR}"/${PN} ${PN}.bin || die
+   games_make_wrapper ${PN} \
+   "${GAMES_BINDIR}/${PN}.bin --resource-dir 
${GAMES_DATADIR}/${PN}/default" \
+   "${GAMES_DATADIR}/${PN}"
+
+   # lib
+   dogameslib "${CMAKE_BUILD_DIR}"/libfreeorion{common,parse}.so || die
+   dogameslib "${CMAKE_BUILD_DIR}"/libGiGi*.so || die
+
+   # other
+   dodoc "${CMAKE_USE_DIR}"/changelog.txt || die
+   newicon "${CMAKE_USE_DIR}"/default/data/art/icons/FO_Icon_32x32.png \
+   ${PN}.png || die
+   make_desktop_entry ${PN} ${PN} ${PN}
+
+   # permissions
+   prepgamesdirs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/mypy/

2016-10-15 Thread Alex Brandt
commit: 9e3840c519a22588812e43b7ca6fb15ab6d9cec9
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:50:16 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:52:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e3840c5

dev-python/mypy: add version 0.4.5

Package-Manager: portage-2.3.2

 dev-python/mypy/Manifest  |  1 +
 dev-python/mypy/mypy-0.4.5.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index 0fd652b..c810423 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -1,3 +1,4 @@
 DIST mypy-0.4.2.tar.gz 697919 SHA256 
d39607701c226007f3bb5a7619222c6c6e7e4c4a2c565d99d44377324d2072ad SHA512 
16d2f1476bc7b40c20b66aca81b3c99477394cbcbbff5541ca26179bde0634794126c0b28506ad3019d6a1c5cd0bf48292b4de0152927123ffdfb3bbbc69ee15
 WHIRLPOOL 
45e459ac076e5bb800a3b8f62828fb326a43d69522caf493166694e4a11b65136756dde43f01e13ac4c74a0535595914364096042dad40c631f17837ca1aca0b
 DIST mypy-0.4.3.tar.gz 714118 SHA256 
d90aaf3e8c01ccdfdb5b74e9321a3f3a32dea964ce13472f406cec43c174229d SHA512 
2185eccb6fa783168879acfc316da0c879fca0b04e6a21bbd47a456014281d634711d9f3e25fa3a64a0b7819b54f0bb87f8bede7452147fd3bab8bca4859f5f0
 WHIRLPOOL 
4b1db030e1c8aed69e763141a812626129451f04ec32ed4cd4bff15461d826b9479a85a92dcc846baa16dda3056840e6c7f798e9b27317d5158e4ccc769c34c9
 DIST mypy-0.4.4.tar.gz 757353 SHA256 
665c9eecc1d43380534d2b88bfc6df2fc7c387f23772e5d82cb37ae96c580034 SHA512 
7a5cb8dae4d28cb7803b56ce17e379dd5f1f953663af6a5c2510e3183028f06a8b3722b94843a782e01e4a65b3f5ae48ff002ad85bfb85cad05abb181fc60e47
 WHIRLPOOL 
71e0b90d521e09c8df21db3bd8a37d3f738ab91823a82481397f81a30cd0f04031a73b71acefefc77405570c8080bf7ccc19669db565313b676c2384018c0863
+DIST mypy-0.4.5.tar.gz 779940 SHA256 
3217d0d0d1f43a102b43618cf73ac5640e0006c3403558da70206e9a642f61d8 SHA512 
e0bd4cb1080f2a4c0f2c4f9ebbe22d05b8dabb374396e7d91c645724b5d67084fd005e181847fccc45c9c51f3280233185fa6bf08dc24c2d4f6e482197246fa7
 WHIRLPOOL 
9ee581530c59a07d0d06307708fc5970161e45111d838d77a5f511ba2d569601012a67ef5e7847c1baa1e79fbf78ce5e9a9f013f33d1b59937d2b3997d4d5594

diff --git a/dev-python/mypy/mypy-0.4.5.ebuild 
b/dev-python/mypy/mypy-0.4.5.ebuild
new file mode 100644
index ..bdebb35
--- /dev/null
+++ b/dev-python/mypy/mypy-0.4.5.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Optional static typing for Python"
+HOMEPAGE="http://www.mypy-lang.org/;
+SRC_URI="https://github.com/JukkaL/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+   test? ( dev-python/flake8[${PYTHON_USEDEP}] )
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="$(python_gen_cond_dep '!dev-python/typing[${PYTHON_USEDEP}]' 
'python3_3' 'python3_4')"
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   local PYTHONPATH="$(pwd)"
+
+   "${PYTHON}" runtests.py || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/build/html/. )
+
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/mypy/

2016-10-15 Thread Alex Brandt
commit: dd6ab2d98cd7cad2d7c499ef5b031128f22dd76c
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:52:10 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:52:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6ab2d9

dev-python/mypy: remove version 0.4.2

Package-Manager: portage-2.3.2

 dev-python/mypy/Manifest  |  1 -
 dev-python/mypy/mypy-0.4.2.ebuild | 43 ---
 2 files changed, 44 deletions(-)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index c810423..f8b1546 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -1,4 +1,3 @@
-DIST mypy-0.4.2.tar.gz 697919 SHA256 
d39607701c226007f3bb5a7619222c6c6e7e4c4a2c565d99d44377324d2072ad SHA512 
16d2f1476bc7b40c20b66aca81b3c99477394cbcbbff5541ca26179bde0634794126c0b28506ad3019d6a1c5cd0bf48292b4de0152927123ffdfb3bbbc69ee15
 WHIRLPOOL 
45e459ac076e5bb800a3b8f62828fb326a43d69522caf493166694e4a11b65136756dde43f01e13ac4c74a0535595914364096042dad40c631f17837ca1aca0b
 DIST mypy-0.4.3.tar.gz 714118 SHA256 
d90aaf3e8c01ccdfdb5b74e9321a3f3a32dea964ce13472f406cec43c174229d SHA512 
2185eccb6fa783168879acfc316da0c879fca0b04e6a21bbd47a456014281d634711d9f3e25fa3a64a0b7819b54f0bb87f8bede7452147fd3bab8bca4859f5f0
 WHIRLPOOL 
4b1db030e1c8aed69e763141a812626129451f04ec32ed4cd4bff15461d826b9479a85a92dcc846baa16dda3056840e6c7f798e9b27317d5158e4ccc769c34c9
 DIST mypy-0.4.4.tar.gz 757353 SHA256 
665c9eecc1d43380534d2b88bfc6df2fc7c387f23772e5d82cb37ae96c580034 SHA512 
7a5cb8dae4d28cb7803b56ce17e379dd5f1f953663af6a5c2510e3183028f06a8b3722b94843a782e01e4a65b3f5ae48ff002ad85bfb85cad05abb181fc60e47
 WHIRLPOOL 
71e0b90d521e09c8df21db3bd8a37d3f738ab91823a82481397f81a30cd0f04031a73b71acefefc77405570c8080bf7ccc19669db565313b676c2384018c0863
 DIST mypy-0.4.5.tar.gz 779940 SHA256 
3217d0d0d1f43a102b43618cf73ac5640e0006c3403558da70206e9a642f61d8 SHA512 
e0bd4cb1080f2a4c0f2c4f9ebbe22d05b8dabb374396e7d91c645724b5d67084fd005e181847fccc45c9c51f3280233185fa6bf08dc24c2d4f6e482197246fa7
 WHIRLPOOL 
9ee581530c59a07d0d06307708fc5970161e45111d838d77a5f511ba2d569601012a67ef5e7847c1baa1e79fbf78ce5e9a9f013f33d1b59937d2b3997d4d5594

diff --git a/dev-python/mypy/mypy-0.4.2.ebuild 
b/dev-python/mypy/mypy-0.4.2.ebuild
deleted file mode 100644
index 5d7d96c..
--- a/dev-python/mypy/mypy-0.4.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Optional static typing for Python"
-HOMEPAGE="http://www.mypy-lang.org/;
-SRC_URI="https://github.com/JukkaL/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc examples test"
-
-DEPEND="
-   test? ( dev-python/flake8[${PYTHON_USEDEP}] )
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="$(python_gen_cond_dep '!dev-python/typing[${PYTHON_USEDEP}]' 
'python3_3' 'python3_4')"
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   local PYTHONPATH="$(pwd)"
-
-   "${PYTHON}" runtests.py || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/build/html/. )
-   use examples && local EXAMPLES=( samples/. )
-
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/

2016-10-15 Thread Austin English
commit: 97177c0d81beb72ec5129ebca61cebea88f16870
Author: Austin English  gentoo  org>
AuthorDate: Sun Oct 16 01:47:07 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Sun Oct 16 01:48:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97177c0d

games-rpg/sumwars: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: portage-2.3.0

 games-rpg/sumwars/sumwars-0.5.8-r1.ebuild | 96 +++
 1 file changed, 96 insertions(+)

diff --git a/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild 
b/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild
new file mode 100644
index ..19640e4
--- /dev/null
+++ b/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit cmake-utils eutils flag-o-matic gnome2-utils
+
+DESCRIPTION="a multi-player, 3D action role-playing game"
+HOMEPAGE="http://sumwars.org;
+SRC_URI="mirror://sourceforge/sumwars/${P//_/-}-src.tar.bz2"
+
+LICENSE="GPL-3 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+tools debug"
+
+LANGS="de en it pl pt ru uk"
+for L in ${LANGS} ; do
+   IUSE="${IUSE} l10n_${L}"
+done
+unset L
+
+RDEPEND="
+   >=dev-games/cegui-0.8[ogre]
+   >=dev-games/ogre-1.7.4-r1[freeimage,opengl]
+   dev-games/ois
+   dev-games/physfs
+   >=dev-lang/lua-5.1:0
+   >=dev-libs/tinyxml-2.6.2-r2
+   media-libs/freealut
+   media-libs/openal
+   media-libs/libogg
+   media-libs/libvorbis
+   >=net-libs/enet-1.3.0
+   x11-libs/libX11
+   x11-libs/libXrandr
+   tools? ( dev-libs/boost )"
+DEPEND=${RDEPEND}
+
+S=${WORKDIR}/${PN}-${PV%_*}
+
+src_configure() {
+   # QA
+   append-flags -fno-strict-aliasing
+
+   use debug && CMAKE_BUILD_TYPE=Debug
+
+   local l langs
+   for l in ${LANGS}; do
+   if use l10n_${l}; then
+   langs="${langs} ${l}"
+   fi
+   done
+
+   [[ -z "${langs}" ]] && langs="en"
+
+   # configure sumwars with cmake
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_PREFIX=""
+   -DSUMWARS_BUILD_TOOLS="$(usex tools)"
+   -DSUMWARS_DOC_DIR="/usr/share/doc/${PF}"
+   -DSUMWARS_EXECUTABLE_DIR="/usr/bin"
+   -DSUMWARS_LANGUAGES="${langs}"
+   -DSUMWARS_NO_ENET=ON
+   -DSUMWARS_NO_TINYXML=ON
+   -DSUMWARS_PORTABLE_MODE=OFF
+   -DSUMWARS_POST_BUILD_COPY=OFF
+   -DSUMWARS_RANDOM_REGIONS=ON
+   -DSUMWARS_SHARE_DIR="/usr/share/${PN}"
+   -DSUMWARS_STANDALONE_MODE=OFF
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+}
+
+src_install() {
+   cmake-utils_src_install
+   newicon -s 128 share/icon/SumWarsIcon_128x128.png ${PN}.png
+   make_desktop_entry ${PN} "Summoning Wars"
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/boto3/

2016-10-15 Thread Alex Brandt
commit: 8e760e9df43f2764c280ba6bfa0534d61998462f
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:47:35 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:47:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e760e9d

dev-python/boto3: remove version 1.3.0

Package-Manager: portage-2.3.2

 dev-python/boto3/Manifest   |  1 -
 dev-python/boto3/boto3-1.3.0.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index c17c097..f4a20c0 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,4 +1,3 @@
-DIST boto3-1.3.0.tar.gz 171316 SHA256 
0b8c809a08c1c27dcd2213b2799796fa82388d93bf50d375cd378171c9a59a53 SHA512 
2088ee1fd27dbe197221c14b73344905cce1c6f660d61a5a69124f64be099abb0ea31f8b8d06c5034418d36b7a2289a1a1f87d4f8e15c49884fd8215b0a342c8
 WHIRLPOOL 
50bbec84e5bb12c991462b04b15e79cd28f6aae7069c1128b25aae4c738ba9bcb4005b84080dbfd0b73bbfcce33e7fb7b7708e23da928d032214c22dd39d6673
 DIST boto3-1.3.1.tar.gz 176717 SHA256 
b3dbde6445ab04c3d0de9b962a3cc8ed9bc22ccce5ed4c8c4f8a1c1f653667f0 SHA512 
10fa396e8896a157e80d028b590056dd8e967afec37062056d94fab45652d4adedbe5e98f1cc67c6c8b9ae9282145367b4e1973fd7506170e486b026b57db9f5
 WHIRLPOOL 
7a89936f8fde0c1138b330cee2184b40948838466aa44e78e35dfa6440c120ed8abfca9b76e28355173b8c571f0124af462eaa506990ef09bcdeaa0219e45788
 DIST boto3-1.4.0.tar.gz 183263 SHA256 
8fdd3743e34a32e5cb8636fb33dafe7336b7a341583653f52c6c20f7fe764472 SHA512 
9e678b26993f48f156a5acdb33aec3488d263230517e6b5e1e608cb007fbf4f29a3c33290e460eb7cf1031f87894f3daca03bf80048139435979f23dd2fd61b8
 WHIRLPOOL 
5eb3703b11b4a0b3a4c873aed78f9c8b6588b5a83cacbd673f27cc4460822772745abcbc6698f680968ed37318d76bd812a491a83caa7b04b1e4a663def4a271
 DIST boto3-1.4.1.tar.gz 188341 SHA256 
a7f10245b3ff947019963963b73911c515debed89709740586503ac22f5dfb97 SHA512 
525f2db50d0a9d6f452c0261e934ecd9f06b576154b128d209a729b0fe96190e641369c00e13700f2aba5fe4a0c02f80248e25bc3d716cb72752d645e880eb23
 WHIRLPOOL 
195e5dcd59152ef09ae1f32aa9f321ea1f57c2ac20f7a233673c4f2a4529c062f78af0641efe8ac0632188e8e85e1e687eeb7c6932de89d3c49e110df2958eb4

diff --git a/dev-python/boto3/boto3-1.3.0.ebuild 
b/dev-python/boto3/boto3-1.3.0.ebuild
deleted file mode 100644
index d496da5..
--- a/dev-python/boto3/boto3-1.3.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="The AWS SDK for Python"
-HOMEPAGE="https://github.com/boto/boto3;
-SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-CDEPEND="
-   >=dev-python/botocore-1.4.1[${PYTHON_USEDEP}]
-   =dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
-   =dev-python/futures-2.2.0[${PYTHON_USEDEP}]' 
'python2_7')
-   $(python_gen_cond_dep '

[gentoo-commits] repo/gentoo:master commit in: dev-python/boto3/

2016-10-15 Thread Alex Brandt
commit: 74f9894ec9968c38cc9ced284daf0b7daec0d4d0
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:45:34 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:45:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f9894e

dev-python/boto3: add version 1.4.1

Package-Manager: portage-2.3.2

 dev-python/boto3/Manifest   |  1 +
 dev-python/boto3/boto3-1.4.1.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 80e4c11..c17c097 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,3 +1,4 @@
 DIST boto3-1.3.0.tar.gz 171316 SHA256 
0b8c809a08c1c27dcd2213b2799796fa82388d93bf50d375cd378171c9a59a53 SHA512 
2088ee1fd27dbe197221c14b73344905cce1c6f660d61a5a69124f64be099abb0ea31f8b8d06c5034418d36b7a2289a1a1f87d4f8e15c49884fd8215b0a342c8
 WHIRLPOOL 
50bbec84e5bb12c991462b04b15e79cd28f6aae7069c1128b25aae4c738ba9bcb4005b84080dbfd0b73bbfcce33e7fb7b7708e23da928d032214c22dd39d6673
 DIST boto3-1.3.1.tar.gz 176717 SHA256 
b3dbde6445ab04c3d0de9b962a3cc8ed9bc22ccce5ed4c8c4f8a1c1f653667f0 SHA512 
10fa396e8896a157e80d028b590056dd8e967afec37062056d94fab45652d4adedbe5e98f1cc67c6c8b9ae9282145367b4e1973fd7506170e486b026b57db9f5
 WHIRLPOOL 
7a89936f8fde0c1138b330cee2184b40948838466aa44e78e35dfa6440c120ed8abfca9b76e28355173b8c571f0124af462eaa506990ef09bcdeaa0219e45788
 DIST boto3-1.4.0.tar.gz 183263 SHA256 
8fdd3743e34a32e5cb8636fb33dafe7336b7a341583653f52c6c20f7fe764472 SHA512 
9e678b26993f48f156a5acdb33aec3488d263230517e6b5e1e608cb007fbf4f29a3c33290e460eb7cf1031f87894f3daca03bf80048139435979f23dd2fd61b8
 WHIRLPOOL 
5eb3703b11b4a0b3a4c873aed78f9c8b6588b5a83cacbd673f27cc4460822772745abcbc6698f680968ed37318d76bd812a491a83caa7b04b1e4a663def4a271
+DIST boto3-1.4.1.tar.gz 188341 SHA256 
a7f10245b3ff947019963963b73911c515debed89709740586503ac22f5dfb97 SHA512 
525f2db50d0a9d6f452c0261e934ecd9f06b576154b128d209a729b0fe96190e641369c00e13700f2aba5fe4a0c02f80248e25bc3d716cb72752d645e880eb23
 WHIRLPOOL 
195e5dcd59152ef09ae1f32aa9f321ea1f57c2ac20f7a233673c4f2a4529c062f78af0641efe8ac0632188e8e85e1e687eeb7c6932de89d3c49e110df2958eb4

diff --git a/dev-python/boto3/boto3-1.4.1.ebuild 
b/dev-python/boto3/boto3-1.4.1.ebuild
new file mode 100644
index ..59d301c
--- /dev/null
+++ b/dev-python/boto3/boto3-1.4.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="https://github.com/boto/boto3;
+SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+CDEPEND="
+   >=dev-python/botocore-1.4.1[${PYTHON_USEDEP}]
+   =dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   =dev-python/s3transfer-0.1.0[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/s3transfer/

2016-10-15 Thread Alex Brandt
commit: 8e14058a772da27183a581074d1d2e4c257ec808
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:43:08 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:43:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e14058a

dev-python/s3transfer: remove version 0.1.2

Package-Manager: portage-2.3.2

 dev-python/s3transfer/Manifest|  1 -
 dev-python/s3transfer/s3transfer-0.1.2.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/dev-python/s3transfer/Manifest b/dev-python/s3transfer/Manifest
index 1b30369..6d9639e 100644
--- a/dev-python/s3transfer/Manifest
+++ b/dev-python/s3transfer/Manifest
@@ -1,4 +1,3 @@
-DIST s3transfer-0.1.2.tar.gz 82681 SHA256 
779d0cd9aa30fa65c6e8da8dc203d165ef7aa6cab0b7faa502b850e6cb9236dc SHA512 
96cdc5744ba4297205d82d07aa5b8883269e59c9462baf1bd742ae6be385f17da0803fe09f3a2161c918f04a7c422f82d8e7075ea29d4424fc752a750dc98a6f
 WHIRLPOOL 
14d367b8ab592b27c15519d0a972979baaef9ad3acf293e0908c70df7d3b2dfb4dfefac033490ca9f7fbab1e30b19b414daa73fc516c8f974b4eafd989a462b9
 DIST s3transfer-0.1.3.tar.gz 83873 SHA256 
af2e541ac584a1e88d3bca9529ae784d2b25e5d448685e0ee64f4c0e1e017ed2 SHA512 
c05ebd67f8295cd595ace77aaf1f437fa4572bfeb31a06df336ba05a17b8d420ce29ff3ba06ce31f75d8a8e9f43bf4dc23559fa1e78e477370ca989010fe23e1
 WHIRLPOOL 
d62df0fb99647e82d82331f953eb943f9e03e930ef9529882e18fe6bcd886f7a8386b9aafcfcae1146b3c5e1f71d9d3d93bbe63715fb5b4fb773f3245cc2
 DIST s3transfer-0.1.4.tar.gz 87620 SHA256 
c41d039ab9204e9eea72a6098ca5092ed001f2820274b80be622dbe582ab2d41 SHA512 
ec56ff5f535ffab7d0c21d933b12d71c55cc4647260f82b54d6aebb97716f3b55d26f75f3640487dcd7275ed2b4a57d3f7b7995b873ec7775f53ec5a13ba0419
 WHIRLPOOL 
bb615d142d9df7c602307c956fa2c8c868f9d35864cdb4ee9b452e34b3831bbcd7ae2c912ecd09177a42bb440c75510d9062c2ca458864d93bf481a3b54d2183
 DIST s3transfer-0.1.5.tar.gz 92081 SHA256 
c500b27b5a8693507e4768730c4c423d4717477c8676139fc764ac4e8e88708e SHA512 
12639ac1576553c95443bcc51eb1c4ed036d5eeec134f0d5922661aa975b905fc433f712c3f4524363b46e3f79dd0dfe91aae75bbeb949c02abe996bae5f020a
 WHIRLPOOL 
444d609770ea5fb84e09a76a3dd7b6047e16064e56417cd25bbed913d8619312405f2ff8dd38b5b300653f430a755afeaaad5f4837b86ae8cfac06ac8732c318

diff --git a/dev-python/s3transfer/s3transfer-0.1.2.ebuild 
b/dev-python/s3transfer/s3transfer-0.1.2.ebuild
deleted file mode 100644
index 7ad1e5c..
--- a/dev-python/s3transfer/s3transfer-0.1.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-inherit distutils-r1
-
-DESCRIPTION="An Amazon S3 Transfer Manager"
-HOMEPAGE="https://github.com/boto/s3transfer;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-CDEPEND="
-   >=dev-python/botocore-1.3.0[${PYTHON_USEDEP}]
-   =dev-python/futures-2.2.0[${PYTHON_USEDEP}]' 
'python2_7')
-   $(python_gen_cond_dep '

[gentoo-commits] repo/gentoo:master commit in: dev-python/s3transfer/

2016-10-15 Thread Alex Brandt
commit: 8b45346d365da5a591ee8bb48306e87b4da65dc2
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:41:04 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:41:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b45346d

dev-python/s3transfer: add version 0.1.7

Package-Manager: portage-2.3.2

 dev-python/s3transfer/Manifest|  1 +
 dev-python/s3transfer/s3transfer-0.1.7.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/s3transfer/Manifest b/dev-python/s3transfer/Manifest
index aa82d3f..1b30369 100644
--- a/dev-python/s3transfer/Manifest
+++ b/dev-python/s3transfer/Manifest
@@ -2,3 +2,4 @@ DIST s3transfer-0.1.2.tar.gz 82681 SHA256 
779d0cd9aa30fa65c6e8da8dc203d165ef7aa6
 DIST s3transfer-0.1.3.tar.gz 83873 SHA256 
af2e541ac584a1e88d3bca9529ae784d2b25e5d448685e0ee64f4c0e1e017ed2 SHA512 
c05ebd67f8295cd595ace77aaf1f437fa4572bfeb31a06df336ba05a17b8d420ce29ff3ba06ce31f75d8a8e9f43bf4dc23559fa1e78e477370ca989010fe23e1
 WHIRLPOOL 
d62df0fb99647e82d82331f953eb943f9e03e930ef9529882e18fe6bcd886f7a8386b9aafcfcae1146b3c5e1f71d9d3d93bbe63715fb5b4fb773f3245cc2
 DIST s3transfer-0.1.4.tar.gz 87620 SHA256 
c41d039ab9204e9eea72a6098ca5092ed001f2820274b80be622dbe582ab2d41 SHA512 
ec56ff5f535ffab7d0c21d933b12d71c55cc4647260f82b54d6aebb97716f3b55d26f75f3640487dcd7275ed2b4a57d3f7b7995b873ec7775f53ec5a13ba0419
 WHIRLPOOL 
bb615d142d9df7c602307c956fa2c8c868f9d35864cdb4ee9b452e34b3831bbcd7ae2c912ecd09177a42bb440c75510d9062c2ca458864d93bf481a3b54d2183
 DIST s3transfer-0.1.5.tar.gz 92081 SHA256 
c500b27b5a8693507e4768730c4c423d4717477c8676139fc764ac4e8e88708e SHA512 
12639ac1576553c95443bcc51eb1c4ed036d5eeec134f0d5922661aa975b905fc433f712c3f4524363b46e3f79dd0dfe91aae75bbeb949c02abe996bae5f020a
 WHIRLPOOL 
444d609770ea5fb84e09a76a3dd7b6047e16064e56417cd25bbed913d8619312405f2ff8dd38b5b300653f430a755afeaaad5f4837b86ae8cfac06ac8732c318
+DIST s3transfer-0.1.7.tar.gz 92659 SHA256 
433d067bafb099a7d1653ae09ba39a7e479c90fcef06d396c8e6823f2a3cfd86 SHA512 
081ed7e35c8c929a0b1f634dd47bb3de4776d40188d4ffc82c681dbe0a771c33351dedbeca3e6f57b94c6e501a0fe058065f18e3078280bd51a14ecbe1d1d35a
 WHIRLPOOL 
1467e7f712a351f4944959a09a2f83e7b99c6283c61b8944fe6874ccaf5f7aa9e84f75253549620237b092b860562de876d2886ee9571699ed19abae9f553513

diff --git a/dev-python/s3transfer/s3transfer-0.1.7.ebuild 
b/dev-python/s3transfer/s3transfer-0.1.7.ebuild
new file mode 100644
index ..7ad1e5c
--- /dev/null
+++ b/dev-python/s3transfer/s3transfer-0.1.7.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
+inherit distutils-r1
+
+DESCRIPTION="An Amazon S3 Transfer Manager"
+HOMEPAGE="https://github.com/boto/s3transfer;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+CDEPEND="
+   >=dev-python/botocore-1.3.0[${PYTHON_USEDEP}]
+   =dev-python/futures-2.2.0[${PYTHON_USEDEP}]' 
'python2_7')
+   $(python_gen_cond_dep '

[gentoo-commits] repo/gentoo:master commit in: dev-python/s3transfer/

2016-10-15 Thread Alex Brandt
commit: 61421c4316c5d0e2192a71b26d1dc9b2be8737a9
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:43:38 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:43:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61421c43

dev-python/s3transfer: remove version 0.1.3

Package-Manager: portage-2.3.2

 dev-python/s3transfer/Manifest|  1 -
 dev-python/s3transfer/s3transfer-0.1.3.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/dev-python/s3transfer/Manifest b/dev-python/s3transfer/Manifest
index 6d9639e..3323e65 100644
--- a/dev-python/s3transfer/Manifest
+++ b/dev-python/s3transfer/Manifest
@@ -1,4 +1,3 @@
-DIST s3transfer-0.1.3.tar.gz 83873 SHA256 
af2e541ac584a1e88d3bca9529ae784d2b25e5d448685e0ee64f4c0e1e017ed2 SHA512 
c05ebd67f8295cd595ace77aaf1f437fa4572bfeb31a06df336ba05a17b8d420ce29ff3ba06ce31f75d8a8e9f43bf4dc23559fa1e78e477370ca989010fe23e1
 WHIRLPOOL 
d62df0fb99647e82d82331f953eb943f9e03e930ef9529882e18fe6bcd886f7a8386b9aafcfcae1146b3c5e1f71d9d3d93bbe63715fb5b4fb773f3245cc2
 DIST s3transfer-0.1.4.tar.gz 87620 SHA256 
c41d039ab9204e9eea72a6098ca5092ed001f2820274b80be622dbe582ab2d41 SHA512 
ec56ff5f535ffab7d0c21d933b12d71c55cc4647260f82b54d6aebb97716f3b55d26f75f3640487dcd7275ed2b4a57d3f7b7995b873ec7775f53ec5a13ba0419
 WHIRLPOOL 
bb615d142d9df7c602307c956fa2c8c868f9d35864cdb4ee9b452e34b3831bbcd7ae2c912ecd09177a42bb440c75510d9062c2ca458864d93bf481a3b54d2183
 DIST s3transfer-0.1.5.tar.gz 92081 SHA256 
c500b27b5a8693507e4768730c4c423d4717477c8676139fc764ac4e8e88708e SHA512 
12639ac1576553c95443bcc51eb1c4ed036d5eeec134f0d5922661aa975b905fc433f712c3f4524363b46e3f79dd0dfe91aae75bbeb949c02abe996bae5f020a
 WHIRLPOOL 
444d609770ea5fb84e09a76a3dd7b6047e16064e56417cd25bbed913d8619312405f2ff8dd38b5b300653f430a755afeaaad5f4837b86ae8cfac06ac8732c318
 DIST s3transfer-0.1.7.tar.gz 92659 SHA256 
433d067bafb099a7d1653ae09ba39a7e479c90fcef06d396c8e6823f2a3cfd86 SHA512 
081ed7e35c8c929a0b1f634dd47bb3de4776d40188d4ffc82c681dbe0a771c33351dedbeca3e6f57b94c6e501a0fe058065f18e3078280bd51a14ecbe1d1d35a
 WHIRLPOOL 
1467e7f712a351f4944959a09a2f83e7b99c6283c61b8944fe6874ccaf5f7aa9e84f75253549620237b092b860562de876d2886ee9571699ed19abae9f553513

diff --git a/dev-python/s3transfer/s3transfer-0.1.3.ebuild 
b/dev-python/s3transfer/s3transfer-0.1.3.ebuild
deleted file mode 100644
index 7ad1e5c..
--- a/dev-python/s3transfer/s3transfer-0.1.3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-inherit distutils-r1
-
-DESCRIPTION="An Amazon S3 Transfer Manager"
-HOMEPAGE="https://github.com/boto/s3transfer;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-CDEPEND="
-   >=dev-python/botocore-1.3.0[${PYTHON_USEDEP}]
-   =dev-python/futures-2.2.0[${PYTHON_USEDEP}]' 
'python2_7')
-   $(python_gen_cond_dep '

[gentoo-commits] repo/gentoo:master commit in: dev-python/botocore/

2016-10-15 Thread Alex Brandt
commit: 368768e5c75d061950a383d0eb1f0545f6a89816
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:38:23 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:38:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=368768e5

dev-python/botocore: remove version 1.4.55

Package-Manager: portage-2.3.2

 dev-python/botocore/Manifest   |  1 -
 dev-python/botocore/botocore-1.4.55.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 04d7fcb..a882237 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,4 +1,3 @@
-DIST botocore-1.4.55.tar.gz 2774299 SHA256 
0c0a2ffa545cb4209cac4f8caad4463d12e17c052a2a643814109782a68540b8 SHA512 
5d532e56329afa37f7930102e60d6372790c9c45f76f483936fb53eb97608f6a2b7d3c39c5c03e576a25e1b8944586761b11465409cd57bbed2af590a5d7
 WHIRLPOOL 
1ebe49e320cb894281a3e7b35779baa99d7d7f1a59aa469cc0ef8e67880cc6eb070ba43cd4040f5fa57b739be4f3aac8c83a6d1d797f3fac942109ef40c9fa60
 DIST botocore-1.4.56.tar.gz 2778136 SHA256 
8cf6152b5af9df16bb7ba660d2bc7dc110911532fc253e052c2c26099d84ac8f SHA512 
87b48221e7d1c9d77bd048f5d3a4b67660af1d3c3ebdbce0f517fd3f8fa5ae91cb45d3644d62b40ec85291f4e26f85dff6ddb2258d5a86cce26b82abee09421f
 WHIRLPOOL 
c336b5878d5656455b696a75eca28f4c65cc95af0ed79d6e7051908652cf6c935d65db2b9185dabf0df493c49d4478870463ff2a1e31cb33c45f05794cb86621
 DIST botocore-1.4.58.tar.gz 2906349 SHA256 
a464bb803faffdd689c732768e472da8732b87795bc03ed4342a2ab99338e9f7 SHA512 
717b02eef844ac192704c0eda2c2942358d714d92012dff59a38e0bb558ef3cfe6208f3892bb25b3752af96cc81ce057f4052783f60221e63bd087bba59a3dfb
 WHIRLPOOL 
bc7b077ca015103d12423f258f21eb42cdeecde311ec726268cb00a6ffd7126047efbdb5fac609f1ae77744465c9989b1d34f953b7d690657d5f8f5f83ccd38e
 DIST botocore-1.4.60.tar.gz 2908934 SHA256 
b091e12a6bba367f147631d3fdc4891567d260f79a09bce8a76f15647da0a2bf SHA512 
77fb9e20d54455e1a200ef53db64491383e361f318ce903350beb13ce81edc438dc75642afa3c6825a1c5d3d517bd456ce362a7c917a6c725b2fe3638007858f
 WHIRLPOOL 
17dd5a81f8ac8da7b62cfa91b2c202c6360eac760ebb9ed85b8633f4b7cb740bd5178df126052e36b142e48f47f0c1e749e1ed8d2684238df19ac22de643096e

diff --git a/dev-python/botocore/botocore-1.4.55.ebuild 
b/dev-python/botocore/botocore-1.4.55.ebuild
deleted file mode 100644
index 9c57e33..
--- a/dev-python/botocore/botocore-1.4.55.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# 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 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="Low-level, data-driven core of boto 3."
-HOMEPAGE="https://github.com/boto/botocore;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-CDEPEND="
-   >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
-   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
-   =dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/botocore/

2016-10-15 Thread Alex Brandt
commit: 7e887daf762bf64adf15c33916e030bd61446637
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:36:02 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:36:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e887daf

dev-python/botocore: add version 1.4.60

Package-Manager: portage-2.3.2

 dev-python/botocore/Manifest   |  1 +
 dev-python/botocore/botocore-1.4.60.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 5fc430d..04d7fcb 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,3 +1,4 @@
 DIST botocore-1.4.55.tar.gz 2774299 SHA256 
0c0a2ffa545cb4209cac4f8caad4463d12e17c052a2a643814109782a68540b8 SHA512 
5d532e56329afa37f7930102e60d6372790c9c45f76f483936fb53eb97608f6a2b7d3c39c5c03e576a25e1b8944586761b11465409cd57bbed2af590a5d7
 WHIRLPOOL 
1ebe49e320cb894281a3e7b35779baa99d7d7f1a59aa469cc0ef8e67880cc6eb070ba43cd4040f5fa57b739be4f3aac8c83a6d1d797f3fac942109ef40c9fa60
 DIST botocore-1.4.56.tar.gz 2778136 SHA256 
8cf6152b5af9df16bb7ba660d2bc7dc110911532fc253e052c2c26099d84ac8f SHA512 
87b48221e7d1c9d77bd048f5d3a4b67660af1d3c3ebdbce0f517fd3f8fa5ae91cb45d3644d62b40ec85291f4e26f85dff6ddb2258d5a86cce26b82abee09421f
 WHIRLPOOL 
c336b5878d5656455b696a75eca28f4c65cc95af0ed79d6e7051908652cf6c935d65db2b9185dabf0df493c49d4478870463ff2a1e31cb33c45f05794cb86621
 DIST botocore-1.4.58.tar.gz 2906349 SHA256 
a464bb803faffdd689c732768e472da8732b87795bc03ed4342a2ab99338e9f7 SHA512 
717b02eef844ac192704c0eda2c2942358d714d92012dff59a38e0bb558ef3cfe6208f3892bb25b3752af96cc81ce057f4052783f60221e63bd087bba59a3dfb
 WHIRLPOOL 
bc7b077ca015103d12423f258f21eb42cdeecde311ec726268cb00a6ffd7126047efbdb5fac609f1ae77744465c9989b1d34f953b7d690657d5f8f5f83ccd38e
+DIST botocore-1.4.60.tar.gz 2908934 SHA256 
b091e12a6bba367f147631d3fdc4891567d260f79a09bce8a76f15647da0a2bf SHA512 
77fb9e20d54455e1a200ef53db64491383e361f318ce903350beb13ce81edc438dc75642afa3c6825a1c5d3d517bd456ce362a7c917a6c725b2fe3638007858f
 WHIRLPOOL 
17dd5a81f8ac8da7b62cfa91b2c202c6360eac760ebb9ed85b8633f4b7cb740bd5178df126052e36b142e48f47f0c1e749e1ed8d2684238df19ac22de643096e

diff --git a/dev-python/botocore/botocore-1.4.60.ebuild 
b/dev-python/botocore/botocore-1.4.60.ebuild
new file mode 100644
index ..9c57e33
--- /dev/null
+++ b/dev-python/botocore/botocore-1.4.60.ebuild
@@ -0,0 +1,54 @@
+# 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 python3_4 python3_5 )
+
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3."
+HOMEPAGE="https://github.com/boto/botocore;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+CDEPEND="
+   >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   =dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/aiohttp/

2016-10-15 Thread Alex Brandt
commit: 25f05dedf8ced90bed70a308f0d317514489ebd2
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:28:48 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:28:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25f05ded

dev-python/aiohttp: add version 1.0.4

Package-Manager: portage-2.3.2

 dev-python/aiohttp/Manifest |  1 +
 dev-python/aiohttp/aiohttp-1.0.4.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/dev-python/aiohttp/Manifest b/dev-python/aiohttp/Manifest
index a3bf750..fbee33f 100644
--- a/dev-python/aiohttp/Manifest
+++ b/dev-python/aiohttp/Manifest
@@ -5,3 +5,4 @@ DIST aiohttp-0.22.5.tar.gz 475312 SHA256 
9c51af030c866f91e18a219614e39d345db4483
 DIST aiohttp-1.0.1.tar.gz 498972 SHA256 
f5133431d66ef8838f40d233b0fc9e4b9e69616560cbedb89317d551dcc42e41 SHA512 
3744186d259563d21e5a7a3c5969f24178a442b1482a98d1d45e132dc4d889c55b9ff3da4394acbcca2dc9c7c78b7eb857cb2467c0faec54e11832db909760f6
 WHIRLPOOL 
cbc31efafa28e17375fc795a053878ddc6978c36926e4ce250bb06ae39f332ed1f2e4ec255a19e334bc994cd5707c2ac1ade48c4089546e432c16b8527374daf
 DIST aiohttp-1.0.2.tar.gz 499266 SHA256 
d104a8e762debc1acc3fe40dbc4f0da4cace5a797a93d59c618673b390d3947c SHA512 
94004219b8809bad26df4119512faaad7ebbc7c961fea2488f333aa580a24691752154a688e9fe224be6aeb2b769c6f101a288fec66fdf66e619756ebe98258b
 WHIRLPOOL 
7130e1ea90ef64af9bd128ae8c021e5ba2061c02b276aa81db0aabd326572ef3e68396c842cedec43d0f68ea33bce6128d3f2275909fdae3a942de90b7d3bfda
 DIST aiohttp-1.0.3.tar.gz 499693 SHA256 
5ec0fdf17868bcabfef4effa3ce53c4cfa6108b481585bda88498f46435d5eaa SHA512 
1fd915d04bf978826863c06a3a9ef5c23fd11c3b6a65b71828a7be4301e24421483717af6181319ba8461a22351decda4fb776765d18843e4ab1f436f5319d73
 WHIRLPOOL 
8e6b2503833c98d0d5e341275cc82a0a943e3f69b8b2a0c478c826775aff35b343af6d786b919d75f46a920e09b33eca3d24ba1bec316db82d16a1006cd71e0c
+DIST aiohttp-1.0.4.tar.gz 562803 SHA256 
7e2d4282b2031ca2aaef35d4291743f37a8840821e8b3c6b491fcd903ad853c0 SHA512 
437bed5e5f8729e8809411213cdb8f6a7de08879841c0cc89e88eec6de1883702903ecfb1b8e32ecf3701415fd6757545a0aafd44738681050425d5df44bef56
 WHIRLPOOL 
4ccb55b93fba2774ea65adcf3b5b00c3bc8bc72f05ac2a07bc84d50dbf07c34b4f3ee75265b800ef59aa9c7deb61e23c7662b3226f8aa0c40918c17295085568

diff --git a/dev-python/aiohttp/aiohttp-1.0.4.ebuild 
b/dev-python/aiohttp/aiohttp-1.0.4.ebuild
new file mode 100644
index ..b6f53c2
--- /dev/null
+++ b/dev-python/aiohttp/aiohttp-1.0.4.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_4 python3_5 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="http client/server for asyncio"
+HOMEPAGE="https://pypi.python.org/pypi/aiohttp;
+SRC_URI="https://github.com/KeepSafe/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+EGIT_REPO_URI="https://github.com/KeepSafe/aiohttp;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+CDEPEND="
+   dev-python/async_timeout[${PYTHON_USEDEP}]
+   dev-python/chardet[${PYTHON_USEDEP}]
+   >=dev-python/multidict-2.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cython[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/alabaster-0.6.2[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-asyncio[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-newsfeed[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-spelling[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${CDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   www-servers/gunicorn[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   PYTHONPATH="${PWD}:${PYTHONPATH}" ${PYTHON} -m pytest tests/ || die 
"Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/aiohttp/

2016-10-15 Thread Alex Brandt
commit: af77002a8b72f09c82ed8fbb61a76c7c76a18431
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:33:05 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:33:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af77002a

dev-python/aiohttp: remove version 0.22.5

Package-Manager: portage-2.3.2

 dev-python/aiohttp/Manifest  |  1 -
 dev-python/aiohttp/aiohttp-0.22.5.ebuild | 58 
 2 files changed, 59 deletions(-)

diff --git a/dev-python/aiohttp/Manifest b/dev-python/aiohttp/Manifest
index 55999e9..be3f75e 100644
--- a/dev-python/aiohttp/Manifest
+++ b/dev-python/aiohttp/Manifest
@@ -1,5 +1,4 @@
 DIST aiohttp-0.21.5.tar.gz 529005 SHA256 
bac5c883721e0818e405597d2778f08a38cc097df01f574462de2cc4f8090559 SHA512 
4958d7c58988a95fc5b1e94e4eb7247f59b55e5ba439391c7b072a7ec267491159e1c8c7c6f05e6f7f72e4de5c12784c8d437665c01e6d9fb1e87a3334c1d35c
 WHIRLPOOL 
135368db11316c8f99f39bbf317f791e433a779f61e45070166bab12b4e97165d2c6e732e8da96a848b431c1f26de45e416009bca4e75456025187ea7a41e04e
-DIST aiohttp-0.22.5.tar.gz 475312 SHA256 
9c51af030c866f91e18a219614e39d345db4483ed9860389d0536d74d04b0d3b SHA512 
919818445590b386b40edd05e8a58fac0b1b2993fe82faf95e10b53b5c0b3b464e92ea2484bc1929cb737351f3629b77a4ff67788248e19d69eb638bbf44a5e3
 WHIRLPOOL 
45e2c0fc3aab759ac1e95bc25d1983aa1c874c07595af7cb48af0e4e43b01fbe69a56c22216d0c4ba13da53c5e0172e95916e0c87bb0bb7a7630c8d631aa0152
 DIST aiohttp-1.0.1.tar.gz 498972 SHA256 
f5133431d66ef8838f40d233b0fc9e4b9e69616560cbedb89317d551dcc42e41 SHA512 
3744186d259563d21e5a7a3c5969f24178a442b1482a98d1d45e132dc4d889c55b9ff3da4394acbcca2dc9c7c78b7eb857cb2467c0faec54e11832db909760f6
 WHIRLPOOL 
cbc31efafa28e17375fc795a053878ddc6978c36926e4ce250bb06ae39f332ed1f2e4ec255a19e334bc994cd5707c2ac1ade48c4089546e432c16b8527374daf
 DIST aiohttp-1.0.2.tar.gz 499266 SHA256 
d104a8e762debc1acc3fe40dbc4f0da4cace5a797a93d59c618673b390d3947c SHA512 
94004219b8809bad26df4119512faaad7ebbc7c961fea2488f333aa580a24691752154a688e9fe224be6aeb2b769c6f101a288fec66fdf66e619756ebe98258b
 WHIRLPOOL 
7130e1ea90ef64af9bd128ae8c021e5ba2061c02b276aa81db0aabd326572ef3e68396c842cedec43d0f68ea33bce6128d3f2275909fdae3a942de90b7d3bfda
 DIST aiohttp-1.0.3.tar.gz 499693 SHA256 
5ec0fdf17868bcabfef4effa3ce53c4cfa6108b481585bda88498f46435d5eaa SHA512 
1fd915d04bf978826863c06a3a9ef5c23fd11c3b6a65b71828a7be4301e24421483717af6181319ba8461a22351decda4fb776765d18843e4ab1f436f5319d73
 WHIRLPOOL 
8e6b2503833c98d0d5e341275cc82a0a943e3f69b8b2a0c478c826775aff35b343af6d786b919d75f46a920e09b33eca3d24ba1bec316db82d16a1006cd71e0c

diff --git a/dev-python/aiohttp/aiohttp-0.22.5.ebuild 
b/dev-python/aiohttp/aiohttp-0.22.5.ebuild
deleted file mode 100644
index 3a442c1..
--- a/dev-python/aiohttp/aiohttp-0.22.5.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="http client/server for asyncio"
-HOMEPAGE="https://pypi.python.org/pypi/aiohttp;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-EGIT_REPO_URI="https://github.com/KeepSafe/aiohttp;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples test"
-
-CDEPEND="
-   dev-python/chardet[${PYTHON_USEDEP}]
-   >=dev-python/multidict-1.2.2[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/aiohttp/

2016-10-15 Thread Alex Brandt
commit: 3e5966d2a58e8e4b7482fb466db71d3bea0ba18c
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:31:55 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:31:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e5966d2

dev-python/aiohttp: remove version 0.22.2

Package-Manager: portage-2.3.2

 dev-python/aiohttp/Manifest  |  1 -
 dev-python/aiohttp/aiohttp-0.22.2.ebuild | 57 
 2 files changed, 58 deletions(-)

diff --git a/dev-python/aiohttp/Manifest b/dev-python/aiohttp/Manifest
index fbee33f..4c4a486 100644
--- a/dev-python/aiohttp/Manifest
+++ b/dev-python/aiohttp/Manifest
@@ -1,5 +1,4 @@
 DIST aiohttp-0.21.5.tar.gz 529005 SHA256 
bac5c883721e0818e405597d2778f08a38cc097df01f574462de2cc4f8090559 SHA512 
4958d7c58988a95fc5b1e94e4eb7247f59b55e5ba439391c7b072a7ec267491159e1c8c7c6f05e6f7f72e4de5c12784c8d437665c01e6d9fb1e87a3334c1d35c
 WHIRLPOOL 
135368db11316c8f99f39bbf317f791e433a779f61e45070166bab12b4e97165d2c6e732e8da96a848b431c1f26de45e416009bca4e75456025187ea7a41e04e
-DIST aiohttp-0.22.2.tar.gz 475062 SHA256 
30b588573c88942dac7438509731e197d74552060547b79cf6ace8564ee4b277 SHA512 
405a706e112500110d89cfaed7bd1696a8af391bcfcacd47649d098f5216d74427b8b8628e5402e137eb599628170d03c58877742fa427d450d80c7cd66abf96
 WHIRLPOOL 
4f98e513387995ed2ece5377e4be3648d831ccecdce0bd86a5d800437cf681dd9b6fdc1a4b23be389bef154e87c8c5b668e378cebf3d0a45936329e000742e84
 DIST aiohttp-0.22.4.tar.gz 475257 SHA256 
167ec7373a3319419834e6c61846b7267c5fc6748b9dd2504b7e9378b55afcdd SHA512 
04efa2b714c0c310b24b092af8d5c7e766ccfbc888f969b2d2f99ac57a478056f2aa793f319783b8c12605bbee8c5ba283bb8b10fd34497a583b886e8aa1
 WHIRLPOOL 
d827932ccfb19290ae1f6f1b3551da29c255640f309d1e776723e825e0a7580b830b0bd836e9c33ce3859d5e21955211f1d2e6830cff89e1cf9df8082a04b8af
 DIST aiohttp-0.22.5.tar.gz 475312 SHA256 
9c51af030c866f91e18a219614e39d345db4483ed9860389d0536d74d04b0d3b SHA512 
919818445590b386b40edd05e8a58fac0b1b2993fe82faf95e10b53b5c0b3b464e92ea2484bc1929cb737351f3629b77a4ff67788248e19d69eb638bbf44a5e3
 WHIRLPOOL 
45e2c0fc3aab759ac1e95bc25d1983aa1c874c07595af7cb48af0e4e43b01fbe69a56c22216d0c4ba13da53c5e0172e95916e0c87bb0bb7a7630c8d631aa0152
 DIST aiohttp-1.0.1.tar.gz 498972 SHA256 
f5133431d66ef8838f40d233b0fc9e4b9e69616560cbedb89317d551dcc42e41 SHA512 
3744186d259563d21e5a7a3c5969f24178a442b1482a98d1d45e132dc4d889c55b9ff3da4394acbcca2dc9c7c78b7eb857cb2467c0faec54e11832db909760f6
 WHIRLPOOL 
cbc31efafa28e17375fc795a053878ddc6978c36926e4ce250bb06ae39f332ed1f2e4ec255a19e334bc994cd5707c2ac1ade48c4089546e432c16b8527374daf

diff --git a/dev-python/aiohttp/aiohttp-0.22.2.ebuild 
b/dev-python/aiohttp/aiohttp-0.22.2.ebuild
deleted file mode 100644
index f7b65a2..
--- a/dev-python/aiohttp/aiohttp-0.22.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="http client/server for asyncio"
-HOMEPAGE="https://pypi.python.org/pypi/aiohttp;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-EGIT_REPO_URI="https://github.com/KeepSafe/aiohttp;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples test"
-
-CDEPEND="
-   dev-python/chardet[${PYTHON_USEDEP}]
-   >=dev-python/multidict-1.1.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/cython[${PYTHON_USEDEP}]
-   doc? (
-   >=dev-python/alabaster-0.6.2[${PYTHON_USEDEP}]
-   dev-python/sphinxcontrib-asyncio[${PYTHON_USEDEP}]
-   dev-python/sphinxcontrib-newsfeed[${PYTHON_USEDEP}]
-   dev-python/sphinxcontrib-spelling[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   )
-   test? (
-   ${CDEPEND}
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-raisesregexp[${PYTHON_USEDEP}]
-   www-servers/gunicorn[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="${CDEPEND}"
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   PYTHONPATH="$(PWD):${PYTHONPATH}" ${PYTHON} -m pytest tests/ || die 
"Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-   use examples && local EXAMPLES=( examples/. )
-
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/aiohttp/

2016-10-15 Thread Alex Brandt
commit: d9c2946cf5358d75ccb739fcdb34b81006d668d3
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Oct 16 01:32:30 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Oct 16 01:32:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c2946c

dev-python/aiohttp: remove version 0.22.4

Package-Manager: portage-2.3.2

 dev-python/aiohttp/Manifest  |  1 -
 dev-python/aiohttp/aiohttp-0.22.4.ebuild | 58 
 2 files changed, 59 deletions(-)

diff --git a/dev-python/aiohttp/Manifest b/dev-python/aiohttp/Manifest
index 4c4a486..55999e9 100644
--- a/dev-python/aiohttp/Manifest
+++ b/dev-python/aiohttp/Manifest
@@ -1,5 +1,4 @@
 DIST aiohttp-0.21.5.tar.gz 529005 SHA256 
bac5c883721e0818e405597d2778f08a38cc097df01f574462de2cc4f8090559 SHA512 
4958d7c58988a95fc5b1e94e4eb7247f59b55e5ba439391c7b072a7ec267491159e1c8c7c6f05e6f7f72e4de5c12784c8d437665c01e6d9fb1e87a3334c1d35c
 WHIRLPOOL 
135368db11316c8f99f39bbf317f791e433a779f61e45070166bab12b4e97165d2c6e732e8da96a848b431c1f26de45e416009bca4e75456025187ea7a41e04e
-DIST aiohttp-0.22.4.tar.gz 475257 SHA256 
167ec7373a3319419834e6c61846b7267c5fc6748b9dd2504b7e9378b55afcdd SHA512 
04efa2b714c0c310b24b092af8d5c7e766ccfbc888f969b2d2f99ac57a478056f2aa793f319783b8c12605bbee8c5ba283bb8b10fd34497a583b886e8aa1
 WHIRLPOOL 
d827932ccfb19290ae1f6f1b3551da29c255640f309d1e776723e825e0a7580b830b0bd836e9c33ce3859d5e21955211f1d2e6830cff89e1cf9df8082a04b8af
 DIST aiohttp-0.22.5.tar.gz 475312 SHA256 
9c51af030c866f91e18a219614e39d345db4483ed9860389d0536d74d04b0d3b SHA512 
919818445590b386b40edd05e8a58fac0b1b2993fe82faf95e10b53b5c0b3b464e92ea2484bc1929cb737351f3629b77a4ff67788248e19d69eb638bbf44a5e3
 WHIRLPOOL 
45e2c0fc3aab759ac1e95bc25d1983aa1c874c07595af7cb48af0e4e43b01fbe69a56c22216d0c4ba13da53c5e0172e95916e0c87bb0bb7a7630c8d631aa0152
 DIST aiohttp-1.0.1.tar.gz 498972 SHA256 
f5133431d66ef8838f40d233b0fc9e4b9e69616560cbedb89317d551dcc42e41 SHA512 
3744186d259563d21e5a7a3c5969f24178a442b1482a98d1d45e132dc4d889c55b9ff3da4394acbcca2dc9c7c78b7eb857cb2467c0faec54e11832db909760f6
 WHIRLPOOL 
cbc31efafa28e17375fc795a053878ddc6978c36926e4ce250bb06ae39f332ed1f2e4ec255a19e334bc994cd5707c2ac1ade48c4089546e432c16b8527374daf
 DIST aiohttp-1.0.2.tar.gz 499266 SHA256 
d104a8e762debc1acc3fe40dbc4f0da4cace5a797a93d59c618673b390d3947c SHA512 
94004219b8809bad26df4119512faaad7ebbc7c961fea2488f333aa580a24691752154a688e9fe224be6aeb2b769c6f101a288fec66fdf66e619756ebe98258b
 WHIRLPOOL 
7130e1ea90ef64af9bd128ae8c021e5ba2061c02b276aa81db0aabd326572ef3e68396c842cedec43d0f68ea33bce6128d3f2275909fdae3a942de90b7d3bfda

diff --git a/dev-python/aiohttp/aiohttp-0.22.4.ebuild 
b/dev-python/aiohttp/aiohttp-0.22.4.ebuild
deleted file mode 100644
index 93f0f26..
--- a/dev-python/aiohttp/aiohttp-0.22.4.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="http client/server for asyncio"
-HOMEPAGE="https://pypi.python.org/pypi/aiohttp;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-EGIT_REPO_URI="https://github.com/KeepSafe/aiohttp;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples test"
-
-CDEPEND="
-   dev-python/chardet[${PYTHON_USEDEP}]
-   >=dev-python/multidict-1.1.0[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: net-libs/rb_libtorrent/

2016-10-15 Thread Davide Pesavento
commit: 43c6bad3bcce05dd6ed996f1f49eb2283167cbb8
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sat Oct 15 23:47:41 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Oct 15 23:49:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c6bad3

net-libs/rb_libtorrent: version bump

Package-Manager: portage-2.3.2

 net-libs/rb_libtorrent/Manifest|   1 +
 net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild | 111 +
 2 files changed, 112 insertions(+)

diff --git a/net-libs/rb_libtorrent/Manifest b/net-libs/rb_libtorrent/Manifest
index dcccf65..ed9ba60 100644
--- a/net-libs/rb_libtorrent/Manifest
+++ b/net-libs/rb_libtorrent/Manifest
@@ -1,5 +1,6 @@
 DIST libtorrent-rasterbar-0.16.17.tar.gz 3018881 SHA256 
67a1d29c626d991d6e39c2f9828ca70c4053d057070ce01fff9b4ad37e64aff0 SHA512 
532b2438e24c3ecad239480a1bd6241a0d73d40f8d5bdcf61ddfcee1a41f1644c9004d4f234968efd50158224219b78852ec936a05b75b15f3442b594460cdd6
 WHIRLPOOL 
755e201741ed77cf91cb0976cbaa83c645647341d2cfe40564552599f2792ba76bd02e82a94669d80b199f1a1d6290824686d2bb52d6b0da8663d2274176f3eb
 DIST libtorrent-rasterbar-0.16.19.tar.gz 3030253 SHA256 
9ebd3fa8accfa27d0c81cdbbe15d7b411ea1deec34ac6325dec7197f05d82982 SHA512 
8e605802cb1ae80228d253adba44da6f5af39e7d65c59f65e15444ed1122500529ee068f6d3608b1c2a249f18b4de695073f7b67772fa445618757697d779340
 WHIRLPOOL 
4429d07bd95f398a09f283a7cbcf6611aeb8ac5d2b8ed76d98f89d601aa6ed66e6eb8f044b351fad6cca3606351ccc67081dba7c8dd8d9c3c433eae84aedeb2c
+DIST libtorrent-rasterbar-1.0.10.tar.gz 3324494 SHA256 
a865ceaca8b14acdd7be56d361ce4e64361299647e157ef7b3ac7e2812ca4c3e SHA512 
08976239ec12e2d67a974dadf3f16330f48e4b6de314f9d97c5fbbdbc696b76b6b1f8e20ceab6830d46d17b1bfd7e2fe4048fb1a5a97ece12c242c0cd0f7ded2
 WHIRLPOOL 
1e4ef2fb41eef0b825bd7c8c665638e3f689c3cefca3caa18a01c328caad9d31cd417fb49d25a7d55da6457a89e35a891427d70fb4f4d070c74be2e2e0347a60
 DIST libtorrent-rasterbar-1.0.7.tar.gz 3298005 SHA256 
3e16e024b175fefada17471c659fdbcfab235f9619d4f0913faa13cb02ca8d83 SHA512 
d60736af4b7c38317821810995dd9bec21688a9506e9b908394c2a1a87acd2abf23000856dedcad487b9ecc7b5680f83cfc09ff9db79af00fe21e94337daeacf
 WHIRLPOOL 
aff289e3ca85eedf688e8a898f0164a4d692e8c813b04dbae6323bc56003f5c3af862167a1d00a8bfe193dfda15d20a18a48bcbeac9313e29d6f2de35d20e621
 DIST libtorrent-rasterbar-1.0.9.tar.gz 3292886 SHA256 
11a93125ed49f796fca83da925ab7dc29e91d88b915f078caaddaaf559d63db6 SHA512 
68558d440c8220711a410e54a28316b7b98f6dd4d0dae2d56cee3a3f0bd031f8b0623a8eb3fde312c4d1b61b4be8fc21396cb3e9fd7f6d86e3a9a693ee036b66
 WHIRLPOOL 
2c2f695458fe1069d4159d308def7591bc318eed30e649bc5ad4579fef1c67d3ccabc6acfb7570ae09a9b78fe8c00f975c88d48231b9db71e714672e1043d1f5
 DIST rb_libtorrent-1.0.9.tar.gz 2977503 SHA256 
f4eadcbc779edc590d0162b0188c1b179d2cc72519c3756989ef925e376ddecd SHA512 
0980ebb5567310ad6f235899770cfc7a23ef754f5a8513e1baa8bbec139ff26006a6b47a1cca62e45da496b901c6646eee3dd76ab4bb5410ce3fc119e717c072
 WHIRLPOOL 
7c6862d9d4fbc27d6de04cba8ac605dbffafcf1b26a3519bc94964727416655450b74cb62928f27fa568dcc163c8a599ca78f080a86171b6e1283d9b794924b8

diff --git a/net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild 
b/net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild
new file mode 100644
index ..b63751a
--- /dev/null
+++ b/net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_REQ_USE="threads"
+DISTUTILS_OPTIONAL=true
+DISTUTILS_IN_SOURCE_BUILD=true
+
+inherit distutils-r1 eutils versionator
+
+MY_P=libtorrent-rasterbar-${PV} # TODO: rename, bug 576126
+MY_PV=$(replace_all_version_separators _)
+
+DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
+HOMEPAGE="http://libtorrent.org;
+SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_PV}/${MY_P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0/8"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="debug +dht doc examples +geoip libressl python +ssl static-libs test"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   dev-libs/boost:=[threads]
+   virtual/libiconv
+   examples? ( !net-p2p/mldonkey )
+   geoip? ( dev-libs/geoip )
+   python? (
+   ${PYTHON_DEPS}
+   dev-libs/boost:=[python,${PYTHON_USEDEP}]
+   )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   )
+"
+DEPEND="${RDEPEND}
+   sys-devel/libtool
+"
+
+S=${WORKDIR}/${MY_P}
+
+PATCHES=( "${FILESDIR}/${PN}-1.0.9-test_torrent_parse.patch" )
+
+src_prepare() {
+   default
+
+   # bug 578026
+   # prepend -L${S}/... to ensure bindings link against the lib we just 
built
+   sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/compile_flags.in || 
die
+
+

[gentoo-commits] repo/gentoo:master commit in: net-libs/rb_libtorrent/

2016-10-15 Thread Davide Pesavento
commit: 27fb8c64f6181eadf56c95dfd80d191d76d6807f
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sat Oct 15 23:49:35 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Oct 15 23:49:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27fb8c64

net-libs/rb_libtorrent: remove old

Package-Manager: portage-2.3.2

 net-libs/rb_libtorrent/Manifest|   1 -
 .../rb_libtorrent/rb_libtorrent-1.0.9-r1.ebuild| 103 -
 2 files changed, 104 deletions(-)

diff --git a/net-libs/rb_libtorrent/Manifest b/net-libs/rb_libtorrent/Manifest
index ed9ba60..8a441a2 100644
--- a/net-libs/rb_libtorrent/Manifest
+++ b/net-libs/rb_libtorrent/Manifest
@@ -3,4 +3,3 @@ DIST libtorrent-rasterbar-0.16.19.tar.gz 3030253 SHA256 
9ebd3fa8accfa27d0c81cdbb
 DIST libtorrent-rasterbar-1.0.10.tar.gz 3324494 SHA256 
a865ceaca8b14acdd7be56d361ce4e64361299647e157ef7b3ac7e2812ca4c3e SHA512 
08976239ec12e2d67a974dadf3f16330f48e4b6de314f9d97c5fbbdbc696b76b6b1f8e20ceab6830d46d17b1bfd7e2fe4048fb1a5a97ece12c242c0cd0f7ded2
 WHIRLPOOL 
1e4ef2fb41eef0b825bd7c8c665638e3f689c3cefca3caa18a01c328caad9d31cd417fb49d25a7d55da6457a89e35a891427d70fb4f4d070c74be2e2e0347a60
 DIST libtorrent-rasterbar-1.0.7.tar.gz 3298005 SHA256 
3e16e024b175fefada17471c659fdbcfab235f9619d4f0913faa13cb02ca8d83 SHA512 
d60736af4b7c38317821810995dd9bec21688a9506e9b908394c2a1a87acd2abf23000856dedcad487b9ecc7b5680f83cfc09ff9db79af00fe21e94337daeacf
 WHIRLPOOL 
aff289e3ca85eedf688e8a898f0164a4d692e8c813b04dbae6323bc56003f5c3af862167a1d00a8bfe193dfda15d20a18a48bcbeac9313e29d6f2de35d20e621
 DIST libtorrent-rasterbar-1.0.9.tar.gz 3292886 SHA256 
11a93125ed49f796fca83da925ab7dc29e91d88b915f078caaddaaf559d63db6 SHA512 
68558d440c8220711a410e54a28316b7b98f6dd4d0dae2d56cee3a3f0bd031f8b0623a8eb3fde312c4d1b61b4be8fc21396cb3e9fd7f6d86e3a9a693ee036b66
 WHIRLPOOL 
2c2f695458fe1069d4159d308def7591bc318eed30e649bc5ad4579fef1c67d3ccabc6acfb7570ae09a9b78fe8c00f975c88d48231b9db71e714672e1043d1f5
-DIST rb_libtorrent-1.0.9.tar.gz 2977503 SHA256 
f4eadcbc779edc590d0162b0188c1b179d2cc72519c3756989ef925e376ddecd SHA512 
0980ebb5567310ad6f235899770cfc7a23ef754f5a8513e1baa8bbec139ff26006a6b47a1cca62e45da496b901c6646eee3dd76ab4bb5410ce3fc119e717c072
 WHIRLPOOL 
7c6862d9d4fbc27d6de04cba8ac605dbffafcf1b26a3519bc94964727416655450b74cb62928f27fa568dcc163c8a599ca78f080a86171b6e1283d9b794924b8

diff --git a/net-libs/rb_libtorrent/rb_libtorrent-1.0.9-r1.ebuild 
b/net-libs/rb_libtorrent/rb_libtorrent-1.0.9-r1.ebuild
deleted file mode 100644
index 6a517b9..
--- a/net-libs/rb_libtorrent/rb_libtorrent-1.0.9-r1.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads"
-DISTUTILS_OPTIONAL=true
-DISTUTILS_IN_SOURCE_BUILD=true
-
-inherit autotools distutils-r1 versionator
-
-MY_PV=$(replace_all_version_separators '_' )
-S=${WORKDIR}/libtorrent-libtorrent-${MY_PV}
-
-DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
-HOMEPAGE="http://libtorrent.org;
-SRC_URI="https://github.com/arvidn/libtorrent/archive/libtorrent-${MY_PV}.tar.gz
 -> rb_libtorrent-${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="debug +dht doc examples python +ssl static-libs test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   >=dev-libs/boost-1.53:=[threads]
-   sys-libs/zlib
-   virtual/libiconv
-   examples? ( !net-p2p/mldonkey )
-   ssl? ( dev-libs/openssl:0= )
-   python? (
-   ${PYTHON_DEPS}
-   dev-libs/boost:=[python,${PYTHON_USEDEP}]
-   )"
-DEPEND="${RDEPEND}
-   >=sys-devel/libtool-2.2"
-
-RESTRICT="test"
-
-src_prepare() {
-   default
-
-   # make sure lib search dir points to the main `S` dir and not to python 
copies
-   sed -i "s|-L[^ ]*/src/\.libs|-L${S}/src/.libs|" \
-   -- 'bindings/python/link_flags.in' || die
-
-   # needed or else eautoreconf fails
-   mkdir build-aux && cp {m4,build-aux}/config.rpath || die
-
-   eautoreconf
-
-   use python && python_copy_sources
-}
-
-src_configure() {
-   local myeconfargs=(
-   --disable-silent-rules # bug 441842
-   --with-boost-system=mt
-   --with-libiconv
-   $(use_enable debug)
-   $(usex debug "--enable-logging=verbose" "")
-   $(use_enable dht)
-   $(use_enable examples)
-   $(use_enable ssl encryption)
-   $(use_enable static-libs static)
-   $(use_enable test tests)
-   )
-   econf "${myeconfargs[@]}"
-
-   python_configure() {
-   local myeconfargs+=(
-   --enable-python-binding
-   --with-boost-python=yes
-   )

[gentoo-commits] repo/gentoo:master commit in: x11-libs/libnotify/

2016-10-15 Thread Gilles Dartiguelongue
commit: 90dc680d120c004291b8969a724503b6907d8ab6
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 23:33:09 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 23:35:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90dc680d

x11-libs/libnotify: drop unneeded src_prepare steps, switch to EAPI=6

Package-Manager: portage-2.3.1

 x11-libs/libnotify/libnotify-0.7.7.ebuild | 17 +++--
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/x11-libs/libnotify/libnotify-0.7.7.ebuild 
b/x11-libs/libnotify/libnotify-0.7.7.ebuild
index 0c6b8bd..461066d 100644
--- a/x11-libs/libnotify/libnotify-0.7.7.ebuild
+++ b/x11-libs/libnotify/libnotify-0.7.7.ebuild
@@ -2,8 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-inherit autotools eutils gnome.org multilib-minimal xdg-utils
+EAPI=6
+
+inherit gnome.org multilib-minimal xdg-utils
 
 DESCRIPTION="A library for sending desktop notifications"
 HOMEPAGE="https://git.gnome.org/browse/libnotify;
@@ -28,20 +29,16 @@ DEPEND="${RDEPEND}
 PDEPEND="virtual/notification-daemon"
 
 src_prepare() {
+   default
xdg_environment_reset
-   sed -i -e 's:noinst_PROG:check_PROG:' tests/Makefile.am || die
-
-   if ! use test; then
-   sed -i -e '/PKG_CHECK_MODULES(TESTS/d' configure.ac || die
-   fi
-
-   eautoreconf
 }
 
 multilib_src_configure() {
ECONF_SOURCE=${S} econf \
+   --disable-gtk-doc \
--disable-static \
-   $(multilib_native_use_enable introspection)
+   $(multilib_native_use_enable introspection) \
+   $(use_enable test tests)
 
# work-around gtk-doc out-of-source brokedness
if multilib_is_native_abi; then



[gentoo-commits] repo/user/ssnb:master commit in: dev-ruby/sequel/

2016-10-15 Thread Samuel Bernardo
commit: 780739304da6fffd305ddd41dfe16cd1403e6912
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sat Oct 15 23:34:39 2016 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sat Oct 15 23:34:39 2016 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=78073930

add dev-ruby/sequel

 dev-ruby/sequel/ChangeLog|  6 ++
 dev-ruby/sequel/Manifest |  4 
 dev-ruby/sequel/metadata.xml |  5 +
 dev-ruby/sequel/sequel-4.39.0.ebuild | 23 +++
 4 files changed, 38 insertions(+)

diff --git a/dev-ruby/sequel/ChangeLog b/dev-ruby/sequel/ChangeLog
new file mode 100644
index 000..befc9f9
--- /dev/null
+++ b/dev-ruby/sequel/ChangeLog
@@ -0,0 +1,6 @@
+# ChangeLog for dev-ruby/sequel
+# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  15 Oct 2016; Samuel Bernardo  
sequel-4.39.0.ebuild:
+  [dev-ruby/sequel] Add sequel 4.39.0.

diff --git a/dev-ruby/sequel/Manifest b/dev-ruby/sequel/Manifest
new file mode 100644
index 000..636c31d
--- /dev/null
+++ b/dev-ruby/sequel/Manifest
@@ -0,0 +1,4 @@
+DIST sequel-4.39.0.gem 1374720 SHA256 
6f9d8092630090f84c402e6545486240c17b651933a465ce5b70f314ab69f807 SHA512 
8b262bd1df68c5e28706cdf769fc4f43e4474142ce58598b2e0bc0f0ea2f1591f8907de1b69a2b33cc3887f4e3ca93156675d1f94feb69dd4899257a12d8ee4d
 WHIRLPOOL 
db6d3e76bc5140a38db939cddc2493a9dba7e85e45c0b79cd71b51329f28ba4caacf2fe19bd99714cf621a299972c25b432309f41182a0e3d51d84199717212b
+EBUILD sequel-4.39.0.ebuild 460 SHA256 
3b7ed35a59950a72028d82058e00e7cc196181978a2dd2968c1de3b06bed1ff6 SHA512 
2aaea09d6241f2d15b69eab0a07cbe7e83664d176cb5ed2d3116c920c482e5a19100ce010faaafae19e5a713e491730049ec00325facb8c1f5fbb84e025c
 WHIRLPOOL 
7c1068beeaeeb0a955057719180b54cfba370621e0c7aa1c9c811b695b5f1fe52aa3c8df13e30d1d6c4556576fa1278790b09fa0358f1b8a95e4b75fa220ba21
+MISC ChangeLog 240 SHA256 
98bfffd830c3140f36b37e7925b6328258026a45a6a8572fc6659e72f422d683 SHA512 
bf29901c30e178c70538b8778f5f6a57cbd58cdae4d72a315dec74587d840acba0847e7b483cbe64379e44737849110191744c8d669a4a8ceb8e006b3dcfed26
 WHIRLPOOL 
6d4f780e7252431d7b9a6372310dbf07e4cd85d81456947a15ad2a88d6dc02af35b08cb83f1fa83a71f252319fba306707949dac59e948466e4f5e1cca244ad4
+MISC metadata.xml 157 SHA256 
11fba03a217e2d996f5cd8895493a5692ece8ddac2c1a2dfc71d0e830555121c SHA512 
0cec73b966de88015ea4c7212723d848d367608aa93658bb945f298a8000c4ba8aba73c9eb8481859fb5bbed45e80dae32c628caf81e027a4ad8eafa7e632851
 WHIRLPOOL 
4da25c81e21173ad8b7b5f35b056264869d9a16741062aa4422c5ea1aa9e73da8eb700b0d54de84c169d702fbb3f41ed157c9dc7c9daac110849ae84715c051b

diff --git a/dev-ruby/sequel/metadata.xml b/dev-ruby/sequel/metadata.xml
new file mode 100644
index 000..8521361
--- /dev/null
+++ b/dev-ruby/sequel/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+ruby
+

diff --git a/dev-ruby/sequel/sequel-4.39.0.ebuild 
b/dev-ruby/sequel/sequel-4.39.0.ebuild
new file mode 100644
index 000..5fddccd
--- /dev/null
+++ b/dev-ruby/sequel/sequel-4.39.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_TASK_TEST="spec"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A lightweight database toolkit for Ruby"
+HOMEPAGE="http://sequel.rubyforge.org;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/rspec )"



[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: scripts/

2016-10-15 Thread Anthony G. Basile
commit: ed2a0c2e8f1f7c11bb29cbb9cf5092a7470db0a0
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 23:25:46 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 23:25:46 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=ed2a0c2e

scripts/cycle.2.sh: remove package.accept_keywords from tarball

 scripts/cycle.2.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/cycle.2.sh b/scripts/cycle.2.sh
index afb709c..a283ccb 100644
--- a/scripts/cycle.2.sh
+++ b/scripts/cycle.2.sh
@@ -12,6 +12,7 @@ emerge -b1q musl
 
 # This is from the tarball.
 rm -rf /etc/portage/package.use
+rm -rf /etc/portage/package.accept_keywords
 
 install-worldconf
 emerge -bevq --keep-going --verbose-conflicts --with-bdeps=y @world



[gentoo-commits] repo/gentoo:master commit in: net-p2p/qbittorrent/

2016-10-15 Thread Davide Pesavento
commit: c848eb07e14500e78a563287452ca17eed32bed2
Author: Lorenzo Porta  outlook  it>
AuthorDate: Sat Sep 17 13:49:22 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Oct 15 23:17:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c848eb07

net-p2p/qbittorrent: remove old

 net-p2p/qbittorrent/Manifest |  1 -
 net-p2p/qbittorrent/qbittorrent-3.3.3.ebuild | 85 
 2 files changed, 86 deletions(-)

diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest
index f20d075..93be18e 100644
--- a/net-p2p/qbittorrent/Manifest
+++ b/net-p2p/qbittorrent/Manifest
@@ -1,5 +1,4 @@
 DIST qbittorrent-3.1.12.tar.xz 2465744 SHA256 
d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83 SHA512 
af7cbb1a3158cd1fd6c28f17f1dbb62d94c9d192068b5a683b6b0e19e43664f3d312da055c5c19de75b5849c812b7aa9a0c966a7e464c120e0006bb1ea5a6e5a
 WHIRLPOOL 
632fabec4c33104e55c73433028923033e65f37624aba37649e4f6f5593038fa9868e48787db7b1659690456835fc55dc542510d2f60732c66452d3c748508bf
 DIST qbittorrent-3.1.9.2.tar.xz 2231708 SHA256 
b07ccdbe1ae079f781c62aff21d47183ae35a8d4e96f43f90503978d1830a361 SHA512 
8437fb695fb720132d131e44727c28af46c651576d5321423142c190120c59cc6439f5df2e90486274956d253db657fcbd217a834e3ca53d7681919fee7a2504
 WHIRLPOOL 
e4b00027a57fbce49a9ddcaf6e60fccfabb65393531620afa0416249148e9e17d43398a1016fcf04695d0fa7d0a7b970e5beee0a4ab4e6ff06e6f8c23c90154f
-DIST qbittorrent-3.3.3.tar.xz 2782616 SHA256 
9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53 SHA512 
2dd954e2518a2a99e271bf62d6db38a4e1788bb91c8b7552b94aab25dfb7b6cc7b4eb0ae49bb50d524127e8a357ea07b022c3a6e3b0593f6d2e7a2ce3abf6260
 WHIRLPOOL 
e794a50215f33c2088b4782fd8733e11c33b42a45b5df2424bdf0fcee3c0929445f0d47b1e8b3526341f4ee9a4b8cd081da54a0c3019f79dea9b50a3bb5dcbad
 DIST qbittorrent-3.3.4.tar.xz 2841268 SHA256 
c0d0d4b72c240f113b59a061146803bc1b7926d3d7f39b06b50a4d26f5ad91b8 SHA512 
5cb94b6463d4baa1a994bee7dd5f9aee823d86d5428aff2719011b5f5340db5aaf35436f4f3be7c773e5560eb5f8ea12ea889505bfd40071401dd7ebf9835ec1
 WHIRLPOOL 
4406703fc459c9115e1d2e04e2a6a69149f7359fabaab284001bd1fec9fbd21c0aadca6836562d09d80390abf42388c864f6bc206080ee50f9c8ab4b80cca4e8
 DIST qbittorrent-3.3.7.tar.xz 2884792 SHA256 
72dc824a90fadc0825e6be6f1c215e38f976262c7f83b625061d542b2b664c40 SHA512 
c33ae47bd78e79197fd499e9541ce20a30c0ee582c6696f72b792a46324a42bffbe2140f6dcb89c05d9366b7332845e108c661c0458e94ca5739cfc71be4dafc
 WHIRLPOOL 
753efd5e30c725d77e241bfc4cee63f089109b4a85bab5224e5445d141605c07bb8873531245d17f577252ae1d90041457848e9290ecb2384d96f2a20bbf6f66

diff --git a/net-p2p/qbittorrent/qbittorrent-3.3.3.ebuild 
b/net-p2p/qbittorrent/qbittorrent-3.3.3.ebuild
deleted file mode 100644
index 786574f..
--- a/net-p2p/qbittorrent/qbittorrent-3.3.3.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# 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} )
-
-inherit eutils python-r1 qt4-r2 flag-o-matic
-
-DESCRIPTION="BitTorrent client in C++ and Qt"
-HOMEPAGE="http://www.qbittorrent.org/;
-
-MY_P=${P/_}
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git;
-else
-   SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+dbus debug qt4 +qt5 webui +X"
-REQUIRED_USE="
-   ^^ ( qt4 qt5 )
-   dbus? ( X )
-"
-
-CDEPEND="
-   dev-libs/boost:=
-   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt4?,qt5?,X?]
-   >=net-libs/rb_libtorrent-1.0.6
-   sys-libs/zlib
-   qt4? (
-   dev-qt/qtcore:4
-   dbus? ( dev-qt/qtdbus:4 )
-   X? ( dev-qt/qtgui:4 )
-   )
-   qt5? (
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtxml:5
-   dbus? ( dev-qt/qtdbus:5 )
-   X? ( dev-qt/qtgui:5
-   dev-qt/qtwidgets:5 )
-   )
-"
-DEPEND="${CDEPEND}
-   qt5? ( dev-qt/linguist-tools:5 )
-   virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-   ${PYTHON_DEPS}"
-
-S=${WORKDIR}/${MY_P}
-DOCS=(AUTHORS Changelog README.md TODO)
-
-src_prepare() {
-   epatch_user
-   qt4-r2_src_prepare
-}
-
-src_configure() {
-   # See bug 569062
-   append-cppflags "-DBOOST_NO_CXX11_REF_QUALIFIERS"
-
-   # Custom configure script, econf fails
-   local myconf=(
-   ./configure
-   --prefix="${EPREFIX}/usr"
-   --with-qtsingleapplication=system
-   $(use dbus  || echo --disable-qt-dbus)
-   $(use debug && echo --enable-debug)
-   $(use qt4   && echo --with-qt4)
-   $(use webui || echo --disable-webui)
-   $(use X || echo --disable-gui)
-   )
-
- 

[gentoo-commits] repo/gentoo:master commit in: net-p2p/qbittorrent/

2016-10-15 Thread Davide Pesavento
commit: f2e28b9db6bafd7cce980ca2312cd7af392d60be
Author: Lorenzo Porta  outlook  it>
AuthorDate: Sat Sep 17 13:48:50 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Oct 15 23:17:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2e28b9d

net-p2p/qbittorrent: version bump

 net-p2p/qbittorrent/Manifest |  1 +
 net-p2p/qbittorrent/qbittorrent-3.3.7.ebuild | 87 
 2 files changed, 88 insertions(+)

diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest
index aa28aba..f20d075 100644
--- a/net-p2p/qbittorrent/Manifest
+++ b/net-p2p/qbittorrent/Manifest
@@ -2,3 +2,4 @@ DIST qbittorrent-3.1.12.tar.xz 2465744 SHA256 
d5d5b27958297f0b14cf03af8dd24a0d2a
 DIST qbittorrent-3.1.9.2.tar.xz 2231708 SHA256 
b07ccdbe1ae079f781c62aff21d47183ae35a8d4e96f43f90503978d1830a361 SHA512 
8437fb695fb720132d131e44727c28af46c651576d5321423142c190120c59cc6439f5df2e90486274956d253db657fcbd217a834e3ca53d7681919fee7a2504
 WHIRLPOOL 
e4b00027a57fbce49a9ddcaf6e60fccfabb65393531620afa0416249148e9e17d43398a1016fcf04695d0fa7d0a7b970e5beee0a4ab4e6ff06e6f8c23c90154f
 DIST qbittorrent-3.3.3.tar.xz 2782616 SHA256 
9c8d8bdc3fb2632019cb3ee5f811baaa41b41fe7ce542c753c6771bcc110db53 SHA512 
2dd954e2518a2a99e271bf62d6db38a4e1788bb91c8b7552b94aab25dfb7b6cc7b4eb0ae49bb50d524127e8a357ea07b022c3a6e3b0593f6d2e7a2ce3abf6260
 WHIRLPOOL 
e794a50215f33c2088b4782fd8733e11c33b42a45b5df2424bdf0fcee3c0929445f0d47b1e8b3526341f4ee9a4b8cd081da54a0c3019f79dea9b50a3bb5dcbad
 DIST qbittorrent-3.3.4.tar.xz 2841268 SHA256 
c0d0d4b72c240f113b59a061146803bc1b7926d3d7f39b06b50a4d26f5ad91b8 SHA512 
5cb94b6463d4baa1a994bee7dd5f9aee823d86d5428aff2719011b5f5340db5aaf35436f4f3be7c773e5560eb5f8ea12ea889505bfd40071401dd7ebf9835ec1
 WHIRLPOOL 
4406703fc459c9115e1d2e04e2a6a69149f7359fabaab284001bd1fec9fbd21c0aadca6836562d09d80390abf42388c864f6bc206080ee50f9c8ab4b80cca4e8
+DIST qbittorrent-3.3.7.tar.xz 2884792 SHA256 
72dc824a90fadc0825e6be6f1c215e38f976262c7f83b625061d542b2b664c40 SHA512 
c33ae47bd78e79197fd499e9541ce20a30c0ee582c6696f72b792a46324a42bffbe2140f6dcb89c05d9366b7332845e108c661c0458e94ca5739cfc71be4dafc
 WHIRLPOOL 
753efd5e30c725d77e241bfc4cee63f089109b4a85bab5224e5445d141605c07bb8873531245d17f577252ae1d90041457848e9290ecb2384d96f2a20bbf6f66

diff --git a/net-p2p/qbittorrent/qbittorrent-3.3.7.ebuild 
b/net-p2p/qbittorrent/qbittorrent-3.3.7.ebuild
new file mode 100644
index ..70a4b96
--- /dev/null
+++ b/net-p2p/qbittorrent/qbittorrent-3.3.7.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit flag-o-matic qmake-utils
+
+DESCRIPTION="BitTorrent client in C++ and Qt"
+HOMEPAGE="http://www.qbittorrent.org/;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git;
+else
+   MY_P=${P/_}
+   SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
+   KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+   S=${WORKDIR}/${MY_P}
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+dbus debug +qt5 webui +X"
+REQUIRED_USE="
+   dbus? ( X )
+"
+
+RDEPEND="
+   dev-libs/boost:=
+   >=net-libs/rb_libtorrent-1.0.6
+   sys-libs/zlib
+   !qt5? (
+   >=dev-libs/qjson-0.8.1[qt4(+)]
+   dev-qt/qtcore:4[ssl]
+   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt4,X?]
+   dbus? ( dev-qt/qtdbus:4 )
+   X? ( dev-qt/qtgui:4 )
+   )
+   qt5? (
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtnetwork:5[ssl]
+   >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5,X?]
+   dev-qt/qtxml:5
+   dbus? ( dev-qt/qtdbus:5 )
+   X? (
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   )
+   )
+"
+DEPEND="${RDEPEND}
+   qt5? ( dev-qt/linguist-tools:5 )
+   virtual/pkgconfig
+"
+
+DOCS=(AUTHORS Changelog CONTRIBUTING.md README.md TODO)
+
+src_configure() {
+   # workaround build issue with older boost
+   # https://github.com/qbittorrent/qBittorrent/issues/4112
+   if has_version '

[gentoo-commits] dev/mrueg:master commit in: app-editors/gobby/

2016-10-15 Thread Manuel Rüger
commit: 75ad64ca394f6e80fd94d0b5e9900df255b9d5d3
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 22:43:24 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 22:43:24 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=75ad64ca

app-editors/gobby: Fix useflag constraints

Package-Manager: portage-2.3.2

 app-editors/gobby/gobby-0.5.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-editors/gobby/gobby-0.5.0.ebuild 
b/app-editors/gobby/gobby-0.5.0.ebuild
index 6be4d95..4d2216b 100644
--- a/app-editors/gobby/gobby-0.5.0.ebuild
+++ b/app-editors/gobby/gobby-0.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,12 +12,12 @@ 
SRC_URI="https://github.com/gobby/gobby/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="ISC"
 SLOT="0.5"
 KEYWORDS="~amd64 ~x86"
-IUSE="avahi doc nls"
+IUSE="zeroconf doc nls"
 
 RDEPEND="dev-cpp/glibmm:2
dev-cpp/gtkmm:3.0
dev-libs/libsigc++:2
-   >=net-libs/libinfinity-0.6.1[gtk,avahi?]
+   >=net-libs/libinfinity-0.6.1[gtk,zeroconf?]
x11-libs/gtk+:3
dev-cpp/libxmlpp:2.6
x11-libs/gtksourceview:3.0"



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/sentry-raven/

2016-10-15 Thread Manuel Rüger
commit: 26b74912ca41e6369bef4460c004b3d4a4315694
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 22:36:27 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 22:36:27 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=26b74912

dev-ruby/sentry-raven: Version bump, remove old

Package-Manager: portage-2.3.2

 dev-ruby/sentry-raven/Manifest  | 2 +-
 .../{sentry-raven-1.1.0.ebuild => sentry-raven-2.0.2.ebuild}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/sentry-raven/Manifest b/dev-ruby/sentry-raven/Manifest
index fc8c10a..cb3232b 100644
--- a/dev-ruby/sentry-raven/Manifest
+++ b/dev-ruby/sentry-raven/Manifest
@@ -1 +1 @@
-DIST sentry-raven-1.1.0.tar.gz 72736 SHA256 
c501e4eb38532031dbcef1e3faead3ffb8544cf07adfbbad070b612ce8c59117 SHA512 
2d6f8069608a25f5a0a2b1ac9d0a5585dd85a56b450271d7d6e44ae5c67f07c3cb28f1157c9febe1a00f543c105e8e12659393a3778b585c768c65fc5d5f2220
 WHIRLPOOL 
51d9ccae47482e3ad2907b76b4df15fe8a97e63f4b50a1896453b587161f8fb50f4cee8d51a50824ca7c60b61beb192c65f65fa22a90cd72bc99e66f2921e40a
+DIST sentry-raven-2.0.2.tar.gz 87459 SHA256 
be536a2eee9aa1091e0bbb855ffbca35f27ca15364605f7e5b1701d42f5a2e6d SHA512 
abfb2fa3b682e0b0c53e9bfa07d638d41cb0a44ec6a1f5de43f9ee0e29b18681a7c2dc30ba507c475b84f75e69c868bef433d44fb9bdc33623f2ed187a5489a6
 WHIRLPOOL 
5d027b1e9b2f2efa5f33aaed7b296241698c28076d94f17798700011e2f16b3bacd60a7095813a536227e67692d389754d19121ab2b997d1cc7821691873962c

diff --git a/dev-ruby/sentry-raven/sentry-raven-1.1.0.ebuild 
b/dev-ruby/sentry-raven/sentry-raven-2.0.2.ebuild
similarity index 89%
rename from dev-ruby/sentry-raven/sentry-raven-1.1.0.ebuild
rename to dev-ruby/sentry-raven/sentry-raven-2.0.2.ebuild
index 640fb7d..5658467 100644
--- a/dev-ruby/sentry-raven/sentry-raven-1.1.0.ebuild
+++ b/dev-ruby/sentry-raven/sentry-raven-2.0.2.ebuild
@@ -13,7 +13,7 @@ inherit ruby-fakegem
 
 DESCRIPTION="A gem that provides a client interface for the Sentry error 
logger"
 HOMEPAGE="https://github.com/getsentry/raven-ruby 
https://rubygems.org/gems/sentry-raven;
-SRC_URI="https://github.com/getsentry/raven-ruby/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/getsentry/raven-ruby/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/azure-core/

2016-10-15 Thread Manuel Rüger
commit: 2004d17f888f787feceb4e122aba8144519003f5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 22:31:48 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 22:31:48 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=2004d17f

dev-ruby/azure-core: Initial version

Package-Manager: portage-2.3.2

 dev-ruby/azure-core/Manifest|  1 +
 dev-ruby/azure-core/azure-core-0.1.5.ebuild | 26 ++
 dev-ruby/azure-core/metadata.xml|  8 
 3 files changed, 35 insertions(+)

diff --git a/dev-ruby/azure-core/Manifest b/dev-ruby/azure-core/Manifest
new file mode 100644
index 000..62c9f3a
--- /dev/null
+++ b/dev-ruby/azure-core/Manifest
@@ -0,0 +1 @@
+DIST azure-core-0.1.5.gem 17408 SHA256 
833d90535793ee18be5e76a14ab4d7886d10f1c955208ce3f4fd8000e6503662 SHA512 
99781d32bcd59fb2a3f534e32122f93a87a43c9b15a9870581c8d0a8b83f81dcd88d07a63813c621ab9ed93e35f4e09a901efa122a9cd94b6592bd6d66fe
 WHIRLPOOL 
a7af3780033063f3a6e0dd62f5e77fb714933261c880dad2f7623cc5bf5ee94b35ad9652f45b4885da6e758269800f04f5bbc2e1352a2e09e5fd004948415ed8

diff --git a/dev-ruby/azure-core/azure-core-0.1.5.ebuild 
b/dev-ruby/azure-core/azure-core-0.1.5.ebuild
new file mode 100644
index 000..383ceb1
--- /dev/null
+++ b/dev-ruby/azure-core/azure-core-0.1.5.ebuild
@@ -0,0 +1,26 @@
+# 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=""
+RUBY_FAKEGEM_TASK_TEST=""
+inherit ruby-fakegem
+
+DESCRIPTION="Microsoft Azure Client Core Library for Ruby SDK"
+HOMEPAGE="https://rubygems.org/gems/azure-core 
http://github.com/Azure/azure-ruby-asm-core;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/faraday-0.9
+   =dev-ruby/faraday_middleware-0.10
+   =dev-ruby/nokogiri-1.6
+   
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/truncato/

2016-10-15 Thread Manuel Rüger
commit: 1f2b05ec0b31a01dccf19a33bd7670138a4813c1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 22:16:45 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 22:16:45 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=1f2b05ec

dev-ruby/truncato: Initial version

Package-Manager: portage-2.3.2

 dev-ruby/truncato/Manifest  |  1 +
 dev-ruby/truncato/metadata.xml  |  8 
 dev-ruby/truncato/truncato-0.7.8.ebuild | 25 +
 3 files changed, 34 insertions(+)

diff --git a/dev-ruby/truncato/Manifest b/dev-ruby/truncato/Manifest
new file mode 100644
index 000..46c46db
--- /dev/null
+++ b/dev-ruby/truncato/Manifest
@@ -0,0 +1 @@
+DIST truncato-0.7.8.gem 8704 SHA256 
a5b2a36441c561c55786ba958dd9d3a5ad4974adf64892740d51bb5bc5e7cf26 SHA512 
0f5c832ad3247662d3ac0ef957dfe0e16784ca6596b5e5deda1aa7f377ba0cc336099f6693090da5685c06cab68377f6ee7f644ed5d053dd78125a4f04c0a7f2
 WHIRLPOOL 
3910775d1fce1f57cd2048dfcb3fa5cd35c2b8c306a0894f5a4f648325999b2816559cdc7839dff9862981ab7e0182f7e21c9c59c8dc9739a4fd126a7bbf1e70

diff --git a/dev-ruby/truncato/metadata.xml b/dev-ruby/truncato/metadata.xml
new file mode 100644
index 000..97df2a0
--- /dev/null
+++ b/dev-ruby/truncato/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+

diff --git a/dev-ruby/truncato/truncato-0.7.8.ebuild 
b/dev-ruby/truncato/truncato-0.7.8.ebuild
new file mode 100644
index 000..ecade5c
--- /dev/null
+++ b/dev-ruby/truncato/truncato-0.7.8.ebuild
@@ -0,0 +1,25 @@
+# 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_TEST=""
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby tool for truncating HTML strings keeping a valid HTML markup"
+HOMEPAGE="https://github.com/jorgemanrubia/truncato 
https://rubygems.org/gems/truncato;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/htmlentities-4.3.1
+   =dev-ruby/nokogiri-1.6.1
+   

[gentoo-commits] dev/mrueg:master commit in: dev-ruby/acts-as-taggable-on/

2016-10-15 Thread Manuel Rüger
commit: bfe29ba9fbe4f4778a7e2fb2d4ceb9222407ce6a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 22:09:38 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 22:09:38 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=bfe29ba9

dev-ruby/acts-as-taggable-on: Version bump, remove old

Package-Manager: portage-2.3.2

 dev-ruby/acts-as-taggable-on/Manifest   | 2 +-
 ...cts-as-taggable-on-3.5.0.ebuild => acts-as-taggable-on-4.0.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/acts-as-taggable-on/Manifest 
b/dev-ruby/acts-as-taggable-on/Manifest
index 4632ffe..1df4547 100644
--- a/dev-ruby/acts-as-taggable-on/Manifest
+++ b/dev-ruby/acts-as-taggable-on/Manifest
@@ -1 +1 @@
-DIST acts-as-taggable-on-3.5.0.gem 49152 SHA256 
27dfb17d01ed056c5d28b54142d356bac55953ce66259fa0fad28d4b1bfae02f SHA512 
67086dd2b359d6f6d11a4c5ad319a6137030231a2515ef023b70e758d4274cfece06facd87e1f4cf31c777404a601c493dde0fe402af2a463dc27bb2f129fc8a
 WHIRLPOOL 
27f6c76a8184eaa4e3199aeb3b06c61014e76c84a60e6fb179b27f0ec9cb1a985365a6ac2462b217a2fc814312543bbd5fd72122b6078570ee220aab697eaa38
+DIST acts-as-taggable-on-4.0.0.gem 50176 SHA256 
7a9443fe203c7877f0ce4511bc3bcaf711358a2ad8efd7fe324ee64de0175ec0 SHA512 
1a858d4d0b6b665f0fc04abdedc8c8b92af47ae3b768c7738d7d4d4601c02a67bdfd25cf3dcafd3f4393f2d60a8b9817dbca50e0b79f3108df79bdfcfa42b0ca
 WHIRLPOOL 
d2338e75eb4ae2f41f82868fec7098b4e99456ff408f3b8c29e4cd68e95df841d9e4fff8309956772a60a4f2374b7597742ccf331c9c8ecac1754aa933c871a6

diff --git a/dev-ruby/acts-as-taggable-on/acts-as-taggable-on-3.5.0.ebuild 
b/dev-ruby/acts-as-taggable-on/acts-as-taggable-on-4.0.0.ebuild
similarity index 100%
rename from dev-ruby/acts-as-taggable-on/acts-as-taggable-on-3.5.0.ebuild
rename to dev-ruby/acts-as-taggable-on/acts-as-taggable-on-4.0.0.ebuild



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/mail_room/

2016-10-15 Thread Manuel Rüger
commit: 0e171454ceb8bfef53f60bd39c0cc6f7d6e9f06c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 22:06:13 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 22:06:13 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=0e171454

dev-ruby/mail_room: Version bump to 0.8.1

Package-Manager: portage-2.3.2

 dev-ruby/mail_room/Manifest   | 2 +-
 dev-ruby/mail_room/{mail_room-0.8.0.ebuild => mail_room-0.8.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/mail_room/Manifest b/dev-ruby/mail_room/Manifest
index 584730e..216d848 100644
--- a/dev-ruby/mail_room/Manifest
+++ b/dev-ruby/mail_room/Manifest
@@ -1 +1 @@
-DIST mail_room-0.8.0.gem 20992 SHA256 
e055f46391b1d16efd6d6d404595d37f0cfc92028b1f9d6fbf0f66f305914a02 SHA512 
c73428107934dc00132439411ed67fdde4ea6bd765c4bcd883b50b0ae13853ac9ea282e781eaf76a2d983c5b43d86f7bb7f462909cf7730adc6247a1109416e9
 WHIRLPOOL 
fba8f659355ee473c61a4735db806f4452b77a4fc247fe1a9d39310b08254518c4c361f597da6e29fcc3e7b2d783e2517d95b2a9dd0b494ec1d0e112bf24d8e2
+DIST mail_room-0.8.1.gem 20992 SHA256 
3195c690960ba2a4598c9ccc0e2ea67b1666c918c8a37f31da99d4df98c6f297 SHA512 
d956259733a7af51795b660978297459046386ef80db48b5055930e15a057fca29e075d5942b9c27ae9f56375e520c191cd0e7947bf9a4158e036ed32f68e0bf
 WHIRLPOOL 
6c52a37b1e52a544b20882bb7fb3543b97cdc6a99b60eff4afaa57ee82dc79205ec5894dcd85fa9ab03d32e164a3956579e4e27a0ce4a78ca4bc20fd8a336025

diff --git a/dev-ruby/mail_room/mail_room-0.8.0.ebuild 
b/dev-ruby/mail_room/mail_room-0.8.1.ebuild
similarity index 100%
rename from dev-ruby/mail_room/mail_room-0.8.0.ebuild
rename to dev-ruby/mail_room/mail_room-0.8.1.ebuild



[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/etc/grs/

2016-10-15 Thread Anthony G. Basile
commit: c0fd81bac60cbd1e097e82a8111306514c319b68
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 21:58:12 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 21:58:12 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=c0fd81ba

world.conf: accept sys-apps/portage-2.3.1

 core/etc/grs/world.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index 1347ac0..d14568b 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -7468,6 +7468,7 @@ package.use : sys-apps/pcsc-lite:0 -libusb -policykit 
-python -selinux udev
 
 [sys-apps/portage:0]
 package.use : sys-apps/portage:0 -build -doc -epydoc -selinux ipc xattr
+package.accept_keywords : =ys-apps/portage-2.3.1 ~amd64
 
 [sys-apps/preload:0]
 package.use : sys-apps/preload:0 -vanilla



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/sprockets/

2016-10-15 Thread Manuel Rüger
commit: 5cc0f74de4b8ff246f06108f8d8872bf670367b0
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:46:31 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:46:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cc0f74d

dev-ruby/sprockets: Remove old

Package-Manager: portage-2.3.2

 dev-ruby/sprockets/Manifest   |  2 -
 dev-ruby/sprockets/sprockets-3.6.0.ebuild | 61 ---
 dev-ruby/sprockets/sprockets-3.6.1.ebuild | 61 ---
 3 files changed, 124 deletions(-)

diff --git a/dev-ruby/sprockets/Manifest b/dev-ruby/sprockets/Manifest
index 80231f6..05fb0be 100644
--- a/dev-ruby/sprockets/Manifest
+++ b/dev-ruby/sprockets/Manifest
@@ -3,7 +3,5 @@ DIST sprockets-2.12.3-git.tgz 195647 SHA256 
998ed806114a50b9168ad569c67d037fa866
 DIST sprockets-2.2.3-git.tgz 185139 SHA256 
d8d8c59a4f129357f5d9093db02d8e5df0b2df7aaeee23fc6c5864fdbc29997c SHA512 
6850423efbb8521e4f4980e30e1464821be148474b511aca05478078b2601cf569a244cddeb9f164ba759d4207dcc2605c89b4b5b45431ebbee26b56f07b5e01
 WHIRLPOOL 
5b8eb85651975429c994e3e741d31a7989b031d51c4d9fb3d2a70da700a9187e888e100965b4f034f13d38d9066cb48a8c201841d2d639398c1c4f7c0dc1985e
 DIST sprockets-3.4.1-git.tgz 298315 SHA256 
fb2dcf86378c45c8028fb9b483f2def9ae558613794255f6eb12c97db0f220db SHA512 
dd8bae1d922b662ef3215742731024d13b3fbc435124bb25351eeb6d33363383cb630ff60a8f6199205f31ed484e76c4a40d2c8a02b05e35bd9e73eb43a951bb
 WHIRLPOOL 
8ae84a080dc7dab113a6109a3c50e61b3da8b753391e0ac2113c8ac6f89b955c6b4c6d40dee6ff8d6522a0c289c0a49e1777bbf7958f819adbcae6204641d9f7
 DIST sprockets-3.5.2-git.tgz 302784 SHA256 
8ef5507db16113c9f839371544a8ed4e3911c99525df95cc55bf61413f432b3b SHA512 
8e599cf646baf53650ecafc65923d7e92c0d04cbf7207f64a0aaa4098d068ce4a1c252c5ce879188cff9d9af6f88ba50fa39d7af643b2668f23b1b8535a284c2
 WHIRLPOOL 
108da86d47be7b889ab74c5f75bd3ff592ff310e43f006d1a4362d5912bb044fa2dd5b29f86bec0ff4222c85093785fbf4a55f94c73b30ac4fe2fbe0862a1c40
-DIST sprockets-3.6.0-git.tgz 365525 SHA256 
8260dc8e237d5b00b8fce19cdeee871057b530a4ffad889debdc8c2e5140931e SHA512 
0306a69b510a7e2b5b334e8e3156bf064c4f7b721c6a86ce733f4e129186d5a5a19fd129d4a9b7d00d36505371ea811c52d2f808e52272f5a09e6bc631b3b14d
 WHIRLPOOL 
bf9e8e4deb499f59749bc5123b6aec558eb438525f37b706238de0bb9c2d4e115d32725478f2dd89b58ac6a742b19327aa72bbfb14b229e164b9a7952ef8ee60
-DIST sprockets-3.6.1-git.tgz 365930 SHA256 
841afbc968b9897d7138771e425e771ff6e73083c573650eecb1c2dc05e5370f SHA512 
b120e2ae3fcc73bd63ce280bf4db9e06e65063d9ea8db2772368cecdc98a111f39c1448b724312c8320f077372775591f96bdd7220de30a89bd1d36c742c4e09
 WHIRLPOOL 
156a8d05791c3edca44329a56e8fd9b141ae591ffaf9085434317587a46e1146561c89424de70bfed725585a11feca9bb59f2cdc3a2570d8dd7c2275f9bbb5d7
 DIST sprockets-3.6.3-git.tgz 367032 SHA256 
40b51d0fb647bb4647e180b7aa21c6645344bc0dd59ff2c829340cc07c42c358 SHA512 
4e497e87e0a5e93baa142071bf200810b47ad26dd9f431dbcda8e332629d971e94d43da2ebd04331d7be7f6807a4c707bdd0cf33303aa689da8996be26adbcac
 WHIRLPOOL 
3f8d1193ef01233c73337202c0a6b9af1c5d1c870b7eaf0eb2b653dd54f0ae1feef72698a820746b2d349ffefa9ec4afe14995fe9498f10b22f4cd0a01bee4ab
 DIST sprockets-3.7.0-git.tgz 368648 SHA256 
58056528f8b078fc42210b9e021f2ec9e8bd72b594f7422bac441276a4a7cb0d SHA512 
ed9e2ee8515a69e56816701182502b09fcad25900a6f77696daa32e943d6ab0ec01cae9df2592373b00f2e28fbc63c7476793702a9d6857f38ee913781f6
 WHIRLPOOL 
31e776f3af7f83d54ec4a9458aa19064f47343e92e328da669bb0b72a2f3d66863ccdd33cbb5a0d22045e9affb91bb906270d663b6d66e5f53428d3cfd08977a

diff --git a/dev-ruby/sprockets/sprockets-3.6.0.ebuild 
b/dev-ruby/sprockets/sprockets-3.6.0.ebuild
deleted file mode 100644
index 9ddc4d3..
--- a/dev-ruby/sprockets/sprockets-3.6.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# 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=""
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_GEMSPEC="sprockets.gemspec"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Ruby library for compiling and serving web assets"
-HOMEPAGE="https://github.com/rails/sprockets;
-SRC_URI="https://github.com/rails/sprockets/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1)"
-KEYWORDS="~amd64 ~arm ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-IUSE=""
-
-ruby_add_rdepend "
-   dev-ruby/concurrent-ruby:1
-   =dev-ruby/rack-1*:*
-   !!=dev-ruby/sass-3.1
-   dev-ruby/uglifier
-   )"
-
-all_ruby_prepare() {
-   # Avoid tests for template types that we currently don't package:
-   # eco and ejs.
-   sed -i -e '/eco templates/,/end/ s:^:#:' \
-   -e '/ejs templates/,/end/ s:^:#:' test/test_environment.rb || 
die
-   sed -i -e '/.ejs/ s:^:#:' test/test_asset.rb || die

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/sprockets/

2016-10-15 Thread Manuel Rüger
commit: 9a91a9b53d72dd4b41dc7831edf0f59044ef71d0
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:45:33 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:45:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a91a9b5

dev-ruby/sprockets: Version bump to 3.7.0

Package-Manager: portage-2.3.2

 dev-ruby/sprockets/Manifest   |  1 +
 dev-ruby/sprockets/sprockets-3.7.0.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/sprockets/Manifest b/dev-ruby/sprockets/Manifest
index 004c3cf..80231f6 100644
--- a/dev-ruby/sprockets/Manifest
+++ b/dev-ruby/sprockets/Manifest
@@ -6,3 +6,4 @@ DIST sprockets-3.5.2-git.tgz 302784 SHA256 
8ef5507db16113c9f839371544a8ed4e3911c
 DIST sprockets-3.6.0-git.tgz 365525 SHA256 
8260dc8e237d5b00b8fce19cdeee871057b530a4ffad889debdc8c2e5140931e SHA512 
0306a69b510a7e2b5b334e8e3156bf064c4f7b721c6a86ce733f4e129186d5a5a19fd129d4a9b7d00d36505371ea811c52d2f808e52272f5a09e6bc631b3b14d
 WHIRLPOOL 
bf9e8e4deb499f59749bc5123b6aec558eb438525f37b706238de0bb9c2d4e115d32725478f2dd89b58ac6a742b19327aa72bbfb14b229e164b9a7952ef8ee60
 DIST sprockets-3.6.1-git.tgz 365930 SHA256 
841afbc968b9897d7138771e425e771ff6e73083c573650eecb1c2dc05e5370f SHA512 
b120e2ae3fcc73bd63ce280bf4db9e06e65063d9ea8db2772368cecdc98a111f39c1448b724312c8320f077372775591f96bdd7220de30a89bd1d36c742c4e09
 WHIRLPOOL 
156a8d05791c3edca44329a56e8fd9b141ae591ffaf9085434317587a46e1146561c89424de70bfed725585a11feca9bb59f2cdc3a2570d8dd7c2275f9bbb5d7
 DIST sprockets-3.6.3-git.tgz 367032 SHA256 
40b51d0fb647bb4647e180b7aa21c6645344bc0dd59ff2c829340cc07c42c358 SHA512 
4e497e87e0a5e93baa142071bf200810b47ad26dd9f431dbcda8e332629d971e94d43da2ebd04331d7be7f6807a4c707bdd0cf33303aa689da8996be26adbcac
 WHIRLPOOL 
3f8d1193ef01233c73337202c0a6b9af1c5d1c870b7eaf0eb2b653dd54f0ae1feef72698a820746b2d349ffefa9ec4afe14995fe9498f10b22f4cd0a01bee4ab
+DIST sprockets-3.7.0-git.tgz 368648 SHA256 
58056528f8b078fc42210b9e021f2ec9e8bd72b594f7422bac441276a4a7cb0d SHA512 
ed9e2ee8515a69e56816701182502b09fcad25900a6f77696daa32e943d6ab0ec01cae9df2592373b00f2e28fbc63c7476793702a9d6857f38ee913781f6
 WHIRLPOOL 
31e776f3af7f83d54ec4a9458aa19064f47343e92e328da669bb0b72a2f3d66863ccdd33cbb5a0d22045e9affb91bb906270d663b6d66e5f53428d3cfd08977a

diff --git a/dev-ruby/sprockets/sprockets-3.7.0.ebuild 
b/dev-ruby/sprockets/sprockets-3.7.0.ebuild
new file mode 100644
index ..e8156ee
--- /dev/null
+++ b/dev-ruby/sprockets/sprockets-3.7.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="sprockets.gemspec"
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Ruby library for compiling and serving web assets"
+HOMEPAGE="https://github.com/rails/sprockets;
+SRC_URI="https://github.com/rails/sprockets/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1)"
+KEYWORDS="~amd64 ~arm ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+IUSE=""
+
+ruby_add_rdepend "
+   dev-ruby/concurrent-ruby:1
+   >=dev-ruby/rack-1:* =dev-ruby/sass-3.1
+   dev-ruby/uglifier
+   )"
+
+all_ruby_prepare() {
+   # Avoid tests for template types that we currently don't package:
+   # eco and ejs.
+   sed -i -e '/eco templates/,/end/ s:^:#:' \
+   -e '/ejs templates/,/end/ s:^:#:' test/test_environment.rb || 
die
+   sed -i -e '/.ejs/ s:^:#:' test/test_asset.rb || die
+   rm -f test/test_require.rb 
test/test_{closure,eco,ejs,yui}_{compressor,processor}.rb || die
+   sed -i -e "/bundler/d" Rakefile || die
+}
+
+each_ruby_prepare() {
+   sed -i -e "s:ruby:${RUBY}:" test/test_sprocketize.rb || die
+}
+
+each_ruby_test() {
+   # Make sure we have completely separate copies. Hardlinks won't work
+   # for this test suite.
+   cp -R test test-new || die
+   rm -rf test || die
+   mv test-new test || die
+
+   each_fakegem_test
+}



[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: core/etc/grs/

2016-10-15 Thread Anthony G. Basile
commit: c21e7f0804bd78bfa5d465a643d171c116cc0658
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 21:36:39 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 21:36:39 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=c21e7f08

world.conf: update use flags

 core/etc/grs/world.conf | 883 +++-
 1 file changed, 571 insertions(+), 312 deletions(-)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index 1ab9204..72956ec 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -95,7 +95,7 @@ package.use : app-admin/supervisor:0 -doc -test
 package.use : app-admin/syslog-ng:0 -amqp -json -libressl -mongodb -pacct 
-python -redis -smtp -spoof-source -systemd caps dbi geoip ipv6 tcpd
 
 [app-admin/sysstat:0]
-package.use : app-admin/sysstat:0 -debug -isag -lm_sensors -nls -selinux 
-static doc
+package.use : app-admin/sysstat:0 -debug -isag -lm_sensors -nls -selinux 
-static
 
 [app-admin/testdisk:0]
 package.use : app-admin/testdisk:0 -ewf -ntfs -reiserfs -static jpeg qt4
@@ -127,12 +127,12 @@ package.use : app-antivirus/clamav:0 -clamdtop -libressl 
-metadata-analysis-api
 [app-arch/bzip2:0]
 package.use : app-arch/bzip2:0 -static static-libs
 
+[app-arch/cfv:0]
+package.use : app-arch/cfv:0 -bittorrent
+
 [app-arch/cpio:0]
 package.use : app-arch/cpio:0 -nls
 
-[app-arch/dpkg:0]
-package.use : app-arch/dpkg:0 -nls -selinux -test bzip2 lzma unicode 
update-alternatives zlib
-
 [app-arch/file-roller:0]
 package.use : app-arch/file-roller:0 -nautilus -packagekit
 
@@ -146,7 +146,7 @@ package.use : app-arch/gtk-splitter:0 crypt
 package.use : app-arch/gzip:0 -static pic
 
 [app-arch/libarchive:0]
-package.use : app-arch/libarchive:0 -expat -libressl -nettle acl bzip2 
e2fsprogs iconv lzma lzo static-libs xattr zlib
+package.use : app-arch/libarchive:0 -expat -libressl -lz4 -nettle acl bzip2 
e2fsprogs iconv lzma lzo static-libs xattr zlib
 
 [app-arch/p7zip:0]
 package.use : app-arch/p7zip:0 -doc -kde -pch -rar -static -wxwidgets
@@ -154,6 +154,9 @@ package.use : app-arch/p7zip:0 -doc -kde -pch -rar -static 
-wxwidgets
 [app-arch/sharutils:0]
 package.use : app-arch/sharutils:0 -nls
 
+[app-arch/snappy:0]
+package.use : app-arch/snappy:0 -static-libs
+
 [app-arch/star:0]
 package.use : app-arch/star:0 acl xattr
 
@@ -182,7 +185,7 @@ package.use : app-backup/backintime:0 -qt4
 package.use : app-backup/backup-manager:0 -doc
 
 [app-backup/bacula:0]
-package.use : app-backup/bacula:0 -bacula-clientonly -bacula-nodir 
-bacula-nosd -examples -logwatch -mysql -postgres -static X acl ipv6 qt4 
readline sqlite ssl tcpd vim-syntax
+package.use : app-backup/bacula:0 -bacula-clientonly -bacula-nodir 
-bacula-nosd -examples -libressl -logwatch -mysql -postgres -static X acl ipv6 
qt4 readline sqlite ssl tcpd vim-syntax
 
 [app-backup/boxbackup:0]
 package.use : app-backup/boxbackup:0 -client-only -libressl
@@ -240,7 +243,7 @@ package.use : app-benchmarks/sysbench:0 -aio -mysql
 package.use : app-cdr/cdrtools:0 -acl -caps -nls filecaps unicode
 
 [app-cdr/dvdisaster:0]
-package.use : app-cdr/dvdisaster:0 -debug -nls
+package.use : app-cdr/dvdisaster:0 -debug -l10n_cs -l10n_de -l10n_it 
-l10n_pt-BR -l10n_ru -l10n_sv -nls
 
 [app-cdr/gaffitter:0]
 package.use : app-cdr/gaffitter:0 -scripts
@@ -267,7 +270,7 @@ package.use : app-crypt/gpa:0 -nls
 package.use : app-crypt/gpgme:1 -common-lisp static-libs
 
 [app-crypt/keynote:0]
-package.use : app-crypt/keynote:0 ssl
+package.use : app-crypt/keynote:0 -libressl ssl
 
 [app-crypt/libsecret:0]
 package.use : app-crypt/libsecret:0 -debug -test crypt introspection vala
@@ -290,6 +293,12 @@ package.use : app-crypt/pinentry:0 -clipboard -emacs 
-static caps gnome-keyring
 [app-crypt/rainbowcrack:0]
 package.accept_keywords : =app-crypt/rainbowcrack-1.6.1 ~amd64
 
+[app-crypt/sbsigntool:0]
+package.use : app-crypt/sbsigntool:0 -libressl
+
+[app-crypt/sign:0]
+package.use : app-crypt/sign:0 -libressl
+
 [app-crypt/ssh-multiadd:0]
 package.use : app-crypt/ssh-multiadd:0 X
 
@@ -305,8 +314,8 @@ package.use : app-dicts/mecab-ipadic:0 unicode
 [app-dicts/migemo-dict:0]
 package.use : app-dicts/migemo-dict:0 unicode
 
-[app-dicts/myspell-pt:0]
-package.use : app-dicts/myspell-pt:0 preao
+[app-dicts/prime-dict:0]
+package.use : app-dicts/prime-dict:0 -ruby_targets_ruby22 -ruby_targets_ruby23 
ruby_targets_ruby20 ruby_targets_ruby21
 
 [app-dicts/stardict-freedict-eng-deu:0]
 package.use : app-dicts/stardict-freedict-eng-deu:0 -gzip
@@ -347,6 +356,9 @@ package.use : app-dicts/ydpdict:0 -ao
 [app-doc/autobook:0]
 package.use : app-doc/autobook:0 -examples
 
+[app-doc/gimp-help:2]
+package.use : app-doc/gimp-help:2 -l10n_de -l10n_en -l10n_es -l10n_fr -l10n_it 
-l10n_ja -l10n_ko -l10n_nl -l10n_nn -l10n_pl -l10n_ru -l10n_sv -l10n_zh-CN
+
 [app-doc/gnucash-docs:0]
 package.use : app-doc/gnucash-docs:0 -test
 
@@ -356,6 +368,9 @@ package.use : 

[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/var/lib/portage/

2016-10-15 Thread Anthony G. Basile
commit: d1d193938bcaa1bc0342f7edddb48f3497373546
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 21:35:56 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 21:37:51 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=d1d19393

world: drop some problematic packages

mail-client/trojita
media-radio/ax25-apps
media-radio/ax25-tools
net-dns/dnstop
sci-calculators/calcoo

 core/var/lib/portage/world.CYCLE.4 | 5 -
 1 file changed, 5 deletions(-)

diff --git a/core/var/lib/portage/world.CYCLE.4 
b/core/var/lib/portage/world.CYCLE.4
index dcb632d..27bd720 100644
--- a/core/var/lib/portage/world.CYCLE.4
+++ b/core/var/lib/portage/world.CYCLE.4
@@ -1856,7 +1856,6 @@ mail-client/geary
 mail-client/mail-notification
 mail-client/mutt
 mail-client/nail
-mail-client/trojita
 mail-filter/anomy-sanitizer
 mail-filter/bmf
 mail-filter/clamassassin
@@ -2117,8 +2116,6 @@ media-plugins/vco-plugins
 media-plugins/xsynth-dssi
 media-radio/KochMorse
 media-radio/adifmerg
-media-radio/ax25-apps
-media-radio/ax25-tools
 media-radio/dxcc
 media-radio/flrig
 media-radio/gpredict
@@ -2405,7 +2402,6 @@ net-dialup/xc
 net-dns/avahi
 net-dns/bind-tools
 net-dns/ddclient
-net-dns/dnstop
 net-dns/dnswalk
 net-dns/ndu
 net-dns/pdnsd
@@ -2751,7 +2747,6 @@ sci-biology/trf
 sci-biology/trnascan-se
 sci-biology/velvet
 sci-biology/vienna-rna
-sci-calculators/calcoo
 sci-calculators/galculator
 sci-calculators/hcalc
 sci-calculators/hexcalc



[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/etc/grs/

2016-10-15 Thread Anthony G. Basile
commit: 5929c8c5fde6c40a160e3184bbf7f3edabf4cbe8
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 21:36:39 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 21:40:22 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=5929c8c5

world.conf: update use flags

 core/etc/grs/world.conf | 874 +++-
 1 file changed, 571 insertions(+), 303 deletions(-)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index 1588afc..1347ac0 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -95,7 +95,7 @@ package.use : app-admin/supervisor:0 -doc -test
 package.use : app-admin/syslog-ng:0 -amqp -json -libressl -mongodb -pacct 
-python -redis -smtp -spoof-source -systemd caps dbi geoip ipv6 tcpd
 
 [app-admin/sysstat:0]
-package.use : app-admin/sysstat:0 -debug -isag -lm_sensors -nls -selinux 
-static doc
+package.use : app-admin/sysstat:0 -debug -isag -lm_sensors -nls -selinux 
-static
 
 [app-admin/testdisk:0]
 package.use : app-admin/testdisk:0 -ewf -ntfs -reiserfs -static jpeg qt4
@@ -127,12 +127,12 @@ package.use : app-antivirus/clamav:0 -clamdtop -libressl 
-metadata-analysis-api
 [app-arch/bzip2:0]
 package.use : app-arch/bzip2:0 -static static-libs
 
+[app-arch/cfv:0]
+package.use : app-arch/cfv:0 -bittorrent
+
 [app-arch/cpio:0]
 package.use : app-arch/cpio:0 -nls
 
-[app-arch/dpkg:0]
-package.use : app-arch/dpkg:0 -nls -selinux -test bzip2 lzma unicode 
update-alternatives zlib
-
 [app-arch/file-roller:0]
 package.use : app-arch/file-roller:0 -nautilus -packagekit
 
@@ -146,7 +146,7 @@ package.use : app-arch/gtk-splitter:0 crypt
 package.use : app-arch/gzip:0 -static pic
 
 [app-arch/libarchive:0]
-package.use : app-arch/libarchive:0 -expat -libressl -nettle acl bzip2 
e2fsprogs iconv lzma lzo static-libs xattr zlib
+package.use : app-arch/libarchive:0 -expat -libressl -lz4 -nettle acl bzip2 
e2fsprogs iconv lzma lzo static-libs xattr zlib
 
 [app-arch/p7zip:0]
 package.use : app-arch/p7zip:0 -doc -kde -pch -rar -static -wxwidgets
@@ -154,6 +154,9 @@ package.use : app-arch/p7zip:0 -doc -kde -pch -rar -static 
-wxwidgets
 [app-arch/sharutils:0]
 package.use : app-arch/sharutils:0 -nls
 
+[app-arch/snappy:0]
+package.use : app-arch/snappy:0 -static-libs
+
 [app-arch/star:0]
 package.use : app-arch/star:0 acl xattr
 
@@ -182,7 +185,7 @@ package.use : app-backup/backintime:0 -qt4
 package.use : app-backup/backup-manager:0 -doc
 
 [app-backup/bacula:0]
-package.use : app-backup/bacula:0 -bacula-clientonly -bacula-nodir 
-bacula-nosd -examples -logwatch -mysql -postgres -static X acl ipv6 qt4 
readline sqlite ssl tcpd vim-syntax
+package.use : app-backup/bacula:0 -bacula-clientonly -bacula-nodir 
-bacula-nosd -examples -libressl -logwatch -mysql -postgres -static X acl ipv6 
qt4 readline sqlite ssl tcpd vim-syntax
 
 [app-backup/boxbackup:0]
 package.use : app-backup/boxbackup:0 -client-only -libressl
@@ -240,7 +243,7 @@ package.use : app-benchmarks/sysbench:0 -aio -mysql
 package.use : app-cdr/cdrtools:0 -acl -caps -nls filecaps unicode
 
 [app-cdr/dvdisaster:0]
-package.use : app-cdr/dvdisaster:0 -debug -nls
+package.use : app-cdr/dvdisaster:0 -debug -l10n_cs -l10n_de -l10n_it 
-l10n_pt-BR -l10n_ru -l10n_sv -nls
 
 [app-cdr/gaffitter:0]
 package.use : app-cdr/gaffitter:0 -scripts
@@ -269,7 +272,7 @@ package.env : app-crypt/gpgme:1 app-crypt_gpgme_1
 env : LDFLAGS=-largp
 
 [app-crypt/keynote:0]
-package.use : app-crypt/keynote:0 ssl
+package.use : app-crypt/keynote:0 -libressl ssl
 
 [app-crypt/libsecret:0]
 package.use : app-crypt/libsecret:0 -debug -test crypt introspection vala
@@ -292,6 +295,12 @@ package.use : app-crypt/pinentry:0 -clipboard -emacs 
-static caps gnome-keyring
 [app-crypt/rainbowcrack:0]
 package.accept_keywords : =app-crypt/rainbowcrack-1.6.1 ~amd64
 
+[app-crypt/sbsigntool:0]
+package.use : app-crypt/sbsigntool:0 -libressl
+
+[app-crypt/sign:0]
+package.use : app-crypt/sign:0 -libressl
+
 [app-crypt/ssh-multiadd:0]
 package.use : app-crypt/ssh-multiadd:0 X
 
@@ -307,8 +316,8 @@ package.use : app-dicts/mecab-ipadic:0 unicode
 [app-dicts/migemo-dict:0]
 package.use : app-dicts/migemo-dict:0 unicode
 
-[app-dicts/myspell-pt:0]
-package.use : app-dicts/myspell-pt:0 preao
+[app-dicts/prime-dict:0]
+package.use : app-dicts/prime-dict:0 -ruby_targets_ruby22 -ruby_targets_ruby23 
ruby_targets_ruby20 ruby_targets_ruby21
 
 [app-dicts/stardict-freedict-eng-deu:0]
 package.use : app-dicts/stardict-freedict-eng-deu:0 -gzip
@@ -349,6 +358,9 @@ package.use : app-dicts/ydpdict:0 -ao
 [app-doc/autobook:0]
 package.use : app-doc/autobook:0 -examples
 
+[app-doc/gimp-help:2]
+package.use : app-doc/gimp-help:2 -l10n_de -l10n_en -l10n_es -l10n_fr -l10n_it 
-l10n_ja -l10n_ko -l10n_nl -l10n_nn -l10n_pl -l10n_ru -l10n_sv -l10n_zh-CN
+
 [app-doc/gnucash-docs:0]
 package.use : app-doc/gnucash-docs:0 -test
 
@@ -358,6 +370,9 @@ package.use : app-doc/linkers-and-loaders:0 -doc
 

[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: core/var/lib/portage/

2016-10-15 Thread Anthony G. Basile
commit: 26b05089d60fd5339ac06d522a08d6bbce879331
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 21:35:56 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 21:40:52 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=26b05089

world: drop some problematic packages

mail-client/trojita
media-radio/ax25-apps
media-radio/ax25-tools
net-dns/dnstop
sci-calculators/calcoo

 core/var/lib/portage/world.CYCLE.4 | 5 -
 1 file changed, 5 deletions(-)

diff --git a/core/var/lib/portage/world.CYCLE.4 
b/core/var/lib/portage/world.CYCLE.4
index d8ddac6..0223517 100644
--- a/core/var/lib/portage/world.CYCLE.4
+++ b/core/var/lib/portage/world.CYCLE.4
@@ -1855,7 +1855,6 @@ mail-client/geary
 mail-client/mail-notification
 mail-client/mutt
 mail-client/nail
-mail-client/trojita
 mail-filter/anomy-sanitizer
 mail-filter/bmf
 mail-filter/clamassassin
@@ -2116,8 +2115,6 @@ media-plugins/vco-plugins
 media-plugins/xsynth-dssi
 media-radio/KochMorse
 media-radio/adifmerg
-media-radio/ax25-apps
-media-radio/ax25-tools
 media-radio/dxcc
 media-radio/flrig
 media-radio/gpredict
@@ -2404,7 +2401,6 @@ net-dialup/xc
 net-dns/avahi
 net-dns/bind-tools
 net-dns/ddclient
-net-dns/dnstop
 net-dns/dnswalk
 net-dns/ndu
 net-dns/pdnsd
@@ -2750,7 +2746,6 @@ sci-biology/trf
 sci-biology/trnascan-se
 sci-biology/velvet
 sci-biology/vienna-rna
-sci-calculators/calcoo
 sci-calculators/galculator
 sci-calculators/hcalc
 sci-calculators/hexcalc



[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: core/var/lib/portage/

2016-10-15 Thread Anthony G. Basile
commit: bfed240fea81300932e8384848fd87f362af1c3b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 21:35:56 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 21:35:56 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=bfed240f

world: drop some problematic packages

mail-client/trojita
media-radio/ax25-apps
media-radio/ax25-tools
net-dns/dnstop
sci-calculators/calcoo

 core/var/lib/portage/world.CYCLE.4 | 5 -
 1 file changed, 5 deletions(-)

diff --git a/core/var/lib/portage/world.CYCLE.4 
b/core/var/lib/portage/world.CYCLE.4
index 23c57f5..92f4fe8 100644
--- a/core/var/lib/portage/world.CYCLE.4
+++ b/core/var/lib/portage/world.CYCLE.4
@@ -1855,7 +1855,6 @@ mail-client/geary
 mail-client/mail-notification
 mail-client/mutt
 mail-client/nail
-mail-client/trojita
 mail-filter/anomy-sanitizer
 mail-filter/bmf
 mail-filter/clamassassin
@@ -2116,8 +2115,6 @@ media-plugins/vco-plugins
 media-plugins/xsynth-dssi
 media-radio/KochMorse
 media-radio/adifmerg
-media-radio/ax25-apps
-media-radio/ax25-tools
 media-radio/dxcc
 media-radio/flrig
 media-radio/gpredict
@@ -2404,7 +2401,6 @@ net-dialup/xc
 net-dns/avahi
 net-dns/bind-tools
 net-dns/ddclient
-net-dns/dnstop
 net-dns/dnswalk
 net-dns/ndu
 net-dns/pdnsd
@@ -2750,7 +2746,6 @@ sci-biology/trf
 sci-biology/trnascan-se
 sci-biology/velvet
 sci-biology/vienna-rna
-sci-calculators/calcoo
 sci-calculators/galculator
 sci-calculators/hcalc
 sci-calculators/hexcalc



[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: core/etc/grs/

2016-10-15 Thread Anthony G. Basile
commit: 9bd8d32e9e508741e24fbb0ae9c9254a90465433
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 21:36:39 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 21:43:19 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=9bd8d32e

world.conf: update use flags

 core/etc/grs/world.conf | 875 +++-
 1 file changed, 570 insertions(+), 305 deletions(-)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index 14cd1aa..c1048f8 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -95,7 +95,7 @@ package.use : app-admin/supervisor:0 -doc -test
 package.use : app-admin/syslog-ng:0 -amqp -json -libressl -mongodb -pacct 
-python -redis -smtp -spoof-source -systemd caps dbi geoip ipv6 tcpd
 
 [app-admin/sysstat:0]
-package.use : app-admin/sysstat:0 -debug -isag -lm_sensors -nls -selinux 
-static doc
+package.use : app-admin/sysstat:0 -debug -isag -lm_sensors -nls -selinux 
-static
 
 [app-admin/testdisk:0]
 package.use : app-admin/testdisk:0 -ewf -ntfs -reiserfs -static jpeg qt4
@@ -127,12 +127,12 @@ package.use : app-antivirus/clamav:0 -clamdtop -libressl 
-metadata-analysis-api
 [app-arch/bzip2:0]
 package.use : app-arch/bzip2:0 -static static-libs
 
+[app-arch/cfv:0]
+package.use : app-arch/cfv:0 -bittorrent
+
 [app-arch/cpio:0]
 package.use : app-arch/cpio:0 -nls
 
-[app-arch/dpkg:0]
-package.use : app-arch/dpkg:0 -nls -selinux -test bzip2 lzma unicode 
update-alternatives zlib
-
 [app-arch/file-roller:0]
 package.use : app-arch/file-roller:0 -nautilus -packagekit
 
@@ -146,7 +146,7 @@ package.use : app-arch/gtk-splitter:0 crypt
 package.use : app-arch/gzip:0 -static pic
 
 [app-arch/libarchive:0]
-package.use : app-arch/libarchive:0 -expat -libressl -nettle acl bzip2 
e2fsprogs iconv lzma lzo static-libs xattr zlib
+package.use : app-arch/libarchive:0 -expat -libressl -lz4 -nettle acl bzip2 
e2fsprogs iconv lzma lzo static-libs xattr zlib
 
 [app-arch/p7zip:0]
 package.use : app-arch/p7zip:0 -doc -kde -pch -rar -static -wxwidgets
@@ -154,6 +154,9 @@ package.use : app-arch/p7zip:0 -doc -kde -pch -rar -static 
-wxwidgets
 [app-arch/sharutils:0]
 package.use : app-arch/sharutils:0 -nls
 
+[app-arch/snappy:0]
+package.use : app-arch/snappy:0 -static-libs
+
 [app-arch/star:0]
 package.use : app-arch/star:0 acl xattr
 
@@ -182,7 +185,7 @@ package.use : app-backup/backintime:0 -qt4
 package.use : app-backup/backup-manager:0 -doc
 
 [app-backup/bacula:0]
-package.use : app-backup/bacula:0 -bacula-clientonly -bacula-nodir 
-bacula-nosd -examples -logwatch -mysql -postgres -static X acl ipv6 qt4 
readline sqlite ssl tcpd vim-syntax
+package.use : app-backup/bacula:0 -bacula-clientonly -bacula-nodir 
-bacula-nosd -examples -libressl -logwatch -mysql -postgres -static X acl ipv6 
qt4 readline sqlite ssl tcpd vim-syntax
 package.env : app-backup/bacula:0 app-backup_bacula_0
 env : LDFLAGS="-lintl"
 
@@ -244,7 +247,7 @@ package.use : app-benchmarks/sysbench:0 -aio -mysql
 package.use : app-cdr/cdrtools:0 -acl -caps -nls filecaps unicode
 
 [app-cdr/dvdisaster:0]
-package.use : app-cdr/dvdisaster:0 -debug -nls
+package.use : app-cdr/dvdisaster:0 -debug -l10n_cs -l10n_de -l10n_it 
-l10n_pt-BR -l10n_ru -l10n_sv -nls
 
 [app-cdr/gaffitter:0]
 package.use : app-cdr/gaffitter:0 -scripts
@@ -275,7 +278,7 @@ package.env : app-crypt/gpgme:1 app-crypt_gpgme_1
 env : LDFLAGS=-largp
 
 [app-crypt/keynote:0]
-package.use : app-crypt/keynote:0 ssl
+package.use : app-crypt/keynote:0 -libressl ssl
 
 [app-crypt/libsecret:0]
 package.use : app-crypt/libsecret:0 -debug -test crypt introspection vala
@@ -300,6 +303,12 @@ env : LDFLAGS="-liconv -lpthread"
 [app-crypt/rainbowcrack:0]
 package.accept_keywords : =app-crypt/rainbowcrack-1.6.1 ~amd64
 
+[app-crypt/sbsigntool:0]
+package.use : app-crypt/sbsigntool:0 -libressl
+
+[app-crypt/sign:0]
+package.use : app-crypt/sign:0 -libressl
+
 [app-crypt/ssh-multiadd:0]
 package.use : app-crypt/ssh-multiadd:0 X
 
@@ -315,8 +324,8 @@ package.use : app-dicts/mecab-ipadic:0 unicode
 [app-dicts/migemo-dict:0]
 package.use : app-dicts/migemo-dict:0 unicode
 
-[app-dicts/myspell-pt:0]
-package.use : app-dicts/myspell-pt:0 preao
+[app-dicts/prime-dict:0]
+package.use : app-dicts/prime-dict:0 -ruby_targets_ruby22 -ruby_targets_ruby23 
ruby_targets_ruby20 ruby_targets_ruby21
 
 [app-dicts/stardict-freedict-eng-deu:0]
 package.use : app-dicts/stardict-freedict-eng-deu:0 -gzip
@@ -357,6 +366,9 @@ package.use : app-dicts/ydpdict:0 -ao
 [app-doc/autobook:0]
 package.use : app-doc/autobook:0 -examples
 
+[app-doc/gimp-help:2]
+package.use : app-doc/gimp-help:2 -l10n_de -l10n_en -l10n_es -l10n_fr -l10n_it 
-l10n_ja -l10n_ko -l10n_nl -l10n_nn -l10n_pl -l10n_ru -l10n_sv -l10n_zh-CN
+
 [app-doc/gnucash-docs:0]
 package.use : app-doc/gnucash-docs:0 -test
 
@@ -366,6 +378,9 @@ package.use : app-doc/linkers-and-loaders:0 -doc
 [app-doc/linuxfromscratch:0]
 package.use : 

[gentoo-commits] dev/mrueg:master commit in: dev-go/gitlab-workhorse/

2016-10-15 Thread Manuel Rüger
commit: e95c201827ac923e161f07fea9bb010c6a2c2c16
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:39:36 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:39:36 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=e95c2018

dev-go/gitlab-workhorse: Version bump to 0.8.6

Package-Manager: portage-2.3.2

 dev-go/gitlab-workhorse/Manifest| 2 +-
 .../{gitlab-workhorse-0.8.1.ebuild => gitlab-workhorse-0.8.5.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-go/gitlab-workhorse/Manifest b/dev-go/gitlab-workhorse/Manifest
index db2e245..b0503f7 100644
--- a/dev-go/gitlab-workhorse/Manifest
+++ b/dev-go/gitlab-workhorse/Manifest
@@ -1 +1 @@
-DIST gitlab-workhorse-0.8.1.tar.gz 242011 SHA256 
d037cf2b340a14d29ad1a8e399c58e8f0fbf18e79eca8ed343a70d7dfaf0e6e9 SHA512 
9ab5a6822b4dfbf67bfc0fbae97a0a741052e306ac5184abe5fc1246e722c80bbabe2354b9cdee31676e482bc85c597ad7a0401af7a3b8c6289b97579cda8e02
 WHIRLPOOL 
fc4866bd3aab4172ced17255a8c170a8dd658998374baccae78a4e9e7243fa545af0847a380088f7ce06ae0f9d67ba52d15b810162052e32096acd3274d716fd
+DIST gitlab-workhorse-0.8.5.tar.gz 246779 SHA256 
babfe1c7db58e9be6f40f21c5d3e02cd6c43b0927c05a609e35b308416dcc1b8 SHA512 
370d09b4823d83171cddfed24855f80f853ce2d0e40e55d078259cd69b55c2e2fab510ea3e99e8d45d1b6004427eb83357da9eab9aa678947737d1d09b6f32ad
 WHIRLPOOL 
f0fa548f14e772f38d7364d354e15ba35e94a3bb7b4aaf4816db17de1de5fcc1aa75e224951871d58c386e7d1322f94d3094bafd38d3be0e7861f4c125b4b2a9

diff --git a/dev-go/gitlab-workhorse/gitlab-workhorse-0.8.1.ebuild 
b/dev-go/gitlab-workhorse/gitlab-workhorse-0.8.5.ebuild
similarity index 100%
rename from dev-go/gitlab-workhorse/gitlab-workhorse-0.8.1.ebuild
rename to dev-go/gitlab-workhorse/gitlab-workhorse-0.8.5.ebuild



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libnotify/

2016-10-15 Thread Manuel Rüger
commit: 5e70371d618e0736a9e40d4e21527d11c2e4e36b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:34:20 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:34:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e70371d

x11-libs/libnotify: Version bump to 0.7.7

Package-Manager: portage-2.3.2

 x11-libs/libnotify/Manifest   |  1 +
 x11-libs/libnotify/libnotify-0.7.7.ebuild | 65 +++
 2 files changed, 66 insertions(+)

diff --git a/x11-libs/libnotify/Manifest b/x11-libs/libnotify/Manifest
index 2f6b157..af7d53b 100644
--- a/x11-libs/libnotify/Manifest
+++ b/x11-libs/libnotify/Manifest
@@ -1 +1,2 @@
 DIST libnotify-0.7.6.tar.xz 280388 SHA256 
0ef61ca400d30e28217979bfa0e73a7406b19c32dd76150654ec5b2bdf47d837 SHA512 
5d656ee7ee5caeb95aec4adb973795dc72fc620cd36b9fe3d4f910951945bd5df70ee1c422cd6aca9c38a9ba2760562e479fc8fb9269449924a5b24d762d03df
 WHIRLPOOL 
e619c8d10790f5b78730a2599c407bc951de68b189f460c72999776eaf92014aded0953ca06398cce7ad09fd8c87e1c7727cea4f4c81eccee0a8b2f2bafd195b
+DIST libnotify-0.7.7.tar.xz 285356 SHA256 
9cb4ce315b2655860c524d46b56010874214ec27e854086c1a1d0260137efc04 SHA512 
133874114407bf12267ef609f5941657181760bc7cf115c5973b1810cb72bf55072b621c143e32be1e7e8b49f244851925d14bc3f9f26457747b8a8695ee9954
 WHIRLPOOL 
61281729f3369c817183e9503cecad4a4264834cf91548e0bd4ea0a827b97ae15be0e4a7ed0a4287f72e14661cc199f37c711ec2d36a613fc94a1d9dc294dce7

diff --git a/x11-libs/libnotify/libnotify-0.7.7.ebuild 
b/x11-libs/libnotify/libnotify-0.7.7.ebuild
new file mode 100644
index ..0c6b8bd
--- /dev/null
+++ b/x11-libs/libnotify/libnotify-0.7.7.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils gnome.org multilib-minimal xdg-utils
+
+DESCRIPTION="A library for sending desktop notifications"
+HOMEPAGE="https://git.gnome.org/browse/libnotify;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~x86-solaris"
+IUSE="+introspection test"
+
+RDEPEND="
+   app-eselect/eselect-notify-send
+   >=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}]
+   x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
+   introspection? ( >=dev-libs/gobject-introspection-1.32:= )
+"
+DEPEND="${RDEPEND}
+   >=dev-libs/gobject-introspection-common-1.32
+   >=dev-util/gtk-doc-am-1.14
+   virtual/pkgconfig
+   test? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
+"
+PDEPEND="virtual/notification-daemon"
+
+src_prepare() {
+   xdg_environment_reset
+   sed -i -e 's:noinst_PROG:check_PROG:' tests/Makefile.am || die
+
+   if ! use test; then
+   sed -i -e '/PKG_CHECK_MODULES(TESTS/d' configure.ac || die
+   fi
+
+   eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE=${S} econf \
+   --disable-static \
+   $(multilib_native_use_enable introspection)
+
+   # work-around gtk-doc out-of-source brokedness
+   if multilib_is_native_abi; then
+   ln -s "${S}"/docs/reference/html docs/reference/html || die
+   fi
+}
+
+multilib_src_install() {
+   default
+   prune_libtool_files
+
+   mv "${ED}"/usr/bin/{,libnotify-}notify-send || die #379941
+}
+
+pkg_postinst() {
+   eselect notify-send update ifunset
+}
+
+pkg_postrm() {
+   eselect notify-send update ifunset
+}



[gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-runner/

2016-10-15 Thread Manuel Rüger
commit: 9fe48ec7fed6018eaf6455779392662c36c21643
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:30:56 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:30:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fe48ec7

lxqt-base/lxqt-runner: Version bump to 0.11.0

Package-Manager: portage-2.3.2

 lxqt-base/lxqt-runner/Manifest  |  1 +
 lxqt-base/lxqt-runner/lxqt-runner-0.11.0.ebuild | 48 +
 2 files changed, 49 insertions(+)

diff --git a/lxqt-base/lxqt-runner/Manifest b/lxqt-base/lxqt-runner/Manifest
index dd3bb27..fe61758 100644
--- a/lxqt-base/lxqt-runner/Manifest
+++ b/lxqt-base/lxqt-runner/Manifest
@@ -1 +1,2 @@
 DIST lxqt-runner-0.10.0.tar.xz 193104 SHA256 
d02998b2b438cff94a458fb4510eb493d7c1a4205c20a50be977e099e5d6ee81 SHA512 
384419dcfb4d9832165b15636a9b50b94409d596fdf2aff521a836d0fbdbc54773ce57e60472b7d7de22c0b7bd19375823e9cee98eab1e4f35e1257281f8b670
 WHIRLPOOL 
a48034db0af5ed18b79b06c4051a229e0981d4bc73f9c58fe054189b980899eb8dd3f38f6e6fc34eb101cb0e29fe15b3b65f3f713427a97ccf803e3d027211ae
+DIST lxqt-runner-0.11.0.tar.xz 209040 SHA256 
ceb0139840d95448b63a8a30cc3b0d33687d596b9c23fbcf29b6608550711db1 SHA512 
ced1f790a688fc6b167d96fcfc0f32a695c727e6bf3e4eaa43a0b4d1fb1379312788e2d190f77ade8b18fdce2d2993a7546bcb3a0246efd83e7fdb231b421fb5
 WHIRLPOOL 
1690f0239427c5f1351c83a3f67b59668e99b0f244d7ebe170e1c6dcece60cce3b4dedd84921eacba6ea809c4143e9572aec46b65e801c42921ff2ab2890987f

diff --git a/lxqt-base/lxqt-runner/lxqt-runner-0.11.0.ebuild 
b/lxqt-base/lxqt-runner/lxqt-runner-0.11.0.ebuild
new file mode 100644
index ..1f65f79
--- /dev/null
+++ b/lxqt-base/lxqt-runner/lxqt-runner-0.11.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit cmake-utils
+
+DESCRIPTION="LXQt quick launcher"
+HOMEPAGE="http://lxqt.org/;
+
+if [[ ${PV} = ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
+else
+   SRC_URI="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="GPL-2 LGPL-2.1+"
+SLOT="0"
+
+RDEPEND=">=dev-cpp/muParser-2.2.3
+   dev-libs/glib:2
+   >=dev-libs/libqtxdg-1.0.0
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   dev-qt/qtxml:5
+   kde-frameworks/kwindowsystem:5
+   >=lxde-base/menu-cache-0.5.1
+   ~lxqt-base/liblxqt-${PV}
+   ~lxqt-base/lxqt-globalkeys-${PV}"
+DEPEND="${RDEPEND}
+   >=dev-util/cmake-3.6.2
+   dev-qt/linguist-tools:5
+   virtual/pkgconfig"
+
+src_configure() {
+   local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
+   cmake-utils_src_configure
+}
+
+src_install(){
+   cmake-utils_src_install
+   doman man/*.1
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2016-10-15 Thread Manuel Rüger
commit: b03db7bd216524fa7f0a4985fc529f9a291dd8f4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:30:12 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:30:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b03db7bd

dev-cpp/muParser: Add ~arm keyword

Tested by stikonas

Package-Manager: portage-2.3.2

 dev-cpp/muParser/muParser-2.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.2.5.ebuild 
b/dev-cpp/muParser/muParser-2.2.5.ebuild
index eb93d49..63f263e 100644
--- a/dev-cpp/muParser/muParser-2.2.5.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.5.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



[gentoo-commits] repo/gentoo:master commit in: app-crypt/signing-party/

2016-10-15 Thread Manuel Rüger
commit: 068ad44e9f40032f4e6ab6ca7663ebf20dbd3646
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:29:09 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:29:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=068ad44e

app-crypt/signing-party: Version bump to 2.5

Package-Manager: portage-2.3.2

 app-crypt/signing-party/Manifest |   1 +
 app-crypt/signing-party/signing-party-2.5.ebuild | 115 +++
 2 files changed, 116 insertions(+)

diff --git a/app-crypt/signing-party/Manifest b/app-crypt/signing-party/Manifest
index 5a6698d..52cffc9 100644
--- a/app-crypt/signing-party/Manifest
+++ b/app-crypt/signing-party/Manifest
@@ -1,2 +1,3 @@
 DIST signing-party_1.1.4.orig.tar.gz 230259 SHA256 
3d135437540ad1e5b3bb209ee90896a6b9153170eb0e4c93d018c1952fb80fa1 SHA512 
935a192d8ce0057731b3422d217a90890dd97d9c84a3a46e3e4a2536f41e6752a44a86ba13db9b9a3e24a629dd6e78cb599a7999eeffea0a2b3b83b775dea36c
 WHIRLPOOL 
b5efdbd37d3277fd4fedc0938abcedada2c9a603bfdb1e93882e60abd698e4d4ef9535fde8d6c0c57818603e12507d911a150022fea5690b72eac66eecda803f
 DIST signing-party_2.4.orig.tar.gz 197731 SHA256 
02b3487ab80cb3030d33317ce1290c2700241fd2138f6768a49c63a55a6a62fe SHA512 
0ab18af70314839193d25053c6b3de31afba173ae70a39b84e19aad8ec4864bbd95f9b685b3bc807674310c35af2dc75145eb6eb9d03d6a0ce84ce45ac7f29c0
 WHIRLPOOL 
fb6892338c110751f7332905afd0336dae667104650a1bc10422111d169a398cfebbe2753202d8a64643eb0bd1a16bb0424b7e71be8651077985cbdb1bc51b99
+DIST signing-party_2.5.orig.tar.gz 198105 SHA256 
62db91ccbde650ffbb332beab9cba0676b0d42fc46034fa3c28a471cc0ec4bf8 SHA512 
a04875bfaef791a6505134dd2530148d5e6baaa8aa5610e75d42fbf59e884fafffb5de2486425bb53e6464ff3fd35b974684d8bc85291750e4a7bd8bb82b0da3
 WHIRLPOOL 
7c070f194a67de7fe4ac2f479c6e15a96bf3f182a9065f293b60f5fb979f035c160860ec25ffe0fcc64b30561af94db40b3d8cb113dc8e8cf17cfe2f9bec5248

diff --git a/app-crypt/signing-party/signing-party-2.5.ebuild 
b/app-crypt/signing-party/signing-party-2.5.ebuild
new file mode 100644
index ..986417e5
--- /dev/null
+++ b/app-crypt/signing-party/signing-party-2.5.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils toolchain-funcs autotools
+
+DESCRIPTION="A collection of several tools related to OpenPGP"
+HOMEPAGE="http://pgp-tools.alioth.debian.org/;
+SRC_URI="mirror://debian/pool/main/s/signing-party/${PN}_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-lang/perl"
+RDEPEND="${DEPEND}
+   >=app-crypt/gnupg-1.3.92
+   app-crypt/libmd
+   dev-perl/GnuPG-Interface
+   dev-perl/Text-Template
+   dev-perl/MIME-tools
+   net-mail/qprint
+   >=dev-perl/MailTools-1.62
+   dev-perl/Net-IDN-Encode
+   virtual/mailx
+   virtual/mta
+   || (
+   dev-perl/libintl-perl
+   dev-perl/Text-Iconv
+   app-text/recode
+   )"
+S=$WORKDIR
+
+src_prepare() {
+   # app-crypt/keylookup
+   rm -r keylookup || die
+   # media-gfx/springgraph
+   rm -r springgraph || die
+
+   cd keyanalyze/pgpring || die
+   sed -i 's/AM_C_PROTOTYPES//' configure.ac || die
+   eautoreconf
+   cd "${WORKDIR}" || die
+
+   find . -name Makefile | xargs sed -i -e 's/CFLAGS:=/CFLAGS=/' -e 
's/CPPFLAGS:=/CPPFLAGS=/' -e 's/LDFLAGS:=/LDFLAGS=/'
+
+   sed -i 
"s:/usr/share/doc/signing-party/caff/caffrc.sample:${EPREFIX}/usr/share/doc/${P}/caff/caffrc.sample.gz:g"
 \
+   caff/caff || die
+   sed -i -e 's/automake[^ ]*/true/g' -e 's/autoconf[^ ]*/true/g' 
keyanalyze/Makefile || die
+   sed -i 's/make /\$(MAKE) /' keyanalyze/Makefile || die
+}
+
+src_compile() {
+   emake \
+   CC="$(tc-getCC)" \
+   CPPFLAGS="${CPPFLAGS}" \
+   CFLAGS="${CFLAGS}" \
+   LDFLAGS="${LDFLAGS}" \
+   STRIP=true
+}
+
+src_install() {
+   # Check Makefile when a new tool is introduced to this package.
+   # caff
+   dobin caff/caff caff/pgp-clean caff/pgp-fixkey
+   docinto caff
+   dodoc caff/{README*,THANKS,TODO,caffrc.sample}
+   # gpgdir
+   dobin gpgdir/gpgdir
+   docinto gpgdir
+   dodoc gpgdir/{VERSION,LICENSE,README,INSTALL,CREDITS,ChangeLog*}
+   # gpg-key2ps
+   dobin gpg-key2ps/gpg-key2ps
+   docinto gpg-key2ps
+   dodoc gpg-key2ps/README
+   # gpglist
+   dobin gpglist/gpglist
+   # gpg-mailkeys
+   dobin gpg-mailkeys/gpg-mailkeys
+   docinto gpg-mailkeys
+   dodoc gpg-mailkeys/{example.gpg-mailkeysrc,README}
+   # gpgparticipants
+   dobin gpgparticipants/gpgparticipants
+   # gpgwrap
+   dobin gpgwrap/bin/gpgwrap
+   docinto gpgwrap
+   dodoc gpgwrap/{LICENSE,NEWS,README}
+   doman gpgwrap/doc/gpgwrap.1
+   # gpgsigs
+   dobin 

[gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/

2016-10-15 Thread Manuel Rüger
commit: 3fcb1e3c91f7582b8128d21e649c35424464761c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:25:09 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:25:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fcb1e3c

app-crypt/certbot: Version bump to 0.9.3

Package-Manager: portage-2.3.2

 app-crypt/certbot/Manifest |  1 +
 app-crypt/certbot/certbot-0.9.3.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index 837dcec..845a0fb 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1 +1,2 @@
 DIST certbot-0.8.1.tar.gz 698305 SHA256 
1fb4834eba306a656f26257f86ed298df354cdecb1b0bde316a9d23a1e19db01 SHA512 
8b21d270b5ee847086369b956b3346f50ab0e4490d988e7ca535f4d4101e2859e99bc5f77ac920afd3a6a9210e407b155c89c28d282dc0544735a27e3eaa
 WHIRLPOOL 
909a3f6f63fac84bf6fe8fb35b9aba46c06912af01d5f702eee5b6aeab49d4f2a92fa05e4f060da11ac6cbc89047e92457f626d6c82aa0de0f1127ca79924fc7
+DIST certbot-0.9.3.tar.gz 794146 SHA256 
5c40cfcf3a17624e34dcb733148bd247c4f0cee189766fe0fb6d29571d4068bb SHA512 
a951e639515fc037721d8b086e53100dcc86974a96c61c7173b2a9c0582bb59380efe219caf3fd1517fcdf28dde4a1f66bba84b51e2a2027df114818ff4d7565
 WHIRLPOOL 
45c7b17cffc971acf3b6998c5702abd91c067e095acd9a4264109e711b869ac1db9e7d2a4ff9d86d680f5579b6a2fbca610a6905c81e549f72a10adf17f19da2

diff --git a/app-crypt/certbot/certbot-0.9.3.ebuild 
b/app-crypt/certbot/certbot-0.9.3.ebuild
new file mode 100644
index ..32d09fe
--- /dev/null
+++ b/app-crypt/certbot/certbot-0.9.3.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python2_7)
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   inherit git-r3
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
+HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   =app-crypt/acme-${PV}[${PYTHON_USEDEP}]
+   >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   >=dev-python/cryptography-0.7[${PYTHON_USEDEP}]
+   >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   >=dev-python/psutil-2.2.1[${PYTHON_USEDEP}]
+   dev-python/zope-component[${PYTHON_USEDEP}]
+   dev-python/zope-interface[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:python-2' 
python2_7)
+   dev-python/mock[${PYTHON_USEDEP}]"
+   # for when py3 support is added
+   # $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:0' python3_*)
+DEPEND="
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/astroid-1.3.5[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/pep8[${PYTHON_USEDEP}]
+   >=dev-python/psutil-2.2.1[${PYTHON_USEDEP}]
+   >=dev-python/pylint-1.4.2[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   nosetests -v ${PN} || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/

2016-10-15 Thread Manuel Rüger
commit: b78aa78a2ac50b9abf6fa302a0ac214729b821a1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:25:48 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:25:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b78aa78a

app-crypt/certbot: Sync live ebuild

Package-Manager: portage-2.3.2

 app-crypt/certbot/certbot-.ebuild | 37 ++-
 1 file changed, 23 insertions(+), 14 deletions(-)

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-.ebuild
index 1a4662f..693e420 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-.ebuild
@@ -8,7 +8,6 @@ PYTHON_COMPAT=(python2_7)
 if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/certbot/certbot.git;
inherit git-r3
-   KEYWORDS=""
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
@@ -23,25 +22,35 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="test"
 
-RDEPEND="=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
-   >=dev-python/configargparse-0.10.0[${PYTHON_USEDEP}]
+RDEPEND="
+   =app-crypt/acme-${PV}[${PYTHON_USEDEP}]
+   >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-1.3[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/cryptography-0.7[${PYTHON_USEDEP}]
>=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
-   >=dev-python/psutil-3.0.1[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-0.15[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]
-   >=dev-python/pythondialog-3.2.2:python-2[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
+   >=dev-python/psutil-2.2.1[${PYTHON_USEDEP}]
dev-python/zope-component[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}] )
-   dev-python/setuptools[${PYTHON_USEDEP}]"
+   dev-python/zope-interface[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:python-2' 
python2_7)
+   dev-python/mock[${PYTHON_USEDEP}]"
+   # for when py3 support is added
+   # $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:0' python3_*)
+DEPEND="
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/astroid-1.3.5[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/pep8[${PYTHON_USEDEP}]
+   >=dev-python/psutil-2.2.1[${PYTHON_USEDEP}]
+   >=dev-python/pylint-1.4.2[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   )"
 
 python_test() {
-   nosetests -w ${PN}/tests || die
+   nosetests -v ${PN} || die
 }



[gentoo-commits] repo/gentoo:master commit in: app-office/gnucash/

2016-10-15 Thread Gilles Dartiguelongue
commit: 39829b64674ad9a7344a6c6f780a9ff2a479ae8a
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 20:40:46 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 20:43:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39829b64

app-office/gnucash: version bump to guile-2 support

Gentoo-bug: 590536

Package-Manager: portage-2.3.1

 .../{gnucash-2.6.13.ebuild => gnucash-2.6.13-r1.ebuild}| 14 --
 app-office/gnucash/gnucash-2.6.13.ebuild   |  3 ++-
 2 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/app-office/gnucash/gnucash-2.6.13.ebuild 
b/app-office/gnucash/gnucash-2.6.13-r1.ebuild
similarity index 90%
copy from app-office/gnucash/gnucash-2.6.13.ebuild
copy to app-office/gnucash/gnucash-2.6.13-r1.ebuild
index c18747d..1742f5d 100644
--- a/app-office/gnucash/gnucash-2.6.13.ebuild
+++ b/app-office/gnucash/gnucash-2.6.13-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="chipcard debug +doc gnome-keyring hbci mysql ofx postgres python quotes 
sqlite"
 
 # FIXME: rdepend on dev-libs/qof when upstream fix their mess (see 
configure.ac)
@@ -24,7 +24,7 @@ RDEPEND="
>=dev-libs/popt-1.5
>=dev-libs/libxml2-2.5.10:2
dev-libs/libxslt
-   >=dev-scheme/guile-1.8.3:12[deprecated,regex]
+   >=dev-scheme/guile-2.0.0:12[deprecated,regex]
dev-scheme/guile-www
gnome-base/libgnomecanvas
>=net-libs/webkit-gtk-1.2:2
@@ -83,23 +83,17 @@ src_configure() {
$(use_enable ofx) \
$(use_enable hbci aqbanking) \
$(use_enable python) \
-   --with-guile=1.8 \
--disable-doxygen \
--disable-gtkmm \
--enable-locale-specific-tax \
--disable-error-on-warning \
+   --with-guile=2.0 \
${myconf}
 }
 
-src_test() {
-   GUILE_WARN_DEPRECATED=no \
-   GNC_DOT_DIR="${T}"/.gnucash \
-   emake check
-}
-
 src_install() {
# Parallel installation fails from time to time, bug #359123
-   MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install 
GNC_DOC_INSTALL_DIR=/usr/share/doc/${PF}
+   gnome2_src_install -j1 GNC_DOC_INSTALL_DIR=/usr/share/doc/${PF}
 
rm -rf 
"${ED}"/usr/share/doc/${PF}/{examples/,COPYING,INSTALL,*win32-bin.txt,projects.html}
mv "${ED}"/usr/share/doc/${PF} "${T}"/cantuseprepalldocs || die

diff --git a/app-office/gnucash/gnucash-2.6.13.ebuild 
b/app-office/gnucash/gnucash-2.6.13.ebuild
index c18747d..2fe1efc 100644
--- a/app-office/gnucash/gnucash-2.6.13.ebuild
+++ b/app-office/gnucash/gnucash-2.6.13.ebuild
@@ -25,6 +25,7 @@ RDEPEND="
>=dev-libs/libxml2-2.5.10:2
dev-libs/libxslt
>=dev-scheme/guile-1.8.3:12[deprecated,regex]
+   =net-libs/webkit-gtk-1.2:2
@@ -83,11 +84,11 @@ src_configure() {
$(use_enable ofx) \
$(use_enable hbci aqbanking) \
$(use_enable python) \
-   --with-guile=1.8 \
--disable-doxygen \
--disable-gtkmm \
--enable-locale-specific-tax \
--disable-error-on-warning \
+   --with-guile=1.8 \
${myconf}
 }
 



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/git-sources/

2016-10-15 Thread Mike Pagano
commit: 53eb552b23263a4d5dde775c23b0828c0a3cd79a
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Oct 15 19:42:25 2016 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Oct 15 19:42:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53eb552b

sys-kernel/git-sources: Linux development version 4.9_rc1. Cleanup old kernels.

Package-Manager: portage-2.3.0

 sys-kernel/git-sources/Manifest| 11 ++
 sys-kernel/git-sources/git-sources-4.8_rc1.ebuild  | 41 --
 sys-kernel/git-sources/git-sources-4.8_rc2.ebuild  | 41 --
 sys-kernel/git-sources/git-sources-4.8_rc3.ebuild  | 41 --
 sys-kernel/git-sources/git-sources-4.8_rc5.ebuild  | 41 --
 sys-kernel/git-sources/git-sources-4.8_rc6.ebuild  | 41 --
 sys-kernel/git-sources/git-sources-4.8_rc7.ebuild  | 41 --
 sys-kernel/git-sources/git-sources-4.8_rc8.ebuild  | 41 --
 ...s-4.8_rc4.ebuild => git-sources-4.9_rc1.ebuild} |  2 +-
 9 files changed, 3 insertions(+), 297 deletions(-)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 09d2874..d2d9bfc 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -1,9 +1,2 @@
-DIST linux-4.7.tar.xz 90412100 SHA256 
5190c3d1209aeda04168145bf50569dc0984f80467159b1dc50ad731e3285f10 SHA512 
e8c02583e17e4fc4214fef694825fcb78c898266f1624deb1cdf56ab5c5fdfa669c5221122a7cf0d502ed6f921ff3797634acd9d294d29e98e3faa8a21920185
 WHIRLPOOL 
e968c89ce714c8d918db6074dabac4b0200c57ff111260313cf5798eeefb8b5b10c1509b64e2ee611a78e81075c588a473b67f9802609b2fef9ebb87ae514d98
-DIST patch-4.8-rc1.xz 6519232 SHA256 
e7f3214d3718a6f92de61e3849d358e17f526ae4c827c203a80f661d9a5a4788 SHA512 
f69936802321b5a6c11e946f87f78abfbb1a1365a5225357a8f8ed07e031634c566607dcfadecec6cb96761bbd931f54a446028e1f402077d51322ac812d
 WHIRLPOOL 
79ee22a00cfc2c0072e1da94076157e235b0bd5035096d4ef3c24c3f7093f997231d9fbdab4cd6fa6741234afb2f21860b5ae62d0a43ea602807f6bbb3e2ff36
-DIST patch-4.8-rc2.xz 6562096 SHA256 
148b8c5879315d80f32ffe2aebcfeb0fb91545e2e194362b37bef50a696d195d SHA512 
8fac25899d2d5987ccbb1495ed6dbdd0c0a670c7c7dc937ed74376ba678bf95d1966d52d497bb319e14b619eb8ad2ccb2654adac9fb59eb0e9ad4a9936d00f80
 WHIRLPOOL 
d1edbd67d7f3e5673e0ee7d22011da851fbbd13c765e07c7deb32c08c6955810c424c169459a756933d429bb21c81d6d2803d97835fcd8ce797b6d44234b50a7
-DIST patch-4.8-rc3.xz 6623408 SHA256 
f0aa7b462f13494a39d3c54dc73811c6381ec9f40b58ae956092df0411d576db SHA512 
3858fabadba3a1771989a128e79e4930f4d98a52c05a3149bbfb9c09bae0895c5f6c52b8066b4df5d96ecc477f142d99c291e002ce8e27baa464889eec65d510
 WHIRLPOOL 
fe02d94f19123932c5fc79a48d75582c4a49f428a8fbffba2742723c354c0b9b502b60f07bf12114846d83b21fcaf9ed4c3c7dd742793d718bbd1bfc0e93bb00
-DIST patch-4.8-rc4.xz 6655212 SHA256 
56832aae956174d01cf5381947fbb6a0339902285aab2d3ffc804028a4fc5d4a SHA512 
fc4c6e3860cdc71020caa07d84b6b3bc95242e41fea81c8b3273453ea118df779ed835eae3f09f437aa0260cea332cbed7f2c3908b822b4d620859a960e77f6f
 WHIRLPOOL 
0bf776053567925b7460c5b17baf841d44296d4f9910139dad425f439e541b35f74302fd13cfa1d8baceaeb415f101b99de89a698bb0e543d5be62fee2de6b34
-DIST patch-4.8-rc5.xz 6708372 SHA256 
5d3bb6f9c07fefc102669e905765b7d2ec4be746594ace5510b7f355f1b1f0f0 SHA512 
09e18d12e292022879983f3f2e096920c3e9e3158adecce06130ba3a2c43a753c6df732eb830e3a61313852b6ef122f7edf110ed3b172e678dc96edddcace17e
 WHIRLPOOL 
75fb5293936d185f62a3bd55309bd1a86ea4204cb8b67c2bf15434d69ef078284382631e851ef2914998db265cebd27d6838e8a7538727cbef1063a77a82cdb8
-DIST patch-4.8-rc6.xz 6733472 SHA256 
d234651980608b881ad25d413991b744ab2472622357e3237ae308082e3482e4 SHA512 
a85b529e56363b8f6de5180bd5ba1f4bb2157cbe802add9dfe8aca6a79e3835276d9bd1af66e0b4fc47dfa1cb500844e54e998dc7ae19260ba299ca5ce8326c4
 WHIRLPOOL 
d197a315c420963e60c4e8de6316d28319c2b7be2e32672ef9b3a71356b10a03ee73593389d8d1c9603ef43c2c4f2b7a8c75055d3f3a8867c1d0298182a5c3dc
-DIST patch-4.8-rc7.xz 6776720 SHA256 
0af865700e23f0b86cd332246db633972e1250f57b8640cf41f0841538007045 SHA512 
d90aebcf394e914ed777cc569e19e02cd3c147e2eb9faede0801a94703f1caabbb0254441822f6e6dce1051bdd1305b7a3b1feb7d42b2f08f2eab2615b9d384f
 WHIRLPOOL 
2619ba3e9121b12527ee62bf520fa42232f99c97bbd3cda21d6d0aeed398d5212fa9ad41ac0f4cfda819dc39fb65d08054ecf252df1137e9c0a366f4bb4baff2
-DIST patch-4.8-rc8.xz 6803496 SHA256 
f7321c0a51e5d20142669bb5482cfb54e65d1e480c514c692d6ae90f74884595 SHA512 
2a8ecf6b78688c6e76f0f6af449f7d149d92e40f85def8daa4473687436661ab076d8f2dab5b452f1246821cfbb0b31169b1d24f831164e8461ba072ae2b4087
 WHIRLPOOL 
d8e6b6dbf0eafa2fd0d9ccc4bd7d7eeae1d25c216c9c3cf9eb2ffa599bab4abae12fb3a420f399d2b5cb8e20b8531cfb83956571bb7ec9cc9910141c656da735
+DIST linux-4.8.tar.xz 91966856 SHA256 
3e9150065f193d3d94bcf46a1fe9f033c7ef7122ab71d75a7fb5a2f0c9a7e11a SHA512 

[gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/, net-mail/notmuch/files/

2016-10-15 Thread Amadeusz Piotr Żołnowski
commit: 926540f8775a045100134ac33a5af23752551964
Author: Amadeusz Żołnowski  gentoo  org>
AuthorDate: Sat Oct 15 19:18:32 2016 +
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Sat Oct 15 19:18:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=926540f8

net-mail/notmuch: Backport fixes to 0.23

Fix Emacs 25.1 compatibility issue. Restore colours for unread and
flagged tags accidentally swapped in 0.23.

Package-Manager: portage-2.3.2

 .../files/0.23-0001-emacs-id-buttonization.patch   |  43 +
 .../files/0.23-0002-emacs-search-face-bugfix.patch |  36 
 net-mail/notmuch/notmuch-0.23-r1.ebuild| 204 +
 3 files changed, 283 insertions(+)

diff --git a/net-mail/notmuch/files/0.23-0001-emacs-id-buttonization.patch 
b/net-mail/notmuch/files/0.23-0001-emacs-id-buttonization.patch
new file mode 100644
index ..0c05373
--- /dev/null
+++ b/net-mail/notmuch/files/0.23-0001-emacs-id-buttonization.patch
@@ -0,0 +1,43 @@
+From b913a28f65e32380a84da735e0524f8d5c127f93 Mon Sep 17 00:00:00 2001
+From: David Bremner 
+Date: Sun, 9 Oct 2016 19:30:44 -0300
+Subject: [PATCH 1/3] emacs/show: force notmuch-show-buttonise-links to act on
+ lines
+
+This seems to fix a problem with emacs 25 creating partial buttons by
+calling n-s-b-l with a region that does not include the whole button.
+I'm not 100% sure it's legit to act outside the region passed by
+jit-lock, but goto-address-fontify-region (where I borrowed the code
+from) already does this, so this patch to not make things worse.
+---
+ emacs/notmuch-show.el | 12 +++-
+ 1 file changed, 7 insertions(+), 5 deletions(-)
+
+diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
+index 641398d..e7d16f8 100644
+--- a/emacs/notmuch-show.el
 b/emacs/notmuch-show.el
+@@ -1174,13 +1174,15 @@ This also turns id:\"\"-parts and mid: 
links into
+ buttons for a corresponding notmuch search."
+   (goto-address-fontify-region start end)
+   (save-excursion
+-(let (links)
+-  (goto-char start)
+-  (while (re-search-forward notmuch-id-regexp end t)
++(let (links
++(beg-line (progn (goto-char start) (line-beginning-position)))
++(end-line (progn (goto-char end) (line-end-position
++  (goto-char beg-line)
++  (while (re-search-forward notmuch-id-regexp end-line t)
+   (push (list (match-beginning 0) (match-end 0)
+   (match-string-no-properties 0)) links))
+-  (goto-char start)
+-  (while (re-search-forward notmuch-mid-regexp end t)
++  (goto-char beg-line)
++  (while (re-search-forward notmuch-mid-regexp end-line t)
+   (let* ((mid-cid (match-string-no-properties 1))
+  (mid (save-match-data
+ (string-match "^[^/]*" mid-cid)
+-- 
+2.10.1
+

diff --git a/net-mail/notmuch/files/0.23-0002-emacs-search-face-bugfix.patch 
b/net-mail/notmuch/files/0.23-0002-emacs-search-face-bugfix.patch
new file mode 100644
index ..39651cb
--- /dev/null
+++ b/net-mail/notmuch/files/0.23-0002-emacs-search-face-bugfix.patch
@@ -0,0 +1,36 @@
+From e64f1ec1db49406d4834b09d8c4b2aec83ba66cb Mon Sep 17 00:00:00 2001
+From: Mark Walters 
+Date: Wed, 12 Oct 2016 08:39:21 +0100
+Subject: [PATCH 2/3] emacs: search face bugfix
+
+In commit 2a7b11b064233afc4feead876fa396e3c18a6b91 the default faces
+for unread and flagged were accidentally swapped. This swaps them back.
+---
+ emacs/notmuch.el | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/emacs/notmuch.el b/emacs/notmuch.el
+index 8e14692..48c33fd 100644
+--- a/emacs/notmuch.el
 b/emacs/notmuch.el
+@@ -313,7 +313,7 @@ there will be called at other points of notmuch execution."
+ 
+ (defface notmuch-search-flagged-face
+   '((t
+- (:weight bold)))
++ (:foreground "blue")))
+   "Face used in search mode face for flagged threads.
+ 
+ This face is the default value for the \"flagged\" tag in
+@@ -323,7 +323,7 @@ This face is the default value for the \"flagged\" tag in
+ 
+ (defface notmuch-search-unread-face
+   '((t
+- (:foreground "blue")))
++ (:weight bold)))
+   "Face used in search mode for unread threads.
+ 
+ This face is the default value for the \"unread\" tag in
+-- 
+2.10.1
+

diff --git a/net-mail/notmuch/notmuch-0.23-r1.ebuild 
b/net-mail/notmuch/notmuch-0.23-r1.ebuild
new file mode 100644
index ..2f4c8d4
--- /dev/null
+++ b/net-mail/notmuch/notmuch-0.23-r1.ebuild
@@ -0,0 +1,204 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DISTUTILS_OPTIONAL=1
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit bash-completion-r1 elisp-common eutils flag-o-matic pax-utils \
+   distutils-r1 toolchain-funcs
+
+DESCRIPTION="Thread-based e-mail indexer, supporting quick search and tagging"
+HOMEPAGE="http://notmuchmail.org/;

[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/

2016-10-15 Thread Thomas Deutschmann
commit: c7f5fede92086cd68a6a0e52015c0af3442b4737
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Oct 15 19:03:26 2016 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Oct 15 19:03:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f5fede

www-servers/nginx: Adjust dependencies/slot operators

Package-Manager: portage-2.3.2

 www-servers/nginx/nginx-1.10.1-r3.ebuild | 24 
 www-servers/nginx/nginx-1.10.1-r4.ebuild | 24 
 www-servers/nginx/nginx-1.10.1.ebuild| 24 
 www-servers/nginx/nginx-1.11.4.ebuild| 24 
 www-servers/nginx/nginx-1.11.5.ebuild| 24 
 5 files changed, 80 insertions(+), 40 deletions(-)

diff --git a/www-servers/nginx/nginx-1.10.1-r3.ebuild 
b/www-servers/nginx/nginx-1.10.1-r3.ebuild
index fe9f071..8716c66 100644
--- a/www-servers/nginx/nginx-1.10.1-r3.ebuild
+++ b/www-servers/nginx/nginx-1.10.1-r3.ebuild
@@ -230,8 +230,8 @@ done
 IUSE="${IUSE} nginx_modules_http_spdy"
 
 CDEPEND="
-   pcre? ( >=dev-libs/libpcre-4.2 )
-   pcre-jit? ( >=dev-libs/libpcre-8.20[jit] )
+   pcre? ( dev-libs/libpcre:= )
+   pcre-jit? ( dev-libs/libpcre:=[jit] )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
@@ -250,21 +250,27 @@ CDEPEND="
nginx_modules_http_gunzip? ( sys-libs/zlib )
nginx_modules_http_gzip? ( sys-libs/zlib )
nginx_modules_http_gzip_static? ( sys-libs/zlib )
-   nginx_modules_http_image_filter? ( media-libs/gd[jpeg,png] )
-   nginx_modules_http_perl? ( >=dev-lang/perl-5.8 )
-   nginx_modules_http_rewrite? ( >=dev-libs/libpcre-4.2 )
+   nginx_modules_http_image_filter? ( media-libs/gd:=[jpeg,png] )
+   nginx_modules_http_perl? ( >=dev-lang/perl-5.8:= )
+   nginx_modules_http_rewrite? ( dev-libs/libpcre:= )
nginx_modules_http_secure_link? (
userland_GNU? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
)
)
-   nginx_modules_http_xslt? ( dev-libs/libxml2 dev-libs/libxslt )
+   nginx_modules_http_xslt? ( dev-libs/libxml2:= dev-libs/libxslt )
nginx_modules_http_lua? ( !luajit? ( dev-lang/lua:0= ) luajit? ( 
dev-lang/luajit:2= ) )
nginx_modules_http_auth_pam? ( virtual/pam )
-   nginx_modules_http_metrics? ( dev-libs/yajl )
+   nginx_modules_http_metrics? ( dev-libs/yajl:= )
nginx_modules_http_dav_ext? ( dev-libs/expat )
-   nginx_modules_http_security? ( >=dev-libs/libxml2-2.7.8 
dev-libs/apr-util www-servers/apache )
+   nginx_modules_http_security? (
+   dev-libs/apr:=
+   dev-libs/apr-util:=
+   dev-libs/libxml2:=
+   net-misc/curl
+   www-servers/apache
+   )
nginx_modules_http_auth_ldap? ( net-nds/openldap[ssl?] )"
 RDEPEND="${CDEPEND}
selinux? ( sec-policy/selinux-nginx )
@@ -356,6 +362,8 @@ src_configure() {
fi
./configure \
--enable-standalone-module \
+   --disable-mlogc \
+   --with-ssdeep=no \
$(use_enable pcre-jit) \
$(use_with nginx_modules_http_lua lua) || die 
"configure failed for mod_security"
fi

diff --git a/www-servers/nginx/nginx-1.10.1-r4.ebuild 
b/www-servers/nginx/nginx-1.10.1-r4.ebuild
index 4e28658..f5a4f5e 100644
--- a/www-servers/nginx/nginx-1.10.1-r4.ebuild
+++ b/www-servers/nginx/nginx-1.10.1-r4.ebuild
@@ -230,8 +230,8 @@ done
 IUSE="${IUSE} nginx_modules_http_spdy"
 
 CDEPEND="
-   pcre? ( >=dev-libs/libpcre-4.2 )
-   pcre-jit? ( >=dev-libs/libpcre-8.20[jit] )
+   pcre? ( dev-libs/libpcre:= )
+   pcre-jit? ( dev-libs/libpcre:=[jit] )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
@@ -250,21 +250,27 @@ CDEPEND="
nginx_modules_http_gunzip? ( sys-libs/zlib )
nginx_modules_http_gzip? ( sys-libs/zlib )
nginx_modules_http_gzip_static? ( sys-libs/zlib )
-   nginx_modules_http_image_filter? ( media-libs/gd[jpeg,png] )
-   nginx_modules_http_perl? ( >=dev-lang/perl-5.8 )
-   nginx_modules_http_rewrite? ( >=dev-libs/libpcre-4.2 )
+   nginx_modules_http_image_filter? ( media-libs/gd:=[jpeg,png] )
+   nginx_modules_http_perl? ( >=dev-lang/perl-5.8:= )
+   nginx_modules_http_rewrite? ( dev-libs/libpcre:= )
nginx_modules_http_secure_link? (
userland_GNU? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
)
)
-   nginx_modules_http_xslt? ( dev-libs/libxml2 dev-libs/libxslt )
+   nginx_modules_http_xslt? ( dev-libs/libxml2:= 

[gentoo-commits] repo/user/ssnb:master commit in: app-emulation/opennebula/, app-emulation/opennebula/files/

2016-10-15 Thread Samuel Bernardo
commit: c78be9354fc487b07110f88114b8a40d469c25c3
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sat Oct 15 18:12:24 2016 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sat Oct 15 18:12:24 2016 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=c78be935

add opennebula

 app-emulation/opennebula/Manifest  |  22 ++
 app-emulation/opennebula/files/99one   |   1 +
 .../opennebula/files/OpenNebulaVNC.rb.diff |  11 +
 app-emulation/opennebula/files/one_auth|   1 +
 .../opennebula/files/oneflow-server.confd  |  10 +
 .../opennebula/files/oneflow-server.initd  |  34 +++
 .../opennebula/files/opennebula-econe.service  |  15 ++
 .../opennebula/files/opennebula-oneflow.service|  15 ++
 .../opennebula/files/opennebula-onegate.service|  15 ++
 .../opennebula/files/opennebula-sunstone.service   |  15 ++
 app-emulation/opennebula/files/opennebula.confd|  12 ++
 app-emulation/opennebula/files/opennebula.initd|  40 
 app-emulation/opennebula/files/opennebula.service  |  18 ++
 .../opennebula/files/sunstone-server.confd |  10 +
 .../opennebula/files/sunstone-server.initd |  34 +++
 .../opennebula/files/tmpfilesd.opennebula.conf |   2 +
 app-emulation/opennebula/files/websocket.py.diff   |   8 +
 .../opennebula/files/websocketproxy.py.diff|   8 +
 app-emulation/opennebula/metadata.xml  |  17 ++
 app-emulation/opennebula/opennebula-4.14.2.ebuild  | 240 +
 app-emulation/opennebula/opennebula-5.0.2.ebuild   | 175 +++
 21 files changed, 703 insertions(+)

diff --git a/app-emulation/opennebula/Manifest 
b/app-emulation/opennebula/Manifest
new file mode 100644
index 000..ac2ea27
--- /dev/null
+++ b/app-emulation/opennebula/Manifest
@@ -0,0 +1,22 @@
+AUX 99one 29 SHA256 
23f712a26b7a9d679a7c515635e2733d67e3968e820ca786dbebe9ddc9a3fed7 SHA512 
6a8287ff68a6489a65ead46a9e456c4f985874ed3a307fae0c623d070383c663f3748124c48d3fb05df6511e0388278d8afe00fb7427e6674903d079ee611f2d
 WHIRLPOOL 
7e63f6312558ba5dad28f7fa56812dd55fcaf4022998ac466405967f9175110d168dc8ea18dff7b27eea3384423166a3dc77a0cf32fc6900c1b60bdf8fa93c0e
+AUX OpenNebulaVNC.rb.diff 428 SHA256 
c90ca535030d2c847fe708613cb287b6c3ba4082b9bb2799a8e516be505260c6 SHA512 
f8597bd1ee6577e5dc2b06e03cd2ccd7fb9a0262d3e645822be54eb34a1fdec8f420b0ee8b53eb1902a0c94d22f09a7077e1e47960e36d854973ec9e45143182
 WHIRLPOOL 
c9ab1e2240db6b9358d3958aac99159f29f4b929bf946d4d6a7018e1348a0561ada4cdee8128ba5e6c2cb5491f3a7e003cdc8f68cc1f381542b5bf50d8e51475
+AUX one_auth 18 SHA256 
dc0dc9ebd04d211e795a6407c8431e4950407d42fde53755fa09bf06234543d1 SHA512 
c4cc94b521013fffbaba6c0949e753e3239b5e734b783dc9f5929d212a8530215fddd311424cee51228ebfdb61d622bbdfaa768dc08603341ac70b010c14
 WHIRLPOOL 
f6ae1dec20c7057d2f6a17b2d76edb9df870bc88b1f404c5f22d417819f17af798d34cbb8753862631d5702ee4deb56b7bcfd701cd5a818e10ad637caa729752
+AUX oneflow-server.confd 162 SHA256 
a467adec388b323907c4ed5d62e7015004cac47a674412537e3a21509cb29315 SHA512 
0b9ac8968731b1da1e66725b18491014949d7225e38ca8ad7c0cfedf44d055dd9c170298b5ead6b10dcc13a2d60c30013288d9b818f09ff05f3c8905924e9532
 WHIRLPOOL 
040fc3e0aefc277fa2d85639ba653a6f36b36845e6ee62794bdd4dbb2c5e953207f9957a1940abeafb1632735b71cb9acbd1d538f826c940a3d5971de1ad1e39
+AUX oneflow-server.initd 780 SHA256 
1829972bbf671b75ae2c2975aed8d88f7bb1788474961db25ebbc737529cdf87 SHA512 
4fa3c5339c8baadaeb48e6bf1beab1a25c2bd3af3c389414e4456fafa6582e80abcdafd46e6f497ac950316b8859a673cf2f2012e840c5ac2edcf95cc3fb7eb1
 WHIRLPOOL 
d979b1fff77e6afb6c63d2a9f551f25853999b27fa2a175796721ad0931d4be855d262ffd2f85ff66613c21e19c2c36f5d26a5139d91f90ce6818f3f5ae5
+AUX opennebula-econe.service 335 SHA256 
5f95bac1eca00d126c16b7515f27c713894470a391cc6ee02f3f4592602b4265 SHA512 
07c0da1ca2e40cdb479b733c542eb66624963397d7a8916060614b5b9426cc059e438a86839b70da30dc293e6d4b72a80b35a73f6596a0d91fc2101365f6f95c
 WHIRLPOOL 
0873a98059662e16e98bda13c73eac1b594c730b3d056f58e56d874a4b8623c00bcb4ce6d0958ffb2f77e2faa7236967ef92f29b65fac65fe5f918bb10d3ea38
+AUX opennebula-oneflow.service 339 SHA256 
ed04fc1a6957a8926611e0ed8553fdf0075e714b9c5fec556e838ec31e503eb0 SHA512 
35bf121270602462f180d621e210ae814c240774c834150c971c1db0f96266e1b23844e0f460a13f401f9290a2155b5ea2732b831f4af5fa8010a06b1ead3ae8
 WHIRLPOOL 
18422c3067bf3621941b6079b9d78fb9da657fd5a7ee078a1c5273a7ef33d16802fa350860f23ec147b04007b412cfbacbadb6085d119a50cd8f476b864349f2
+AUX opennebula-onegate.service 341 SHA256 
e90299f1f3edffe523b3bd39dfed9579156c17bed4039fc1065a1d2a1f112a8b SHA512 
5da2c794d6c207765901573813cbb03198e34022a574f47c90cdc9f6c5e023c98860afe9a4f3847de1a2b5f759fb48c3cf01881d3fa0876b919ecd9c7dd8b6da
 WHIRLPOOL 
fd7cc053c8c4dce01bbfaa69a02033ab60202a314f09ed1719bc7f479385830e1b65a45a36ff6a3c23a2ff2ea8cbd2f657fe4cbfa07289871f705052bb55e1c9
+AUX opennebula-sunstone.service 342 SHA256 

[gentoo-commits] data/api:master commit in: files/overlays/

2016-10-15 Thread Michał Górny
commit: 62000207aaa33ce509d4a251a356e2518d53e5b0
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Oct 15 17:48:35 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Oct 15 17:49:04 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=62000207

repositories: Remove spiderlay, #595650

 files/overlays/repositories.xml | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 59105d5..23347e2 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -4425,17 +4425,6 @@ FIN
 https://bitbucket.org/sortsmill/sortsmill-gentoo-overlay/rss
   
   
-spiderlay
-
-http://git.spheniscida.de/index.cgi/spiderlay.git/
-
-  ara...@aixah.de
-  aranea
-
-git://spheniscida.de/spiderlay.git
-
http://git.spheniscida.de/index.cgi/spiderlay.git/atom/?h=master
-  
-  
 spike
 This repository contains the ebuild used to build 
spike, a pentesting distro based on Sabayon.
 https://github.com/Spike-Pentesting/spike-overlay



[gentoo-commits] proj/musl:master commit in: sys-fs/dosfstools/, sys-fs/dosfstools/files/

2016-10-15 Thread Felix Janda
commit: b558b3736aba9f91abd8ece97286073a332f46e0
Author: stefson  yahoo  de>
AuthorDate: Sat Oct 15 13:42:02 2016 +
Commit: Felix Janda  posteo  de>
CommitDate: Sat Oct 15 17:37:47 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=b558b373

sys-fs/dosfstools: sync with tree, add patch to fix path-max

 sys-fs/dosfstools/Manifest | 10 ++---
 sys-fs/dosfstools/dosfstools-3.0.28-r99.ebuild | 29 -
 sys-fs/dosfstools/dosfstools-4.0-r1.ebuild | 49 ++
 ...tools-3.0.27-Fix-format-string-in-check.c.patch | 25 ---
 .../dosfstools-3.0.28-fix_build_with_musl.patch| 25 ---
 .../dosfstools-4.0-fix-path-max-with-musl.patch| 11 +
 .../dosfstools/files/dosfstools-4.0-udevlibs.patch | 36 
 sys-fs/dosfstools/metadata.xml |  3 ++
 8 files changed, 104 insertions(+), 84 deletions(-)

diff --git a/sys-fs/dosfstools/Manifest b/sys-fs/dosfstools/Manifest
index 7ec6953..c18af4d 100644
--- a/sys-fs/dosfstools/Manifest
+++ b/sys-fs/dosfstools/Manifest
@@ -1,5 +1,5 @@
-AUX dosfstools-3.0.27-Fix-format-string-in-check.c.patch 886 SHA256 
44f80903b89d69d51ec71fb0fb1a1a560c5e795c8c9a3a25e8d84ac81cf423fa SHA512 
d278ba4fbf79bfd1490c1f693113da5e047a394b639e3ca29e13e98604dddecf61c860e9dc1a0ef9b84c97c1d467a05d61a9e9e8942d24ca8dfe39e05599bfb4
 WHIRLPOOL 
fa2bd8339a3cab8787ada26ab2df54af5e27c980dd33761aa7d603d115053f8b756ff7252d8168280579d99d5287ae88c6e313c2f92a31c397f3014fb0d17e28
-AUX dosfstools-3.0.28-fix_build_with_musl.patch 815 SHA256 
fb8cafac2fc31b726aa5a8a74b29554a6865a6b92fb8aacf01fafc630dcc18bd SHA512 
f1bc61db4f28ceb70ec30be007ca1b67616b61ec44c82cb373d83803fa8a075cc051ae77a002ed487764f2623309db6d61b5bbb9a5764d48511feeaf2ef6fb54
 WHIRLPOOL 
1627ff041848a67f768ec6e706f22c7dded41992499694e073107d5cad745f5c452f2d69ec4e8d3be5d0231152e96fc52a3af088e8a0900ce01cf6d0b65a7409
-DIST dosfstools-3.0.28.tar.xz 82980 SHA256 
ee95913044ecf2719b63ea11212917649709a6e53209a72d622135aaa8517ee2 SHA512 
7325a9e05f51715b358cab0a8fa8f8096422b470f1a43eecfab2adbb954e1daf6a24003121be5b3a22de5fcb3e3adffbf1551e2158852b6663fd57a109f057ad
 WHIRLPOOL 
b584aa1dee4db96c04f19b6ac46b6322c533fcadbafb09546412e4d6a7568e23abe6985389dc446dacbe2d14f36dd7a8b52fc83b93ab1f5864b4b61f14f6ffd0
-EBUILD dosfstools-3.0.28-r99.ebuild 844 SHA256 
2264bc8fe97438fb6e3e425d4dbf989c705bfe41eddf5ee42caa5011fe8bf6e2 SHA512 
f038ca907284f5fd751789fa977e147f70091b2a55e2659feec61fb51ad239ed1d40438dfc77138663ad67f124f6f144b933aa3713feeccd3ac40a3d64f97c12
 WHIRLPOOL 
457728dbbcc04b5cfd1ebd71059ef8256e60bd9149a5a141c7d7c655d388fbd78205a4e233b26cf7d11c2ecf67aca571e9fac6274593ad21ac8e0db048e1912e
-MISC metadata.xml 336 SHA256 
3ade627f556b298b7ecbb4752b605e9293190a363bccf4d7a8a5b37e1bd011ca SHA512 
9b4ff28a14cb214c99ee641b052685ae7557049e1489bcb7db3d237ba5f5d01583fb25d3e5b9830fbeac07935e7198b832c31355c06e9ab05fd6062025c6dffc
 WHIRLPOOL 
78e62036184ef7a82fc4047073edc738bfac3fb4762095284df91a4bfb09937a66ca96fc31ff1d4914c024ef27dc5aebbe800bae219a7b47a56a74f91992e02e
+AUX dosfstools-4.0-fix-path-max-with-musl.patch 164 SHA256 
7076041b498d9d88b2bd652a7051def2fb5029a58051dfcf87fbe3df23ad1a61 SHA512 
b9283f15dd56f465db08a4ad167f6c50a0b267a7f05caebbfadda0fb70e76bee043bb7158fd00a7c49c8fdb70f89064a7d5a0627608e37d90cccd47f1ffe350a
 WHIRLPOOL 
f4b9384cb0583cfe45b98b90fee21f41db160e84fbf51c3ffe350555f9d46e2e642a42404dadcff4ae934d6bbe91f3f0cbc47f10069c074b8f984301ad934b24
+AUX dosfstools-4.0-udevlibs.patch 1132 SHA256 
5b06733ca41ef9def498cb75c1636f473b2624c6f8cb9334092cbb0c933b712a SHA512 
0ae6fac866f4f634ed733279859c039f789d8420401217c039c06c995cd0be1fc697b24353135ee5c7abf04e4638c810726f0a310979251dd126e70c76739928
 WHIRLPOOL 
d6bfebe17ec7741661409fe9e25a353059792d61f1a0698d01d5382062bcf8201833b1c6f642790adea1cd83c9cce45629002a8cf53eb7ac30cf09efe02e9b1e
+DIST dosfstools-4.0.tar.xz 157564 SHA256 
9037738953559d1efe04fc5408b6846216cc0138f7f9d32de80b6ec3c35e7daf SHA512 
81acf54dc87e1a8b436848b0c8c596c8b9a2f334c5b3e5496547feb243b70ef320a621a9b5afaa8b054f45a5c2184fae9ae167019f2f83aba417a10954a23a58
 WHIRLPOOL 
eb6de4523ff2fbc7161bd75e0983148faf85d700489647ad8792abd4fb41503b85b2b2b6feb684a14d37c0c04d0307a5d885f5010f8ba386037a8e9eea512f85
+EBUILD dosfstools-4.0-r1.ebuild 1197 SHA256 
b2c36c32acf35c724fb2f60f7f8577ef609e1ebb8e485dda320df45042f45e26 SHA512 
2aac5ba6e2797a32f4b187a03142c460662a90c670ada66734d2af04aebd04de803bb43daa3bf08318a8113d7062aae9f607a97c2c6c657eb1df7dea663f97ac
 WHIRLPOOL 
679e670eebd8691b0e327dc01f9ff7ee0338a7a4bf6b3c2040ef35d53de38fff2f7b9275fab36b392c39e516f642143786a442ea4d6eb09dc2e00c242ea00b2f
+MISC metadata.xml 424 SHA256 
821cc5f833e124bfe1fae683127cd2276a69f49870ea3a9748227311aae6cd74 SHA512 
d82795b70fc583b8154a2c3b14b6565cff36924b91fb3888cd2b6c36d8036614be6d67a0ea0fc96f2fa4bfa5516675b8aa74571e578ad8d42c06cb9f503c565d
 WHIRLPOOL 

[gentoo-commits] proj/musl:master commit in: x11-libs/vte/, x11-libs/vte/files/

2016-10-15 Thread Felix Janda
commit: 8e73690210f18f46c2b6ef2125f329d13608a615
Author: stefson  yahoo  de>
AuthorDate: Sat Oct 15 13:26:30 2016 +
Commit: Felix Janda  posteo  de>
CommitDate: Sat Oct 15 17:37:38 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=8e736902

x11-libs/vte: in tree branch 2.91 works

 x11-libs/vte/Manifest  |  3 -
 x11-libs/vte/files/vte-0.42.4-fix-musl-NULLs.patch | 72 
 x11-libs/vte/vte-0.42.4-r99.ebuild | 78 --
 3 files changed, 153 deletions(-)

diff --git a/x11-libs/vte/Manifest b/x11-libs/vte/Manifest
index 2b88c2d..4da657d 100644
--- a/x11-libs/vte/Manifest
+++ b/x11-libs/vte/Manifest
@@ -3,9 +3,6 @@ AUX vte-0.28.2-add_HAVE_ROUND.patch 430 SHA256 
0af936b79e7ecbee4fa14a7dd8853f261
 AUX vte-0.28.2-interix.patch 1566 SHA256 
0c3bd451d2a48dd38b375fc7d72b675bbfcbcda66f6fbcdd20315727d518 SHA512 
f02574f96355c6cedde05d0877d3bf50ed210484a80b6e95e597b0bb225f5968649e67f67d7f112f50302ae6566e4f3d8c59d7a5b65fc95601cac00868d7
 WHIRLPOOL 
cd444a499735517fd523e358fa0ad39f9bd8771911da18f06ddb453cdabace3cdb20e2f9aa13428efb1e6b1227ff9e10b56eb3d27616714ac873eb2a64796ae4
 AUX vte-0.28.2-limit-arguments.patch 1477 SHA256 
164af2b6756329f1ceb0cac77b5e6bc47d486e1bb0b4e5d3a6fc284e4e7f0ae9 SHA512 
e5639d94fd455195c354d03cab04bbb73eff98bc540c813cccf4ab5eb793f4c8ae645fcf2bd502924ed4d38412101341deaf2d28ea8aaea3530a98ffbba8256d
 WHIRLPOOL 
a0d9b077d9748c4cfe26ea03c16d9b29ed7c62e994639ae6510b7b50c4cd91c5215337da9310297dbf2bd105fabe85c45453e998c0aa34445cdcdd7192307739
 AUX vte-0.30.1-alt-meta.patch 2490 SHA256 
31a46fee8fe59bd1d6df54bc502b608fe80da57bf3786e2dc6e9856a4e793ed6 SHA512 
69ed3038f3dcbbd09709667caff5692e4e11e30926bc7692cdbbdef2bb1ae4584ef64b824b5afcb3c57c237a3c0db4d9588ec36778d0994a546b1e6f74c2e430
 WHIRLPOOL 
bc51d9467bb13d627e7355872db5777e3d39ca07753dda9237110f8857d16bca5f8bc4334f9d97df54a2fcbc9234f123247ec8f40508e8120f00ffc46ff0a570
-AUX vte-0.42.4-fix-musl-NULLs.patch 3766 SHA256 
acc4d0673cae030b95d65844ae16523d21af0947469a87432790c4f6eb354571 SHA512 
cbf5eb60e3cf02570389f705e119430c32e133abc30338dc5ed4022aed7c11c3e3caf70d61e714bd32621c45b72d828137089395d41d7248165b3e140c41f89c
 WHIRLPOOL 
2c85a7f5927f2b35c83af4cb2befe60de1c605bd3549a18c8bc5a59ec9601966b53630a2e49ee6d3eefe4f3b1061c95c46059421766e85a10e4e92cd0e7fe28c
 DIST vte-0.28.2.tar.xz 962340 SHA256 
86cf0b81aa023fa93ed415653d51c96767f20b2d7334c893caba71e42654b0ae SHA512 
d6a50481aaa8946cca3779e0b328fef551be534d70366a75385d1f8ead3fcddec57bed85c7d4bc2d9f34546532129e63083aafa33cbb0efcbc7dc9d66e7c45f6
 WHIRLPOOL 
cf491b80cdfbdda6163ec7562f922f1c449e6e927845de28ad8e0b06b47bbbf092f735fc4b72f6131797d17c02c6172888d4db37a520973118d2bfbacd374c2c
-DIST vte-0.42.4.tar.xz 928048 SHA256 
08c88bf5c0aa1dfa3711e2e83b784fb5ea82025661f30b54e93eebd5f4bce113 SHA512 
871b47d976ae8faafabd2b9dd092b40b2b452fcfd7f60182db7c12ade0c265a1810e811a9a54b6a2c2061ff05f06743b90057babf300b98f391481bb02265fb5
 WHIRLPOOL 
e3e9fbf5303770244b10259f1a07e41a7c0168debda2e81673f8fa1e19f591a4d2c643f614636e691ecaf22fc00eb8fce79d9d4a8d20c899f5a7e4ac187259db
 EBUILD vte-0.28.2-r207.ebuild 2783 SHA256 
f496d33402c8f4d2ca1ccae69ed1a7b1da7466be587bd2be11499829448611e3 SHA512 
b1cc15d36eb99a1eed8ffa8beb475f01074053d419741106cb5485a53eb2bd4116eafc4d55a1d7d51cdc2a88fdbbefa5fa0b1cf4f5e4d29461e2f140605ee422
 WHIRLPOOL 
302ad598d4e8499fe1871b87e4853258597f4db7451421b99c1f8d753dbdd636e4b6d5bd12f00d9168d9dbfa386d42a01d27874b8587eac033aaa912a7b3b1c8
-EBUILD vte-0.42.4-r99.ebuild 1683 SHA256 
1ad4007b96550a89866cd0c4871dd09a241823d3ac189a222732562a7cf9d575 SHA512 
4a6ca93cef1d4cf6148e52f06b60d625770a50f92f6a9de5312c607290e5a2b4e00ebfe0b05d9214f0bd66c0ac97321a875897071bba76e730c95949d23dbc1e
 WHIRLPOOL 
2419e1149b194b336c970265e20a632b2e8fcef895f018fdf1beb68712842f8107a4054b497a44a2d60f0d4651a324ca622b4364c628396613b5035d4eeab02f
 MISC metadata.xml 348 SHA256 
e70b7fc4a21f1a7caba00ef2dcc656a7e79e15e0459519e260a27136fb6f0d88 SHA512 
3e3da8172df02c72e955968530e757124b502cb2b3ff750fdc3c52f28c763f22d918fa9b2f08da7d1b87bf3719e4cc726528c9496adde96eee3111f08a54d8d4
 WHIRLPOOL 
15b683c11d7ab6a5648686b2b6a66dd1cf6034a612504a83f96b81253e3089a278bb7c70681ebe543e6904aab9e9f3d3579505cec4caf3df5ed44b34391a4138

diff --git a/x11-libs/vte/files/vte-0.42.4-fix-musl-NULLs.patch 
b/x11-libs/vte/files/vte-0.42.4-fix-musl-NULLs.patch
deleted file mode 100644
index 5b9e976..000
--- a/x11-libs/vte/files/vte-0.42.4-fix-musl-NULLs.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-diff -Naur vte-0.42.4.orig/src/pty.cc vte-0.42.4/src/pty.cc
 vte-0.42.4.orig/src/pty.cc 2016-02-27 14:27:22.37600 +
-+++ vte-0.42.4/src/pty.cc  2016-02-27 14:27:36.49600 +
-@@ -401,7 +401,7 @@
-   array = g_ptr_array_sized_new (g_hash_table_size (table) + 1);
- g_hash_table_iter_init(, table);
- while (g_hash_table_iter_next(, (void**) , (void**) 
)) {
--g_ptr_array_add (array, g_strconcat 

[gentoo-commits] repo/gentoo:master commit in: app-arch/unp/

2016-10-15 Thread Hanno Boeck
commit: 3aa2a77ac8097d38a214b5460f2ca890458594dd
Author: Hanno  gentoo  org>
AuthorDate: Sat Oct 15 17:20:07 2016 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Oct 15 17:20:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aa2a77a

app-arch/unp: fix compilation without LINGUAS variable

Fixes bug #597198.

Package-Manager: portage-2.3.2

 app-arch/unp/unp-2.0_pre7_p1-r1.ebuild | 12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild 
b/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
index 1194f7d..97b3db7 100644
--- a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
+++ b/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
@@ -28,7 +28,11 @@ PATCHES=( "${FILESDIR}/${P}-remove-deprecated-have.diff" )
 src_compile() {
if use nls; then
strip-linguas -i .
-   emake -C po MOFILES="${LINGUAS// /.po }.po"
+   if [ -n "$LINGUAS" ]; then
+   emake -C po MOFILES="${LINGUAS// /.po }.po"
+   else
+   emake -C po
+   fi
fi
 }
 
@@ -40,6 +44,10 @@ src_install() {
dobashcomp bash_completion.d/unp
 
if use nls; then
-   emake -C po MOFILES="${LINGUAS// /.mo }.mo" DESTDIR="${D}" 
install
+   if [ -n "$LINGUAS" ]; then
+   emake -C po MOFILES="${LINGUAS// /.mo }.mo" 
DESTDIR="${D}" install
+   else
+   emake -C po DESTDIR="${D}" install
+   fi
fi
 }



[gentoo-commits] proj/musl:master commit in: dev-libs/libedit/files/, dev-libs/libedit/

2016-10-15 Thread Felix Janda
commit: 92be7b19782abd8f7f0c09b9dd88ffd9e63ee12e
Author: Felix Janda  posteo  de>
AuthorDate: Sat Oct 15 17:15:58 2016 +
Commit: Felix Janda  posteo  de>
CommitDate: Sat Oct 15 17:15:58 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=92be7b19

dev-libs/libedit: works fine with musl-1.1.15 (#560228)

 dev-libs/libedit/Manifest  |   7 -
 .../libedit/files/libedit-20100424.3.0-bsd.patch   |  13 --
 .../libedit-20110709.3.0-weak-reference.patch  |  20 --
 .../libedit-20120311-3.0-el_fn_sh_complete.patch   | 258 -
 .../libedit/files/libedit-ncursesprivate.patch |  13 --
 dev-libs/libedit/libedit-20130712.3.1-r99.ebuild   |  52 -
 dev-libs/libedit/metadata.xml  |  16 --
 7 files changed, 379 deletions(-)

diff --git a/dev-libs/libedit/Manifest b/dev-libs/libedit/Manifest
deleted file mode 100644
index f45f485..000
--- a/dev-libs/libedit/Manifest
+++ /dev/null
@@ -1,7 +0,0 @@
-AUX libedit-20100424.3.0-bsd.patch 724 SHA256 
2226e17f65b2486c45964867a1ed4a699c1861089b7a1501bccc83d28bca6c45 SHA512 
67e0316db39b581b40dcfc15cfc308398d7865d29adc31e43159a30d8b94f50b486aa5da2a9599154138c1c8ae56fa9f6dca663eff174559f8896f50f973eefb
 WHIRLPOOL 
1eaff78933c8628e3c6796c5bfefff8771db8aa50cd1d7a0a68762b219613f50e2ffdc6afe317712038707d9ea8ef35a6661371d2ee098e301e914cf2eced0d8
-AUX libedit-20110709.3.0-weak-reference.patch 651 SHA256 
f4bbf2b49d158966b8ccb8556928b22af3690e7d91d5e3062842b6c9587641be SHA512 
6f905d4254be6a11a135315346e41579e30c496d7d28caef1daa89079574be081c092d653034fd89a1ce84495f1566ef85d50b274cb87b249b4706e954c40420
 WHIRLPOOL 
20cd81c562a4d9c054712ff0233ccd3c36f65e56e61061979b60f538e6add55298bba6f42025e1f2146f6d83d14e82cda10e298453b9ca0631c1a5f0fcea6bb8
-AUX libedit-20120311-3.0-el_fn_sh_complete.patch 7724 SHA256 
8fb2844923c3750c9b833ad4f9dfd15f78e0bb917b0d8fb98d3e0ffb7f1037fb SHA512 
c62490079ff73a14310c6840d379d950699cd178e5e4a15231a79ea06600ba7bb805630e032d5d49ea5479e4919514ee79b035bf7d00e20b6e8512c84920bba3
 WHIRLPOOL 
1d0737e628f663edf8734d93aec6e0d33ba8e17e4893be33805c731a343701106778979fcaa8ccb7d227b78402b1a715d78a7102178a6871392f421d40e8b17a
-AUX libedit-ncursesprivate.patch 497 SHA256 
e1fc9f5c3ffe5e5ba4117bc6b1c615e6f3e5ef82dfcebece16aaa5d571abb8a1 SHA512 
41175b20f7b925e347db008d5e8a535b8326cd2c010a67b9db3a59131fce77a7791b7940e7eea9d68e82dbd3731efaa503d4bd218d78b29f946152dd56bd9b14
 WHIRLPOOL 
df6b644fdaa70ec62997c2bd353ad757e6aafda7c17b4926ad3044d4f1d02deb379bd84946f5cea08c63eb4ba346752949f5b0a1577bc046dbbb4c4221fdf239
-DIST libedit-20130712-3.1.tar.gz 483857 SHA256 
5d9b1a9dd66f1fe28bbd98e4d8ed1a22d8da0d08d902407dcc4a0702c8d88a37 SHA512 
9fb3173a65ea2cd2ffa9af0666aa3e227b7d6be26f3e84f30ea3449b0c80fc5e91b618e939f7047bf885b96689ede93733f7eba614d4fdd1a4baff3f130b432e
 WHIRLPOOL 
550553af1cf3bbd863ef4ce86ef5fd7adf257a7f5946ad186a104c5920d0f58216c135d496d52fd2d6ad51a1fb954bb87719d731aa0eebf6980d1c15345d6034
-EBUILD libedit-20130712.3.1-r99.ebuild 1299 SHA256 
ba2e4fc109e665a63fd46d186c0f895e52942ecdcd46002cc7c7143a155b7d45 SHA512 
d38f9345ed355fe86d16959432bcd2e87d698227444f8735155e67152a23bd397fd064d64e7b3ff2c2d47628323d214d822b75373ec5ab16b9117b67c1bfedfe
 WHIRLPOOL 
67a369588b60724898aa00e69a511935ca3f1f7b354b81dc51bccfa071103226f4c008c7ee2d68a895df65bae892396074642ca9efff8d6c5def29ebe55db834
-MISC metadata.xml 636 SHA256 
ec3560e3314a6a4b29d2786e993a52e900d30f36bb2248f2842d8a4b1399db81 SHA512 
c335a652424f91f1ae79f907870bcd826cee21365b594353b3c52fb7fef51f637e9a65275c11f033b6bd7b6d918733904efc320b547999ee5b88a7b36ccb9389
 WHIRLPOOL 
753aa219f31fcade9ab32787ec1528b2e4ac195a9058baad7612fa8c1773375701b37dc1761e9ef86107697245c51414f18ad9cc0d3484d403e205969007c1f5

diff --git a/dev-libs/libedit/files/libedit-20100424.3.0-bsd.patch 
b/dev-libs/libedit/files/libedit-20100424.3.0-bsd.patch
deleted file mode 100644
index e230a76..000
--- a/dev-libs/libedit/files/libedit-20100424.3.0-bsd.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/src/chartype.h b/src/chartype.h
-index c35825c..be5aac0 100644
 a/src/chartype.h
-+++ b/src/chartype.h
-@@ -44,7 +44,7 @@
-  * supports non-BMP code points without requiring UTF-16, but nothing
-  * seems to actually advertise this properly, despite Unicode 3.1 having
-  * been around since 2001... */
--#if !defined(__NetBSD__) && !defined(__sun) && !(defined(__APPLE__) && 
defined(__MACH__))
-+#if !defined(__NetBSD__) && !defined(__sun) && !(defined(__APPLE__) && 
defined(__MACH__)) && !defined(__DragonFly__) && !defined(__FreeBSD__)
- #ifndef __STDC_ISO_10646__
- /* In many places it is assumed that the first 127 code points are ASCII
-  * compatible, so ensure wchar_t indeed does ISO 10646 and not some other

diff --git a/dev-libs/libedit/files/libedit-20110709.3.0-weak-reference.patch 
b/dev-libs/libedit/files/libedit-20110709.3.0-weak-reference.patch
deleted file mode 100644
index a439959..000
--- 

[gentoo-commits] repo/gentoo:master commit in: app-arch/unp/

2016-10-15 Thread Hanno Boeck
commit: 8a8e14353cf5f611540620ddc5c238d9b370d8aa
Author: Hanno  gentoo  org>
AuthorDate: Sat Oct 15 17:03:58 2016 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Oct 15 17:03:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a8e1435

app-arch/unp: fix LINGUAS variable handling

The previous variant fails if there are more than two
entries in LINGUAS. Thanks to sping for pointing that
out.

Package-Manager: portage-2.3.2

 app-arch/unp/unp-2.0_pre7_p1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild 
b/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
index 0c2a68d..1194f7d 100644
--- a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
+++ b/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
@@ -28,7 +28,7 @@ PATCHES=( "${FILESDIR}/${P}-remove-deprecated-have.diff" )
 src_compile() {
if use nls; then
strip-linguas -i .
-   emake -C po MOFILES="${LINGUAS/ /.po }.po"
+   emake -C po MOFILES="${LINGUAS// /.po }.po"
fi
 }
 
@@ -40,6 +40,6 @@ src_install() {
dobashcomp bash_completion.d/unp
 
if use nls; then
-   emake -C po MOFILES="${LINGUAS/ /.mo }.mo" DESTDIR="${D}" 
install
+   emake -C po MOFILES="${LINGUAS// /.mo }.mo" DESTDIR="${D}" 
install
fi
 }



[gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/, dev-libs/xerces-c/files/

2016-10-15 Thread David Seifert
commit: 8ca2c50726a58396070e85a12c3aea93095e1032
Author: David Seifert  gentoo  org>
AuthorDate: Sat Oct 15 16:34:31 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Oct 15 16:36:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca2c507

dev-libs/xerces-c: Install samples programs

Package-Manager: portage-2.3.2

 dev-libs/xerces-c/files/xerces-c-3.1.4-fix-build-system.patch| 9 -
 .../xerces-c/{xerces-c-3.1.4.ebuild => xerces-c-3.1.4-r1.ebuild} | 5 -
 2 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/dev-libs/xerces-c/files/xerces-c-3.1.4-fix-build-system.patch 
b/dev-libs/xerces-c/files/xerces-c-3.1.4-fix-build-system.patch
index 8bd8ba1..6b991d2 100644
--- a/dev-libs/xerces-c/files/xerces-c-3.1.4-fix-build-system.patch
+++ b/dev-libs/xerces-c/files/xerces-c-3.1.4-fix-build-system.patch
@@ -1,6 +1,5 @@
 * Fix build system when USE="-threads"
 * Add DESTDIR in order to prevent sandbox failure
-* Don't build samples
 
 --- a/configure.ac
 +++ b/configure.ac
@@ -12,14 +11,6 @@
  
  # Checks for library functions.
  #AC_FUNC_ERROR_AT_LINE
 a/Makefile.am
-+++ b/Makefile.am
-@@ -1,4 +1,4 @@
--SUBDIRS = src tests samples
-+SUBDIRS = src tests
- 
- EXTRA_DIST = version.incl \
-  xerces-c.spec \
 --- a/src/xercesc/util/MsgLoaders/MsgCatalog/Makefile.in
 +++ b/src/xercesc/util/MsgLoaders/MsgCatalog/Makefile.in
 @@ -5,7 +5,7 @@

diff --git a/dev-libs/xerces-c/xerces-c-3.1.4.ebuild 
b/dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild
similarity index 91%
rename from dev-libs/xerces-c/xerces-c-3.1.4.ebuild
rename to dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild
index c8782fb..5c5b6b4 100644
--- a/dev-libs/xerces-c/xerces-c-3.1.4.ebuild
+++ b/dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild
@@ -100,7 +100,10 @@ src_install () {
find "${D}" -name '*.la' -delete || die
 
if use examples; then
-   rm -f samples/Makefile* || die
+   # clean out object files, executables, Makefiles
+   # and the like before installing examples
+   find samples/ \( -type f -executable -o -iname 'runConfigure' 
-o -iname '*.o' \
+   -o -iname '.libs' -o -iname 'Makefile*' \) -exec rm -rf 
'{}' + || die
docinto examples
dodoc -r samples/.
docompress -x /usr/share/doc/${PF}/examples



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/libxsd-frontend/

2016-10-15 Thread David Seifert
commit: 10adf90b3ef081369f26aa6d6b57787447ff11cb
Author: David Seifert  gentoo  org>
AuthorDate: Sat Oct 15 13:40:39 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Oct 15 16:35:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10adf90b

dev-cpp/libxsd-frontend: Version bump to 2.0.0

Gentoo-bug: 585738, 594542
* EAPI=6

Package-Manager: portage-2.3.2

 dev-cpp/libxsd-frontend/Manifest   |  1 +
 .../libxsd-frontend/libxsd-frontend-2.0.0.ebuild   | 88 ++
 dev-cpp/libxsd-frontend/metadata.xml   |  8 +-
 3 files changed, 93 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/libxsd-frontend/Manifest b/dev-cpp/libxsd-frontend/Manifest
index 72d108a..49005b4 100644
--- a/dev-cpp/libxsd-frontend/Manifest
+++ b/dev-cpp/libxsd-frontend/Manifest
@@ -1 +1,2 @@
 DIST libxsd-frontend-1.18.0.tar.bz2 66937 SHA256 
78382d44ae0575fec04eb2e2e70c2bb751b49eb995aad725d3c2e9ee8ac98590 SHA512 
fdff24659037d99ca37a15c2bc33a91e9864d2df20210c13230ab64c3c5ecd7aebefe5c7b3b316812d8f844ca38c297931d74d19a278bf986de80e2f0c54d223
 WHIRLPOOL 
94f092087f17b0694821ab1f7864fa80639c7daf73e6926d665365d624f46d69d1f74e0de4af901a399593bf52020311614c000d94160505a429728f0d3e2818
+DIST libxsd-frontend-2.0.0.tar.bz2 66784 SHA256 
35ba30988c67bc4ce9278d869ec0a04305eabf55287456af34c66ebe3564bfda SHA512 
8a296fdfe2e562237d46774b33ee82e8f67835b0869c03ffdf04570db1e6f398cf97734685d44c2207abbb73cea20b57e53c8fd80a121f98196c1c7d4bacbc68
 WHIRLPOOL 
44f75d2d394f3db4edf773b4f36f74982600f5e55a445c4d0e6eb6254c1150c3eaf18b87d343d1728eccb5f6f92cdd80f86a7dc01f513d476dda056e0f89

diff --git a/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild 
b/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild
new file mode 100644
index ..5550137
--- /dev/null
+++ b/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs versionator
+
+DESCRIPTION="A compiler frontend for the W3C XML Schema definition language"
+HOMEPAGE="http://www.codesynthesis.com/projects/libxsd-frontend/;
+SRC_URI="http://www.codesynthesis.com/download/${PN}/$(get_version_component_range
 1-2)/${P}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/xerces-c-3.0.0
+   dev-libs/boost:=[threads]
+   dev-cpp/libcutl"
+DEPEND="${RDEPEND}
+   >=dev-util/build-0.3.10"
+
+src_configure() {
+   mkdir -p \
+   build/{ld,cxx/gnu} \
+   build/import/lib{boost,cult,frontend-elements,xerces-c} || die
+
+   cat >> build/cxx/configuration-dynamic.make <<- EOF || die
+   cxx_id   := gnu
+   cxx_optimize := n
+   cxx_debug:= n
+   cxx_rpath:= n
+   cxx_pp_extra_options :=
+   cxx_extra_options:= ${CXXFLAGS}
+   cxx_ld_extra_options := ${LDFLAGS}
+   cxx_extra_libs   :=
+   cxx_extra_lib_paths  :=
+   EOF
+
+   cat >> build/cxx/gnu/configuration-dynamic.make <<- EOF || die
+   cxx_gnu := $(tc-getCXX)
+   cxx_gnu_libraries :=
+   cxx_gnu_optimization_options :=
+   EOF
+
+   cat >> build/ld/configuration-lib-dynamic.make <<- EOF || die
+   ld_lib_type   := shared
+   EOF
+
+   # boost
+   cat >> build/import/libboost/configuration-dynamic.make <<- EOF || die
+   libboost_installed := y
+   libboost_system := y
+   EOF
+
+   # libcutl
+   cat >> build/import/libcutl/configuration-dynamic.make <<- EOF || die
+   libcutl_installed := y
+   EOF
+
+   # xerces-c
+   cat >> build/import/libxerces-c/configuration-dynamic.make <<- EOF || 
die
+   libxerces_c_installed := y
+   EOF
+}
+
+src_compile() {
+   emake verbose=1
+}
+
+src_install() {
+   einstalldocs
+
+   dolib.so xsd-frontend/libxsd-frontend.so
+
+   # clean header dir of build files
+   find xsd-frontend \( -iname '*.cxx' -o -iname 'makefile*' \
+   -o -iname '*.o' -o -iname '*.d' -o -iname '*.m4' -o -iname 
'*.l' \
+   -o -iname '*.cpp-options' -o -iname '*.so' \) -exec rm -rf '{}' 
+ || die
+   rm -rf xsd-frontend/arch || die
+   doheader -r xsd-frontend
+}
+
+src_test() {
+   export LD_LIBRARY_PATH="${S}/xsd-frontend:${LD_LIBRARY_PATH}"
+   default
+}

diff --git a/dev-cpp/libxsd-frontend/metadata.xml 
b/dev-cpp/libxsd-frontend/metadata.xml
index acd00be..d4905c8 100644
--- a/dev-cpp/libxsd-frontend/metadata.xml
+++ b/dev-cpp/libxsd-frontend/metadata.xml
@@ -1,8 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-dev-z...@gentoo.org
-Tiziano Müller
-  
+   
+   c...@gentoo.org
+   Gentoo C++ Project
+

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/xsd/files/, dev-cpp/xsd/

2016-10-15 Thread David Seifert
commit: 99c485b2d46f33c44bef2678245fa4da8d29
Author: David Seifert  gentoo  org>
AuthorDate: Sat Oct 15 15:46:04 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Oct 15 16:36:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99c485b2

dev-cpp/xsd: Version bump to 4.0.0

Gentoo-bug: 544690
* EAPI=6
* Imported patches from Fedora

Package-Manager: portage-2.3.2

 dev-cpp/xsd/Manifest   |   1 +
 .../xsd-4.0.0-disable_examples_and_tests.patch |  50 +++
 .../xsd/files/xsd-4.0.0-fix-expat-support.patch|  59 
 dev-cpp/xsd/files/xsd-4.0.0-fix-include.patch  |  11 ++
 dev-cpp/xsd/files/xsd-4.0.0-xsdcxx-rename.patch| 159 +
 dev-cpp/xsd/metadata.xml   |  14 +-
 dev-cpp/xsd/xsd-4.0.0.ebuild   | 151 +++
 7 files changed, 438 insertions(+), 7 deletions(-)

diff --git a/dev-cpp/xsd/Manifest b/dev-cpp/xsd/Manifest
index 42c2bd8..836a7bd 100644
--- a/dev-cpp/xsd/Manifest
+++ b/dev-cpp/xsd/Manifest
@@ -1 +1,2 @@
 DIST xsd-3.3.0.tar.bz2 999479 SHA256 
6157e3b0f3108f69a8d9344956020c234841d4a1de28745b19e45f8ee34b0c66 SHA512 
4e7d18d71b362c4b67ad70c59c68d9be4a5f7210c94306c1685c2991a5eb82496675ac0c53f2919237e658d2e1fcf7e1bf5abe295127c7cf175c8eed090a8570
 WHIRLPOOL 
70b4767c463d4c5be65f8757e519a98a3c9dbc00f9a8a86026bdba5115eae5c5c7008ea05709ba293a68ab8de718b070cc0b4f6390f5bac62dca5f8a63480341
+DIST xsd-4.0.0.tar.bz2 1042144 SHA256 
dd85f46407c7ec161518f3fdc64263afb68b057b1bc0b09b47d792d1fabd29c2 SHA512 
0bac508e6948ef9e2399daed2554fcff3eaa79a7e62a3b245c777fb8bef3c5c80a35403bffdb00f72d3cf1b411747a91c059dd1c932b0a00baf076d3e60da527
 WHIRLPOOL 
84cd9baeb2a9fbfa24dafd212950ca7e7ab808d3bc432c8fbf3837c4aad2d1aefabc5fa7f6ac1fb69584b6bd136f04badf435c28024009b0edc00ea7f2ef78ef

diff --git a/dev-cpp/xsd/files/xsd-4.0.0-disable_examples_and_tests.patch 
b/dev-cpp/xsd/files/xsd-4.0.0-disable_examples_and_tests.patch
new file mode 100644
index ..d04487a
--- /dev/null
+++ b/dev-cpp/xsd/files/xsd-4.0.0-disable_examples_and_tests.patch
@@ -0,0 +1,50 @@
+--- a/makefile
 b/makefile
+@@ -15,8 +15,6 @@
+ .PHONY: $(dist-pre)
+ 
+ $(default): $(out_base)/xsd/  \
+-$(out_base)/tests/\
+-$(out_base)/examples/ \
+ $(out_base)/doc/
+ 
+ # Test.
+@@ -28,7 +26,6 @@
+ #
+ $(install): $(out_base)/xsd/.install   \
+ $(out_base)/libxsd/.install\
+-  $(out_base)/examples/.install  \
+ $(out_base)/doc/.install
+   $(call 
install-dir,$(src_base)/dist/examples/build,$(install_doc_dir)/xsd/examples/build)
+   $(call 
install-dir,$(src_base)/dist/examples/cxx,$(install_doc_dir)/xsd/examples/cxx,-name
 makefile)
+@@ -44,7 +41,6 @@
+ #
+ $(dist): $(out_base)/xsd/.dist   \
+  $(out_base)/libxsd/.dist\
+- $(out_base)/examples/.dist  \
+  $(out_base)/doc/.dist
+   $(call 
install-dir,$(src_base)/dist/examples/build,$(dist_prefix)/examples/build)
+   $(call 
install-dir,$(src_base)/dist/examples/cxx,$(dist_prefix)/examples/cxx,-name 
makefile)
+@@ -59,7 +55,6 @@
+ $(dist-win): $(dist-pre) \
+  $(out_base)/xsd/.dist-win   \
+  $(out_base)/libxsd/.dist-win\
+- $(out_base)/examples/.dist-win  \
+  $(out_base)/doc/.dist-win
+   $(call install-dir,$(src_base)/dist/etc,$(dist_prefix)/etc)
+   $(call 
install-dir,$(src_base)/dist/examples/build,$(dist_prefix)/examples/build)
+@@ -90,14 +85,10 @@
+ # Clean.
+ #
+ $(clean): $(out_base)/xsd/.clean  \
+-  $(out_base)/tests/.clean\
+-  $(out_base)/examples/.clean \
+   $(out_base)/doc/.clean
+ 
+ $(call include,$(bld_root)/install.make)
+ 
+ $(call import,$(src_base)/xsd/makefile)
+ $(call import,$(src_base)/libxsd/makefile)
+-$(call import,$(src_base)/tests/makefile)
+-$(call import,$(src_base)/examples/makefile)
+ $(call import,$(src_base)/doc/makefile)

diff --git a/dev-cpp/xsd/files/xsd-4.0.0-fix-expat-support.patch 
b/dev-cpp/xsd/files/xsd-4.0.0-fix-expat-support.patch
new file mode 100644
index ..e91b74e
--- /dev/null
+++ b/dev-cpp/xsd/files/xsd-4.0.0-fix-expat-support.patch
@@ -0,0 +1,59 @@
+## Fix bug in C++/Parser Expat Support 
http://scm.codesynthesis.com/?p=xsd/xsd.git;a=commitdiff;h=94cba986108a0e0f42295572ca42c356d59328d7
+### Author Boris Kolpackov 
+## Thu, 24 Jul 2014 11:40:01 +0100 (12:40 +0200)
+### Committer Boris Kolpackov 
+## Thu, 24 Jul 2014 11:40:01 +0100 (12:40 +0200)
+--- xsd/libxsd/xsd/cxx/parser/expat/elements.hxx
 xsd/libxsd/xsd/cxx/parser/expat/elements.hxx
+@@ -51,7 +51,9 @@ namespace xsd
+   }
+ };
+ 
+-typedef std::unique_ptr parser_auto_ptr;
++typedef
++std::unique_ptr
++

[gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ethereum/

2016-10-15 Thread David Seifert
commit: 6f48086b32e0fecea4c9691fd31aba6a2d947035
Author: Mathy Vanvoorden  vanvoorden  be>
AuthorDate: Sat Oct 15 14:01:00 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Oct 15 16:36:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f48086b

net-p2p/go-ethereum: version bump to 1.4.18

Incorporates code needed for the upcoming hardfork

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2562

Signed-off-by: David Seifert  gentoo.org>

 net-p2p/go-ethereum/Manifest| 2 +-
 .../{go-ethereum-1.4.17-r1.ebuild => go-ethereum-1.4.18.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/go-ethereum/Manifest b/net-p2p/go-ethereum/Manifest
index 74c49b6..dcdb50e 100644
--- a/net-p2p/go-ethereum/Manifest
+++ b/net-p2p/go-ethereum/Manifest
@@ -1 +1 @@
-DIST go-ethereum-1.4.17.tar.gz 14760860 SHA256 
0587a3ebeae87cc88365f26f817ab1d5bf0fdbd9f9cb2fc9babb3a4c64ba5fc4 SHA512 
2a57290aba508cf6ef64d3e8644a10954d7006ed1418e9ebea466b0ee300ccd0796cbef8d2b9cfc8f2268bcec73c54148c8f603cda457e20bf5a8b2d76a591d6
 WHIRLPOOL 
7330d6fb60097728ff5c296851ed534fa6d2cb729f7d887851ea8dfd05dbb300fb79fc269189c60a00b8fda5c1cbc6c470e09748c0fd63d1c683886a8c774166
+DIST go-ethereum-1.4.18.tar.gz 14937541 SHA256 
a584b52f432c4171ce3c00ee0742d44ec3dd78796d6f7bb8e4b82f6b3cfa707b SHA512 
a6789452c9a4533cdcbe976ef8bd24692443e09af4f01c47ec7615093191c7cb9e788cadd225c26e27b1f9c3e7ec50acffa044417420a8cc9dd2084f03f0cb4e
 WHIRLPOOL 
166ace12542aac7b59254dd23b8f5efdbece8d144ff7112f2d6c6ee729f4cb82df494c815546712723d19777c21185ca5d5febd9c95cad3a0be8a995178caedf

diff --git a/net-p2p/go-ethereum/go-ethereum-1.4.17-r1.ebuild 
b/net-p2p/go-ethereum/go-ethereum-1.4.18.ebuild
similarity index 100%
rename from net-p2p/go-ethereum/go-ethereum-1.4.17-r1.ebuild
rename to net-p2p/go-ethereum/go-ethereum-1.4.18.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-util/build/

2016-10-15 Thread David Seifert
commit: 3fe0b5b4748d1d23bb49b1ac46d5fffdeaa4cc2b
Author: David Seifert  gentoo  org>
AuthorDate: Sat Oct 15 12:51:24 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Oct 15 16:35:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fe0b5b4

dev-util/build: Version bump to 0.3.10

Gentoo-bug: 585736
* EAPI=6

Package-Manager: portage-2.3.2

 dev-util/build/Manifest|  1 +
 dev-util/build/build-0.3.10.ebuild | 31 +++
 dev-util/build/metadata.xml|  8 
 3 files changed, 36 insertions(+), 4 deletions(-)

diff --git a/dev-util/build/Manifest b/dev-util/build/Manifest
index d93505d..e2bd488 100644
--- a/dev-util/build/Manifest
+++ b/dev-util/build/Manifest
@@ -1 +1,2 @@
+DIST build-0.3.10.tar.bz2 73647 SHA256 
e6fcd1d225d7d1e7b2895a44e3c192f7d45ca83e45817bff20372e5dedcda5d3 SHA512 
5836da9347714d602162e050471e27330caf398cf4daf008db174797013d8c353e23f41e393166181ff0fdb08359b434cb7ca2ae6bf789376f8340046abb195f
 WHIRLPOOL 
0f3077918a0ad81e912aa9eb26ed90413db32a8b3f22fb0f953df675ce5aca1f7f8fc38ba7911aff71b79b823ae4e2e5e25d67fc9169abac2786eabdceaaeac7
 DIST build-0.3.9.tar.bz2 71545 SHA256 
158a26af751dfc00d9b88021305ea74935542a9f970d1ac7e805cd239a3400b5 SHA512 
295350dfd91265481cfe956a1edfadaf46c4eef01d344a4ed8df7124fbda8eb58503836fa7810faa1f5f3d5fc5e110854496a782df7520fbcc1c1cba3c1f3586
 WHIRLPOOL 
e0b12a2341ec4173aca81dad35e39de60e96e8dd321d900c5670c5c66dcfe7676d2a1a4383adefd7fa76138c891a652d32324e4afbe6082fa6aabdfbac12a8f8

diff --git a/dev-util/build/build-0.3.10.ebuild 
b/dev-util/build/build-0.3.10.ebuild
new file mode 100644
index ..135560e
--- /dev/null
+++ b/dev-util/build/build-0.3.10.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit versionator
+
+DESCRIPTION="A massively-parallel software build system implemented on top of 
GNU make"
+HOMEPAGE="http://www.codesynthesis.com/projects/build/;
+SLOT="0"
+SRC_URI="http://www.codesynthesis.com/download/${PN}/$(get_version_component_range
 1-2)/${P}.tar.bz2"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="examples"
+
+DEPEND=""
+RDEPEND=""
+
+src_install() {
+   emake install_prefix="${ED%/}/usr" install
+
+   HTML_DOCS=( documentation/*.{css,xhtml} )
+   einstalldocs
+   dodoc documentation/[[:upper:]]*
+
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}

diff --git a/dev-util/build/metadata.xml b/dev-util/build/metadata.xml
index acd00be..d4905c8 100644
--- a/dev-util/build/metadata.xml
+++ b/dev-util/build/metadata.xml
@@ -1,8 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-dev-z...@gentoo.org
-Tiziano Müller
-  
+   
+   c...@gentoo.org
+   Gentoo C++ Project
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/

2016-10-15 Thread Manuel Rüger
commit: c7382299e75a39e94b285f16cbbf08e151f46392
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 16:17:18 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 16:17:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7382299

app-crypt/acme: Sync live ebuild

Package-Manager: portage-2.3.2

 app-crypt/acme/acme-.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/app-crypt/acme/acme-.ebuild b/app-crypt/acme/acme-.ebuild
index a93f37f..71f1791 100644
--- a/app-crypt/acme/acme-.ebuild
+++ b/app-crypt/acme/acme-.ebuild
@@ -8,10 +8,9 @@ PYTHON_COMPAT=(python{2_7,3_4,3_5})
 if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/certbot/certbot.git;
inherit git-r3
-   KEYWORDS=""
S=${WORKDIR}/${P}/${PN}
 else
-   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
letsencrypt-${PV}.tar.gz"
+   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
S=${WORKDIR}/certbot-${PV}/acme
 fi
@@ -27,15 +26,15 @@ IUSE="test"
 
 RDEPEND=">=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
-   >=dev-python/ndg-httpsclient-0.4[${PYTHON_USEDEP}]
+   dev-python/ndg-httpsclient[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-0.15[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
 DEPEND="test? ( ${RDEPEND} dev-python/nose[${PYTHON_USEDEP}] )
-   dev-python/setuptools[${PYTHON_USEDEP}]"
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]"
 
 python_test() {
nosetests -w ${PN} || die



[gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/

2016-10-15 Thread Manuel Rüger
commit: 47a6a50f21dcee0891327afa0718ee2dddffb0f0
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 16:16:53 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 16:16:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a6a50f

app-crypt/acme: Version bump to 0.9.3

Package-Manager: portage-2.3.2

 app-crypt/acme/Manifest  |  1 +
 app-crypt/acme/acme-0.9.3.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index c425935..28b7fe7 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1,2 +1,3 @@
 DIST certbot-0.8.1.tar.gz 698305 SHA256 
1fb4834eba306a656f26257f86ed298df354cdecb1b0bde316a9d23a1e19db01 SHA512 
8b21d270b5ee847086369b956b3346f50ab0e4490d988e7ca535f4d4101e2859e99bc5f77ac920afd3a6a9210e407b155c89c28d282dc0544735a27e3eaa
 WHIRLPOOL 
909a3f6f63fac84bf6fe8fb35b9aba46c06912af01d5f702eee5b6aeab49d4f2a92fa05e4f060da11ac6cbc89047e92457f626d6c82aa0de0f1127ca79924fc7
+DIST certbot-0.9.3.tar.gz 794146 SHA256 
5c40cfcf3a17624e34dcb733148bd247c4f0cee189766fe0fb6d29571d4068bb SHA512 
a951e639515fc037721d8b086e53100dcc86974a96c61c7173b2a9c0582bb59380efe219caf3fd1517fcdf28dde4a1f66bba84b51e2a2027df114818ff4d7565
 WHIRLPOOL 
45c7b17cffc971acf3b6998c5702abd91c067e095acd9a4264109e711b869ac1db9e7d2a4ff9d86d680f5579b6a2fbca610a6905c81e549f72a10adf17f19da2
 DIST letsencrypt-0.1.0.tar.gz 524821 SHA256 
1c1ac7b41e5e0fc0e41a7ef159ac9147a4aafff54453d57b519eb05bf52ade14 SHA512 
6a786290362741ac97dcb4b59bc4cba56f3e8b5193bbc10be19086d462f76e6124259c42bac36afe9eb818f4bb9edec34f8e2a02bd8c855e3b35404f4ee81f96
 WHIRLPOOL 
cdc41a3466de54ab8ddfeedea9935205d78383028769dcfbc876be0c2ef80c2d14f5d0e4a9c56a751163718f5ababb07848822989a060de7031ea8ebdf6424a0

diff --git a/app-crypt/acme/acme-0.9.3.ebuild b/app-crypt/acme/acme-0.9.3.ebuild
new file mode 100644
index ..71f1791
--- /dev/null
+++ b/app-crypt/acme/acme-0.9.3.ebuild
@@ -0,0 +1,41 @@
+# 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_4,3_5})
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   inherit git-r3
+   S=${WORKDIR}/${P}/${PN}
+else
+   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~x86"
+   S=${WORKDIR}/certbot-${PV}/acme
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="An implementation of the ACME protocol"
+HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+
+RDEPEND=">=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/ndg-httpsclient[${PYTHON_USEDEP}]
+   dev-python/pyasn1[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND} dev-python/nose[${PYTHON_USEDEP}] )
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]"
+
+python_test() {
+   nosetests -w ${PN} || die
+}



[gentoo-commits] repo/gentoo:master commit in: media-video/pitivi/

2016-10-15 Thread Gilles Dartiguelongue
commit: 9503e95eedbbc998d3881f453bdb8b1ee554268e
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 15:46:02 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 15:46:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9503e95e

media-video/pitivi: unrestrict tests, they were failing because of vaapi plugin

Package-Manager: portage-2.3.1

 media-video/pitivi/pitivi-0.97.1.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/media-video/pitivi/pitivi-0.97.1.ebuild 
b/media-video/pitivi/pitivi-0.97.1.ebuild
index 0108a3f..2b0bc42 100644
--- a/media-video/pitivi/pitivi-0.97.1.ebuild
+++ b/media-video/pitivi/pitivi-0.97.1.ebuild
@@ -19,9 +19,6 @@ KEYWORDS="~amd64 ~x86"
 IUSE="v4l test"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-# some of the tests fail with timeouts, others with VA errors
-RESTRICT="test"
-
 # XXX: recommends gst-plugins-libav and frei0r-plugins
 
 # Do not forget to check pitivi/check.py for dependencies!!!



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgee/

2016-10-15 Thread Gilles Dartiguelongue
commit: 15899fc1fafa318acae4589d7074d2e2df2665e6
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 09:08:58 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 15:42:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15899fc1

dev-libs/libgee: version bump 0.18.0 → 0.18.1

Package-Manager: portage-2.3.1

 dev-libs/libgee/Manifest |  1 +
 dev-libs/libgee/libgee-0.18.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-libs/libgee/Manifest b/dev-libs/libgee/Manifest
index cd3670b..f3a3020 100644
--- a/dev-libs/libgee/Manifest
+++ b/dev-libs/libgee/Manifest
@@ -1,5 +1,6 @@
 DIST libgee-0.14.0.tar.xz 641732 SHA256 
08e466d3f214c9466860b5a82629de0de9eb89b1de7bd918fe154e569b5834cd SHA512 
80e7074fd9a5dfc9431d7d624a6121388e12e430ac539376973452e15eab143017541a2ad9fa312e813de313a2ea1a734a96418fa8a1e37da8ddbcf82e2c1df4
 WHIRLPOOL 
536835a82e9facdbe3e9bbf4e10ba3175ad7cdd78f59550de9607ed7db515a516ca7914d5ee6b855b75454085bd23c89edc0b690666e8309f36e6aa07ce8ee67
 DIST libgee-0.16.1.tar.xz 667024 SHA256 
d95f8ea8e78f843c71b1958fa2fb445e4a325e4821ec23d0d5108d8170e564a5 SHA512 
610c0e6001a4f5cc7d16bd61956cc347aafa7f1402838d7735bbf049e6448ff6e62fe8546665452e21dec4fc9fcb97d0de209c69e6bda2fa67ae6ea66c00f11f
 WHIRLPOOL 
fae835fbccb3da1b3728a981397e2fc69635b52c896fe6a1250627e1f30ecf5de1235f742a17ecd58bf04e77eace7bafc34e5b2c4c9499a8c5c30e6299af84ce
 DIST libgee-0.18.0.tar.xz 662296 SHA256 
4ad99ef937d071b4883c061df40bfe233f7649d50c354cf81235f180b4244399 SHA512 
f3a6d7b6c07c9aabcfbe07116827395da962784e44216a8ea8f752b732e540339eb8c6af58beb9a77d4ecdecd1e09d4990d9aca7f04e9d6a510c8f9a6a79d1fc
 WHIRLPOOL 
706d33a8c64ccbdc814b19714d930e0e32d304b9e672178ac692364e0d7eaffc83d63ad4b17f4370a606839c69cbcc9dbeceb84399d9f1c61f58c53811e95325
+DIST libgee-0.18.1.tar.xz 677908 SHA256 
99686bbe5a9c89ba9502c25f61314ee8efa0dd2a1159c9a639afc1458c2839a2 SHA512 
b6e8be0f629c6df04db49a4be6b242280b87c6239af6294b39d8b0898331644cbed91f026302fd41aabf465510dc68c913d65085922bb5fee9b6af8947d207a5
 WHIRLPOOL 
391d76515e032132d7a3de5f2d5d535b103ca59804e2af4e356e8fef8102f2d4efcd20dd949ebc02778005da46ccdc1bda579b4c00bb11ca5d8c6a2b07f68ba4
 DIST libgee-0.6.7.tar.xz 505040 SHA256 
b512bf1785fbbb6a264be5fac325c42d4e96cc560b22e3f19ea5b01b1414106d SHA512 
f80221b7400de05f966e096f6147dffc3d64e67ae68723f1a56b04c6775aaa380d9694c61e84aca7317d6d72c577297d7e25af8a590c5bd87b121b6818b61968
 WHIRLPOOL 
1a979f94c6896e852a64075a59081671d952b1068081014ef9321680490015030c6dbf43d5f7e55f0e5e012f2e77c84e18ffc47d2b13967467fcf3d3e42b3682
 DIST libgee-0.6.8.tar.xz 443060 SHA256 
a61f8d796173d41f6144a030d4bd22461f0bb3fa18a3ebe02341b315feebf5d3 SHA512 
b26d36ee9fc0c5c214521ad97bc20f11f1191a3dab72a5f1af2f6435f51ff2f28e81ccb26fac399939c1a7eaad519db98032d3bc593a4052463acd91bb12902a
 WHIRLPOOL 
4c96a3e1dc1c34ca6b23b5b34fae7420ff9215ad07618a9b818d70b12697cac430cee95ab7bd175b4f96fbae99fcd4e1fca8da7f55064962b2cb61c641d22bb2

diff --git a/dev-libs/libgee/libgee-0.18.1.ebuild 
b/dev-libs/libgee/libgee-0.18.1.ebuild
new file mode 100644
index ..e385694
--- /dev/null
+++ b/dev-libs/libgee/libgee-0.18.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit gnome2
+
+DESCRIPTION="GObject-based interfaces and classes for commonly used data 
structures"
+HOMEPAGE="https://wiki.gnome.org/Projects/Libgee;
+
+LICENSE="LGPL-2.1+"
+SLOT="0.8/2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-linux"
+IUSE="+introspection"
+
+# FIXME: add doc support, requires valadoc
+RDEPEND="
+   >=dev-libs/glib-2.36:2
+   introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   $(use_enable introspection)
+   VALAC="$(type -P false)"
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/ghex/

2016-10-15 Thread Gilles Dartiguelongue
commit: 9a78655d27cc3282e3692d0596c723cdf87f
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 09:04:18 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 15:42:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a78655d

app-editors/ghex: drop old revision

Package-Manager: portage-2.3.1

 app-editors/ghex/Manifest   |  1 -
 app-editors/ghex/ghex-3.18.1.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/app-editors/ghex/Manifest b/app-editors/ghex/Manifest
index cd589f0..b01364b 100644
--- a/app-editors/ghex/Manifest
+++ b/app-editors/ghex/Manifest
@@ -1,3 +1,2 @@
-DIST ghex-3.18.1.tar.xz 1568796 SHA256 
a0aacbc18bf89b3ad1ff96e108d94ed1fc8ba517689f847207be7749606b084b SHA512 
165a97b5b0da2dcbd0b4b4f811a5c28f64d5e25be2a1b976687d83eec73cf6728686e024c69e3517cf187aeaf656cfce9bebf98e564e2b0147d2438845d2c235
 WHIRLPOOL 
f12923637955299e1626f8c99a6499b00f2e7a656d7b8e3ad7b063a2caedd4a49281cc711c61ba7a6fa7fd9cb9825923f9b8f15b779b4ed8a6d67f6f3b7eb513
 DIST ghex-3.18.2.tar.xz 1570888 SHA256 
ebd341c49e2cc4e710230703cd20e9febb29b64e34a1b5396d6aa818936e55bf SHA512 
345bc054477de3f3dac81237f622382d4b24cf3568cc69fb2094f712fb219a54c3e44595c27b831f90941cf0d3a18290d50db89412932d47be6f34e3ecf6a03b
 WHIRLPOOL 
a2dea9b594ce07927bd8013fa5e867ab6cba583036834422859b5cf9a58c2295bb82c7fa8c3f42762a3e6e009391fb05801d388d1d74cdcfc75af24ff5d2c44b
 DIST ghex-3.18.3.tar.xz 1630720 SHA256 
c67450f86f9c09c20768f1af36c11a66faf460ea00fbba628a9089a6804808d3 SHA512 
e03b154a22db000a5994c68bb72280113e69e7ef210f86ab2c6578e77daabf50bac8eb620ffaad5a7eb776d23383478cbdc7fb317fa336cef55173f858519023
 WHIRLPOOL 
00d1c5bf88abac210be1a7a6c85e8dc4ec8db2d9063ad007c01ce67a3322de34ba38cfe13e88c96ad433f2831907987fc07cbe1490232c033848656a8896b12e

diff --git a/app-editors/ghex/ghex-3.18.1.ebuild 
b/app-editors/ghex/ghex-3.18.1.ebuild
deleted file mode 100644
index 407a7cb..
--- a/app-editors/ghex/ghex-3.18.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="GNOME hexadecimal editor"
-HOMEPAGE="https://wiki.gnome.org/Apps/Ghex;
-
-LICENSE="GPL-2+ FDL-1.1+"
-SLOT="2"
-KEYWORDS="amd64 ~arm ~ppc x86 ~x86-interix ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="
-   >=dev-libs/atk-1
-   >=dev-libs/glib-2.31.10:2
-   >=x11-libs/gtk+-3.3.8:3
-"
-DEPEND="${RDEPEND}
-   >=dev-util/intltool-0.41.1
-   >=sys-devel/gettext-0.17
-   app-text/yelp-tools
-   virtual/pkgconfig
-"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgee/

2016-10-15 Thread Gilles Dartiguelongue
commit: b28f3165d82d6d4a5ed441042a712d3e7aa57ccf
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 09:13:19 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 15:42:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28f3165

dev-libs/libgee: cleanup old revisions

Package-Manager: portage-2.3.1

 dev-libs/libgee/Manifest |  2 --
 dev-libs/libgee/libgee-0.14.0.ebuild | 32 
 dev-libs/libgee/libgee-0.16.1.ebuild | 32 
 dev-libs/libgee/libgee-0.6.7.ebuild  |  4 ++--
 4 files changed, 2 insertions(+), 68 deletions(-)

diff --git a/dev-libs/libgee/Manifest b/dev-libs/libgee/Manifest
index f3a3020..d85c5df 100644
--- a/dev-libs/libgee/Manifest
+++ b/dev-libs/libgee/Manifest
@@ -1,5 +1,3 @@
-DIST libgee-0.14.0.tar.xz 641732 SHA256 
08e466d3f214c9466860b5a82629de0de9eb89b1de7bd918fe154e569b5834cd SHA512 
80e7074fd9a5dfc9431d7d624a6121388e12e430ac539376973452e15eab143017541a2ad9fa312e813de313a2ea1a734a96418fa8a1e37da8ddbcf82e2c1df4
 WHIRLPOOL 
536835a82e9facdbe3e9bbf4e10ba3175ad7cdd78f59550de9607ed7db515a516ca7914d5ee6b855b75454085bd23c89edc0b690666e8309f36e6aa07ce8ee67
-DIST libgee-0.16.1.tar.xz 667024 SHA256 
d95f8ea8e78f843c71b1958fa2fb445e4a325e4821ec23d0d5108d8170e564a5 SHA512 
610c0e6001a4f5cc7d16bd61956cc347aafa7f1402838d7735bbf049e6448ff6e62fe8546665452e21dec4fc9fcb97d0de209c69e6bda2fa67ae6ea66c00f11f
 WHIRLPOOL 
fae835fbccb3da1b3728a981397e2fc69635b52c896fe6a1250627e1f30ecf5de1235f742a17ecd58bf04e77eace7bafc34e5b2c4c9499a8c5c30e6299af84ce
 DIST libgee-0.18.0.tar.xz 662296 SHA256 
4ad99ef937d071b4883c061df40bfe233f7649d50c354cf81235f180b4244399 SHA512 
f3a6d7b6c07c9aabcfbe07116827395da962784e44216a8ea8f752b732e540339eb8c6af58beb9a77d4ecdecd1e09d4990d9aca7f04e9d6a510c8f9a6a79d1fc
 WHIRLPOOL 
706d33a8c64ccbdc814b19714d930e0e32d304b9e672178ac692364e0d7eaffc83d63ad4b17f4370a606839c69cbcc9dbeceb84399d9f1c61f58c53811e95325
 DIST libgee-0.18.1.tar.xz 677908 SHA256 
99686bbe5a9c89ba9502c25f61314ee8efa0dd2a1159c9a639afc1458c2839a2 SHA512 
b6e8be0f629c6df04db49a4be6b242280b87c6239af6294b39d8b0898331644cbed91f026302fd41aabf465510dc68c913d65085922bb5fee9b6af8947d207a5
 WHIRLPOOL 
391d76515e032132d7a3de5f2d5d535b103ca59804e2af4e356e8fef8102f2d4efcd20dd949ebc02778005da46ccdc1bda579b4c00bb11ca5d8c6a2b07f68ba4
 DIST libgee-0.6.7.tar.xz 505040 SHA256 
b512bf1785fbbb6a264be5fac325c42d4e96cc560b22e3f19ea5b01b1414106d SHA512 
f80221b7400de05f966e096f6147dffc3d64e67ae68723f1a56b04c6775aaa380d9694c61e84aca7317d6d72c577297d7e25af8a590c5bd87b121b6818b61968
 WHIRLPOOL 
1a979f94c6896e852a64075a59081671d952b1068081014ef9321680490015030c6dbf43d5f7e55f0e5e012f2e77c84e18ffc47d2b13967467fcf3d3e42b3682

diff --git a/dev-libs/libgee/libgee-0.14.0.ebuild 
b/dev-libs/libgee/libgee-0.14.0.ebuild
deleted file mode 100644
index da595b7..
--- a/dev-libs/libgee/libgee-0.14.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="GObject-based interfaces and classes for commonly used data 
structures"
-HOMEPAGE="https://wiki.gnome.org/Projects/Libgee;
-
-LICENSE="LGPL-2.1+"
-SLOT="0.8"
-KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-linux"
-IUSE="+introspection"
-
-# FIXME: add doc support, requires valadoc
-RDEPEND="
-   >=dev-libs/glib-2.36:2
-   introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_configure() {
-   DOCS="AUTHORS ChangeLog* MAINTAINERS NEWS README"
-   gnome2_src_configure \
-   $(use_enable introspection)
-   VALAC="$(type -P false)"
-}

diff --git a/dev-libs/libgee/libgee-0.16.1.ebuild 
b/dev-libs/libgee/libgee-0.16.1.ebuild
deleted file mode 100644
index 20a6e47..
--- a/dev-libs/libgee/libgee-0.16.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="GObject-based interfaces and classes for commonly used data 
structures"
-HOMEPAGE="https://wiki.gnome.org/Projects/Libgee;
-
-LICENSE="LGPL-2.1+"
-SLOT="0.8/2"
-KEYWORDS="~alpha amd64 arm ~ia64 ppc ppc64 ~sh ~sparc x86 ~x86-linux"
-IUSE="+introspection"
-
-# FIXME: add doc support, requires valadoc
-RDEPEND="
-   >=dev-libs/glib-2.36:2
-   introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_configure() {
-   DOCS="AUTHORS ChangeLog* MAINTAINERS NEWS README"
-   gnome2_src_configure \
-   $(use_enable introspection)
-   VALAC="$(type -P false)"
-}

diff --git a/dev-libs/libgee/libgee-0.6.7.ebuild 
b/dev-libs/libgee/libgee-0.6.7.ebuild
index f54d88c..f1a54d5 

[gentoo-commits] repo/gentoo:master commit in: app-editors/ghex/

2016-10-15 Thread Gilles Dartiguelongue
commit: 9d6cb9ecd6355087a3df565a34097f09f33bea92
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 09:03:40 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 15:42:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d6cb9ec

app-editors/ghex: version bump 3.18.2 → 3.18.3

Package-Manager: portage-2.3.1

 app-editors/ghex/Manifest   |  1 +
 app-editors/ghex/ghex-3.18.3.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/app-editors/ghex/Manifest b/app-editors/ghex/Manifest
index 82cac5f..cd589f0 100644
--- a/app-editors/ghex/Manifest
+++ b/app-editors/ghex/Manifest
@@ -1,2 +1,3 @@
 DIST ghex-3.18.1.tar.xz 1568796 SHA256 
a0aacbc18bf89b3ad1ff96e108d94ed1fc8ba517689f847207be7749606b084b SHA512 
165a97b5b0da2dcbd0b4b4f811a5c28f64d5e25be2a1b976687d83eec73cf6728686e024c69e3517cf187aeaf656cfce9bebf98e564e2b0147d2438845d2c235
 WHIRLPOOL 
f12923637955299e1626f8c99a6499b00f2e7a656d7b8e3ad7b063a2caedd4a49281cc711c61ba7a6fa7fd9cb9825923f9b8f15b779b4ed8a6d67f6f3b7eb513
 DIST ghex-3.18.2.tar.xz 1570888 SHA256 
ebd341c49e2cc4e710230703cd20e9febb29b64e34a1b5396d6aa818936e55bf SHA512 
345bc054477de3f3dac81237f622382d4b24cf3568cc69fb2094f712fb219a54c3e44595c27b831f90941cf0d3a18290d50db89412932d47be6f34e3ecf6a03b
 WHIRLPOOL 
a2dea9b594ce07927bd8013fa5e867ab6cba583036834422859b5cf9a58c2295bb82c7fa8c3f42762a3e6e009391fb05801d388d1d74cdcfc75af24ff5d2c44b
+DIST ghex-3.18.3.tar.xz 1630720 SHA256 
c67450f86f9c09c20768f1af36c11a66faf460ea00fbba628a9089a6804808d3 SHA512 
e03b154a22db000a5994c68bb72280113e69e7ef210f86ab2c6578e77daabf50bac8eb620ffaad5a7eb776d23383478cbdc7fb317fa336cef55173f858519023
 WHIRLPOOL 
00d1c5bf88abac210be1a7a6c85e8dc4ec8db2d9063ad007c01ce67a3322de34ba38cfe13e88c96ad433f2831907987fc07cbe1490232c033848656a8896b12e

diff --git a/app-editors/ghex/ghex-3.18.3.ebuild 
b/app-editors/ghex/ghex-3.18.3.ebuild
new file mode 100644
index ..bb9f3a1
--- /dev/null
+++ b/app-editors/ghex/ghex-3.18.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="GNOME hexadecimal editor"
+HOMEPAGE="https://wiki.gnome.org/Apps/Ghex;
+
+LICENSE="GPL-2+ FDL-1.1+"
+SLOT="2"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/atk-1
+   >=dev-libs/glib-2.31.10:2
+   >=x11-libs/gtk+-3.3.8:3
+"
+DEPEND="${RDEPEND}
+   >=dev-util/intltool-0.41.1
+   >=sys-devel/gettext-0.17
+   app-text/yelp-tools
+   virtual/pkgconfig
+"



[gentoo-commits] repo/gentoo:master commit in: media-video/pitivi/, media-video/pitivi/files/

2016-10-15 Thread Gilles Dartiguelongue
commit: cb7dbc61a99c90cbde0c4052783bc58302455633
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Oct 15 15:36:50 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Oct 15 15:42:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7dbc61

media-video/pitivi: version bump 0.96-r1 → 0.97

Gentoo-bug: 594096

Package-Manager: portage-2.3.1

 media-video/pitivi/Manifest|   1 +
 .../files/pitivi-0.97.1-optional-tests.patch   |  21 +
 media-video/pitivi/pitivi-0.97.1.ebuild| 105 +
 3 files changed, 127 insertions(+)

diff --git a/media-video/pitivi/Manifest b/media-video/pitivi/Manifest
index 4176221..29191e7 100644
--- a/media-video/pitivi/Manifest
+++ b/media-video/pitivi/Manifest
@@ -1,2 +1,3 @@
 DIST pitivi-0.95.tar.xz 3341488 SHA256 
5f15220bcc3d02cef4edacaa19da284014caf725e41fc9cbec70469582e1d313 SHA512 
e628302ecbb790e955459a4dc124e8580081f6eff8abde210a1b537ae18696c3861bd619efe1434e8e1cf1069adb72cbff0cf44c64706c4046d2cfb7f9aecdfa
 WHIRLPOOL 
df6e625dddcf113a8e84aabf5a7a40d90e6b38130e63201a1674f4a576a735696c6b9a9a35b2743cbe5bac8d444c04cd0ea9c5a43358718e1b32b6ebc97f435c
 DIST pitivi-0.96.tar.xz 3324396 SHA256 
fa0b469bb71ea10138144ec2adbe3e575d33678b5e48fc906e5e8cb8eb19ad84 SHA512 
dd608effc1f7196ac4784d707ec5a6f25088a3a216262a004ed81fd4e078bc80dde67c0601cc690b4b6a3a8febeef6bd841c30513449cbf722aa23d5d655f00d
 WHIRLPOOL 
4a61842cbd7704e2c2445fb47ce8016fc96be543b72825d092bfbcf6d35fdd3944d5395a09386c6102ffb1fc672a1c8226f7c48390cce43bcb23563b3fce6478
+DIST pitivi-0.97.1.tar.xz 5096672 SHA256 
41b23cfd21353647e55a0b2e86bab368b61d6f1a76cc132e80ca0dd27f000e77 SHA512 
be5fcf5148349f685f0ee23a82b36d90fe0b7ff6d1d8cdcaf73272b8e5c29ddfe1d6c21353eb95f2d786fe4922a93c747403e5e27141d815f5b46f846a1d95ba
 WHIRLPOOL 
dae38565e8665abdf4eacb76ecc87530f2a429266572bbd5db3138e31fa1ae949dafb077dcfffb75fe094c3b55839fba2259690aa5faa1258647b546f661e2e0

diff --git a/media-video/pitivi/files/pitivi-0.97.1-optional-tests.patch 
b/media-video/pitivi/files/pitivi-0.97.1-optional-tests.patch
new file mode 100644
index ..cfc86dc
--- /dev/null
+++ b/media-video/pitivi/files/pitivi-0.97.1-optional-tests.patch
@@ -0,0 +1,21 @@
+make tests optional
+
+--- a/meson_options.txt2016-09-19 23:35:54.944511834 +0200
 b/meson_options.txt2016-09-19 23:36:10.693485976 +0200
+@@ -1,2 +1,3 @@
+ option('enable-xunit', type : 'boolean', value : false)
+ option('disable-help', type : 'boolean', value : false)
++option('enable-tests', type : 'boolean', value : false)
+--- a/meson.build  2016-09-19 23:35:06.694590798 +0200
 b/meson.build  2016-09-19 23:35:45.092527990 +0200
+@@ -57,7 +57,9 @@
+ if not get_option('disable-help')
+ subdir('help')
+ endif
+-subdir('tests')
++if get_option('enable-tests')
++subdir('tests')
++endif
+ 
+ archiver = find_program('git-archive-all', required : false)
+ if archiver.found()

diff --git a/media-video/pitivi/pitivi-0.97.1.ebuild 
b/media-video/pitivi/pitivi-0.97.1.ebuild
new file mode 100644
index ..0108a3f
--- /dev/null
+++ b/media-video/pitivi/pitivi-0.97.1.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python{3_3,3_4,3_5} )
+PYTHON_REQ_USE="sqlite"
+
+inherit gnome2 python-single-r1 virtualx
+
+DESCRIPTION="A non-linear video editor using the GStreamer multimedia 
framework"
+HOMEPAGE="http://www.pitivi.org;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="v4l test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# some of the tests fail with timeouts, others with VA errors
+RESTRICT="test"
+
+# XXX: recommends gst-plugins-libav and frei0r-plugins
+
+# Do not forget to check pitivi/check.py for dependencies!!!
+# pycanberra, gnome-desktop, libav, libnotify and liwnck are optional
+GST_VER="1.8.2"
+
+COMMON_DEPEND="
+   ${PYTHON_DEPS}
+   >=dev-python/pycairo-1.10[${PYTHON_USEDEP}]
+   >=x11-libs/cairo-1.10
+
+   >=media-libs/gstreamer-${GST_VER}:1.0[introspection]
+   >=media-plugins/gst-transcoder-1.8.1
+"
+RDEPEND="${COMMON_DEPEND}
+   >=dev-libs/glib-2.30.0:2
+
+   >=dev-libs/gobject-introspection-1.34:=
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   >=dev-python/gst-python-1.4:1.0[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pycanberra[${PYTHON_USEDEP}]
+   >=dev-python/pygobject-3.8:3[${PYTHON_USEDEP}]
+
+   gnome-base/librsvg:=
+   gnome-base/gnome-desktop:3=[introspection]
+
+   >=media-libs/gstreamer-editing-services-${GST_VER}:1.0[introspection]
+   >=media-libs/gst-plugins-base-${GST_VER}:1.0[introspection]
+   >=media-libs/gst-plugins-bad-${GST_VER}:1.0[gtk]
+   >=media-libs/gst-plugins-good-${GST_VER}:1.0
+   

[gentoo-commits] repo/gentoo:master commit in: x11-apps/xrectsel/, media-video/ffcast/

2016-10-15 Thread Jason Donenfeld
commit: 4b41bd1dbeb1a6f2e0bab0e428576f65a842e07c
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Sat Oct 15 15:36:03 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Sat Oct 15 15:42:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b41bd1d

x11-apps/xrectsel: bump

Package-Manager: portage-2.3.2

 media-video/ffcast/Manifest| 2 +-
 media-video/ffcast/{ffcast-2.4.1.ebuild => ffcast-2.4.8.ebuild}| 5 +++--
 x11-apps/xrectsel/Manifest | 2 +-
 x11-apps/xrectsel/{xrectsel-0.3.1.ebuild => xrectsel-0.3.2.ebuild} | 5 +++--
 4 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/media-video/ffcast/Manifest b/media-video/ffcast/Manifest
index 1452034..22e7915 100644
--- a/media-video/ffcast/Manifest
+++ b/media-video/ffcast/Manifest
@@ -1 +1 @@
-DIST ffcast-2.4.1.tar.gz 24542 SHA256 
57131f5d05bf77ce6116305061481e8d2a8bd7b71f2ef3d21dc982118d67ff3c SHA512 
dc2be630ccd8538f3f0c1dce2443ec7ddbc3bda6606fa97262a46c0d91590889891c7efd1d63dbeb388755e1a3bdf47ce654fcffe3add247f5f7b64509d2c95f
 WHIRLPOOL 
4ac36d41ffa18703bd0f0d9d641774dbbf9721db25e64909e72f32aa3c6a75d9b29ea7e4c81b42509d7f0ca003b9608b13c0d42c28158e73af1a997a0547aa7f
+DIST ffcast-2.4.8.tar.gz 25471 SHA256 
a9bf54ad581d1174a432a50dbcadd0829fe86df6572937597ef2583c91c511bb SHA512 
69f3d2927fac61f530cf6c0d8de422f0ab2baf90249a0771680fc724221edc5c97cbb38811f6b9523848d6dc96e9cbf659c8984543f8ca98ee98e45c105d3434
 WHIRLPOOL 
bf270127f3cb6dd897f6f5c3e16c2b49d87a4c14fff5d0404a2d150c3f4aa077243c01c7cd9e8aa18367b193eaf990106a562b8708d762030be9b126f69ef83c

diff --git a/media-video/ffcast/ffcast-2.4.1.ebuild 
b/media-video/ffcast/ffcast-2.4.8.ebuild
similarity index 90%
rename from media-video/ffcast/ffcast-2.4.1.ebuild
rename to media-video/ffcast/ffcast-2.4.8.ebuild
index 69e0af7..983e0fb 100644
--- a/media-video/ffcast/ffcast-2.4.1.ebuild
+++ b/media-video/ffcast/ffcast-2.4.8.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 inherit autotools
 
@@ -27,5 +27,6 @@ S="${WORKDIR}/FFcast-${PV}"
 
 src_prepare() {
rmdir src/xrectsel
+   eapply_user
eautoreconf
 }

diff --git a/x11-apps/xrectsel/Manifest b/x11-apps/xrectsel/Manifest
index b4cfe44..5519591 100644
--- a/x11-apps/xrectsel/Manifest
+++ b/x11-apps/xrectsel/Manifest
@@ -1 +1 @@
-DIST xrectsel-0.3.1.tar.gz 14804 SHA256 
e797377b28de7095d912a4e96ee59ab1c98f493005cede7149532ede058afdb4 SHA512 
33ae145e4e1a73ba3f0c359697c70d9306a61647a1202f0105dc338d90e0025f82dd1724abdfc34b3440742248dfe21276d8d89aa86c60c97007c5925dcf7510
 WHIRLPOOL 
aa7d03bb9cf7d4d49b0dc2f6614c8d377b8ac55dabc5c0234395cc959b4c39f880e9d5a8590ffd314126b32b8053d7aa7d4eb89305cea7ed5453b231b97e86d1
+DIST xrectsel-0.3.2.tar.gz 14834 SHA256 
1b4b928bb7270e0531467c1e7f93322c784c7c0dedc13d1d5e53034417fde785 SHA512 
56e87002dba1858c900ceba4d6cf1613fa92a5a8f59fb5c4852e65835bde9478bf92c160ca398cd19e99543ed0ab94ad4ac8ba2d60a7dbaf95bc2826f8953fcc
 WHIRLPOOL 
ba0117a43e78e09b542dfed575315e0c32517468643064c669bd2ffd3b258d208f83840e7dd4f4b404d1cc74d797431a54f9545e59b71e57c8cadd9d448975ea

diff --git a/x11-apps/xrectsel/xrectsel-0.3.1.ebuild 
b/x11-apps/xrectsel/xrectsel-0.3.2.ebuild
similarity index 87%
rename from x11-apps/xrectsel/xrectsel-0.3.1.ebuild
rename to x11-apps/xrectsel/xrectsel-0.3.2.ebuild
index ae32156..526249d 100644
--- a/x11-apps/xrectsel/xrectsel-0.3.1.ebuild
+++ b/x11-apps/xrectsel/xrectsel-0.3.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 inherit autotools
 
@@ -19,5 +19,6 @@ DEPEND="x11-libs/libX11"
 RDEPEND="${DEPEND}"
 
 src_prepare() {
+   eapply_user
eautoreconf
 }



[gentoo-commits] repo/gentoo:master commit in: app-text/cutemarked/

2016-10-15 Thread Jason Donenfeld
commit: 45bd8dc7ec50da4cb57df7868f7607568ffe5df6
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Sat Oct 15 15:28:19 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Sat Oct 15 15:28:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45bd8dc7

app-text/cutemarked: small fix

Package-Manager: portage-2.3.2

 app-text/cutemarked/cutemarked-0.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/cutemarked/cutemarked-0.11.3.ebuild 
b/app-text/cutemarked/cutemarked-0.11.3.ebuild
index 566aac4..a4352b7 100644
--- a/app-text/cutemarked/cutemarked-0.11.3.ebuild
+++ b/app-text/cutemarked/cutemarked-0.11.3.ebuild
@@ -31,7 +31,7 @@ RDEPEND="${DEPEND}"
 S="${WORKDIR}/CuteMarkEd-${PV}"
 
 src_prepare() {
-   epatch "${FILESDIR}/${P}"-respect-destdir.patch
+   epatch "${FILESDIR}/${PN}"-0.11.1-respect-destdir.patch
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: app-text/cutemarked/

2016-10-15 Thread Jason Donenfeld
commit: cd5301890b318ab3f207690a5e28f843934fbc27
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Sat Oct 15 15:24:44 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Sat Oct 15 15:25:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd530189

app-text/cutemarked: bump

Package-Manager: portage-2.3.2

 app-text/cutemarked/Manifest   | 2 +-
 .../{cutemarked-0.11.1.ebuild => cutemarked-0.11.3.ebuild} | 7 ++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/app-text/cutemarked/Manifest b/app-text/cutemarked/Manifest
index 144f8a8..ecf6ba6 100644
--- a/app-text/cutemarked/Manifest
+++ b/app-text/cutemarked/Manifest
@@ -1 +1 @@
-DIST cutemarked-0.11.1.tar.gz 759181 SHA256 
17f376429bafbd4009099340e71481075f2695a020a7c85a5f91145e168728e8 SHA512 
22e1e7825ed0cfbb0480cd73988879dbb89aaf4c6662771e8bd7f5465ceb42cba65f7fa56f114d3b8855ca18f45ee268db4fea94bc92e97195de4e53b9a75139
 WHIRLPOOL 
99821a99fa3d47ea04f48277b3b35a6211bc772153161b88acecf931bea1e00ba433a2b0ddabb17ad6c29d7395e2b66f6a8e78a9e4f0f1652cf62243e52e881e
+DIST cutemarked-0.11.3.tar.gz 772238 SHA256 
78a41808c2f0452375810abdff76eeaaee012f8d1368a2b8772ec6b4d2ceeec8 SHA512 
3b776f6453812ce4afa37532bf03adce01ad3ec2fb0d848e3a0e5f18ca30be6f1e9f6b3c815917a96c9637c722d53a5bc249d5f58b209000d7d794239626ca30
 WHIRLPOOL 
655d319e0781849ff33e7fe4e0e7c8733b9b6b80c55e0c09ddee1c94e6b3880e6de773cdd66a6b48ef0aa58a7723c64092e3bc108f2f1bac3818953f27623e59

diff --git a/app-text/cutemarked/cutemarked-0.11.1.ebuild 
b/app-text/cutemarked/cutemarked-0.11.3.ebuild
similarity index 79%
rename from app-text/cutemarked/cutemarked-0.11.1.ebuild
rename to app-text/cutemarked/cutemarked-0.11.3.ebuild
index 7ce2107..566aac4 100644
--- a/app-text/cutemarked/cutemarked-0.11.1.ebuild
+++ b/app-text/cutemarked/cutemarked-0.11.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -18,6 +18,11 @@ IUSE=""
 DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
+   dev-qt/qtwebkit:5
+   dev-qt/linguist-tools:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qttest:5
app-text/discount
app-text/hunspell
 "



[gentoo-commits] repo/gentoo:master commit in: app-admin/doas/

2016-10-15 Thread Patrice Clement
commit: 40ac03c6a01b8cfac6c5a5335fcc6786dfd22a3a
Author: Felix Janda  posteo  de>
AuthorDate: Fri Oct 14 23:18:23 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 15:11:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ac03c6

app-admin/doas: new package.

doas allows to run programs as another user, and is a lightweight
alternative to sys-apps/sudo.

Gentoo-Bug: https://bugs.gentoo.org/597010
Closes: https://github.com/gentoo/gentoo/pull/2560

Signed-off-by: Patrice Clement  gentoo.org>

 app-admin/doas/Manifest|  1 +
 app-admin/doas/doas-6.0.ebuild | 40 
 app-admin/doas/metadata.xml| 15 +++
 3 files changed, 56 insertions(+)

diff --git a/app-admin/doas/Manifest b/app-admin/doas/Manifest
new file mode 100644
index ..2c56823
--- /dev/null
+++ b/app-admin/doas/Manifest
@@ -0,0 +1 @@
+DIST OpenDoas-6.0.tar.gz 28482 SHA256 
59b5ce734591e0e5142f9cb27aaa56a4d5ce470d1f7ad85e9679cd91d2dd2058 SHA512 
2bf5e00895a45d87785e7a494a1506844afd843ef5375e0b0e3795ebc24712bb941c6feeb87e426e41a240d40aca9b4c099f77220745bb7142a7a4b303441f60
 WHIRLPOOL 
037154c8aa81dd33a253a7d8837183d9cd4652ad1a333c1a8771a31cb31fc4721fdcdfc29c786c4bb9f011a61ef978b8e04e75336ea4628673405a68b3a2b839

diff --git a/app-admin/doas/doas-6.0.ebuild b/app-admin/doas/doas-6.0.ebuild
new file mode 100644
index ..5469c66
--- /dev/null
+++ b/app-admin/doas/doas-6.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Run commands as super user or another user, alternative to sudo 
from OpenBSD"
+
+MY_PN=OpenDoas
+MY_P=${MY_PN}-${PV}
+HOMEPAGE="https://github.com/Duncaen/OpenDoas;
+SRC_URI="https://github.com/Duncaen/${MY_PN}/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm"
+IUSE="pam"
+
+RDEPEND="pam? ( virtual/pam )"
+DEPEND="${RDEPEND}
+   virtual/yacc"
+
+src_prepare()
+{
+   default
+   sed -i 's/-Werror //' Makefile || die
+}
+
+src_configure()
+{
+   tc-export CC AR
+   ./configure \
+   --prefix="${EPREFIX}"/usr \
+   --sysconfdir="${EPREFIX}"/etc \
+   $(use_with pam) \
+   || die
+}

diff --git a/app-admin/doas/metadata.xml b/app-admin/doas/metadata.xml
new file mode 100644
index ..90a63f8
--- /dev/null
+++ b/app-admin/doas/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   felix.ja...@posteo.de
+   Felix Janda
+
+
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+
+
+   Duncaen/OpenDoas
+
+



[gentoo-commits] repo/gentoo:master commit in: net-dns/knot/, net-dns/knot/files/

2016-10-15 Thread Patrice Clement
commit: eea282ad74f5640e9775e785e68b0f05e1fb3a94
Author: Pierre-Olivier Mercier  nemunai  re>
AuthorDate: Fri Oct 14 09:43:27 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 15:08:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eea282ad

net-dns/knot: version bump to 2.3.1.

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2552
Signed-off-by: Patrice Clement  gentoo.org>

 net-dns/knot/Manifest  |   2 +-
 ...ire-format-when-writing-FNV64-hash-values.patch | 216 -
 .../knot/{knot-2.3.0.ebuild => knot-2.3.1.ebuild}  |   8 +-
 3 files changed, 3 insertions(+), 223 deletions(-)

diff --git a/net-dns/knot/Manifest b/net-dns/knot/Manifest
index 6193b8c..bbe30e5 100644
--- a/net-dns/knot/Manifest
+++ b/net-dns/knot/Manifest
@@ -1 +1 @@
-DIST knot-2.3.0.tar.xz 1066852 SHA256 
8abf9a6562ecf2f7f4222d16ca6c75463399870db360eda7caa40530b469533c SHA512 
28f0f6a00af3feb95ebd9af0c324ffeff1093f8e74136ce81f5a6e7f4434f22b9e371715b4b116de9b8faf39776be4d943c2ae09fb786e6061cc0394a767e8b6
 WHIRLPOOL 
b0cc054c79d6b2ef7e9e0c2dba727042d92d235a08a0b15c56189c06f69087aee36d21947e1bf33304bbe0834d50421e9f01a4b4d7597aed05ed1b552c5ea52c
+DIST knot-2.3.1.tar.xz 1072808 SHA256 
42e4ec64dc8f017329d1753eb074a5759d6bb380e1f2a272101adccc0552f9b4 SHA512 
10d8c09d7cce88aba95b067da9b138af710864de4ef9c00d7ab165b4aca621d9ff15a49b5102e0cdd7bfb14e2806ed8587fd138b6e6af74a01e26e6d6ffe1163
 WHIRLPOOL 
70cdb9434a80c56b7e425b1aa3389ae22c9dea289a8081464be21abf6afebc46a9bffaa6363955a01aa3aa1bea3a71e46ef75dfce77c7e0a63dcd3c8622287c0

diff --git 
a/net-dns/knot/files/2.3.0-added-conversion-to-wire-format-when-writing-FNV64-hash-values.patch
 
b/net-dns/knot/files/2.3.0-added-conversion-to-wire-format-when-writing-FNV64-hash-values.patch
deleted file mode 100644
index 60667ab..
--- 
a/net-dns/knot/files/2.3.0-added-conversion-to-wire-format-when-writing-FNV64-hash-values.patch
+++ /dev/null
@@ -1,216 +0,0 @@
-From 84849be189c49ef9556bd84d5e5103317372e8a7 Mon Sep 17 00:00:00 2001
-From: Karel Slany 
-Date: Thu, 11 Aug 2016 11:39:39 +0200
-Subject: [PATCH] Added conversion to wire format when writing FNV64 hash 
values.
-
-Test on big-endian machines have been failing.

- src/libknot/cookies/alg-fnv64.c |  6 +++---
- tests/libknot/test_cookies-client.c | 20 ++--
- tests/libknot/test_cookies-server.c | 20 ++--
- 3 files changed, 23 insertions(+), 23 deletions(-)
-
-diff --git a/src/libknot/cookies/alg-fnv64.c b/src/libknot/cookies/alg-fnv64.c
-index 9989a4f..5e263c1 100644
 a/src/libknot/cookies/alg-fnv64.c
-+++ b/src/libknot/cookies/alg-fnv64.c
-@@ -17,10 +17,10 @@
- #include 
- #include 
- #include 
--#include 
- 
- #include "contrib/fnv/fnv.h"
- #include "contrib/sockaddr.h"
-+#include "contrib/wire.h"
- #include "libknot/attribute.h"
- #include "libknot/cookies/alg-fnv64.h"
- #include "libknot/rrtype/opt-cookie.h"
-@@ -80,7 +80,7 @@ static uint16_t cc_gen_fnv64(const struct knot_cc_input 
*input,
-   assert(KNOT_OPT_COOKIE_CLNT == sizeof(hash_val));
- 
-   cc_len = sizeof(hash_val);
--  memcpy(cc_out, _val, cc_len);
-+  wire_write_u64(cc_out, hash_val);
- 
-   return cc_len;
- }
-@@ -127,7 +127,7 @@ static uint16_t sc_gen_fnv64(const struct knot_sc_input 
*input,
-   assert(SRVR_FNV64_HASH_SIZE == sizeof(hash_val));
- 
-   hash_len = sizeof(hash_val);
--  memcpy(hash_out, _val, hash_len);
-+  wire_write_u64(hash_out, hash_val);
- 
-   return hash_len;
- }
-diff --git a/tests/libknot/test_cookies-client.c 
b/tests/libknot/test_cookies-client.c
-index 44be903..712dbba 100644
 a/tests/libknot/test_cookies-client.c
-+++ b/tests/libknot/test_cookies-client.c
-@@ -110,7 +110,7 @@ int main(int argc, char *argv[])
-   hash_len = knot_cc_alg_fnv64.gen_func(_in, hash, hash_len);
-   ok(hash_len != 0 && hash_len == knot_cc_alg_fnv64.cc_size, "cookies: 
FNV64 client cookie output");
-   {
--  uint8_t expected[] = { 0x74, 0x31, 0xf9, 0xa8, 0x03, 0xef, 
0x15, 0xb1 };
-+  uint8_t expected[] = { 0xb1, 0x15, 0xef, 0x03, 0xa8, 0xf9, 
0x31, 0x74 };
-   ok(sizeof(expected) == hash_len && 0 == memcmp(expected, hash, 
hash_len), "cookies: FNV64 client cookie content");
-   }
- 
-@@ -123,7 +123,7 @@ int main(int argc, char *argv[])
-   hash_len = knot_cc_alg_fnv64.gen_func(_in, hash, hash_len);
-   ok(hash_len != 0 && hash_len == knot_cc_alg_fnv64.cc_size, "cookies: 
FNV64 client cookie output");
-   {
--  uint8_t expected[] = { 0x7c, 0x62, 0x25, 0xd2, 0x43, 0xdd, 
0x09, 0xe7 };
-+  uint8_t expected[] = { 0xe7, 0x09, 0xdd, 0x43, 0xd2, 0x25, 
0x62, 0x7c };
-   ok(sizeof(expected) == hash_len && 0 == memcmp(expected, hash, 
hash_len), "cookies: FNV64 client cookie content");
-   }
- 
-@@ -136,7 +136,7 @@ int main(int argc, char 

[gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/

2016-10-15 Thread Jason Donenfeld
commit: e3e652e47645a66373c07a0b25c932212f548d2f
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Sat Oct 15 14:58:11 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Sat Oct 15 14:59:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e652e4

mail-filter/opensmtpd-extras: not compat with 6.0

Package-Manager: portage-2.3.2

 mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild 
b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
index 78bc404..8b22c09 100644
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.opensmtpd.org/archives/${PN}-$(get_version_component_range
 
 LICENSE="ISC BSD BSD-1 BSD-2 BSD-4"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 MY_COMPONENTS="
filter-monkey
filter-stub



[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/, net-proxy/haproxy/files/

2016-10-15 Thread Patrice Clement
commit: 2bfe6e3f45c9c3a26b44bdceaff67839504a19de
Author: Bertrand Jacquin  jacquin  bzh>
AuthorDate: Wed Oct  5 21:10:17 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 14:52:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bfe6e3f

net-proxy/haproxy: major improvements.

* Move to /run.
* Remove commented USE_LINUX_SPLICE since declaration is implicit.
* Remove commented USE_LINUX_TPROXY since declaration is implicit.
* Keep lua for live ebuild.

Gentoo-Bug: https://bugs.gentoo.org/332633

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2486
Signed-off-by: Patrice Clement  gentoo.org>

 net-proxy/haproxy/files/haproxy.confd|  4 ++--
 net-proxy/haproxy/files/haproxy.initd-r2 |  4 ++--
 net-proxy/haproxy/files/haproxy.initd-r3 |  4 ++--
 net-proxy/haproxy/haproxy-1.6.9.ebuild   | 11 +--
 net-proxy/haproxy/haproxy-.ebuild|  4 
 5 files changed, 7 insertions(+), 20 deletions(-)

diff --git a/net-proxy/haproxy/files/haproxy.confd 
b/net-proxy/haproxy/files/haproxy.confd
index 5a989a7..30739eb 100644
--- a/net-proxy/haproxy/files/haproxy.confd
+++ b/net-proxy/haproxy/files/haproxy.confd
@@ -9,6 +9,6 @@ HAPROXY_OPTS=""
 # For more information on how to use that feature please have a look at the
 # "seamless_reload.txt" documentation file (requires 
net-proxy/haproxy[examples])
 #reload_seamless() {
-#  checkpath -d -m 0700 haproxy:haproxy "/var/run/haproxy/"
-#  socat /var/run/haproxy/socket - <<< "show servers state" > 
/var/run/haproxy/global.state
+#  checkpath -d -m 0700 haproxy:haproxy "/run/haproxy/"
+#  socat /run/haproxy/socket - <<< "show servers state" > 
/run/haproxy/global.state
 #}

diff --git a/net-proxy/haproxy/files/haproxy.initd-r2 
b/net-proxy/haproxy/files/haproxy.initd-r2
index 39a5bb4..15c5eb5 100644
--- a/net-proxy/haproxy/files/haproxy.initd-r2
+++ b/net-proxy/haproxy/files/haproxy.initd-r2
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -7,7 +7,7 @@ extra_commands="checkconfig"
 extra_started_commands="reload"
 
 command="/usr/bin/haproxy"
-pidfile="/var/run/${SVCNAME}.pid"
+pidfile="/run/${SVCNAME}.pid"
 
 if [ -z "${CONFFILE}" -a -d "/etc/haproxy" -a -f "/etc/haproxy/${SVCNAME}.cfg" 
]; then
CONFFILE=/etc/haproxy/${SVCNAME}.cfg

diff --git a/net-proxy/haproxy/files/haproxy.initd-r3 
b/net-proxy/haproxy/files/haproxy.initd-r3
index 92665cd..60ec31a 100644
--- a/net-proxy/haproxy/files/haproxy.initd-r3
+++ b/net-proxy/haproxy/files/haproxy.initd-r3
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -8,7 +8,7 @@ extra_started_commands="reload"
 
 command="/usr/bin/haproxy"
 
-pidfile="${HAPROXY_PIDFILE:-/var/run/${SVCNAME}.pid}"
+pidfile="${HAPROXY_PIDFILE:-/run/${SVCNAME}.pid}"
 
 configs=
 

diff --git a/net-proxy/haproxy/haproxy-1.6.9.ebuild 
b/net-proxy/haproxy/haproxy-1.6.9.ebuild
index c9a98ed..8f3c3a0 100644
--- a/net-proxy/haproxy/haproxy-1.6.9.ebuild
+++ b/net-proxy/haproxy/haproxy-1.6.9.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://haproxy.1wt.eu/download/$(get_version_component_range 1-2)/src/$
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~ppc ~x86"
-IUSE="+crypt doc examples libressl slz net_ns +pcre pcre-jit ssl tools 
vim-syntax +zlib" # lua
+IUSE="+crypt doc examples libressl slz net_ns +pcre pcre-jit ssl tools 
vim-syntax +zlib"
 REQUIRED_USE="pcre-jit? ( pcre )
?? ( slz zlib )"
 
@@ -30,7 +30,6 @@ DEPEND="
)
slz? ( dev-libs/libslz:= )
zlib? ( sys-libs/zlib )"
-# lua? ( dev-lang/lua:5.3 )
 RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/${MY_P}"
@@ -69,17 +68,9 @@ src_compile() {
)
 
args+=( $(haproxy_use crypt LIBCRYPT) )
-
-# bug 541042
-#  args+=( $(haproxy_use lua LUA) )
-
args+=( $(haproxy_use net_ns NS) )
args+=( $(haproxy_use pcre PCRE) )
args+=( $(haproxy_use pcre-jit PCRE_JIT) )
-
-#  args+=( $(haproxy_use kernel_linux LINUX_SPLICE) )
-#  args+=( $(haproxy_use kernel_linux LINUX_TPROXY) )
-
args+=( $(haproxy_use ssl OPENSSL) )
args+=( $(haproxy_use slz SLZ) )
args+=( $(haproxy_use zlib ZLIB) )

diff --git a/net-proxy/haproxy/haproxy-.ebuild 
b/net-proxy/haproxy/haproxy-.ebuild
index 4100bfa..97a58d9 100644
--- a/net-proxy/haproxy/haproxy-.ebuild
+++ b/net-proxy/haproxy/haproxy-.ebuild
@@ -76,10 +76,6 @@ src_compile() {
args+=( $(haproxy_use net_ns NS) )
args+=( $(haproxy_use pcre PCRE) )
args+=( $(haproxy_use pcre-jit PCRE_JIT) )
-
-#  args+=( $(haproxy_use kernel_linux LINUX_SPLICE) )
-#  args+=( $(haproxy_use kernel_linux LINUX_TPROXY) )
-
args+=( $(haproxy_use ssl 

[gentoo-commits] dev/mrueg:master commit in: www-apps/redmine/

2016-10-15 Thread Manuel Rüger
commit: f96da822ce3ae0611fdbd32193149d65a2596313
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 14:29:44 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 14:29:44 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=f96da822

www-apps/redmine: Version bump to 3.3.1, remove old

Package-Manager: portage-2.3.2

 www-apps/redmine/Manifest   | 2 +-
 www-apps/redmine/{redmine-3.3.0.ebuild => redmine-3.3.1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/redmine/Manifest b/www-apps/redmine/Manifest
index f297493..cf4f481 100644
--- a/www-apps/redmine/Manifest
+++ b/www-apps/redmine/Manifest
@@ -1 +1 @@
-DIST redmine-3.3.0.tar.gz 2353253 SHA256 
469a4339c3f8c64c6a62404b1b9c9d260c427e640f5dd53b2eb68b737f9285d5 SHA512 
7125cb841fef6ef9b27cf1d466afacb9a4b94e7bc5e8a1a57ff5ab9f70cd5f7170f58fd35140c9c8de64bf9f7eac41a76a961f8fb49d152c64ef054a8684d80d
 WHIRLPOOL 
c0dfc5463d6196c31f8d66cadf26a58a482a756c6eb1704578bde3d634f8a1c51b18a2c4b07f31899bbf1e6a7e2526ebf7df3e3cbdab8c42a252b43a91ccbf93
+DIST redmine-3.3.1.tar.gz 2359112 SHA256 
bb548bb8001d1137e4bf013c4e96110f7e44e93e43e7e9bae65971388f291f12 SHA512 
0bf2f23b0aad6dfc97b3fc816d2d1fef512c7f122a2bcf672af939bca932a61ba8f72981fc4f7dd3485d93dde659ab3cfb6df63b0ba423c1159731cea55bdc1f
 WHIRLPOOL 
0a0a609928e1d57d5626c639f93c6410a3f72af9e1f4ab93aafe9acede5b801aa622466fa081cc3ad22c3e9f5f17fd2ecdeb5f3189923679122283c29a08c18b

diff --git a/www-apps/redmine/redmine-3.3.0.ebuild 
b/www-apps/redmine/redmine-3.3.1.ebuild
similarity index 99%
rename from www-apps/redmine/redmine-3.3.0.ebuild
rename to www-apps/redmine/redmine-3.3.1.ebuild
index 88b877b..6514d97 100644
--- a/www-apps/redmine/redmine-3.3.0.ebuild
+++ b/www-apps/redmine/redmine-3.3.1.ebuild
@@ -20,7 +20,7 @@ IUSE="ldap fastcgi passenger imagemagick"
 
 ruby_add_rdepend "
dev-ruby/rubygems
-   >=dev-ruby/rails-4.2.6:4.2
+   >=dev-ruby/rails-4.2.7.1:4.2
>=dev-ruby/jquery-rails-3.1.4:3
>=dev-ruby/coderay-1.1.1
>=dev-ruby/builder-3.0.4



[gentoo-commits] proj/betagarden:master commit in: media-sound/sayonara-player/

2016-10-15 Thread Sebastian Pipping
commit: 98c0850ce8b196e2fdb4ad4927bc552fb1ff2dbf
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Sat Oct 15 13:57:27 2016 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Sat Oct 15 13:57:27 2016 +
URL:https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=98c0850c

media-sound/sayonara-player: 0.9.2_p8_p20161013

 .../sayonara-player-0.9.2_p8_p20161013.ebuild  | 53 ++
 1 file changed, 53 insertions(+)

diff --git 
a/media-sound/sayonara-player/sayonara-player-0.9.2_p8_p20161013.ebuild 
b/media-sound/sayonara-player/sayonara-player-0.9.2_p8_p20161013.ebuild
new file mode 100644
index 000..7954105
--- /dev/null
+++ b/media-sound/sayonara-player/sayonara-player-0.9.2_p8_p20161013.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+CMAKE_BUILD_TYPE=None
+inherit eutils cmake-utils
+
+MY_PV=${PV/_p/-git}; MY_PV=${MY_PV/_p/-}
+DESCRIPTION="Small, clear and fast audio player for Linux"
+HOMEPAGE="https://sayonara-player.com/;
+SRC_URI="https://sayonara-player.com/sw/${PN}-${MY_PV}.tar.gz;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+MIN_QT_VERSION=5.3
+
+RDEPEND="
+   dev-libs/glib:2
+   >=dev-qt/qtcore-${MIN_QT_VERSION}:5
+   >=dev-qt/qtdbus-${MIN_QT_VERSION}:5
+   >=dev-qt/qtgui-${MIN_QT_VERSION}:5
+   >=dev-qt/qtnetwork-${MIN_QT_VERSION}:5
+   >=dev-qt/qtsql-${MIN_QT_VERSION}:5[sqlite]
+   >=dev-qt/qtwidgets-${MIN_QT_VERSION}:5
+   >=dev-qt/qtxml-${MIN_QT_VERSION}:5
+   media-libs/libmtp
+   >=media-libs/taglib-1.6
+   media-libs/gst-plugins-base:1.0
+   media-libs/gstreamer:1.0
+   media-plugins/gst-plugins-soundtouch:1.0
+   sys-libs/zlib
+   "
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   "
+
+S="${WORKDIR}"/${PN}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-0.9.2_p4_p20160920-updates.patch
+}
+
+pkg_postinst() {
+   elog "Optionally, install as well:"
+   elog "  media-sound/lame"
+   elog "  media-libs/gst-plugins-good:1.0"
+   elog "  media-libs/gst-plugins-bad:1.0"
+}



[gentoo-commits] repo/gentoo:master commit in: app-cdr/b5i2iso/

2016-10-15 Thread Pacho Ramos
commit: 3e1d288d00e0acdb820c9029fc139688afdbafbc
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Oct 15 13:43:13 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Oct 15 13:54:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e1d288d

app-cdr/b5i2iso: Remove references to berlios.de

Package-Manager: portage-2.3.1

 app-cdr/b5i2iso/b5i2iso-0.2.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-cdr/b5i2iso/b5i2iso-0.2.ebuild 
b/app-cdr/b5i2iso/b5i2iso-0.2.ebuild
index ccb7283..2990786 100644
--- a/app-cdr/b5i2iso/b5i2iso-0.2.ebuild
+++ b/app-cdr/b5i2iso/b5i2iso-0.2.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+EAPI=6
 inherit toolchain-funcs
 
 DESCRIPTION="BlindWrite image to ISO image file converter"
-HOMEPAGE="http://developer.berlios.de/projects/b5i2iso/;
-#SRC_URI="mirror://berlios/${PN}/${PN}.tar.bz2"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI="mirror://gentoo/${PN}.tar.bz2"
 
 LICENSE="GPL-2"
@@ -21,5 +21,5 @@ src_compile() {
 }
 
 src_install() {
-   dobin ${PN} || die
+   dobin ${PN}
 }



[gentoo-commits] repo/gentoo:master commit in: app-cdr/iat/

2016-10-15 Thread Pacho Ramos
commit: 40e59308cc5fb544a6d9290ec8929e4affd07026
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Oct 15 13:48:57 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Oct 15 13:54:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e59308

app-cdr/iat: Remove references to berlios.de and fix prefix support (#478068)

Package-Manager: portage-2.3.1

 app-cdr/iat/iat-0.1.7-r1.ebuild | 15 ---
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/app-cdr/iat/iat-0.1.7-r1.ebuild b/app-cdr/iat/iat-0.1.7-r1.ebuild
index c5ae511..c0459a7 100644
--- a/app-cdr/iat/iat-0.1.7-r1.ebuild
+++ b/app-cdr/iat/iat-0.1.7-r1.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="2"
+EAPI=6
 
 DESCRIPTION="BIN, MDF, PDI, CDI, NRG, and B5I converters"
-HOMEPAGE="http://iat.berlios.de;
-#SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI="mirror://gentoo/${P}.tar.bz2"
 
 LICENSE="GPL-2"
@@ -16,11 +15,5 @@ IUSE=""
 
 src_configure() {
econf  \
-   --disable-dependency-tracking \
-   --includedir=/usr/include/${PN}
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed."
-   dodoc AUTHORS NEWS README || die "dodoc failed"
+   --includedir="${EPREFIX}/usr/include/${PN}"
 }



[gentoo-commits] repo/gentoo:master commit in: app-dicts/qvortaro/

2016-10-15 Thread Pacho Ramos
commit: a8bc5281e1093f11fc06423343564be376df4fa5
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Oct 15 13:51:35 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Oct 15 13:54:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8bc5281

app-dicts/qvortaro: Remove references to berlios.de

Package-Manager: portage-2.3.1

 app-dicts/qvortaro/qvortaro-0.4.1.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/app-dicts/qvortaro/qvortaro-0.4.1.ebuild 
b/app-dicts/qvortaro/qvortaro-0.4.1.ebuild
index c30dae2..11b90a2 100644
--- a/app-dicts/qvortaro/qvortaro-0.4.1.ebuild
+++ b/app-dicts/qvortaro/qvortaro-0.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,8 +6,7 @@ EAPI=5
 inherit eutils qt4-r2
 
 DESCRIPTION="Esperanto Dictionary"
-HOMEPAGE="http://qvortaro.berlios.de/;
-#SRC_URI="mirror://berlios/qvortaro/${P}.tar.gz"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 LICENSE="GPL-3"
@@ -23,7 +22,7 @@ DEPEND="
 PATCHES=( "${FILESDIR}/${P}-gcc45.patch" )
 
 src_install() {
-   dobin qvortaro || die
+   dobin qvortaro
newicon src/img/icon_16.png ${PN}.png
make_desktop_entry ${PN} qVortaro
dodoc readme.txt



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cuecue/

2016-10-15 Thread Pacho Ramos
commit: 735d08d5748d73196ebf4f69d6cf03a03a226931
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Oct 15 13:46:26 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Oct 15 13:54:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735d08d5

app-cdr/cuecue: Remove references to berlios.de

Package-Manager: portage-2.3.1

 app-cdr/cuecue/cuecue-0.2.2-r2.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-cdr/cuecue/cuecue-0.2.2-r2.ebuild 
b/app-cdr/cuecue/cuecue-0.2.2-r2.ebuild
index 9cf7789..362919f 100644
--- a/app-cdr/cuecue/cuecue-0.2.2-r2.ebuild
+++ b/app-cdr/cuecue/cuecue-0.2.2-r2.ebuild
@@ -6,8 +6,7 @@ EAPI=6
 inherit flag-o-matic
 
 DESCRIPTION="Cuecue converts .cue + [.ogg|.flac|.wav|.mp3] to .cue + .bin"
-HOMEPAGE="http://cuecue.berlios.de/;
-#SRC_URI="mirror://berlios/cuecue/${P}.tar.gz"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 LICENSE="GPL-2"
@@ -28,14 +27,12 @@ PATCHES=(
"${FILESDIR}"/${P}-namespace.patch
"${FILESDIR}"/${P}-unused.patch
 )
-DOCS="CHANGES README TODO"
 
 src_configure() {
econf \
$(use_enable flac) \
$(use_enable mp3) \
$(use_enable vorbis ogg) \
-   --disable-dependency-tracking \
--disable-libFLACtest \
--disable-oggtest \
--disable-vorbistest



[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: scripts/

2016-10-15 Thread Anthony G. Basile
commit: efa03906e91ae67e0b1b6c7a4dde3cf56bfd3022
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 13:41:37 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 13:42:27 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=efa03906

kernel-config: bump to 4.7.6

 scripts/kernel-config | 769 --
 1 file changed, 551 insertions(+), 218 deletions(-)

diff --git a/scripts/kernel-config b/scripts/kernel-config
index 698cb7b..03982a7 100644
--- a/scripts/kernel-config
+++ b/scripts/kernel-config
@@ -1,18 +1,20 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.4.8-hardened-r1 Kernel Configuration
+# Linux/x86 4.7.6-hardened Kernel Configuration
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y
 CONFIG_X86=y
 CONFIG_INSTRUCTION_DECODER=y
-CONFIG_PERF_EVENTS_INTEL_UNCORE=y
 CONFIG_OUTPUT_FORMAT="elf64-x86-64"
 CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
 CONFIG_LOCKDEP_SUPPORT=y
 CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
 CONFIG_MMU=y
+CONFIG_ARCH_MMAP_RND_BITS_MIN=28
+CONFIG_ARCH_MMAP_RND_BITS_MAX=32
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
 CONFIG_NEED_DMA_MAP_STATE=y
 CONFIG_NEED_SG_DMA_LENGTH=y
 CONFIG_GENERIC_ISA_DMA=y
@@ -40,6 +42,7 @@ CONFIG_X86_64_SMP=y
 CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx 
-fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 
-fcall-saved-r11"
 CONFIG_ARCH_SUPPORTS_UPROBES=y
 CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_DEBUG_RODATA=y
 CONFIG_PGTABLE_LEVELS=4
 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 CONFIG_IRQ_WORK=y
@@ -131,7 +134,7 @@ CONFIG_TASK_IO_ACCOUNTING=y
 CONFIG_TREE_RCU=y
 # CONFIG_RCU_EXPERT is not set
 CONFIG_SRCU=y
-# CONFIG_TASKS_RCU is not set
+CONFIG_TASKS_RCU=y
 CONFIG_RCU_STALL_COMMON=y
 # CONFIG_RCU_EXPEDITE_BOOT is not set
 CONFIG_BUILD_BIN2C=y
@@ -139,33 +142,33 @@ CONFIG_IKCONFIG=y
 CONFIG_IKCONFIG_PROC=y
 CONFIG_LOG_BUF_SHIFT=18
 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_NMI_LOG_BUF_SHIFT=13
 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
 CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
 CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
 CONFIG_NUMA_BALANCING=y
 CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
 CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
 CONFIG_PAGE_COUNTER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 # CONFIG_MEMCG_SWAP_ENABLED is not set
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
+CONFIG_BLK_CGROUP=y
+# CONFIG_DEBUG_BLK_CGROUP is not set
+CONFIG_CGROUP_WRITEBACK=y
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
 CONFIG_CFS_BANDWIDTH=y
 # CONFIG_RT_GROUP_SCHED is not set
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-CONFIG_CGROUP_WRITEBACK=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CPUSETS=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_PERF=y
+# CONFIG_CGROUP_DEBUG is not set
 CONFIG_NAMESPACES=y
 CONFIG_UTS_NS=y
 CONFIG_IPC_NS=y
@@ -183,6 +186,7 @@ CONFIG_RD_LZMA=y
 CONFIG_RD_XZ=y
 CONFIG_RD_LZO=y
 CONFIG_RD_LZ4=y
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
 CONFIG_SYSCTL=y
 CONFIG_ANON_INODES=y
@@ -198,7 +202,10 @@ CONFIG_SYSFS_SYSCALL=y
 CONFIG_SYSCTL_SYSCALL=y
 CONFIG_KALLSYMS=y
 CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
 CONFIG_PRINTK=y
+CONFIG_PRINTK_NMI=y
 CONFIG_BUG=y
 CONFIG_ELF_CORE=y
 CONFIG_PCSPKR_PLATFORM=y
@@ -212,7 +219,6 @@ CONFIG_BPF_SYSCALL=y
 CONFIG_SHMEM=y
 CONFIG_AIO=y
 CONFIG_ADVISE_SYSCALLS=y
-CONFIG_USERFAULTFD=y
 CONFIG_PCI_QUIRKS=y
 CONFIG_MEMBARRIER=y
 # CONFIG_EMBEDDED is not set
@@ -252,8 +258,8 @@ CONFIG_HAVE_KPROBES=y
 CONFIG_HAVE_KRETPROBES=y
 CONFIG_HAVE_OPTPROBES=y
 CONFIG_HAVE_KPROBES_ON_FTRACE=y
+CONFIG_HAVE_NMI=y
 CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_HAVE_DMA_ATTRS=y
 CONFIG_HAVE_DMA_CONTIGUOUS=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
@@ -274,6 +280,8 @@ CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
 CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
 CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
 CONFIG_SECCOMP_FILTER=y
+CONFIG_HAVE_GCC_PLUGINS=y
+CONFIG_GCC_PLUGINS=y
 CONFIG_HAVE_CC_STACKPROTECTOR=y
 CONFIG_CC_STACKPROTECTOR=y
 # CONFIG_CC_STACKPROTECTOR_NONE is not set
@@ -288,9 +296,18 @@ CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_MODULES_USE_ELF_RELA=y
 CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
 CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
+CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
+CONFIG_HAVE_EXIT_THREAD=y
+CONFIG_ARCH_MMAP_RND_BITS=28
+CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
 CONFIG_HAVE_COPY_THREAD_TLS=y
+CONFIG_HAVE_STACK_VALIDATION=y
+# CONFIG_HAVE_ARCH_HASH is not set
+CONFIG_ISA_BUS_API=y
 CONFIG_OLD_SIGSUSPEND3=y
 

[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: scripts/

2016-10-15 Thread Anthony G. Basile
commit: 4131a1e514858fdcdcb04dcc7dbf5008bc37ea35
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 13:41:37 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 13:41:37 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=4131a1e5

kernel-config: bump to 4.7.6

 scripts/kernel-config | 769 --
 1 file changed, 551 insertions(+), 218 deletions(-)

diff --git a/scripts/kernel-config b/scripts/kernel-config
index 698cb7b..03982a7 100644
--- a/scripts/kernel-config
+++ b/scripts/kernel-config
@@ -1,18 +1,20 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.4.8-hardened-r1 Kernel Configuration
+# Linux/x86 4.7.6-hardened Kernel Configuration
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y
 CONFIG_X86=y
 CONFIG_INSTRUCTION_DECODER=y
-CONFIG_PERF_EVENTS_INTEL_UNCORE=y
 CONFIG_OUTPUT_FORMAT="elf64-x86-64"
 CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
 CONFIG_LOCKDEP_SUPPORT=y
 CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
 CONFIG_MMU=y
+CONFIG_ARCH_MMAP_RND_BITS_MIN=28
+CONFIG_ARCH_MMAP_RND_BITS_MAX=32
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
 CONFIG_NEED_DMA_MAP_STATE=y
 CONFIG_NEED_SG_DMA_LENGTH=y
 CONFIG_GENERIC_ISA_DMA=y
@@ -40,6 +42,7 @@ CONFIG_X86_64_SMP=y
 CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx 
-fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 
-fcall-saved-r11"
 CONFIG_ARCH_SUPPORTS_UPROBES=y
 CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_DEBUG_RODATA=y
 CONFIG_PGTABLE_LEVELS=4
 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 CONFIG_IRQ_WORK=y
@@ -131,7 +134,7 @@ CONFIG_TASK_IO_ACCOUNTING=y
 CONFIG_TREE_RCU=y
 # CONFIG_RCU_EXPERT is not set
 CONFIG_SRCU=y
-# CONFIG_TASKS_RCU is not set
+CONFIG_TASKS_RCU=y
 CONFIG_RCU_STALL_COMMON=y
 # CONFIG_RCU_EXPEDITE_BOOT is not set
 CONFIG_BUILD_BIN2C=y
@@ -139,33 +142,33 @@ CONFIG_IKCONFIG=y
 CONFIG_IKCONFIG_PROC=y
 CONFIG_LOG_BUF_SHIFT=18
 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_NMI_LOG_BUF_SHIFT=13
 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
 CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
 CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
 CONFIG_NUMA_BALANCING=y
 CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
 CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
 CONFIG_PAGE_COUNTER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 # CONFIG_MEMCG_SWAP_ENABLED is not set
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
+CONFIG_BLK_CGROUP=y
+# CONFIG_DEBUG_BLK_CGROUP is not set
+CONFIG_CGROUP_WRITEBACK=y
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
 CONFIG_CFS_BANDWIDTH=y
 # CONFIG_RT_GROUP_SCHED is not set
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-CONFIG_CGROUP_WRITEBACK=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CPUSETS=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_PERF=y
+# CONFIG_CGROUP_DEBUG is not set
 CONFIG_NAMESPACES=y
 CONFIG_UTS_NS=y
 CONFIG_IPC_NS=y
@@ -183,6 +186,7 @@ CONFIG_RD_LZMA=y
 CONFIG_RD_XZ=y
 CONFIG_RD_LZO=y
 CONFIG_RD_LZ4=y
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
 CONFIG_SYSCTL=y
 CONFIG_ANON_INODES=y
@@ -198,7 +202,10 @@ CONFIG_SYSFS_SYSCALL=y
 CONFIG_SYSCTL_SYSCALL=y
 CONFIG_KALLSYMS=y
 CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
 CONFIG_PRINTK=y
+CONFIG_PRINTK_NMI=y
 CONFIG_BUG=y
 CONFIG_ELF_CORE=y
 CONFIG_PCSPKR_PLATFORM=y
@@ -212,7 +219,6 @@ CONFIG_BPF_SYSCALL=y
 CONFIG_SHMEM=y
 CONFIG_AIO=y
 CONFIG_ADVISE_SYSCALLS=y
-CONFIG_USERFAULTFD=y
 CONFIG_PCI_QUIRKS=y
 CONFIG_MEMBARRIER=y
 # CONFIG_EMBEDDED is not set
@@ -252,8 +258,8 @@ CONFIG_HAVE_KPROBES=y
 CONFIG_HAVE_KRETPROBES=y
 CONFIG_HAVE_OPTPROBES=y
 CONFIG_HAVE_KPROBES_ON_FTRACE=y
+CONFIG_HAVE_NMI=y
 CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_HAVE_DMA_ATTRS=y
 CONFIG_HAVE_DMA_CONTIGUOUS=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
@@ -274,6 +280,8 @@ CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
 CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
 CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
 CONFIG_SECCOMP_FILTER=y
+CONFIG_HAVE_GCC_PLUGINS=y
+CONFIG_GCC_PLUGINS=y
 CONFIG_HAVE_CC_STACKPROTECTOR=y
 CONFIG_CC_STACKPROTECTOR=y
 # CONFIG_CC_STACKPROTECTOR_NONE is not set
@@ -288,9 +296,18 @@ CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_MODULES_USE_ELF_RELA=y
 CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
 CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
+CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
+CONFIG_HAVE_EXIT_THREAD=y
+CONFIG_ARCH_MMAP_RND_BITS=28
+CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
 CONFIG_HAVE_COPY_THREAD_TLS=y
+CONFIG_HAVE_STACK_VALIDATION=y
+# CONFIG_HAVE_ARCH_HASH is not set
+CONFIG_ISA_BUS_API=y
 CONFIG_OLD_SIGSUSPEND3=y
 

[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: scripts/

2016-10-15 Thread Anthony G. Basile
commit: 612d3d75e475071af08a70f0dfe24a8b00c0b8d6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Oct 15 13:41:37 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Oct 15 13:42:38 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=612d3d75

kernel-config: bump to 4.7.6

 scripts/kernel-config | 769 --
 1 file changed, 551 insertions(+), 218 deletions(-)

diff --git a/scripts/kernel-config b/scripts/kernel-config
index 698cb7b..03982a7 100644
--- a/scripts/kernel-config
+++ b/scripts/kernel-config
@@ -1,18 +1,20 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.4.8-hardened-r1 Kernel Configuration
+# Linux/x86 4.7.6-hardened Kernel Configuration
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y
 CONFIG_X86=y
 CONFIG_INSTRUCTION_DECODER=y
-CONFIG_PERF_EVENTS_INTEL_UNCORE=y
 CONFIG_OUTPUT_FORMAT="elf64-x86-64"
 CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
 CONFIG_LOCKDEP_SUPPORT=y
 CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
 CONFIG_MMU=y
+CONFIG_ARCH_MMAP_RND_BITS_MIN=28
+CONFIG_ARCH_MMAP_RND_BITS_MAX=32
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
 CONFIG_NEED_DMA_MAP_STATE=y
 CONFIG_NEED_SG_DMA_LENGTH=y
 CONFIG_GENERIC_ISA_DMA=y
@@ -40,6 +42,7 @@ CONFIG_X86_64_SMP=y
 CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx 
-fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 
-fcall-saved-r11"
 CONFIG_ARCH_SUPPORTS_UPROBES=y
 CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_DEBUG_RODATA=y
 CONFIG_PGTABLE_LEVELS=4
 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 CONFIG_IRQ_WORK=y
@@ -131,7 +134,7 @@ CONFIG_TASK_IO_ACCOUNTING=y
 CONFIG_TREE_RCU=y
 # CONFIG_RCU_EXPERT is not set
 CONFIG_SRCU=y
-# CONFIG_TASKS_RCU is not set
+CONFIG_TASKS_RCU=y
 CONFIG_RCU_STALL_COMMON=y
 # CONFIG_RCU_EXPEDITE_BOOT is not set
 CONFIG_BUILD_BIN2C=y
@@ -139,33 +142,33 @@ CONFIG_IKCONFIG=y
 CONFIG_IKCONFIG_PROC=y
 CONFIG_LOG_BUF_SHIFT=18
 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_NMI_LOG_BUF_SHIFT=13
 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
 CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
 CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
 CONFIG_NUMA_BALANCING=y
 CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
 CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
 CONFIG_PAGE_COUNTER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 # CONFIG_MEMCG_SWAP_ENABLED is not set
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
+CONFIG_BLK_CGROUP=y
+# CONFIG_DEBUG_BLK_CGROUP is not set
+CONFIG_CGROUP_WRITEBACK=y
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
 CONFIG_CFS_BANDWIDTH=y
 # CONFIG_RT_GROUP_SCHED is not set
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-CONFIG_CGROUP_WRITEBACK=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CPUSETS=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_PERF=y
+# CONFIG_CGROUP_DEBUG is not set
 CONFIG_NAMESPACES=y
 CONFIG_UTS_NS=y
 CONFIG_IPC_NS=y
@@ -183,6 +186,7 @@ CONFIG_RD_LZMA=y
 CONFIG_RD_XZ=y
 CONFIG_RD_LZO=y
 CONFIG_RD_LZ4=y
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
 CONFIG_SYSCTL=y
 CONFIG_ANON_INODES=y
@@ -198,7 +202,10 @@ CONFIG_SYSFS_SYSCALL=y
 CONFIG_SYSCTL_SYSCALL=y
 CONFIG_KALLSYMS=y
 CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
 CONFIG_PRINTK=y
+CONFIG_PRINTK_NMI=y
 CONFIG_BUG=y
 CONFIG_ELF_CORE=y
 CONFIG_PCSPKR_PLATFORM=y
@@ -212,7 +219,6 @@ CONFIG_BPF_SYSCALL=y
 CONFIG_SHMEM=y
 CONFIG_AIO=y
 CONFIG_ADVISE_SYSCALLS=y
-CONFIG_USERFAULTFD=y
 CONFIG_PCI_QUIRKS=y
 CONFIG_MEMBARRIER=y
 # CONFIG_EMBEDDED is not set
@@ -252,8 +258,8 @@ CONFIG_HAVE_KPROBES=y
 CONFIG_HAVE_KRETPROBES=y
 CONFIG_HAVE_OPTPROBES=y
 CONFIG_HAVE_KPROBES_ON_FTRACE=y
+CONFIG_HAVE_NMI=y
 CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_HAVE_DMA_ATTRS=y
 CONFIG_HAVE_DMA_CONTIGUOUS=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
@@ -274,6 +280,8 @@ CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
 CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
 CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
 CONFIG_SECCOMP_FILTER=y
+CONFIG_HAVE_GCC_PLUGINS=y
+CONFIG_GCC_PLUGINS=y
 CONFIG_HAVE_CC_STACKPROTECTOR=y
 CONFIG_CC_STACKPROTECTOR=y
 # CONFIG_CC_STACKPROTECTOR_NONE is not set
@@ -288,9 +296,18 @@ CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_MODULES_USE_ELF_RELA=y
 CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
 CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
+CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
+CONFIG_HAVE_EXIT_THREAD=y
+CONFIG_ARCH_MMAP_RND_BITS=28
+CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
 CONFIG_HAVE_COPY_THREAD_TLS=y
+CONFIG_HAVE_STACK_VALIDATION=y
+# CONFIG_HAVE_ARCH_HASH is not set
+CONFIG_ISA_BUS_API=y
 CONFIG_OLD_SIGSUSPEND3=y
 

[gentoo-commits] proj/sci:master commit in: sci-biology/mothur/

2016-10-15 Thread Martin Mokrejs
commit: fbe3607420deb302313f1bdc2090f5b0a88242b5
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Sat Oct 15 13:22:48 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Sat Oct 15 13:22:48 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=fbe36074

sci-biology/mothur: shutdown QC error about IUSE=boost missing

Package-Manager: portage-2.3.0

 sci-biology/mothur/mothur-1.36.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sci-biology/mothur/mothur-1.36.1.ebuild 
b/sci-biology/mothur/mothur-1.36.1.ebuild
index 49920a7..dd15f38 100644
--- a/sci-biology/mothur/mothur-1.36.1.ebuild
+++ b/sci-biology/mothur/mothur-1.36.1.ebuild
@@ -39,7 +39,8 @@ src_prepare() {
 }
 
 src_compile() {
-   emake USEMPI=$(usex mpi) USEREADLINE=$(usex readline) USEBOOST=$(usex 
boost) USECOMPRESSION=$(usex zlib)
+   # USEBOOST should be set already in pkg_setup
+   emake USEMPI=$(usex mpi) USEREADLINE=$(usex readline) 
USECOMPRESSION=$(usex zlib)
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: sys-process/memwatch/

2016-10-15 Thread Patrice Clement
commit: 43bcbfc4f348226da9d685fbe5c5169fbd007302
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Oct 15 13:19:01 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 13:19:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43bcbfc4

sys-process/memwatch: version bump.

Package-Manager: portage-2.3.0

 sys-process/memwatch/Manifest  |  1 +
 sys-process/memwatch/memwatch-0.3.3.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/sys-process/memwatch/Manifest b/sys-process/memwatch/Manifest
index 9ef5f26..11bd603 100644
--- a/sys-process/memwatch/Manifest
+++ b/sys-process/memwatch/Manifest
@@ -4,3 +4,4 @@ DIST memwatch-0.2.1.tar.gz 10599 SHA256 
ad810fcda56d36bd107333f0edbab41a76df9dde
 DIST memwatch-0.3.0.tar.gz 16715 SHA256 
a8f39462ae196f31d189ad28772892c951ccc87492ecab7de2cf2efc731f593f SHA512 
5feb6ad67ffc85a6304875d9cb8f98c42017894d05b86180293f8facb811268bc5b7942a489432dfc45bfb62155a5935bd569241b463116a8bd3c51d50ec6237
 WHIRLPOOL 
efa24a5590f0ff7219e8a24f41dbe54f11caea850970250e05496a59481120977ce3ed45a710f76eab3519e6fa52561bba4917f134d8143ddfe8dd58da633584
 DIST memwatch-0.3.1.tar.gz 17655 SHA256 
01775cbca2712e0b81f8bb6d016d89f434f0633c4d5e65112053259c6b8ec104 SHA512 
cbc55cd1a70c5d0077a43e223d360c980959808ee511e8727341baa6d96bc2c66be9481f4e25989e28692cf044c2cf9f904eed5ca4695cf484711d3ce594
 WHIRLPOOL 
25072b6a8a7c37afd402c5f447a53b2b29aa8c639644917091a1b571af44a843d5310b85622fab64edf38552d72c165a72f9ab78254ece35f8bd0b6f2bc56a13
 DIST memwatch-0.3.2.tar.gz 16587 SHA256 
dca34608425d931d27c5e1a5a31f95659dd118e09f39772daed0c06a0e771fcd SHA512 
94bfa9832d934f9d2271f3abb350df3f601e6dc9a84c5e18c783c924b774f007e91d4249492f4b98cff465e377474b20d077879d8b3e22945791ca94c81660fa
 WHIRLPOOL 
a9fc798ce8d74be9bbccab9d93a73697601d1084942de8af56b2a2fb1885145cd64e73a0f24ad5a5d8cc287ff4d89d385f6fb261000f1b886c7d2821025a3d76
+DIST memwatch-0.3.3.tar.gz 16629 SHA256 
6fb458302c046dc40fa0bcf4f109c75c4e667a50e2dcb105a98c0ad86d5e7461 SHA512 
a6e89c5929c07b9348798983c15c0ad308762ba061fef78a8d33597db2a02e7984ffb3949a19dda61945b2265f15454fa9eb29849de91fc00690d34c568df234
 WHIRLPOOL 
26ac77a87f0845c1bd51a851ce46338ccdccbb60755c841263104d1b3c38217d8d766b685fb94e1a93cad91aa012f7e06ec92290a3395dac3d6d97e3a3e789e4

diff --git a/sys-process/memwatch/memwatch-0.3.3.ebuild 
b/sys-process/memwatch/memwatch-0.3.3.ebuild
new file mode 100644
index ..804b28e
--- /dev/null
+++ b/sys-process/memwatch/memwatch-0.3.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Interactive memory viewer"
+HOMEPAGE="https://unixdev.ru/memwatch;
+SRC_URI="http://unixdev.ru/src/${P}.tar.gz;
+
+LICENSE="WTFPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-libs/ncurses:0="
+RDEPEND="${DEPEND}"
+
+CMAKE_REMOVE_MODULES_LIST="FindCurses"
+
+src_configure() {
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+}
+
+src_install() {
+   cmake-utils_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/bumblebee/

2016-10-15 Thread Jason Donenfeld
commit: aaef0567801f2a6f56983cfddc9af0818d58f0ab
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Sat Oct 15 13:10:44 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Sat Oct 15 13:10:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaef0567

x11-misc/bumblebee: accept user patches

Package-Manager: portage-2.3.2

 x11-misc/bumblebee/bumblebee-3.2.1.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/x11-misc/bumblebee/bumblebee-3.2.1.ebuild 
b/x11-misc/bumblebee/bumblebee-3.2.1.ebuild
index 60d7b34..f0b65d2 100644
--- a/x11-misc/bumblebee/bumblebee-3.2.1.ebuild
+++ b/x11-misc/bumblebee/bumblebee-3.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -31,6 +31,10 @@ DEPEND="${RDEPEND}
 
 REQUIRED_USE="|| ( video_cards_nouveau video_cards_nvidia )"
 
+src_prepare() {
+   epatch_user
+}
+
 src_configure() {
DOC_CONTENTS="In order to use Bumblebee, add your user to 'bumblebee' 
group.
You may need to setup your /etc/bumblebee/bumblebee.conf"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/glib/

2016-10-15 Thread Patrice Clement
commit: 9388d6df383bb9c81d685e70af45378925e1dd3a
Author: Gerhard Bräunlich  gmx  net>
AuthorDate: Fri Oct 14 15:49:26 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 12:50:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9388d6df

dev-libs/glib: Adding $(get_exeext) to MULTILIB_CHOST_TOOLS.

Gentoo-Bug: https://bugs.gentoo.org/588330

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2557

Signed-off-by: Patrice Clement  gentoo.org>

 dev-libs/glib/glib-2.48.2.ebuild | 2 +-
 dev-libs/glib/glib-2.50.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/glib/glib-2.48.2.ebuild b/dev-libs/glib/glib-2.48.2.ebuild
index 8a367e7..5b1c499 100644
--- a/dev-libs/glib/glib-2.48.2.ebuild
+++ b/dev-libs/glib/glib-2.48.2.ebuild
@@ -68,7 +68,7 @@ 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/

2016-10-15 Thread Agostino Sarubbo
commit: 43e0e1c1a34a7ca935981c16c1f5eb91dc5c2c2a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Oct 15 12:48:05 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Oct 15 12:48:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43e0e1c1

dev-libs/xerces-c: x86 stable wrt bug #584506

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/xerces-c/xerces-c-3.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xerces-c/xerces-c-3.1.4.ebuild 
b/dev-libs/xerces-c/xerces-c-3.1.4.ebuild
index 79ab236..c8782fb 100644
--- a/dev-libs/xerces-c/xerces-c-3.1.4.ebuild
+++ b/dev-libs/xerces-c/xerces-c-3.1.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://apache/xerces/c/3/sources/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 
 IUSE="cpu_flags_x86_sse2 curl doc elibc_Darwin elibc_FreeBSD examples iconv 
icu static-libs test threads"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/

2016-10-15 Thread Agostino Sarubbo
commit: 56302eae0ddcf55ea93f5aaa45bc81e6a6c8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Oct 15 12:47:38 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Oct 15 12:47:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56302eae

dev-libs/xerces-c: amd64 stable wrt bug #584506

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/xerces-c/xerces-c-3.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xerces-c/xerces-c-3.1.4.ebuild 
b/dev-libs/xerces-c/xerces-c-3.1.4.ebuild
index ff57316..79ab236 100644
--- a/dev-libs/xerces-c/xerces-c-3.1.4.ebuild
+++ b/dev-libs/xerces-c/xerces-c-3.1.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://apache/xerces/c/3/sources/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 
 IUSE="cpu_flags_x86_sse2 curl doc elibc_Darwin elibc_FreeBSD examples iconv 
icu static-libs test threads"
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/

2016-10-15 Thread Patrice Clement
commit: 60083b5e68554deee457092212c9ce11f7c9e360
Author: soredake  krutt  org>
AuthorDate: Thu Sep 15 12:02:40 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 12:41:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60083b5e

net-dns/dnscrypt-proxy: version bump.

Also:
* EAPI bump.
* Switch to HTTPs.
* Keyword for the arm platform.

Closes: https://github.com/gentoo/gentoo/pull/2334

Signed-off-by: Patrice Clement  gentoo.org>

 net-dns/dnscrypt-proxy/Manifest|  1 +
 net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest
index c886122..ae23f92 100644
--- a/net-dns/dnscrypt-proxy/Manifest
+++ b/net-dns/dnscrypt-proxy/Manifest
@@ -2,3 +2,4 @@ DIST dnscrypt-proxy-1.4.2.tar.gz 1592962 SHA256 
1d519068c30868bb60a151908f0e300a
 DIST dnscrypt-proxy-1.4.3.tar.gz 1560345 SHA256 
f10f10c18e25ced3c5ec5d0c4145d33270f9cfa991fd1b18d5d9af00e4d9b68e SHA512 
3aae9f20bc06087b0860a24488bcda117010a34218d7aef3c68a0f155f8164ce06a88865a9caf1ce5c5eaa8588518ccc2c8a61a97cc39f527f7b2b14cdf8c118
 WHIRLPOOL 
49915b0f95d340828c79febc9b7d94c4f0c444e016b9f78d134e05f43945b446ab71bbc6a230d6e15d5f1f4c0b97d9f671b6001314cc157cdcd419b01bf23550
 DIST dnscrypt-proxy-1.6.0.tar.gz 1579293 SHA256 
7703a41a1040fc30b19fdfbbaba36b411e66d998584b0e2fa5088f734f4f86be SHA512 
1937a80ab0e6e5786b0d004fef1c007d9d8a4df335542ae6f96c1eac7739920f2ff4b469d30abac774c12a41d275c2a8bf31b5514d7af446028cedeeb3efcf02
 WHIRLPOOL 
b24eb58bca1ff8fa55fec3836399a3ee5c66823d8b459e5f8ce7aa653454407dc3b80d7dc050b76e5c0595fc0e2d854478a6f949ef859b149f6b20e127c98274
 DIST dnscrypt-proxy-1.6.1.tar.gz 1721006 SHA256 
c519012a66f3ee30be02113d1e0139be08ccd2ec45ca4102eac35be731a65340 SHA512 
8d49be73e4b2fe1131349846191f54c7f212ff301a6a6c2a77505225f81b0615e968c945013e732c4fce3b6090606245ec7343fb0d6145bb10b67dd4112d2367
 WHIRLPOOL 
ca5a1c3792728ff54ee5e3c5a8815deb1ce2e1bdd016438ad0b84d89458064e0178df3c1dee77c8a685894092e48a305b521dc8e4bfc3cb40a0d7ac7e7e66d18
+DIST dnscrypt-proxy-1.7.0.tar.gz 1714401 SHA256 
be9827f66401f38fd4bdb372046eff9b5802ab5f3d188878a0dcd7bd20074c09 SHA512 
611d9cd9d9c086ec8e2b60f6c574451eae71ea07de85973049be7090cfbd8bf790d41f8a4a2b39d74091fba7091551967b93b85a8661c03ecad43d868df597a3
 WHIRLPOOL 
0c3902bfcc3571175f0f8638327cbaf5eada512565f214232732d14dc6a83f55a0babedd68007cbaeec1b584bcb1d3cc621df8b07638bacfe5893c6222d12997

diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild 
b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild
new file mode 100644
index ..65509ec
--- /dev/null
+++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit systemd user
+
+DESCRIPTION="A tool for securing communications between a client and a DNS 
resolver"
+HOMEPAGE="https://dnscrypt.org/;
+SRC_URI="https://download.dnscrypt.org/${PN}/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+plugins systemd"
+
+CDEPEND="
+   dev-libs/libsodium
+   net-libs/ldns
+   systemd? ( sys-apps/systemd )"
+RDEPEND="${CDEPEND}"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
+
+DOCS="AUTHORS ChangeLog NEWS README* THANKS *txt"
+
+pkg_setup() {
+   enewgroup dnscrypt
+   enewuser dnscrypt -1 -1 /var/empty dnscrypt
+}
+
+src_configure() {
+   econf \
+   $(use_enable plugins) \
+   $(use_with systemd)
+}
+
+src_install() {
+   default
+
+   newinitd "${FILESDIR}"/${PN}.initd-1.6.1 ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd-1.6.0-r1 ${PN}
+   systemd_dounit "${FILESDIR}"/${PN}.service
+}
+
+pkg_postinst() {
+   elog "After starting the service you will need to update your"
+   elog "/etc/resolv.conf and replace your current set of resolvers"
+   elog "with:"
+   elog
+   elog "nameserver "
+   elog
+   elog "where  is what you supplied in"
+   elog "/etc/conf.d/dnscrypt-proxy, default is \"127.0.0.1\"."
+   elog
+   elog "Also see https://github.com/jedisct1/dnscrypt-proxy#usage.;
+}



[gentoo-commits] repo/gentoo:master commit in: app-vim/showmarks/

2016-10-15 Thread Patrice Clement
commit: 1294691140ac34fb9d8a7635b2c0d2eafc867c5e
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Oct 15 10:13:03 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 12:31:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12946911

app-vim/showmarks: clean up old.

Package-Manager: portage-2.3.0

 app-vim/showmarks/showmarks-2.2.ebuild | 28 
 1 file changed, 28 deletions(-)

diff --git a/app-vim/showmarks/showmarks-2.2.ebuild 
b/app-vim/showmarks/showmarks-2.2.ebuild
deleted file mode 100644
index 0969132..
--- a/app-vim/showmarks/showmarks-2.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: show location marks visually"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=152;
-
-LICENSE="public-domain"
-KEYWORDS="alpha amd64 ia64 ~mips ppc sparc x86"
-IUSE=""
-
-VIM_PLUGIN_HELPFILES="showmarks.txt"
-
-function src_unpack() {
-   unpack ${A}
-   mkdir "${S}"/doc || die "can't make doc dir"
-
-   # This plugin uses an 'automatic HelpExtractor' variant. This causes
-   # problems for us during the unmerge. Fortunately, sed can fix this
-   # for us.
-   sed -e '1,/^" HelpExtractorDoc:$/d' \
-   "${S}"/plugin/showmarks.vim > "${S}"/doc/showmarks.txt \
-   || die "help extraction failed"
-   sed -i -e '/^" HelpExtractor:$/,$d' "${S}"/plugin/showmarks.vim \
-   || die "help extract remove failed"
-}



[gentoo-commits] repo/gentoo:master commit in: app-vim/showmarks/

2016-10-15 Thread Patrice Clement
commit: d0b1b03c6506d04e37ae85272926b2e0ae3ae8e8
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Oct 15 10:12:14 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 12:31:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0b1b03c

app-vim/showmarks: Stable for amd64. Mark stable for the remaining arches via 
the ALLARCHES policy.

Package-Manager: portage-2.3.0

 app-vim/showmarks/showmarks-2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/showmarks/showmarks-2.2-r1.ebuild 
b/app-vim/showmarks/showmarks-2.2-r1.ebuild
index 2c5da04..dc2a60d 100644
--- a/app-vim/showmarks/showmarks-2.2-r1.ebuild
+++ b/app-vim/showmarks/showmarks-2.2-r1.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="vim plugin: show location marks visually"
 HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=152;
 
 LICENSE="public-domain"
-KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86"
+KEYWORDS="alpha amd64 ia64 mips ppc sparc x86"
 IUSE=""
 
 VIM_PLUGIN_HELPFILES="showmarks.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/fugitive/

2016-10-15 Thread Patrice Clement
commit: 3737d07459b8cda55c407fbebbe9fca099a6aae1
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Oct 15 10:12:58 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct 15 12:31:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3737d074

app-vim/fugitive: Stable for amd64. Mark stable for x86 using the ALLARCHES 
policy.

Package-Manager: portage-2.3.0

 app-vim/fugitive/fugitive-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/fugitive/fugitive-.ebuild 
b/app-vim/fugitive/fugitive-.ebuild
index b5a3e1c..6ae74da 100644
--- a/app-vim/fugitive/fugitive-.ebuild
+++ b/app-vim/fugitive/fugitive-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]]; then
 else
inherit vcs-snapshot
SRC_URI="https://github.com/tpope/vim-fugitive/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos"
+   KEYWORDS="amd64 x86 ~ppc-macos ~x64-macos"
 fi
 
 DESCRIPTION="vim plugin: a git wrapper for vim"



  1   2   >