[gentoo-commits] proj/devmanual:master commit in: ebuild-maintenance/

2016-04-30 Thread Göktürk Yüksek
commit: 6e91b50253398d874fed5addbc08a2d8852d4fe3
Author: Göktürk Yüksek  binghamton  edu>
AuthorDate: Sun May  1 03:32:38 2016 +
Commit: Göktürk Yüksek  binghamton  edu>
CommitDate: Sun May  1 03:45:31 2016 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=6e91b502

ebuild-maintenance: fix the link to the bugzilla advanced search tab #539630

The patch is the courtesy of Fernando (likewhoa) submitted in the bug.

Gentoo-Bug: https://bugs.gentoo.org/539630
Signed-off-by: Göktürk Yüksek  binghamton.edu>

 ebuild-maintenance/text.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/ebuild-maintenance/text.xml b/ebuild-maintenance/text.xml
index 7cbe755..a2fe6b8 100644
--- a/ebuild-maintenance/text.xml
+++ b/ebuild-maintenance/text.xml
@@ -26,9 +26,8 @@ been added to the Portage tree.  Go to https://bugs.gentoo.org/;>bugs.gentoo.org, choose query and select 
 Advanced Search; as product select Gentoo Linux, as component select 
 ebuilds.  In the search field put the name of the ebuild and as status 
-select NEW, ASSIGNED, REOPENED and RESOLVED (RESOLVED is important), then 
-submit the query.  For you lazy people, click https://bugs.gentoo.org/query.cgi?product=Gentoo%20Linuxcomponent=Ebuildsbug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=RESOLVED;>here.
+select all possible fields, then submit the query. For you lazy people, click
+https://bugs.gentoo.org/query.cgi?format=advancedproduct=Gentoo%20Linuxcomponent=New%20Ebuildsbug_Status=UNCONFIRMEDbug_status=CONFIRMEDbug_status=IN_PROGRESSbug_status=RESOLVEDbug_status=VERIFIED;>here.
 
 
 



[gentoo-commits] proj/portage:master commit in: pym/repoman/modules/vcs/, pym/repoman/modules/vcs/cvs/, pym/repoman/

2016-04-30 Thread Zac Medico
commit: d715028a686513979e6fb2b270df5f825d30cb65
Author: Zac Medico  gentoo  org>
AuthorDate: Sun May  1 03:31:04 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun May  1 03:32:07 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=d715028a

repoman: handle removed packages in vcs_files_to_cps (bug 546010)

X-Gentoo-Bug: 546010
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=546010

 pym/repoman/actions.py | 1 +
 pym/repoman/modules/vcs/cvs/changes.py | 1 +
 pym/repoman/modules/vcs/vcs.py | 7 +--
 pym/repoman/scanner.py | 1 +
 4 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py
index 643e24c..4144b45 100644
--- a/pym/repoman/actions.py
+++ b/pym/repoman/actions.py
@@ -370,6 +370,7 @@ class Actions(object):
committer_name = 
utilities.get_committer_name(env=self.repoman_settings)
for x in sorted(vcs_files_to_cps(
chain(myupdates, mymanifests, myremoved),
+   self.repo_settings.repodir,
self.scanner.repolevel, self.scanner.reposplit, 
self.scanner.categories)):
catdir, pkgdir = x.split("/")
checkdir = self.repo_settings.repodir + "/" + x

diff --git a/pym/repoman/modules/vcs/cvs/changes.py 
b/pym/repoman/modules/vcs/cvs/changes.py
index 3e2f97a..c3d880b 100644
--- a/pym/repoman/modules/vcs/cvs/changes.py
+++ b/pym/repoman/modules/vcs/cvs/changes.py
@@ -112,6 +112,7 @@ class Changes(ChangesBase):
if updates or removed:
for x in sorted(vcs_files_to_cps(
chain(updates, removed, manifests),
+   self.repo_settings.repodir,
scanner.repolevel, scanner.reposplit, 
scanner.categories)):
self.repoman_settings["O"] = 
os.path.join(self.repo_settings.repodir, x)
digestgen(mysettings=self.repoman_settings, 
myportdb=self.repo_settings.portdb)

diff --git a/pym/repoman/modules/vcs/vcs.py b/pym/repoman/modules/vcs/vcs.py
index c8cb55d..e9d45d4 100644
--- a/pym/repoman/modules/vcs/vcs.py
+++ b/pym/repoman/modules/vcs/vcs.py
@@ -96,7 +96,7 @@ def FindVCS(cwd=None):
return outvcs
 
 
-def vcs_files_to_cps(vcs_file_iter, repolevel, reposplit, categories):
+def vcs_files_to_cps(vcs_file_iter, repodir, repolevel, reposplit, categories):
"""
Iterate over the given modified file paths returned from the vcs,
and return a frozenset containing category/pn strings for each
@@ -127,7 +127,10 @@ def vcs_files_to_cps(vcs_file_iter, repolevel, reposplit, 
categories):
if len(f_split) > 3 and f_split[1] in categories:
modified_cps.append("/".join(f_split[1:3]))
 
-   return frozenset(modified_cps)
+   # Exclude packages that have been removed, since calling
+   # code assumes that the packages exist.
+   return frozenset(x for x in frozenset(modified_cps)
+   if os.path.exists(os.path.join(repodir, x)))
 
 
 def vcs_new_changed(relative_path, mychanged, mynew):

diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py
index e383c8d..fd07209 100644
--- a/pym/repoman/scanner.py
+++ b/pym/repoman/scanner.py
@@ -177,6 +177,7 @@ class Scanner(object):
if self.options.if_modified == "y":
self.effective_scanlist = sorted(vcs_files_to_cps(
chain(self.changed.changed, self.changed.new, 
self.changed.removed),
+   self.repo_settings.repodir,
self.repolevel, self.reposplit, 
self.categories))
 
# Create our kwargs dict here to initialize the plugins with



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

2016-04-30 Thread Matt Thode
commit: 7c779c9b27d662bd67d01ecef9aa0ecf11a7d715
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun May  1 02:32:22 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun May  1 02:32:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c779c9b

dev-python/keyring: cleanup

Package-Manager: portage-2.2.26

 dev-python/keyring/Manifest  | 11 -
 dev-python/keyring/keyring-1.0.ebuild| 36 -
 dev-python/keyring/keyring-1.5-r1.ebuild | 39 
 dev-python/keyring/keyring-1.5.ebuild| 39 
 dev-python/keyring/keyring-1.6.1.ebuild  | 39 
 dev-python/keyring/keyring-3.1.ebuild| 39 
 dev-python/keyring/keyring-3.3.ebuild| 28 ---
 dev-python/keyring/keyring-4.0.ebuild| 32 --
 dev-python/keyring/keyring-8.2.ebuild| 35 
 dev-python/keyring/keyring-8.3.ebuild| 34 
 dev-python/keyring/keyring-8.4.1.ebuild  | 34 
 dev-python/keyring/keyring-8.4.ebuild| 34 
 dev-python/keyring/keyring-8.5.ebuild| 34 
 13 files changed, 434 deletions(-)

diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest
index 699a2b5..0fe2392 100644
--- a/dev-python/keyring/Manifest
+++ b/dev-python/keyring/Manifest
@@ -1,13 +1,2 @@
-DIST keyring-1.0.zip 61370 SHA256 
628070bfb2daa080c98ddb3057a2f802cd1d15720ca40e54bdb2aa39d97485f9 SHA512 
6b5002b06c5aa420786e4114c3fdaa75eb79ff72af460dcefba5909224bded2ccd9bd19a7a3847395403283f29d2108ba7679adbc97af5717a539c9f14439dd0
 WHIRLPOOL 
670e6420001defecbf17f1430fd62b48196d89d5ac4f5bf585c5116fec06bc028ca0c18f64fcf5d0c4dcc10e77674d17e75ce3ba29fb5e14877fa61c4f05ffd0
-DIST keyring-1.5.zip 80478 SHA256 
e7065e8584d3b9724413eaa42198f0b6433a3c097b620bb176fd1e340cfb9dda SHA512 
4c283bf7ae64bd38d846b7ff8c74cae6ad59f684c65c130b7dda726e337295cf9c31ad51ad2ef1bd4011e5f92cbd96f7dfd9606f62bcdf6a61e36ee6b3385606
 WHIRLPOOL 
58c751504e55c40eaea93cdc6abf64ea0c9791f72efef239da3904762d4022f3f993f3816e293a548da58a5c091da18f5eba50e39ef85344b90fa6fa9fa81b2a
-DIST keyring-1.6.1.zip 80183 SHA256 
720a53234749edf0c103e61abe07a16b2ad48b46295c96f58fb804158a739a04 SHA512 
2a533cc35476e5748338431ec7b2e97c17a4f6ea66e05425586abadbd7997506cd09dae4bf9156e2747d14754c35b150013d7b0a2d62c47c84ed3094ca7dad6a
 WHIRLPOOL 
92cf707be5c759132ad4a658de8857162c6f505f7269d918acef8a22c2f19a4b999596ee1655ffa17412bc2c3685e81abd8c1e9eb60c6811fbdc60a93aec816e
-DIST keyring-3.1.zip 84216 SHA256 
4aa49fa03e6d7b79e1490278c7610f6ff224f58ea8dd90b07541b69d0d178fa0 SHA512 
79cb5b6932a7c9d0952893286f2c3e817fde3bfadcd42119a72adf2514d628f78aa0b5f13157c4eea31b49928b44dd1b646f62dc6b6da8958c3b95203a21a27f
 WHIRLPOOL 
1cf8556f24e1c0b078914023ed9670eea879ab85f149d0ca4f9189642e18be5f4e5ac7a7f7ccf464fd87e1bd21bf3dd3715249b8959993899f0af2b446a3038f
-DIST keyring-3.3.zip 86419 SHA256 
b42e0d335102cb2cace64289c86faa6686b6addad803b032bf564046e24d1936 SHA512 
32845546328969ddd2179e83bfeacccf5ef60e20919258f4bf6e938cffa6dbfa66b9b0cd64d26d8df636c41d387e6b87aaa1645fd6d86aecb3de937f3a8c
 WHIRLPOOL 
fe6a0f4209e1df5fa0f4d681cdc6f14e83c658604690e9f27e88f4eccb695aea0c7da0219704ab0f024deaaabc38d410f04f9ccbd1ce910d797d3bcf1b29
 DIST keyring-3.7.zip 89249 SHA256 
e187358e6a9b8e63cc2e223f6f9d4c40c972c0076f4aa0d65b8c9eb75edbea02 SHA512 
7343d40566484b33e3f265d874d75fcf502dbc0abfd653db65536ca4d475fc5596ba23a6472467b88b589fca740f62860a39d18ad7a285696b4cc2c79abe2729
 WHIRLPOOL 
79967660e4db75f4a89ebc462ee4cb73b3b261bdfc9666979f7a08cfcac6a04b2cbe975b0467155b8b159c630bdf938afcc5d9a3ab25928abfaf54cf6b233844
-DIST keyring-4.0.zip 83738 SHA256 
ea93c3cd9666c648263df4daadc5f34aeb27415dbf8e4d76579a8a737f1741cf SHA512 
e16fe24e9dfa897ecf05c5b269fd490abff654a885c8cf928d133943648fef436555832e3a364698fe7615be609e8b13808ebe6a758612c12d9067dbe6286bd1
 WHIRLPOOL 
4ff17622cb9d0bbb3af44947cab2436931f5738c3d4e9ddab36923b2c005c66f27f795acf0614d8d37a6cc148bb74124d9f2ae24a9727ea9a4e71db120a56ab8
-DIST keyring-8.2.tar.gz 34682 SHA256 
89d5392dfb82dce6610845a8dc52541ec7e46204fafe242d5c6994216cdc3580 SHA512 
34f98de8fea9a3836d63f74714304d47bab77f737326b8c109d97f2fbe84e56958fe679e5499d498505e799f51be843e163c37114cc51bc46d9a68431f5a5446
 WHIRLPOOL 
ac8fb612e25469f9ff00dcd9e8e73518c07da19973616e9b6941344396385dce1a036773541e9978bc432d0528e5fc5e86a50d2ff911a7cdba428223aa10cb0c
-DIST keyring-8.3.tar.gz 33864 SHA256 
284f754d86bd176cd44f57fdc33b9d0decc0cdfc38f06eec649b5b1f93e40dc2 SHA512 
96191b830b73ea35a0cfde53143f5d458f3afc36c8c1eb00852e9521d468007f7abee7921279ce975658902db8919da419d0b0a34d21073748353f6e8a4a5c59
 WHIRLPOOL 
c768730fce8368bda90e038e47bdefb8058d873102b7e3e68691959550f7159144b3c0b71cf2ea4de5240508d8ce8de1e81d0aa55aba2748d8901d4e220fd469
-DIST 

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

2016-04-30 Thread Sam Jorna
commit: 59340b79d5edb3e57198a4cfa3b8c529b479e2ae
Author: Sam Jorna  gentoo  org>
AuthorDate: Sun May  1 02:07:32 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Sun May  1 02:07:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59340b79

dev-util/bats: add missing die

Reported-by: Gokturk Yuksek  binghamton.edu>
Package-Manager: portage-2.2.28

 dev-util/bats/bats-0.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/bats/bats-0.4.0.ebuild b/dev-util/bats/bats-0.4.0.ebuild
index 3fa4d97..538d12b 100644
--- a/dev-util/bats/bats-0.4.0.ebuild
+++ b/dev-util/bats/bats-0.4.0.ebuild
@@ -13,7 +13,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 src_test() {
-   bin/bats --tap test
+   bin/bats --tap test || die "Tests failed"
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: media-sound/spotify/

2016-04-30 Thread Matt Thode
commit: cb310f980a8aa3d7da59dffbf8d24d4b67f84657
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun May  1 01:50:03 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun May  1 01:50:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb310f98

media-sound/spotify: fast stable

Package-Manager: portage-2.2.26

 media-sound/spotify/spotify-1.0.28.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/spotify/spotify-1.0.28.ebuild 
b/media-sound/spotify/spotify-1.0.28.ebuild
index 2c75ee4..c15c47f 100644
--- a/media-sound/spotify/spotify-1.0.28.ebuild
+++ b/media-sound/spotify/spotify-1.0.28.ebuild
@@ -12,7 +12,7 @@ SRC_URI="amd64? ( 
${SRC_BASE}${PN}-client_${PV}.89.gf959d4ce-37_amd64.deb )
x86? ( ${SRC_BASE}${PN}-client_${PV}.89.gf959d4ce-4_i386.deb )"
 LICENSE="Spotify"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="gnome pax_kernel pulseaudio"
 RESTRICT="mirror strip"
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/spotify/

2016-04-30 Thread Matt Thode
commit: 47c5ad0bb82ff73ee8981c1fa31c62456f0a0763
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun May  1 01:48:47 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun May  1 01:48:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47c5ad0b

media-sound/spotify: bup and bugs 581596 and 581670

Package-Manager: portage-2.2.26

 media-sound/spotify/Manifest|  4 ++--
 ...{spotify-1.0.27.ebuild => spotify-1.0.28.ebuild} | 21 -
 2 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/media-sound/spotify/Manifest b/media-sound/spotify/Manifest
index 95aa34a..bffaafd 100644
--- a/media-sound/spotify/Manifest
+++ b/media-sound/spotify/Manifest
@@ -1,2 +1,2 @@
-DIST spotify-client_1.0.27.71.g0a26e3b2-9_amd64.deb 77971642 SHA256 
82dc602ed17bbb9d0f2b161c69226f8a291f85d544fe4abffa347860374340e7 SHA512 
acb80c2d605f0957c9c149a61ab633be40d38e7328ae295a6ffada58263a70eff1fdd80dd07d5df497fa69a45c0a46038fa01b4084e48ba1465296329dbb885e
 WHIRLPOOL 
ca0479c3dc4e15e87d380508f7131900fce338261f33d7b46c99160b0bb15885d7b693c8daf5a26e3446e1a0efbab1e7fa3b224b635e7529a47e8c394eae50a1
-DIST spotify-client_1.0.27.73.g602ced10-2_i386.deb 81135262 SHA256 
b7113e2aa305cd2389d8861c6212de05ed5a9cfaa2a85e8021b355a848634f34 SHA512 
c77165046472853a7be5da35924ef0b1296bdcac90342b99ad87b492117487645f4845deb5014ba739a7c8edbffce829f65c849a822a72af0441f3f74a8c740a
 WHIRLPOOL 
43b06ac12ae0aaf2436e21c2a755ff5e074727b44e6897f956c647b85ecd4403ac10c918dbcaed360ea235959d7b3d49318b050668f0b324d2daf81e384b915e
+DIST spotify-client_1.0.28.89.gf959d4ce-37_amd64.deb 77841530 SHA256 
c563f1c0cd7a632802431191714bd23be05009ce93d70571cc217e606575661b SHA512 
aa1a913988df01e4362fd37c5150b419bd9b0d59cb966f8067b178ad11fbb2ff24e5bea6fc11d29b170c3f28dad91d791c043df9eb988127786020a5af0af646
 WHIRLPOOL 
6c6c951f80311ccd3c7211cb4c0a8ba3511b4c87200dabac7683262741126f4a50f6ae31fc06225efdc18227ae753bbd558ff0d5f8d98d4a8632fcef4988f037
+DIST spotify-client_1.0.28.89.gf959d4ce-4_i386.deb 4543475 SHA256 
6534d77164b77c0d2ce88150e57ab6ae7b75322b72a3abca201f1a449b850434 SHA512 
cb36aa7160df003e98f4bd5ac2666d35938f665c6747aafc3b9835aa9c3319e3de593ac978e9cc6ae632cea25b5b93da0f70518a24b16149ecdbd1719cfa3b09
 WHIRLPOOL 
9d9dfd0fb185cc2e66f572e439ead819bfd9e0faba6e6ac43d371b5d5416a0cba8aa5f2e93e7b50d2c14ae3841a85b652ec1cb7c7175b9d27bb2273ae4be1969

diff --git a/media-sound/spotify/spotify-1.0.27.ebuild 
b/media-sound/spotify/spotify-1.0.28.ebuild
similarity index 87%
rename from media-sound/spotify/spotify-1.0.27.ebuild
rename to media-sound/spotify/spotify-1.0.28.ebuild
index 40e9b73..2c75ee4 100644
--- a/media-sound/spotify/spotify-1.0.27.ebuild
+++ b/media-sound/spotify/spotify-1.0.28.ebuild
@@ -2,17 +2,17 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 inherit eutils fdo-mime gnome2-utils pax-utils unpacker
 
 DESCRIPTION="Spotify is a social music platform"
 HOMEPAGE="https://www.spotify.com/ch-de/download/previews/;
 SRC_BASE="http://repository.spotify.com/pool/non-free/${PN:0:1}/${PN}-client/;
-SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.71.g0a26e3b2-9_amd64.deb )
-   x86? ( ${SRC_BASE}${PN}-client_${PV}.73.g602ced10-2_i386.deb )"
+SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.89.gf959d4ce-37_amd64.deb )
+   x86? ( ${SRC_BASE}${PN}-client_${PV}.89.gf959d4ce-4_i386.deb )"
 LICENSE="Spotify"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="gnome pax_kernel pulseaudio"
 RESTRICT="mirror strip"
 
@@ -29,12 +29,14 @@ RDEPEND="
media-libs/mesa
net-misc/curl
net-print/cups[ssl]
-   sys-libs/glibc
x11-libs/gtk+:2
x11-libs/libXScrnSaver
x11-libs/libXtst
+   dev-python/pygobject:3
+   dev-python/dbus-python
pulseaudio? ( media-sound/pulseaudio )
gnome? ( gnome-extra/gnome-integration-spotify )"
+   #sys-libs/glibc
 
 S=${WORKDIR}/
 
@@ -43,14 +45,15 @@ QA_PREBUILT="opt/spotify/spotify-client/spotify"
 src_prepare() {
# Fix desktop entry to launch spotify-dbus.py for GNOME integration
if use gnome ; then
-   sed -i \
-   -e 's/spotify \%U/spotify-dbus.py \%U/g' \
-   usr/share/spotify/spotify.desktop || die "sed failed"
+   sed -i \
+   -e 's/spotify \%U/spotify-dbus.py \%U/g' \
+   usr/share/spotify/spotify.desktop || die "sed failed"
fi
+   default
 }
 
 src_install() {
-   dodoc usr/share/doc/spotify-client/changelog.Debian.gz
+   dodoc usr/share/doc/spotify-client/changelog.gz
 
SPOTIFY_PKG_HOME=usr/share/spotify
insinto /usr/share/pixmaps



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/facter/files/, dev-ruby/facter/

2016-04-30 Thread Matt Thode
commit: 736ebfa5d58509c9806e5f035e96427314a6f4ee
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun May  1 01:36:27 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun May  1 01:36:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=736ebfa5

dev-ruby/facter: fix puppet use of facter and facterdir

Package-Manager: portage-2.2.26

 dev-ruby/facter/{facter-3.1.6-r1.ebuild => facter-3.1.6-r2.ebuild} | 1 +
 dev-ruby/facter/files/00facterdir  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-ruby/facter/facter-3.1.6-r1.ebuild 
b/dev-ruby/facter/facter-3.1.6-r2.ebuild
similarity index 98%
rename from dev-ruby/facter/facter-3.1.6-r1.ebuild
rename to dev-ruby/facter/facter-3.1.6-r2.ebuild
index 49e34b7..034eedb 100644
--- a/dev-ruby/facter/facter-3.1.6-r1.ebuild
+++ b/dev-ruby/facter/facter-3.1.6-r2.ebuild
@@ -70,4 +70,5 @@ src_install() {
mv "${D}/usr/lib/"* "${D}/usr/lib64/"
rmdir "${D}/usr/lib"
fi
+   doenvd "${FILESDIR}"/00facterdir
 }

diff --git a/dev-ruby/facter/files/00facterdir 
b/dev-ruby/facter/files/00facterdir
new file mode 100644
index 000..45e29a2
--- /dev/null
+++ b/dev-ruby/facter/files/00facterdir
@@ -0,0 +1 @@
+FACTERDIR=/usr



[gentoo-commits] proj/layman: New tag: 2.4.0

2016-04-30 Thread Devan Franchini
commit: 
Commit: Devan Franchini  gentoo  org>
CommitDate: Sun May  1 01:09:01 2016 +

New tag: 2.4.0




[gentoo-commits] proj/layman:master commit in: /

2016-04-30 Thread Devan Franchini
commit: 64911e3cb6ee2c768b93f397f629f5130b4923ca
Author: Devan Franchini  gentoo  org>
AuthorDate: Sun May  1 01:03:09 2016 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Sun May  1 01:03:09 2016 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=64911e3c

Added changes to reflect upcoming release

 CHANGES | 2 +-
 README  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/CHANGES b/CHANGES
index f35ee3b..15aaee8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,7 @@
 CHANGES
 ---
 
-Version 2.4.0 - Release 2015-??-??
+Version 2.4.0 - Release 2016-??-??
 ==
  - adds support for different overlay database types
  - adds json database support

diff --git a/README b/README
index fec6a08..f5763de 100644
--- a/README
+++ b/README
@@ -2,8 +2,8 @@
 README
 ==
 
-:Last update:   Date: 2015-03-28
-:Revision:  2.3.1
+:Last update:   Date: 2016-04-30
+:Revision:  2.4.0
 :Contact:   Brian Dolbec 
 
 



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/

2016-04-30 Thread Mike Gilbert
commit: f91b687ac43829902e6b97598d6aa7ff72935f9e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun May  1 00:25:37 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun May  1 00:25:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f91b687a

www-client/chromium: stable channel bump (50.0.2661.94)

Package-Manager: portage-2.2.28_p97

 www-client/chromium/Manifest |   1 +
 www-client/chromium/chromium-50.0.2661.94.ebuild | 695 +++
 2 files changed, 696 insertions(+)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 3e50329..df84e15 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,5 +1,6 @@
 DIST chromium-50.0.2661.75.tar.xz 531558012 SHA256 
c12d644e711ec85c800ab61a749d1f03ba7999e0c3cd20f8495a674d39a643da SHA512 
cc44a052a858d9f43052d825bac891bb44bb5ec4261f4c7a560d9f0798edd9c0ec2c174dd3a61f6adcf01976838e97c49d93973b8c926c6ef5cd8c92ee1672f3
 WHIRLPOOL 
8ec8164fd305f0a67bf433f46294d06e16ac3d0c2b2e5d5531c213f1c471aedc51f2b61215f507677ad3cd40c529cb72547facdeba3ce3c4cc081c3727ef97aa
 DIST chromium-50.0.2661.86.tar.xz 531539124 SHA256 
6cc22761c4a774408cb34e77e056691526f469eca0899f578d5372cf0f756786 SHA512 
64549732146ab2aa3c7582b4596f2a4fde7769c76facf380a6f2e3504c32be42560d1b230a943edb79dd0f019eca7ad133a32765b17143fc9d3eada1d3744ddd
 WHIRLPOOL 
837a977c7ec66e3d2f1b58a54875e3b5b1c130117a1add077b6f38c196c432f175d55a0663f5ac576dd44c9ee77199689125b8b57794e4422fed7b5fe9961fa0
+DIST chromium-50.0.2661.94.tar.xz 531491584 SHA256 
66f0516b076d42b3f00a5fa4ebf31304cb98973179b1cb2fecda8e0b186dba19 SHA512 
c432dd5e7a0b01c82bab12da1c09f1209d730932a4c8215254ce972b55b44697b4ef3a7e5113d4487d64db08104100ecd523b028e21d4ffcf945789540c9f6c6
 WHIRLPOOL 
eb5b483a3c2d84530d49f59f737e2b58320ccde06e1f30427edd3817e4210384d54188de89b94651755024f88df361b11fe5e61a5b67f895f79ee9e8b2544589
 DIST chromium-51.0.2704.19.tar.xz 459662212 SHA256 
515846fadd3fb4a539c5b368854ba918aeeff910f83e346e2f2515e9251f2ef3 SHA512 
86aca654f4ba1c6704748cb41c53273513f6de80a0482e1ae95d02306cc967b7d9d87cba8e9b4984287a4f38b821611fe42c3870c2c9f79997d6a5f8a4ca
 WHIRLPOOL 
5bf091f52335f7ba29f1acf78e073c5c4304e83d7537781691fdd483c45b6466333d64f756ce99ef47578b31fd2828f4124fda492cb62bc6974e71de67d9
 DIST chromium-51.0.2704.22.tar.xz 459682528 SHA256 
808ffd06a299a2f8d05deb8199c837cbd9e5b7091715ae48ec5872e8b5ef6bc0 SHA512 
d09d2e78d87ed76df597fa764fd9487d04bf66016ce784cf34ac5e69d76535b2969d16d81c7abbd1a2286f35311ab050e4de98b211901a00c925c66b5a10383e
 WHIRLPOOL 
e15a330347b1b9b1fed3351ceddfa4eb847c08ebd87e9edf8917ee8e558a016a740da15260af92f3b9fad5ebe45f5654ee1a105d25334876b2948e3d9701b98d
 DIST chromium-52.0.2716.0.tar.xz 461514628 SHA256 
c0f593a640fce7a8c93081725bfc16fae0c4a268c846343fdfeba11fd35755fe SHA512 
25cda422bc1af230613004db56fe8fa0d9a7ed3f9c20b357ff60f788854509ac60f855c1454db05e8921a8f83ba0e95a4f841255d8d6390df68808f04f94826e
 WHIRLPOOL 
e49f3f56a63afb755c1432ea82b77b9f4b4ce02559e24b2e11bdaa199df67a20d4a80470b6c0ae86f5091b24d77bdabf3d79f37d3d40604e0db11b823e7e3500

diff --git a/www-client/chromium/chromium-50.0.2661.94.ebuild 
b/www-client/chromium/chromium-50.0.2661.94.ebuild
new file mode 100644
index 000..030e6f9
--- /dev/null
+++ b/www-client/chromium/chromium-50.0.2661.94.ebuild
@@ -0,0 +1,695 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he
+   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl 
sr
+   sv sw ta te th tr uk vi zh_CN zh_TW"
+
+inherit check-reqs chromium eutils flag-o-matic multilib multiprocessing 
pax-utils \
+   portability python-any-r1 readme.gentoo toolchain-funcs versionator 
virtualx
+
+DESCRIPTION="Open-source version of Google Chrome web browser"
+HOMEPAGE="http://chromium.org/;
+SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz;
+
+LICENSE="BSD hotwording? ( no-source-code )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="cups gn gnome gnome-keyring gtk3 +hangouts hidpi hotwording kerberos 
neon pic +proprietary-codecs pulseaudio selinux +system-ffmpeg +tcmalloc 
widevine"
+RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
+
+REQUIRED_USE="gn? ( kerberos !system-ffmpeg )"
+
+# Native Client binaries are compiled with different set of flags, bug #452066.
+QA_FLAGS_IGNORED=".*\.nexe"
+
+# Native Client binaries may be stripped by the build system, which uses the
+# right tools for it, bug #469144 .
+QA_PRESTRIPPED=".*\.nexe"
+
+RDEPEND="
+   app-arch/bzip2:=
+   cups? ( >=net-print/cups-1.3.11:= )
+   >=dev-libs/elfutils-0.149
+   dev-libs/expat:=
+   dev-libs/glib:=
+   >=dev-libs/jsoncpp-0.5.0-r1:=
+   dev-libs/nspr:=
+   >=dev-libs/nss-3.14.3:=
+   

[gentoo-commits] repo/gentoo:master commit in: dev-lang/go/

2016-04-30 Thread William Hubbs
commit: 42b832b6b2e5aab8cfd0c66a3bdeb4c5da96c987
Author: William Hubbs  gentoo  org>
AuthorDate: Sun May  1 00:19:22 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun May  1 00:21:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b832b6

dev-lang/go: style fix

Package-Manager: portage-2.2.26

 dev-lang/go/go-1.6.2.ebuild | 3 +--
 dev-lang/go/go-.ebuild  | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-lang/go/go-1.6.2.ebuild b/dev-lang/go/go-1.6.2.ebuild
index 88dace6..9a52b39 100644
--- a/dev-lang/go/go-1.6.2.ebuild
+++ b/dev-lang/go/go-1.6.2.ebuild
@@ -88,8 +88,7 @@ go_arch()
case "${portage_arch}" in
x86)echo 386;;
x64-*)  echo amd64;;
-   ppc64)
-   [[ "$(tc-endian)" = big ]] && echo ppc64 || echo 
ppc64le ;;
+   ppc64) [[ $(tc-endian $@) = big ]] && echo ppc64 || echo 
ppc64le ;;
*)  echo "${portage_arch}";;
esac
 }

diff --git a/dev-lang/go/go-.ebuild b/dev-lang/go/go-.ebuild
index 88dace6..9a52b39 100644
--- a/dev-lang/go/go-.ebuild
+++ b/dev-lang/go/go-.ebuild
@@ -88,8 +88,7 @@ go_arch()
case "${portage_arch}" in
x86)echo 386;;
x64-*)  echo amd64;;
-   ppc64)
-   [[ "$(tc-endian)" = big ]] && echo ppc64 || echo 
ppc64le ;;
+   ppc64) [[ $(tc-endian $@) = big ]] && echo ppc64 || echo 
ppc64le ;;
*)  echo "${portage_arch}";;
esac
 }



[gentoo-commits] repo/gentoo:master commit in: app-portage/layman/, app-portage/layman/files/

2016-04-30 Thread Devan Franchini
commit: 3b44feaf636c5c72b841d03bcf179968421fc35d
Author: Devan Franchini  gentoo  org>
AuthorDate: Sat Apr 30 23:20:38 2016 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Sat Apr 30 23:20:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b44feaf

Adds patch to check for the existence of repos.conf file, bug #574188

Package-Manager: portage-2.2.27

 .../layman/files/layman-2.3.0-dir_check.patch  | 31 ++
 app-portage/layman/layman-2.3.0-r1.ebuild  |  1 +
 2 files changed, 32 insertions(+)

diff --git a/app-portage/layman/files/layman-2.3.0-dir_check.patch 
b/app-portage/layman/files/layman-2.3.0-dir_check.patch
new file mode 100644
index 000..af5ec4a
--- /dev/null
+++ b/app-portage/layman/files/layman-2.3.0-dir_check.patch
@@ -0,0 +1,31 @@
+From: Devan Franchini 
+Date: Sat, 30 Apr 2016 18:54:39 -0400
+Subject: [PATCH] Adds dir check for repos.conf rebuilding
+
+--- a/layman/updater.py2015-02-07 22:38:49.0 -0500
 b/layman/updater.py2016-04-30 18:54:39.103894343 -0400
+@@ -182,6 +182,24 @@
+ 
+ def create_repos_conf(self):
+ self.output.info("  Creating layman's repos.conf file")
++
++if os.path.isdir(self.config['repos_conf']):
++msg = '  create_repos_conf() error: %s is a directory and will\n'\
++  '  not be written to.' % self.config['repos_conf']
++self.output.error(msg)
++return None
++
++conf_dir = os.path.dirname(self.config['repos_conf'])
++
++if not os.path.isdir(conf_dir):
++try:
++os.mkdir(conf_dir)
++except OSError as e:
++self.output.error('  create_repos_conf() error creating: %s: 
'\
++   % conf_dir)
++self.output.error('  "%s"' % e)
++return None
++
+ layman_inst = LaymanAPI(config=self.config)
+ overlays = {}
+ for ovl in layman_inst.get_installed():

diff --git a/app-portage/layman/layman-2.3.0-r1.ebuild 
b/app-portage/layman/layman-2.3.0-r1.ebuild
index 090a8ff..d3a9a16 100644
--- a/app-portage/layman/layman-2.3.0-r1.ebuild
+++ b/app-portage/layman/layman-2.3.0-r1.ebuild
@@ -61,6 +61,7 @@ python_prepare_all()  {
esetup.py setup_plugins
distutils-r1_python_prepare_all
#rm "${S}"/"${PN}"/tests/dtest.py
+   epatch "${FILESDIR}"/${P}-dir_check.patch
eprefixify etc/layman.cfg layman/config.py
 }
 



[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-04-30 Thread Anthony G. Basile
commit: f4cb075098ce8d28656e56fa668e63009d1e91bc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 22:21:10 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 22:21:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4cb0750

profiles: unmask =net-misc/tinc-1.1_pre*

 profiles/package.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6870aea..0674c69 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -564,10 +564,6 @@ app-admin/hwreport
 =sys-libs/db-6.1*
 =sys-libs/db-6.2*
 
-# Yixun Lan  (17 Jul 2014)
-# Masked for proper testing. (Major updates in the code).
-=net-misc/tinc-1.1_pre*
-
 # Ulrich Müller  (15 Jul 2014)
 # Permanently mask sys-libs/lib-compat and its reverse dependencies,
 # pending multiple security vulnerabilities and QA issues.



[gentoo-commits] proj/layman:master commit in: layman/, layman/config_modules/reposconf/

2016-04-30 Thread Devan Franchini
commit: 6f4d6dc0552b1bad10f8953de786cf0e78d975ee
Author: Devan Franchini  gentoo  org>
AuthorDate: Sat Apr 30 22:08:12 2016 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Sat Apr 30 22:18:41 2016 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=6f4d6dc0

Repairs layman-updater rebuild functionality

reposconf.py: Adds rebuild __init__ parameter to fix rebuild
functionality
updater.py: Sets rebuild parameter for repos.conf ConfigHandler class

 layman/config_modules/reposconf/reposconf.py | 9 +
 layman/updater.py| 2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/layman/config_modules/reposconf/reposconf.py 
b/layman/config_modules/reposconf/reposconf.py
index 1f0fd04..79991c9 100644
--- a/layman/config_modules/reposconf/reposconf.py
+++ b/layman/config_modules/reposconf/reposconf.py
@@ -53,7 +53,7 @@ def check_conf_path(conf_path):
 
 class ConfigHandler:
 
-def __init__(self, config, overlays):
+def __init__(self, config, overlays, rebuild=False):
 
 self.config = config
 self.output = config['output']
@@ -61,7 +61,7 @@ class ConfigHandler:
 self.path = check_conf_path(config['repos_conf'])
 self.storage = config['storage']
 self.repo_config = None
-self.rebuild = False
+self.rebuild = rebuild
 
 self.read()
 
@@ -193,14 +193,15 @@ class ConfigHandler:
 if self.rebuild:
 # start over with a fresh instance
 self.repo_conf = ConfigParser.ConfigParser()
-if not self.repo_conf.sections():
+for i in sorted(self.overlays):
+self.add(self.overlays[i], no_write=True)
+if not self.repo_conf.sections() and not self.rebuild:
 if ('disable' in self.config.keys() and not
 self.config['disable'][0].lower() == 'all'):
 for i in sorted(self.overlays):
 if not i == delete:
 self.add(self.overlays[i], no_write=True)
 self.repo_conf.write(laymanconf)
-self.rebuild = False
 return True
 except IOError as error:
 self.output.error('ReposConf: ConfigHandler.write(); Failed to 
write "'\

diff --git a/layman/updater.py b/layman/updater.py
index 6384429..2bfc241 100644
--- a/layman/updater.py
+++ b/layman/updater.py
@@ -273,7 +273,7 @@ class Main(object):
 # can write the overlays to it.
 open(self.config['repos_conf'], 'w').close()
 from layman.config_modules.reposconf.reposconf import ConfigHandler
-repos_conf = ConfigHandler(self.config, overlays)
+repos_conf = ConfigHandler(self.config, overlays, rebuild=True)
 repos_conf.write()
 
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/

2016-04-30 Thread Anthony G. Basile
commit: bdee37bbcd15fd3b611fb13e931d73cdfa0582db
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 22:18:47 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 22:18:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdee37bb

net-misc/tinc: version bump to 1.1_pre13, remove 1.1_pre12

Package-Manager: portage-2.2.26

 net-misc/tinc/Manifest | 2 +-
 net-misc/tinc/{tinc-1.1_pre12.ebuild => tinc-1.1_pre13.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 8abfcca..1b297d9 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,2 +1,2 @@
 DIST tinc-1.0.28.tar.gz 488837 SHA256 
0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 
b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec
 WHIRLPOOL 
9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
-DIST tinc-1.1pre12.tar.gz 695939 SHA256 
f1d47265e94873bded1caea2b5d025d74b2fa338d8d3f7c725b834c56438dcce SHA512 
ef1831b3715d4e209e1005623052ae4979dcdf56df6375ffdf26db7d948275260f56d92c11797926e723f0615c9d3d5ee123a86ee0de5078ce375b887a712670
 WHIRLPOOL 
ea660d0c2a9648e1367224144def9f08e780dde930603b72805aedd3032509706641e13316bba568e156e32185e3a85e92143ffa34c277675f323c2bb6433b9d
+DIST tinc-1.1pre13.tar.gz 695921 SHA256 
81738b7811721eb4c0e04b5750e1f2347fe06a0690739022a78c44983bc9d9fa SHA512 
cfcc39b038acbaab33e7eaaf41828f8a959ea0b3648f65ad1ac41a2cebc303763c9c0d8c63004b48842cdfee40ed4101dfb6eb9147ddd7a026651286331181d1
 WHIRLPOOL 
a7eba00b1b554109ed09a41c8a132316a608006cc090a15325cb8435db5660793792144ce96c389aed13ab38468d8600849374fba01f45d9762f904791026444

diff --git a/net-misc/tinc/tinc-1.1_pre12.ebuild 
b/net-misc/tinc/tinc-1.1_pre13.ebuild
similarity index 100%
rename from net-misc/tinc/tinc-1.1_pre12.ebuild
rename to net-misc/tinc/tinc-1.1_pre13.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2016-04-30 Thread Mike Gilbert
commit: 55fd3df15ccb5326db361fa96cd5cf0b98d802d3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Apr 30 22:07:47 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Apr 30 22:07:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55fd3df1

www-plugins/chrome-binary-plugins: automated update

Package-Manager: portage-2.2.28_p97

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...ns-50.0.2661.86.ebuild => chrome-binary-plugins-50.0.2661.94.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 08edb06..5969760 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_51.0.2704.29-1_amd64.deb 48939850 SHA256 
c4864a83410e32fd193862da3fbae53659fb72d50c38260f13ac3686edb8fe06 SHA512 
c4cd54c7a482ffa27bbd42d448d6c8f300361067cfe56525bf65724566790bf23a8a4592f37838422796b4a1575ce422e8550121ac644ce4e03f199d778069f3
 WHIRLPOOL 
1976987c4b041067330a515ab52817b240c919ff38d3578ee47955505410f5eed2f1cf0308f3fdab3948f33d3d6aa0d48a606870cf7b37dac2b83828cde4
-DIST google-chrome-stable_50.0.2661.86-1_amd64.deb 48359132 SHA256 
6cb12dce5c4c39ef86512c5f4394509a8650f13a6bd755ea3cc2c7538e8deb3a SHA512 
ddf550d6568a980f7c4320b04eaa72b27df989eb8eee76bfd2a14524a63a1a7f38c233e65ec8e67dfbbfaa1f60718168b245c9c10f6b5ecc9f66af5f71a167e0
 WHIRLPOOL 
3e5be637c8293dafa3a2bbf60e155f8ece5c63a319ead912caf36841aa21092fa3bdeb1ba589b8157f78c637a4546f232368d821a94f822a2b64be353826299b
+DIST google-chrome-stable_50.0.2661.94-1_amd64.deb 48371848 SHA256 
3803339eb3850071ad932256b85f529d307f57638bc4ce5fd638f7481134dbdd SHA512 
8b95ad80e28e40f606b14f9b09c45b592fa939f7e03bc1ddd032e9c1edf404e80d81d4182e7022752273cd963310ba4e393df8ac5ff6962b8af6cdc23909fc4d
 WHIRLPOOL 
9784344cd06925938fa5ff5a1a7f0bd9448b364875d3c64ae21609d4c059050777877012b23d113d57b32d55e5598dcc4930161b130aaac846eb64e1b6619f46
 DIST google-chrome-unstable_52.0.2716.0-1_amd64.deb 53522910 SHA256 
b4483bf5ffe99546d5ec2ade3e3a73384ae843b1fdcca919007ccfa36aa2b4d4 SHA512 
ad3ecb37da1c5ccdd775ecf35ece89eb36fd5ac0fd1205adedfa7c5a98afe739748b1223442084f49a4a15b84876a9d53fd97cc6bedafafce8ade3635e16aa75
 WHIRLPOOL 
a8e609ded1b6854f5039876aedb5873f3147cd8e3112eae56123a54c7c7b645327a20b4960ac4a1240e785acd1c74f652101806757ef445ffe2200667f47b82a

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.86.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.94.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.86.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.94.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome/

2016-04-30 Thread Mike Gilbert
commit: dde74601a78ea8857c7999ba5245af12562c1683
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Apr 30 22:07:38 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Apr 30 22:07:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dde74601

www-client/google-chrome: automated update

Package-Manager: portage-2.2.28_p97

 www-client/google-chrome/Manifest   | 2 +-
 ...gle-chrome-50.0.2661.86.ebuild => google-chrome-50.0.2661.94.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index fd56f7e..a24bf2f 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_50.0.2661.86-1_amd64.deb 48359132 SHA256 
6cb12dce5c4c39ef86512c5f4394509a8650f13a6bd755ea3cc2c7538e8deb3a SHA512 
ddf550d6568a980f7c4320b04eaa72b27df989eb8eee76bfd2a14524a63a1a7f38c233e65ec8e67dfbbfaa1f60718168b245c9c10f6b5ecc9f66af5f71a167e0
 WHIRLPOOL 
3e5be637c8293dafa3a2bbf60e155f8ece5c63a319ead912caf36841aa21092fa3bdeb1ba589b8157f78c637a4546f232368d821a94f822a2b64be353826299b
+DIST google-chrome-stable_50.0.2661.94-1_amd64.deb 48371848 SHA256 
3803339eb3850071ad932256b85f529d307f57638bc4ce5fd638f7481134dbdd SHA512 
8b95ad80e28e40f606b14f9b09c45b592fa939f7e03bc1ddd032e9c1edf404e80d81d4182e7022752273cd963310ba4e393df8ac5ff6962b8af6cdc23909fc4d
 WHIRLPOOL 
9784344cd06925938fa5ff5a1a7f0bd9448b364875d3c64ae21609d4c059050777877012b23d113d57b32d55e5598dcc4930161b130aaac846eb64e1b6619f46

diff --git a/www-client/google-chrome/google-chrome-50.0.2661.86.ebuild 
b/www-client/google-chrome/google-chrome-50.0.2661.94.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-50.0.2661.86.ebuild
rename to www-client/google-chrome/google-chrome-50.0.2661.94.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-perl/regexp-common/

2016-04-30 Thread Andreas Hüttel
commit: 9fa95b2a591a6d2c596e7f93e269f2d2e7063d08
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:40:47 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:40:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa95b2a

dev-perl/regexp-common: Version bump

Package-Manager: portage-2.2.28

 dev-perl/regexp-common/Manifest   |  1 +
 .../regexp-common/regexp-common-2016020301.0.0.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-perl/regexp-common/Manifest b/dev-perl/regexp-common/Manifest
index 0c932fa..e587a7c 100644
--- a/dev-perl/regexp-common/Manifest
+++ b/dev-perl/regexp-common/Manifest
@@ -1 +1,2 @@
 DIST Regexp-Common-2013031301.tar.gz 115724 SHA256 
729a8198d264aa64ecbb233ff990507f97fbb66bda746b95f3286f50f5f25c84 SHA512 
2fad761c169be76771856938a53f28dab232cb44cea4e22f56869754633f9a38f94568096ac0f21a885e6dd11049f401c8957b04929eee6802b8454c4fe4f62a
 WHIRLPOOL 
6879d3f4ec48f4b8f41d1de56f541156182eaa7f257a0ee76ee21c81a78e5fa9270da296da2ce97490cb6c67d0e6815a3b32ec152e6a3cc6e561b864443c
+DIST Regexp-Common-2016020301.tar.gz 119181 SHA256 
ccdcb6ca034b2948f2efa042c75aff9edee355b800a81943432efcca95fa7e59 SHA512 
20b773015b6c604e5811ea030802605a9e71c9049342a8b88e4d45de310a2f7df468ac4c5b79102870abc290777bccadf380299c64c944aa6fe01f31596a9da0
 WHIRLPOOL 
ce56276ef7b25d5f98a7249630a2c69bb3d78ab028ad18ed39e903d3ee7100e457b54526f63ef101909f25a2b622321d49b3e3592615c764bdc421e42954878f

diff --git a/dev-perl/regexp-common/regexp-common-2016020301.0.0.ebuild 
b/dev-perl/regexp-common/regexp-common-2016020301.0.0.ebuild
new file mode 100644
index 000..c13db27
--- /dev/null
+++ b/dev-perl/regexp-common/regexp-common-2016020301.0.0.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_NAME=Regexp-Common
+DIST_AUTHOR=ABIGAIL
+DIST_VERSION=2016020301
+inherit perl-module
+
+DESCRIPTION="Provide commonly requested regular expressions"
+
+LICENSE="|| ( Artistic Artistic-2 MIT BSD )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+IUSE=""
+
+DEPEND="virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/REST-Client/

2016-04-30 Thread Andreas Hüttel
commit: 1e31b996e8c6f58b7ed7ab753ef1b8163b90f76c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:45:37 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:45:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e31b996

dev-perl/REST-Client: Version bump

Package-Manager: portage-2.2.28

 dev-perl/REST-Client/Manifest   |  1 +
 dev-perl/REST-Client/REST-Client-273.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-perl/REST-Client/Manifest b/dev-perl/REST-Client/Manifest
index e8b5e74..3c2d127 100644
--- a/dev-perl/REST-Client/Manifest
+++ b/dev-perl/REST-Client/Manifest
@@ -1 +1,2 @@
 DIST REST-Client-249.tar.gz 22555 SHA256 
209bac63a81aeda764e0bba3545e804ea9650186d36a1cec7e6cffbf05033e0e SHA512 
a357318630926d80d76c77da2216263dd95395eb5b0099db01907406e3f28a01be48d570a6eafb94ae02faf90910ee5a186333030784945efe00cd63de65bbc9
 WHIRLPOOL 
2382992fffbf399b1ec8ee34e3081ebac4d68bd9e688b50b3aa4ddb0733fbbe732a9b778a3a7e0eb5a990b749f4a36cc288383c5899439667ad4bd29fdacb9ac
+DIST REST-Client-273.tar.gz 20405 SHA256 
a8652a2214308faff2c68be5ce64c904d5e86be7f32376c1590869d01844 SHA512 
3e41b0281929f45f3c0c1bc95e772233ab31f54f0cb2f23fe5b884636575ba131fd26eca150bab6f33fae7eddcd4de7043781e27a071306bf46b16469033a57c
 WHIRLPOOL 
99db93348cc8331ea4733b95ffda3eff1debebdeb2c4e29a9bf6fccade57616b25e8a4cb5a798824c4037a3b483369c1d36b338f4c1274d3d15c2c7729e80df5

diff --git a/dev-perl/REST-Client/REST-Client-273.ebuild 
b/dev-perl/REST-Client/REST-Client-273.ebuild
new file mode 100644
index 000..8e42e1e
--- /dev/null
+++ b/dev-perl/REST-Client/REST-Client-273.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=KKANE
+inherit perl-module
+
+DESCRIPTION="A simple client for interacting with RESTful http/https resources"
+
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+   dev-perl/LWP-Protocol-https
+   dev-perl/libwww-perl
+   dev-perl/URI
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( virtual/perl-Test-Simple )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Quota/

2016-04-30 Thread Andreas Hüttel
commit: df743489f034603f7656e8e12175890ddf23e0d2
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:28:25 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:28:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df743489

dev-perl/Quota: Fix version normalization; version bump

Package-Manager: portage-2.2.28

 dev-perl/Quota/Manifest   |  1 +
 .../Quota/{Quota-1.700.0-r1.ebuild => Quota-1.7.0.ebuild} |  3 +--
 .../Quota/{Quota-1.700.0-r1.ebuild => Quota-1.7.2.ebuild} | 15 ---
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/dev-perl/Quota/Manifest b/dev-perl/Quota/Manifest
index b420d34..c575ace 100644
--- a/dev-perl/Quota/Manifest
+++ b/dev-perl/Quota/Manifest
@@ -1 +1,2 @@
 DIST Quota-1.7.0.tar.gz 50342 SHA256 
960057167b7e15c998771142e8d0cce8069760edd86d77da26e0907f27e65cac SHA512 
3b99dda17f6f578cf469962ff4c6b662ba9a1a955356ee90a7b749f0ea7df1234356ef77c5c3091389749ef4b4f82df90b20886bae365af27828760c16125ded
 WHIRLPOOL 
ef7aae289ca773df25905d3cd1cd4a6d40d189ae4d8778a7e4923af69f871788d1dc9f73e34358d0db62fcec25635f4e82c267a44248fd2f84ac313fc4cbe730
+DIST Quota-1.7.2.tar.gz 50436 SHA256 
1001eb006cfe8f49b195145e04b0c37c2b09d1023c78ccda1871b30f551c312b SHA512 
55ea9fbf027676b0e6f7a6f97fd3e75749860ebefe0127791a0d8cd8a427676eb1f6bf1ddf1a3687666752430faef877eedd12ccce39b7b76466fc7bfc628433
 WHIRLPOOL 
2a88a4eed16ea553bbacee7d19af3e1a6e0c751c144c3bac4ab89a788ed3fcce044da5f044cd1db4fae4f7426312f00ca4c6c81a86ca6a8e8b0461cb23a6e0a8

diff --git a/dev-perl/Quota/Quota-1.700.0-r1.ebuild 
b/dev-perl/Quota/Quota-1.7.0.ebuild
similarity index 88%
copy from dev-perl/Quota/Quota-1.700.0-r1.ebuild
copy to dev-perl/Quota/Quota-1.7.0.ebuild
index 32ac21c..95d99b2 100644
--- a/dev-perl/Quota/Quota-1.700.0-r1.ebuild
+++ b/dev-perl/Quota/Quota-1.7.0.ebuild
@@ -1,11 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
 MODULE_AUTHOR=TOMZO
-MODULE_VERSION=1.7.0
 inherit perl-module
 
 DESCRIPTION="Quota - Perl interface to file system quotas"

diff --git a/dev-perl/Quota/Quota-1.700.0-r1.ebuild 
b/dev-perl/Quota/Quota-1.7.2.ebuild
similarity index 66%
rename from dev-perl/Quota/Quota-1.700.0-r1.ebuild
rename to dev-perl/Quota/Quota-1.7.2.ebuild
index 32ac21c..64ca57a 100644
--- a/dev-perl/Quota/Quota-1.700.0-r1.ebuild
+++ b/dev-perl/Quota/Quota-1.7.2.ebuild
@@ -1,26 +1,27 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=TOMZO
-MODULE_VERSION=1.7.0
+DIST_AUTHOR=TOMZO
 inherit perl-module
 
-DESCRIPTION="Quota - Perl interface to file system quotas"
+DESCRIPTION="Perl interface to file system quotas"
 
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-DEPEND=""
 RDEPEND=""
+DEPEND="virtual/perl-ExtUtils-MakeMaker"
 
 # Tests need real FS access/root permissions and are interactive
-SRC_TEST="skip"
+DIST_TEST=skip
 
 src_prepare() {
+   default
+
# disable AFS completely for now, need somebody who can really test it
sed -i -e 's|-d "/afs"|0|' Makefile.PL || die "sed failed"
 }



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

2016-04-30 Thread Mike Gilbert
commit: 2fb52ce9099457909d7e0479513f35a4db6c98a1
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Apr 30 22:04:51 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Apr 30 22:05:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fb52ce9

dev-util/ninja: update SRC_URI

Package-Manager: portage-2.2.28_p97

 dev-util/ninja/ninja-1.7.1.ebuild | 4 ++--
 dev-util/ninja/ninja-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-util/ninja/ninja-1.7.1.ebuild 
b/dev-util/ninja/ninja-1.7.1.ebuild
index 03d1eeb..b228a4e 100644
--- a/dev-util/ninja/ninja-1.7.1.ebuild
+++ b/dev-util/ninja/ninja-1.7.1.ebuild
@@ -10,9 +10,9 @@ inherit bash-completion-r1 elisp-common python-any-r1 
toolchain-funcs
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://github.com/martine/ninja.git;
+   EGIT_REPO_URI="https://github.com/ninja-build/ninja.git;
 else
-   SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://github.com/ninja-build/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 fi
 

diff --git a/dev-util/ninja/ninja-.ebuild b/dev-util/ninja/ninja-.ebuild
index 6bf677c..b228a4e 100644
--- a/dev-util/ninja/ninja-.ebuild
+++ b/dev-util/ninja/ninja-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ninja-build/ninja.git;
 else
-   SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://github.com/ninja-build/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Role-Tiny/

2016-04-30 Thread Andreas Hüttel
commit: ae3fbeb8651a73da9df9c1ea36097ee865ac2c9b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:46:21 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:46:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae3fbeb8

dev-perl/Role-Tiny: Remove old

Package-Manager: portage-2.2.28

 dev-perl/Role-Tiny/Manifest   |  2 --
 dev-perl/Role-Tiny/Role-Tiny-1.3.2.ebuild | 27 ---
 dev-perl/Role-Tiny/Role-Tiny-2.0.0.ebuild | 28 
 3 files changed, 57 deletions(-)

diff --git a/dev-perl/Role-Tiny/Manifest b/dev-perl/Role-Tiny/Manifest
index b793112..24e0077 100644
--- a/dev-perl/Role-Tiny/Manifest
+++ b/dev-perl/Role-Tiny/Manifest
@@ -1,3 +1 @@
-DIST Role-Tiny-1.003002.tar.gz 25518 SHA256 
7eded275f400aad4eb3624ab395ab9132e299a46d75a21299e6c95e271643676 SHA512 
130f9d961caade61a7d2f077945f008b6196db0eb6ddbcb64093bf39421232c30bc1653821754acea336ec0469ea970b49959dd7bd4b2749ea77ed7a7332c6ca
 WHIRLPOOL 
190106c581255af93a349e1ac6150b14941a5ba30b7f0f10017178af3acba556bb841b25f2636bc1064c1f3d0f05f2d51be78eaa2e68a5516e335e37a3e0b5ee
-DIST Role-Tiny-2.00.tar.gz 21755 SHA256 
a5f461e79d9433745807614c3be94f070375a0d4ed277189752fd0fecfe06091 SHA512 
afa256d6a5882e7a466294fb0b24bad31fbb5c28e080cd072e704a05b15b702aabe3deb16deddedc892450345c06e2c5cbf0acbaf66432b3982fd481a92db40f
 WHIRLPOOL 
bed78cdaa67ef0f3605b5c5e48bc6756757398d2f1668373b21fc47437f06d05aaae732927b04e41bc6910ec3d0c2f946a330e33424cf9dc5d2e3766f15b6efe
 DIST Role-Tiny-2.01.tar.gz 21947 SHA256 
31883410a7c85d6dc7501c718b1f83edba013a7b9bbccf0338a1033c391f296d SHA512 
64d13232db363ba53d2e1e7eb69162ef4411e3ec700dbb652fa6c91aab9b2d248ff83203274d1d1e05cc03342706566a80387b0b11dda912906da8bdc9b4f816
 WHIRLPOOL 
9553a4adad4ffe5e6d874411a01078e6a3fd572563432d1933861211c48fd50886e95048166ffbb0c0b23cd7ee2f3e6efc093427155f6d875965c8a4944e8cef

diff --git a/dev-perl/Role-Tiny/Role-Tiny-1.3.2.ebuild 
b/dev-perl/Role-Tiny/Role-Tiny-1.3.2.ebuild
deleted file mode 100644
index 3f0c490..000
--- a/dev-perl/Role-Tiny/Role-Tiny-1.3.2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=HAARG
-MODULE_VERSION=1.003002
-inherit perl-module
-
-DESCRIPTION="Roles. Like a nouvelle cuisine portion size slice of Moose"
-
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~ppc-macos ~x86-solaris"
-IUSE="test"
-
-DEPEND="
-   test? (
-   >=dev-perl/Test-Fatal-0.003
-   >=virtual/perl-Test-Simple-0.96
-   )
-"
-RDEPEND="
-   !

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Proc-Wait3/

2016-04-30 Thread Andreas Hüttel
commit: 619147a9f71151e8195ca3033d5ba378bcaa0b55
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:23:13 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:23:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=619147a9

dev-perl/Proc-Wait3: Remove old

Package-Manager: portage-2.2.28

 dev-perl/Proc-Wait3/Manifest|  1 -
 dev-perl/Proc-Wait3/Proc-Wait3-0.40.0-r1.ebuild | 17 -
 2 files changed, 18 deletions(-)

diff --git a/dev-perl/Proc-Wait3/Manifest b/dev-perl/Proc-Wait3/Manifest
index 60f3517..c5bd692 100644
--- a/dev-perl/Proc-Wait3/Manifest
+++ b/dev-perl/Proc-Wait3/Manifest
@@ -1,2 +1 @@
-DIST Proc-Wait3-0.04.tar.gz 9701 SHA256 
d056a2af775a880d47c0d10beb60ff2195291a79ab481b99c05e6401293c984a SHA512 
55108f6abb8c51e23075c2ed7e0e8a112d071b224c6e85e191c1191bdbfd95603d55ae7b3e7be8d72ecffdb3cda8573e393b9da1a852eb236e6fcb9b8ce3a782
 WHIRLPOOL 
c0229d393b1321cc3ddef76fc1ed1e27afba506f43512c0dd998a371bb3d5a8214df6753e0f6ac67904e26188c32cd8b01f25020422b9538ec91eda442e077f3
 DIST Proc-Wait3-0.05.tar.gz 10248 SHA256 
1a907f5db6933dc2939bbfeffe19eeae7ed39ef1b97a2bc9b723f2f25f81caf3 SHA512 
6af398422cc79fb02f544226b22dcbd3b3b25ae186da4e5e2d9f3d172fa0c59c7813d404397a8f47f426bde04d7936d939241d197085277b5e57981ac7be274d
 WHIRLPOOL 
c82140417e6fc1f3645d39f184e9ce73b93bd87a03b6a6476745c4033f5d550a1db35bd363b7e16e6ee63c478ee201225dd6a5639fe364b963adb6c0b203f9ef

diff --git a/dev-perl/Proc-Wait3/Proc-Wait3-0.40.0-r1.ebuild 
b/dev-perl/Proc-Wait3/Proc-Wait3-0.40.0-r1.ebuild
deleted file mode 100644
index 3e41194..000
--- a/dev-perl/Proc-Wait3/Proc-Wait3-0.40.0-r1.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=CTILMES
-MODULE_VERSION=0.04
-inherit perl-module
-
-DESCRIPTION="Perl extension for wait3 system call"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Readonly/

2016-04-30 Thread Andreas Hüttel
commit: ddc750dc3633633c379ea2d1f8867ff909b88667
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:35:19 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:35:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddc750dc

dev-perl/Readonly: Version bump

Package-Manager: portage-2.2.28

 dev-perl/Readonly/Manifest   |  1 +
 dev-perl/Readonly/Readonly-2.10.0.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-perl/Readonly/Manifest b/dev-perl/Readonly/Manifest
index 24c3e3b..b2de790 100644
--- a/dev-perl/Readonly/Manifest
+++ b/dev-perl/Readonly/Manifest
@@ -1,2 +1,3 @@
 DIST Readonly-1.03.tar.gz 13677 SHA256 
53c46815dea724e29ceabb5d39471b0e6f2ebbb3cf1fe2a23d881a2855f713ea SHA512 
0655a37828f70058f136218d11f9c12c91eb9f365b4e9c7c2c6e22c5ec469a1bbd8196c40c17db09a26a3260e638148570c3859541d840348b6d9ddf3890e5c1
 WHIRLPOOL 
e512f91f438e2622cf8495d11b556a185a96a6fee51a30d04fe1ceaf08397c4f167ac7f51525ee8c796251ee2b7cc9a0f9e59a7ccc9ada4d06f37a197f7f9875
 DIST Readonly-2.00.tar.gz 23673 SHA256 
9bd0156e958842fdfd6c3bb27a23b47232d4737a407d81fabc4dc64b9363bf98 SHA512 
293c3be4af0bee2390d5370132c17de31010443123321771dd124d3e285cd72abbdaa7b6f50a2c44102d03a5724636f2976016111efe09afd27149f6880c2bec
 WHIRLPOOL 
3ffd3734f598c27dfa533e883b61fc597025b82cbc41c3a3dd9e3abb52c01b3d72c86401b30181fc2b8d42c8dd1063dbfeae4faf1980e52ea89683f5d0e4bf8e
+DIST Readonly-2.01.tar.gz 23227 SHA256 
ec7076c6851b6d3338e959645cd995343241f5b2ffc29519faf28f6b482e SHA512 
03287cf32d7464a5a1487e62ad5ac5210d1be6258559e88baddc27408a6b00c6983ff1e305643ffec3ee0068ae823239433e53594684d8538197d6b09971fda2
 WHIRLPOOL 
8398fa160c31c2f8eb6b834b255f88912076b7b77b13c17f860b01938ead957921facf1298c0407b73ce53956d2cf1e94301889bdbdac542280a17f5fc5b24bd

diff --git a/dev-perl/Readonly/Readonly-2.10.0.ebuild 
b/dev-perl/Readonly/Readonly-2.10.0.ebuild
new file mode 100644
index 000..4ce3088
--- /dev/null
+++ b/dev-perl/Readonly/Readonly-2.10.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=SANKO
+DIST_VERSION=2.01
+inherit perl-module
+
+DESCRIPTION="Facility for creating read-only scalars, arrays, hashes"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+IUSE="test"
+
+DEPEND="
+   >=dev-perl/Module-Build-Tiny-0.35.0
+   test? ( virtual/perl-Test-Simple )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Regexp-RegGrp/

2016-04-30 Thread Andreas Hüttel
commit: c907bc77eb597333a55cfbbb12f29df05a39e7b0
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:41:24 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:41:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c907bc77

dev-perl/Regexp-RegGrp: Remove old

Package-Manager: portage-2.2.28

 dev-perl/Regexp-RegGrp/Manifest   |  1 -
 dev-perl/Regexp-RegGrp/Regexp-RegGrp-1.2.1.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-perl/Regexp-RegGrp/Manifest b/dev-perl/Regexp-RegGrp/Manifest
index d2759b2..da3582c 100644
--- a/dev-perl/Regexp-RegGrp/Manifest
+++ b/dev-perl/Regexp-RegGrp/Manifest
@@ -1,2 +1 @@
-DIST Regexp-RegGrp-1.002001.tar.gz 24354 SHA256 
fb629d155aebeed9f5da87fa1af94160b883e4c91df772be2311b5704685b551 SHA512 
0525e02b686616bc073de784df1e5b792c09ec033db2fe322308d40352a3a9ebd4bdafc270b4253fa29bd90cd78312bb9831aef96f55298005b7f1d1b1299ee6
 WHIRLPOOL 
27d118ca4b3d6e0d622273b9027ba6917e388a682ef033a5115f51243facf9a0bc32fe287a40d197f65cf4fd5f8715ab9b516f5e4cbef73e74dd71c36dd7fb5c
 DIST Regexp-RegGrp-2.00.tar.gz 26393 SHA256 
0dbce0eefd5a1b9d7a54e8f08ba95648e29db15934eda5a579fc8ae3caf9baea SHA512 
20a9bb52c403a98a8be6ace6fa2f3896edaeedd2c46fa44233787638ad2266f7858757d50862fee25fddb4eff0847487f9d1c2469687a9002ebb86e6d119dbc9
 WHIRLPOOL 
c8a5d088ea9887306ada6a38d9ba098eb96c37bedc264d9c114e37c70b98731ca5f459d09afcdd6b063e883de654f8e8239406de24b742fb1b10a9733f2fe0f8

diff --git a/dev-perl/Regexp-RegGrp/Regexp-RegGrp-1.2.1.ebuild 
b/dev-perl/Regexp-RegGrp/Regexp-RegGrp-1.2.1.ebuild
deleted file mode 100644
index 439ac0b..000
--- a/dev-perl/Regexp-RegGrp/Regexp-RegGrp-1.2.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-MODULE_AUTHOR=NEVESENIN
-MODULE_VERSION=1.002001
-inherit perl-module
-
-DESCRIPTION='Groups a regular expressions collection'
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.560.0
-   test? ( virtual/perl-Test-Simple )
-"
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/rename/

2016-04-30 Thread Andreas Hüttel
commit: 314362f474cd94045cc4e00bf9bd650051787574
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:41:59 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:41:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=314362f4

dev-perl/rename: Remove old

Package-Manager: portage-2.2.28

 dev-perl/rename/Manifest |  1 -
 dev-perl/rename/rename-1.800.0-r1.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-perl/rename/Manifest b/dev-perl/rename/Manifest
index eb890a2..4f23af3 100644
--- a/dev-perl/rename/Manifest
+++ b/dev-perl/rename/Manifest
@@ -1,2 +1 @@
-DIST rename-1.8.tar.gz 5582 SHA256 
7e43895de8d8d0c68d8ca7564fd005b04cbfc437e742d61af52f29a156168a75 SHA512 
2090cfb007cc78a8daa946a4d2e8671bc5081dce1374aac304f96559e053e5b8fc970ba7acb86a5dbf256cabf88cb75cd27dfe2f5823cc0440b7eeea452a9b0c
 WHIRLPOOL 
6fb559b932aa2a4b54dacbeb89ae99d901257e0aae93c0ee4722e7f5dc27fdcc71f8fff66d9ca92e4265919c8009303225cb0aeaaa02a8a17bed590a1701ac9f
 DIST rename-1.9.tar.gz 5942 SHA256 
17c5744f10d335a9d3674ed011ff26d3e840f25290c7f86c1d63d05771677ea0 SHA512 
f6977d6b1698d7da6b2b5ef262cd13a4c4739e4f468d164ba6876ecabfd7bc44532eddb9350aa61e9fb154138ef38ea8323e3768c7d3d611ce7ee49b1561c4d0
 WHIRLPOOL 
f95ebd255612b6707d6f2cb5cdaab9a3af12dfc84860a454900f15436d448c2b36d7a3acf3cc28188992443fa91b7de184691bf2d9d94cbb75cb9567b16153e6

diff --git a/dev-perl/rename/rename-1.800.0-r1.ebuild 
b/dev-perl/rename/rename-1.800.0-r1.ebuild
deleted file mode 100644
index 58743fd..000
--- a/dev-perl/rename/rename-1.800.0-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=PEDERST
-MODULE_VERSION=1.8
-inherit perl-module
-
-DESCRIPTION="A filename renaming utility based on perl regular expression"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-src_install() {
-   perl-module_src_install
-
-   mv -vf "${D}"/usr/bin/rename "${D}"/usr/bin/perl-rename
-   mv -vf "${D}"/usr/share/man/man1/rename.1 
"${D}"/usr/share/man/man1/perl-rename.1
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Redis/

2016-04-30 Thread Andreas Hüttel
commit: d4c867c6b2b4af25ffb0d806d3486baf20af8a9e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 21:35:49 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 21:35:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4c867c6

dev-perl/Redis: Remove old

Package-Manager: portage-2.2.28

 dev-perl/Redis/Manifest |  1 -
 dev-perl/Redis/Redis-1.961.0.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/dev-perl/Redis/Manifest b/dev-perl/Redis/Manifest
index 107ae33..691263f 100644
--- a/dev-perl/Redis/Manifest
+++ b/dev-perl/Redis/Manifest
@@ -1,2 +1 @@
-DIST Redis-1.961.tar.gz 36564 SHA256 
782deec57b45d6710dad2cae38299d5079e008a6d60819b62765a81a83262f09 SHA512 
8f703bc9e11b4c41df7fb9f686c6bae090d907c026f36bbcead1070be458dd8462e108526db96d1ba28453d30b7b4494e35223d32ae934a678ad571b72d39e78
 WHIRLPOOL 
85a9c6998b035ea63ef12ceae7e1d8cda5c0a352153377f3abd4e958ec463f04f5a3d674cf504f2e3e36ec6108032fef005e08e7ab2401a0b251a78daa731a72
 DIST Redis-1.976.tar.gz 41598 SHA256 
4a6d40ab1e825c1ef9dcb944e6b163d6aeef89a65f08f95643fd90f690ae866a SHA512 
776ed8b1ce21dbe354c1ab1aa18a3f029899e18d764dece04d261fae029cebda064f29014391d067531befce585b604dac8b833a51db1497a3cef94212009e3b
 WHIRLPOOL 
76fe513a810cdb35d1268994bf6537f02398a2e564052c501b24895188679420b064e0b96befbd3bfc20eba3592b1ceec07eca6781d21b79491a1887fee9bd75

diff --git a/dev-perl/Redis/Redis-1.961.0.ebuild 
b/dev-perl/Redis/Redis-1.961.0.ebuild
deleted file mode 100644
index e8ff419..000
--- a/dev-perl/Redis/Redis-1.961.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=MELO
-MODULE_VERSION=1.961
-inherit perl-module
-
-DESCRIPTION="Perl binding for the Redis database"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   dev-perl/Try-Tiny
-"
-DEPEND="${RDEPEND}
-   test? (
-   virtual/perl-Digest-SHA
-   dev-perl/IO-String
-   virtual/perl-IPC-Cmd
-   dev-perl/Test-Deep
-   dev-perl/Test-Fatal
-   virtual/perl-Test-Simple
-   )
-"



[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-04-30 Thread Andreas Hüttel
commit: 37c0f034631786e631f08da2346e68c24ec48a3c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 20:57:27 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 20:57:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37c0f034

package.mask: Unmask Perl 5.22.2

 profiles/package.mask | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index a635baa..6870aea 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -130,9 +130,6 @@ dev-java/freehep-xml
 # Work in progress. Do not unmask! Unmasking these ebuilds
 # is like fiddling with the infinite improbability drive;
 # expect unexpected, weird, and potentially fatal results.
-=dev-lang/perl-5.22.2*
-=virtual/perl-File-Spec-3.560.100
-=virtual/perl-Module-CoreList-5.201.604.290
 =dev-lang/perl-5.24*
 
 # Michael Sterrett  (06 Apr 2016)



[gentoo-commits] repo/gentoo:master commit in: dev-java/commons-daemon/

2016-04-30 Thread Patrice Clement
commit: 5c13336c0c23554f49c5b38d4fd305c0722508a7
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr 30 20:17:18 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 20:17:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c13336c

dev-java/commons-daemon: Stable for amd64. Retroactively mark stable for the 
remaining arches using the ALLARCHES policy.

Package-Manager: portage-2.2.26

 dev-java/commons-daemon/commons-daemon-1.0.15.ebuild | 20 
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild 
b/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild
index 235c8f0..21a6c2c 100644
--- a/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild
+++ b/dev-java/commons-daemon/commons-daemon-1.0.15.ebuild
@@ -2,12 +2,13 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
+EAPI=5
 
 WANT_AUTOCONF=2.5
+
 JAVA_PKG_IUSE="doc examples source"
 
-inherit eutils autotools java-pkg-2 java-ant-2
+inherit autotools java-pkg-2 java-ant-2
 
 DESCRIPTION="Tools to allow Java programs to run as UNIX daemons"
 SRC_URI="mirror://apache/commons/daemon/source/${P}-src.tar.gz"
@@ -15,16 +16,19 @@ HOMEPAGE="http://commons.apache.org/daemon/;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="amd64 ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE="kernel_linux"
 
-COMMON_DEP="kernel_linux? ( sys-libs/libcap )"
+CDEPEND="kernel_linux? ( sys-libs/libcap )"
 
-DEPEND="${COMMON_DEP}
-   >=virtual/jdk-1.4"
+DEPEND="
+   ${CDEPEND}
+   >=virtual/jdk-1.6
+   source? ( app-arch/zip )"
 
-RDEPEND="${COMMON_DEP}
-   >=virtual/jre-1.4"
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
 
 S="${WORKDIR}/${P}-src"
 



[gentoo-commits] repo/gentoo:master commit in: dev-java/commons-daemon/

2016-04-30 Thread Patrice Clement
commit: d847b06e5cc0535a0034eae503c64ad21edc8e0b
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr 30 20:18:04 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 20:18:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d847b06e

dev-java/commons-daemon: Clean up old.

Package-Manager: portage-2.2.26

 dev-java/commons-daemon/Manifest   |  2 -
 .../commons-daemon/commons-daemon-1.0.7.ebuild | 55 -
 .../commons-daemon/commons-daemon-1.0.9.ebuild | 56 --
 3 files changed, 113 deletions(-)

diff --git a/dev-java/commons-daemon/Manifest b/dev-java/commons-daemon/Manifest
index bf43975..6345573 100644
--- a/dev-java/commons-daemon/Manifest
+++ b/dev-java/commons-daemon/Manifest
@@ -1,3 +1 @@
 DIST commons-daemon-1.0.15-src.tar.gz 291128 SHA256 
11ee57d2c6b281589c1497b2f88180553f06d5ac1560ce1841e05f89f0342432 SHA512 
f20cc8796978fb09b6ecc8d99bb3c8b271b097d74c1f99b286cde213631e7f50a4104f5db2c354f9624ba8b037502d81e327c581b38253b9b216aa2172016e40
 WHIRLPOOL 
6b3b5f5d12fc9fd15345e71a7bf41f88605b00f9bc0ab5ab5fca3752f4bae1adf6ae6b2c3781a68b00d0609c51cb5cb2f4e399effa40f08be0c5dacc2e230d65
-DIST commons-daemon-1.0.7-src.tar.gz 233291 SHA256 
cd782d29b85ac5fadc4b4cf6c3f86248cb31f258f020bd9b5479919effcea8b9 SHA512 
2a6b3c94ba41e89576d7803c80a0a380cf073af34d45e7afd0e529942ab632264ee013aa91022905f62cb9cd92462b15cc81206565664f47ecac77c2d4565284
 WHIRLPOOL 
470dc894beba3b73553768267f5f0eb2ad8bdc419811907bbb23dcdf2f05f1ce4ce060a07ed1e4b6e26c81016e46d93c7b3712b3d5e8a10e38281e2f8e537896
-DIST commons-daemon-1.0.9-src.tar.gz 233786 SHA256 
20aef955914f730209b432a0d2c7dd03384ae4b82178964210046c63e040 SHA512 
13bbf1a0671b29913b82116cbe44977b5eb9fecf8475a2ce0022e1639564808498b03ab6c87704c5e38661baadabc50a6d91e6847e62c8e4987e6fc0c834ed37
 WHIRLPOOL 
a2008fb7e5f6ad2bc84b84315ef26731c5b7b307dfc6c2ba74743e6ef71f20dabc805d4bbb779ecac979ab7a3ba61414aacba55132c5abd685ca305968ce52de

diff --git a/dev-java/commons-daemon/commons-daemon-1.0.7.ebuild 
b/dev-java/commons-daemon/commons-daemon-1.0.7.ebuild
deleted file mode 100644
index 9068ba4..000
--- a/dev-java/commons-daemon/commons-daemon-1.0.7.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="4"
-WANT_AUTOCONF=2.5
-JAVA_PKG_IUSE="doc examples source"
-
-inherit eutils autotools java-pkg-2 java-ant-2
-
-DESCRIPTION="Tools to allow Java programs to run as UNIX daemons"
-SRC_URI="mirror://apache/commons/daemon/source/${P}-src.tar.gz"
-HOMEPAGE="http://commons.apache.org/daemon/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
-IUSE="kernel_linux"
-
-COMMON_DEP="
-   kernel_linux? ( sys-libs/libcap )"
-DEPEND="${COMMON_DEP}
-   >=virtual/jdk-1.4"
-RDEPEND="${COMMON_DEP}
-   >=virtual/jre-1.4"
-
-S="${WORKDIR}/${P}-src"
-
-java_prepare() {
-   cd "${S}/src/native/unix" || die
-   sed -i "s/powerpc/powerpc|powerpc64/g" support/apsupport.m4 || die
-   eautoconf
-}
-
-src_configure() {
-   java-ant-2_src_configure
-   cd "${S}/src/native/unix" || die
-   default
-}
-
-src_compile() {
-   java-pkg-2_src_compile
-   cd "${S}/src/native/unix" || die
-   default
-}
-
-src_install() {
-   dobin src/native/unix/jsvc
-   java-pkg_newjar dist/*.jar
-
-   dodoc README RELEASE-NOTES.txt *.html src/native/unix/CHANGES.txt
-   use doc && java-pkg_dohtml -r dist/docs/*
-   use examples && java-pkg_doexamples src/samples
-   use source && java-pkg_dosrc src/java/* src/native/unix/native
-}

diff --git a/dev-java/commons-daemon/commons-daemon-1.0.9.ebuild 
b/dev-java/commons-daemon/commons-daemon-1.0.9.ebuild
deleted file mode 100644
index 44c9b05..000
--- a/dev-java/commons-daemon/commons-daemon-1.0.9.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-WANT_AUTOCONF=2.5
-JAVA_PKG_IUSE="doc examples source"
-
-inherit eutils autotools java-pkg-2 java-ant-2
-
-DESCRIPTION="Tools to allow Java programs to run as UNIX daemons"
-SRC_URI="mirror://apache/commons/daemon/source/${P}-src.tar.gz"
-HOMEPAGE="http://commons.apache.org/daemon/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~x86-solaris"
-IUSE="kernel_linux"
-
-COMMON_DEP="
-   kernel_linux? ( sys-libs/libcap )"
-DEPEND="${COMMON_DEP}
-   >=virtual/jdk-1.4"
-RDEPEND="${COMMON_DEP}
-   >=virtual/jre-1.4"
-
-S="${WORKDIR}/${P}-src"
-
-java_prepare() {
-   cd "${S}/src/native/unix" || die
-   sed -i "s/powerpc/powerpc|powerpc64/g" support/apsupport.m4 || die
-   eautoconf
-}
-
-src_configure() {
-   java-ant-2_src_configure
-   cd "${S}/src/native/unix" || die
-   default
-}
-
-src_compile() {
- 

[gentoo-commits] repo/gentoo:master commit in: dev-java/jibx/

2016-04-30 Thread Patrice Clement
commit: 64294da8792f870172388c749a3adcdb5ff56738
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr 30 19:43:41 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 19:43:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64294da8

dev-java/jibx: Version bump.

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

Package-Manager: portage-2.2.26

 dev-java/jibx/Manifest  |  3 +++
 dev-java/jibx/jibx-1.2.6.ebuild | 50 +
 2 files changed, 53 insertions(+)

diff --git a/dev-java/jibx/Manifest b/dev-java/jibx/Manifest
index bca3624..7a92560 100644
--- a/dev-java/jibx/Manifest
+++ b/dev-java/jibx/Manifest
@@ -1 +1,4 @@
+DIST jibx-bind-1.2.6-sources.jar 450003 SHA256 
fa0a5b86677e2158c553bed1b10ff03666d3d9c293c584b6b3fc0a2220f73829 SHA512 
8a93aed76d00c465f4fa1d4929bbecc37497b05d7e094b68745bd740bf06cfe87919f3c02b83311766852845e763a2ed51f9ed1d543d03921dea1b67526e7668
 WHIRLPOOL 
3a31eb554bf37bc7a5b6f4e5ed619dc24bdcca3f7e567df9550740b5c31ab4a15d785ecfa9322a385d0a0e49a645777bf4639add32689b0997e0f4421bdfc69d
+DIST jibx-extras-1.2.6-sources.jar 61737 SHA256 
ef92732594b865f91de6a652eb4c7a990b486274ed7286ee21252c8168ca3f7f SHA512 
355e387f92766e2cdd8686e9ed26e80584c668ca6c670532f8f24ae758bc4713cfd505890f0ea634b3380f41429725e2ca719652700b0dc3562d5966b108b3ed
 WHIRLPOOL 
b8b6fe03da804c32dfca3c82d8e7d7049d39147f78646f9f017f71bc5164d0b376c2df716daa7b0b5b311ec2cc56048d63745fdeaa3c565000fe5d907194016b
+DIST jibx-run-1.2.6-sources.jar 194660 SHA256 
64efecf8e948b3e76c701a342164463adbb6a378000ab0b80d3ddf5e27676407 SHA512 
623ef57cc411464fe1b936d9795ba982fb221334ad8ea8448afa73d9c229a2b3dacde1ee424864d1c12830d59ca2e9431d54b5cb0d1e8273b4fd6fbc47a3cf5a
 WHIRLPOOL 
8ae9f1b2bbd504283b7e1a5399c8da396907077fae74a8cf8f6e8f552776536f9e82038803c3f9e0870571fd906af85347104716aa3ef9bfaaf585e8b478a2c1
 DIST jibx_1_1_5.zip 6788994 SHA256 
121dbe5b7338081ffbf09cd1175afe5e1862a63673f467d560e0ab4c27fb3f17 SHA512 
13c3a43a53746e9146d1240d73d1948b3c03ead55aa0e79158c2700a385b0dfba0e31122efd11446c1a46c2b3f85235035dc198c6b3acf2fcefa88b2a0683cc7
 WHIRLPOOL 
427b9970850f5497796e65e43200262e567965bd5ae07f59893f00eba4cf6942a70cf15fb0985d99e26c649e56f175b8dd0b1451b77c27a9859b196bc5cd9d91

diff --git a/dev-java/jibx/jibx-1.2.6.ebuild b/dev-java/jibx/jibx-1.2.6.ebuild
new file mode 100644
index 000..97a0365
--- /dev/null
+++ b/dev-java/jibx/jibx-1.2.6.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Bind XML to Java code"
+HOMEPAGE="http://jibx.sourceforge.net/;
+SRC_URI="
+   
https://repo1.maven.org/maven2/org/${PN}/${PN}-extras/${PV}/${PN}-extras-${PV}-sources.jar
+   
https://repo1.maven.org/maven2/org/${PN}/${PN}-bind/${PV}/${PN}-bind-${PV}-sources.jar
+   
https://repo1.maven.org/maven2/org/${PN}/${PN}-run/${PV}/${PN}-run-${PV}-sources.jar
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris"
+IUSE=""
+
+CDEPEND="
+   dev-java/bcel:0
+   dev-java/xpp3:0
+   dev-java/jdom:0
+   dev-java/dom4j:1
+   dev-java/log4j:0
+   dev-java/joda-time:0
+   dev-java/ant-core:0"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
+
+DEPEND="
+   ${CDEPEND}
+   >=virtual/jdk-1.6
+   source? ( app-arch/zip )"
+
+JAVA_GENTOO_CLASSPATH="
+   joda-time
+   ant-core
+   dom4j-1
+   log4j
+   jdom
+   bcel
+   xpp3
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Wx/

2016-04-30 Thread Andreas Hüttel
commit: 70c66c40396792a5fd723057412d6e17b11bc62a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 19:29:39 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 19:29:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70c66c40

dev-perl/Wx: Disable one misbehaving test

Package-Manager: portage-2.2.28

 dev-perl/Wx/Wx-0.992.800.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Wx/Wx-0.992.800.ebuild b/dev-perl/Wx/Wx-0.992.800.ebuild
index 99b7666..9fadda9 100644
--- a/dev-perl/Wx/Wx-0.992.800.ebuild
+++ b/dev-perl/Wx/Wx-0.992.800.ebuild
@@ -39,6 +39,9 @@ src_prepare() {
 }
 
 src_test() {
-   perl_rm_files t/12_pod.t
+   # the webview/t/03_threads.t test tends to hang or crash in weird
+   # ways depending on local configuration. eg, backtraces involving
+   # all of webkit-gtk, kpartsplugin and kdelibs...
+   perl_rm_files t/12_pod.t ext/webview/t/03_threads.t
virtx perl-module_src_test
 }



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde-dev-scripts/

2016-04-30 Thread Michael Palimaka
commit: 2b6cbd10d96fb6cbcc83218c7a104ce247926266
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Apr 30 19:02:07 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Apr 30 19:02:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b6cbd10

kde-apps/kde-dev-scripts: add missing dependency

Gentoo-bug: 571278

Package-Manager: portage-2.2.28

 kde-apps/kde-dev-scripts/kde-dev-scripts-15.12.3.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/kde-apps/kde-dev-scripts/kde-dev-scripts-15.12.3.ebuild 
b/kde-apps/kde-dev-scripts/kde-dev-scripts-15.12.3.ebuild
index ac26258..a72b313 100644
--- a/kde-apps/kde-dev-scripts/kde-dev-scripts-15.12.3.ebuild
+++ b/kde-apps/kde-dev-scripts/kde-dev-scripts-15.12.3.ebuild
@@ -11,7 +11,12 @@ DESCRIPTION="KDE Development Scripts"
 KEYWORDS=" ~amd64 ~x86"
 IUSE=""
 
-DEPEND="$(add_frameworks_dep kdoctools)" # to use ECM instead of kdelibs4
+# kdelibs4support - required for kdex.dtd
+# kdoctools - to use ECM instead of kdelibs4
+DEPEND="
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kdoctools)
+"
 RDEPEND="
app-arch/advancecomp
media-gfx/optipng



[gentoo-commits] proj/kde:master commit in: kde-apps/kde-dev-scripts/

2016-04-30 Thread Michael Palimaka
commit: 63dc21718ab9ce880f9fdf973d56e6695ec1ca58
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Apr 30 19:01:00 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Apr 30 19:01:00 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=63dc2171

kde-apps/kde-dev-scripts: add missing dependency

Gentoo-bug: 571278

Package-Manager: portage-2.2.28

 kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.0.ebuild   | 7 ++-
 kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.49..ebuild | 7 ++-
 kde-apps/kde-dev-scripts/kde-dev-scripts-.ebuild  | 7 ++-
 3 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.0.ebuild 
b/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.0.ebuild
index c723ead..a320756 100644
--- a/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.0.ebuild
+++ b/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.0.ebuild
@@ -11,7 +11,12 @@ DESCRIPTION="KDE Development Scripts"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-DEPEND="$(add_frameworks_dep kdoctools)" # to use ECM instead of kdelibs4
+# kdelibs4support - required for kdex.dtd
+# kdoctools - to use ECM instead of kdelibs4
+DEPEND="
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kdoctools)
+"
 RDEPEND="
app-arch/advancecomp
media-gfx/optipng

diff --git a/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.49..ebuild 
b/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.49..ebuild
index 54ff3e9..5131afc 100644
--- a/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.49..ebuild
+++ b/kde-apps/kde-dev-scripts/kde-dev-scripts-16.04.49..ebuild
@@ -11,7 +11,12 @@ DESCRIPTION="KDE Development Scripts"
 KEYWORDS=""
 IUSE=""
 
-DEPEND="$(add_frameworks_dep kdoctools)" # to use ECM instead of kdelibs4
+# kdelibs4support - required for kdex.dtd
+# kdoctools - to use ECM instead of kdelibs4
+DEPEND="
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kdoctools)
+"
 RDEPEND="
app-arch/advancecomp
media-gfx/optipng

diff --git a/kde-apps/kde-dev-scripts/kde-dev-scripts-.ebuild 
b/kde-apps/kde-dev-scripts/kde-dev-scripts-.ebuild
index 54ff3e9..5131afc 100644
--- a/kde-apps/kde-dev-scripts/kde-dev-scripts-.ebuild
+++ b/kde-apps/kde-dev-scripts/kde-dev-scripts-.ebuild
@@ -11,7 +11,12 @@ DESCRIPTION="KDE Development Scripts"
 KEYWORDS=""
 IUSE=""
 
-DEPEND="$(add_frameworks_dep kdoctools)" # to use ECM instead of kdelibs4
+# kdelibs4support - required for kdex.dtd
+# kdoctools - to use ECM instead of kdelibs4
+DEPEND="
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kdoctools)
+"
 RDEPEND="
app-arch/advancecomp
media-gfx/optipng



[gentoo-commits] repo/gentoo:master commit in: dev-ml/pxp/

2016-04-30 Thread Alexis Ballier
commit: a1c0eded3e5b2beb9bce7b26c6307438d604c7c3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 18:57:27 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 18:59:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1c0eded

dev-ml/pxp: bump ocamldep to 4, bug #581026

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/pxp/pxp-1.2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/pxp/pxp-1.2.8.ebuild b/dev-ml/pxp/pxp-1.2.8.ebuild
index 1937ee7..0e272ed 100644
--- a/dev-ml/pxp/pxp-1.2.8.ebuild
+++ b/dev-ml/pxp/pxp-1.2.8.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~ppc ~x86"
 SLOT="0/${PV}"
 DEPEND=">=dev-ml/pcre-ocaml-4.31:=
>=dev-ml/ulex-0.5:=
-   >=dev-ml/ocamlnet-0.98:=
+   >=dev-ml/ocamlnet-4:=
>=dev-lang/ocaml-3.10.2:=[ocamlopt?]
|| ( dev-ml/camlp4:= 

[gentoo-commits] repo/gentoo:master commit in: eclass/

2016-04-30 Thread Michael Palimaka
commit: 1f5de2a638d78d1d5b436612a5581c78223f5815
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Apr 27 18:36:08 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Apr 30 18:14:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f5de2a6

kde5.eclass: improve handling of nls USE flag

Linguas was being removed unconditionally on packages without an nls USE flag.

 eclass/kde5.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 3b454ef..4d0b2a9 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -392,8 +392,8 @@ kde5_src_prepare() {
fi
 
# drop translations when nls is not wanted
-   if [[ -d po ]] && ! use_if_iuse nls ; then
-   rm -rf po || die
+   if [[ -d po ]] && in_iuse nls && ! use nls ; then
+   rm -r po || die
fi
 
# enable only the requested translations



[gentoo-commits] repo/gentoo:master commit in: dev-ml/camlp5/

2016-04-30 Thread Alexis Ballier
commit: e95f84c2e0cdf89b1b46206f7ba8a4130c2bb341
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 18:08:44 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 18:08:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95f84c2

dev-ml/camlp5: propagate ~alpha to newest versions

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/camlp5/camlp5-6.15.ebuild | 2 +-
 dev-ml/camlp5/camlp5-6.16.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/camlp5/camlp5-6.15.ebuild b/dev-ml/camlp5/camlp5-6.15.ebuild
index 4fcf3b9..c27411a 100644
--- a/dev-ml/camlp5/camlp5-6.15.ebuild
+++ b/dev-ml/camlp5/camlp5-6.15.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://camlp5.gforge.inria.fr/distrib/src/${MY_P}.tgz;
 
 LICENSE="BSD"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-fbsd"
 IUSE="doc +ocamlopt"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]"

diff --git a/dev-ml/camlp5/camlp5-6.16.ebuild b/dev-ml/camlp5/camlp5-6.16.ebuild
index 4fcf3b9..c27411a 100644
--- a/dev-ml/camlp5/camlp5-6.16.ebuild
+++ b/dev-ml/camlp5/camlp5-6.16.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://camlp5.gforge.inria.fr/distrib/src/${MY_P}.tgz;
 
 LICENSE="BSD"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-fbsd"
 IUSE="doc +ocamlopt"
 
 DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/camlp5/

2016-04-30 Thread Alexis Ballier
commit: b7e586a2ff0a4b1a699069dd38c1592f625ceacf
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 18:07:26 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 18:07:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e586a2

dev-ml/camlp5: bump to 6.16

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/camlp5/Manifest   |  1 +
 dev-ml/camlp5/camlp5-6.16.ebuild | 67 
 2 files changed, 68 insertions(+)

diff --git a/dev-ml/camlp5/Manifest b/dev-ml/camlp5/Manifest
index d38913a..f4fb001 100644
--- a/dev-ml/camlp5/Manifest
+++ b/dev-ml/camlp5/Manifest
@@ -1,2 +1,3 @@
 DIST camlp5-6.14.tgz 748674 SHA256 
09f9ed12893d2ec39c88106af2306865c966096bedce0250f2fe52b67d2480e2 SHA512 
7dd57b8725953099726fc2e5f6dda01ed74485a4bbf41cb30ccd2163ee38bc6dff36fd83069c58d7990522527d266c9e180a8e333b36a42bc216315dc88a25e9
 WHIRLPOOL 
305bb842e449775352cbbf3c89a301a188419c10462f0959b00e181596218b5251dac50856f152ad471fd680e557e6595978c395e9c2864c38ddacd7287c4e3b
 DIST camlp5-6.15.tgz 756199 SHA256 
2e0e1e31e0537f2179766820dd9bd0a4d424bc5ab9c610e6dbf9145f27747f2b SHA512 
658ff32d1d124e91e85d8eba47039bb75573b3807d67fae723335bb06d3237c4151f6d671fb3b068ec4ebffdde03f7956174c9f0ca29eafa5990974987bc2aca
 WHIRLPOOL 
d449b7a485967b79efbc030527513d99dd19d4856ebc132133d09d7028c210b4314ac401de65ac7671d3066f6a2184df157a0091fc173f4d6e7ae8bc7ad2c432
+DIST camlp5-6.16.tgz 759877 SHA256 
fd446cff6421f5144a521c7cecfdc7217b1424908186cddd3d5be543b35058b1 SHA512 
b1bfa271bb7df169c5b0d0f0a20038ab95c2101475e1729f5a779fea0872165f73b04e0cd792e9fbc31e81bb37cbef06a9761f7748ea1ab87753dbd20202d5ed
 WHIRLPOOL 
433a85b393ee6498c6ab86b7feb2cfec8188526ca628c796efafd1d1c9f6204e737074a63e9e448ef757ba9b7b1dce06433b58278352155f5405ea4a76bb6303

diff --git a/dev-ml/camlp5/camlp5-6.16.ebuild b/dev-ml/camlp5/camlp5-6.16.ebuild
new file mode 100644
index 000..4fcf3b9
--- /dev/null
+++ b/dev-ml/camlp5/camlp5-6.16.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit multilib findlib eutils
+
+MY_P=${P%_p*}
+DESCRIPTION="A preprocessor-pretty-printer of ocaml"
+HOMEPAGE="http://camlp5.gforge.inria.fr/;
+SRC_URI="http://camlp5.gforge.inria.fr/distrib/src/${MY_P}.tgz;
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="doc +ocamlopt"
+
+DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]"
+RDEPEND="${DEPEND}"
+
+PATCHLEVEL=${PV#*_p}
+PATCHLIST=""
+
+if [ "${PATCHLEVEL}" != "${PV}" ] ; then
+   for (( i=1; i<=PATCHLEVEL; i++ )) ; do
+   SRC_URI="${SRC_URI}
+   
http://pauillac.inria.fr/~ddr/camlp5/distrib/src/patch-${PV%_p*}-${i} -> 
${MY_P}-patch-${i}.patch"
+   PATCHLIST="${PATCHLIST} ${MY_P}-patch-${i}.patch"
+   done
+fi
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   for i in ${PATCHLIST} ; do
+   epatch "${DISTDIR}/${i}"
+   done
+}
+
+src_configure() {
+   ./configure \
+   --strict \
+   -prefix /usr \
+   -bindir /usr/bin \
+   -libdir /usr/$(get_libdir)/ocaml \
+   -mandir /usr/share/man || die "configure failed"
+}
+
+src_compile(){
+   emake out
+   if use ocamlopt; then
+   emake  opt
+   emake  opt.opt
+   fi
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   # findlib support
+   insinto "$(ocamlfind printconf destdir)/${PN}"
+   doins etc/META
+
+   use doc && dohtml -r doc/*
+
+   dodoc CHANGES DEVEL ICHANGES README UPGRADING MODE
+}



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

2016-04-30 Thread Anthony G. Basile
commit: d7e47ed2bbe42ed83a1521bf6a03f81a41be6696
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 17:53:38 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 17:53:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7e47ed2

sys-kernel/hardened-sources: remove oldest stable version

Package-Manager: portage-2.2.26

 sys-kernel/hardened-sources/Manifest   |  5 ---
 .../hardened-sources-4.1.7-r1.ebuild   | 45 --
 2 files changed, 50 deletions(-)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index 7b1b717..9351b5e 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -1,22 +1,17 @@
-DIST deblob-4.1 130695 SHA256 
2888a5a3b5e8e9ec242e4d702582fa1d739a1274fcd94643a9fb3516a210a8a7 SHA512 
b861b9b53f9295e5e993784031ce57cf8cddc418184ec00c28ed92c9e7660406e0ede581a93d0def36e7847b8e068c8ca6c4dfdd65c15cb174d6c5803c16214a
 WHIRLPOOL 
b90f55dd8702eb254968ed7689b50859833ed362e9aa1720ade96aa1f6f84e8f90f5d1eee034c8535e8bf767c0b5f8b0bc559219e8d81d4c6ed53bd5cfe5e65e
 DIST deblob-4.3 137019 SHA256 
317eb90f128fc05bcf0a01eb7f167f9b5447563b0af4cef4270b774ad64dbdf8 SHA512 
e1f98cfcac9cbbe3e7042bc427c1afb5024088d0846a1eb806c7c46616ee77cbbeb63c52f7c1229ff54cda74605f9a6775833e1f5d7ba35a9ae554ca05fd7fc0
 WHIRLPOOL 
9d42765fd0592f7c8e01f5df78510deafbfff2b60128ad26c2412bdab4b02c72fc8dd0c7c0180176b5399de66cc85f625abf2968c049f8a3b9ebeb5d8c5c71f0
 DIST deblob-4.4 137370 SHA256 
7cf11c8594db0d2a10a1b02390c9ff8916f1d2a1fe9d59058ca45485500c5274 SHA512 
ea5f2f2cdbc97bdc90c2131f846761dc1630a53986db10d8e9d07d1ddee12a9d878c57790edd3ecc75ed9792d479b7b726c39d688a3926e850608c81b1b78a3a
 WHIRLPOOL 
bedd494be2032ce4b8911f25df906055d019af31ea6548b885482f870cd5313e09e7fb544fc8db268b3498cc18c199ae5701023839c972b48dbd8128239eeb75
 DIST deblob-4.5 140464 SHA256 
62e8b8f23e705d6643ba7c94a79a25f8dd44e73e6348785f4b4ffb940df4734c SHA512 
0f72bbe835d285a51c8ca45f75a6e8bb74d2cbc82f98337d45ab63e7cda1848fa71af933d635eacf2c5af0a86a6854fc73a6512fd314c55db666b8c51dad028d
 WHIRLPOOL 
6d8b7e416afdfe75b43414c8d33394b0341fa7f8ec169e5752d16b712b4d8fd3004c3b8e1aab012eafafb6a0cf1073585acd85aa377ccc0bfd0d78dc666f8f28
-DIST deblob-check-4.1 674781 SHA256 
54aa33e23a31ead6f982b830be86003c306b88f0d0a9f96c7dc66fe7cd274acb SHA512 
51fe9d70d723992aaf70f8bfcfcc12ecfedd7a039402ddae07858fb087693b00cd80d1e0e1a5053e049f2a2b8c58ed23e4598e2dae902c499c08bc2eeb33
 WHIRLPOOL 
d2c22280e12863793f8e866b126be53ee10d564373addfe9399b2afe22dd7584513c050f334ea08e6d63dd27a1574f2754456bad9d0a42e8c8d9995eec27aed0
 DIST deblob-check-4.3 688368 SHA256 
9dff222415c2ead1edba2f6755926d6786225814d87dc3624605f99a4b760a5a SHA512 
2029b4765a4f83b71370dc4439526daff57be32f8692a329d500df82019a5381849ca979c0ae3761c2efcc04590c031560f0e25de50e71f476618df529a1445a
 WHIRLPOOL 
6dbdcfe6653e751ff00ad91f45c803bdb196fdb9c895ddffaec18a111a19720d50a77485ff8ce228287217ad2e98b6f9e9c65a3c6476f195cbf9e3b7969be34a
 DIST deblob-check-4.4 694225 SHA256 
e142bafdd5a05280d5280fbf109aadab3af9ce71152ab2d27ad41e96766e0c3e SHA512 
6554ae567566da4d30e94a37622f88343b8e96ab39a9204fee34de4ddb5dac8c4906b25843b63c2388d03a4441821c25d395b3c39fc875c498a69e677a4f0cb5
 WHIRLPOOL 
414f60a64a2c14f01eedebc84f5adfabf0562bcf76545a57e757cb6ac914ffc49c90c329eedd1aafb1ee752bfc082fd4f6af173774f4f853ddd637525fbeeb9b
 DIST deblob-check-4.5 698696 SHA256 
a5e91ae27c122fb635d7619e5bb2fdf67038222e99b874733255d273627ed085 SHA512 
2dcbb64a2bb6247f0bb2b768dded6daed019bc4643bbb8dcf17528f17cfeb09ba9a428bb63526eafd38908269b50c588f77a9ce6af95bd3b0c7f20263792f6d4
 WHIRLPOOL 
5e89ddb75c7d6d5bb7142dc9c878d63c80252541c1bb264b7ee30a2ed868fa69fa57883986b5cf2685b1ab53aa00e52c9cbee4161d361de7a5592de7dc126b40
-DIST genpatches-4.1-11.base.tar.xz 233284 SHA256 
4189cfd2c7d1a1d7f28c8a596ad36741ce087c7c4cfbe0d5d20a0ee889328d18 SHA512 
e5944edf832070d6072ab8efc242165afcfb689874687196c96389c6176ca9772e72e82836aba40ad05840536acae6efd6e72890efd692d903018d47489a90f8
 WHIRLPOOL 
13cb400b330443025f77dee6c710ca9886991a7032fa3ff925d53ed4fc03d07ece5647dca65de1a149073362db1d7a0b374a21d980eafcae09a4b01584c64cb6
 DIST genpatches-4.3-4.base.tar.xz 75572 SHA256 
c0c073f12a4f1c0adf9d3865fe5d16dc43ea0e5c95c0867868e16e57f2fd6235 SHA512 
a16b75f8fcd868d6f9bc2b91318eb8b8ec4db2b622d244e750d4176c4e8225808751c543c54d768fbd88785da656e9f60d8ef8bc22672b5cb1038573c0c366e1
 WHIRLPOOL 
04c723b71f440035f57684088a47e83430f1c5b057951e037f128f3681f16669eca16f2f1b8d4b7be4a617420131277d1fe415503a679b83a081e06635df46e3
 DIST genpatches-4.4-3.base.tar.xz 26508 SHA256 
76f5685698b02b81643d6b2edcd53217e0f6fa00e068a138f2eb3bc596dec2e5 SHA512 
255e2ef79c56699e5b032fa392b2748570ce96c74f1172f4a4c1b4d22f8b8b0a9462c388028a0cad92e821815d39cfa6450f171d81fed5f274dce03979c39322
 WHIRLPOOL 
6da9edc7936f8857b929e589b2adcb17363a76ec5d85b3406fcb8308d6cb2da924f1f9af5062f85ddf4d415ca9d9524b731e8c4e0cde756e14ccc122a6e75c74
 

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

2016-04-30 Thread Anthony G. Basile
commit: 5c2e945afeef01bd0c70e4adeebd627050f2db7c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 17:52:49 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 17:52:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c2e945a

sys-kernel/hardened-sources: remove older unstable versions

Package-Manager: portage-2.2.26

 sys-kernel/hardened-sources/Manifest   |  4 --
 .../hardened-sources-4.4.6-r2.ebuild   | 45 --
 .../hardened-sources/hardened-sources-4.4.7.ebuild | 45 --
 .../hardened-sources/hardened-sources-4.4.8.ebuild | 45 --
 4 files changed, 139 deletions(-)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index 57cc2b1..7b1b717 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -9,15 +9,11 @@ DIST deblob-check-4.5 698696 SHA256 
a5e91ae27c122fb635d7619e5bb2fdf67038222e99b8
 DIST genpatches-4.1-11.base.tar.xz 233284 SHA256 
4189cfd2c7d1a1d7f28c8a596ad36741ce087c7c4cfbe0d5d20a0ee889328d18 SHA512 
e5944edf832070d6072ab8efc242165afcfb689874687196c96389c6176ca9772e72e82836aba40ad05840536acae6efd6e72890efd692d903018d47489a90f8
 WHIRLPOOL 
13cb400b330443025f77dee6c710ca9886991a7032fa3ff925d53ed4fc03d07ece5647dca65de1a149073362db1d7a0b374a21d980eafcae09a4b01584c64cb6
 DIST genpatches-4.3-4.base.tar.xz 75572 SHA256 
c0c073f12a4f1c0adf9d3865fe5d16dc43ea0e5c95c0867868e16e57f2fd6235 SHA512 
a16b75f8fcd868d6f9bc2b91318eb8b8ec4db2b622d244e750d4176c4e8225808751c543c54d768fbd88785da656e9f60d8ef8bc22672b5cb1038573c0c366e1
 WHIRLPOOL 
04c723b71f440035f57684088a47e83430f1c5b057951e037f128f3681f16669eca16f2f1b8d4b7be4a617420131277d1fe415503a679b83a081e06635df46e3
 DIST genpatches-4.4-3.base.tar.xz 26508 SHA256 
76f5685698b02b81643d6b2edcd53217e0f6fa00e068a138f2eb3bc596dec2e5 SHA512 
255e2ef79c56699e5b032fa392b2748570ce96c74f1172f4a4c1b4d22f8b8b0a9462c388028a0cad92e821815d39cfa6450f171d81fed5f274dce03979c39322
 WHIRLPOOL 
6da9edc7936f8857b929e589b2adcb17363a76ec5d85b3406fcb8308d6cb2da924f1f9af5062f85ddf4d415ca9d9524b731e8c4e0cde756e14ccc122a6e75c74
-DIST genpatches-4.4-8.base.tar.xz 243736 SHA256 
70a54851283def9013601bd8ea299c04850410001e36d619fa6e83b64a4f0907 SHA512 
fde00c28bc8da96aee2378d7ea36c85a5f8520c271e0251c7bc7472cd3c395dc2c3f5168f38b1bd10e6b5189bedc8b10780899468a368f8e9be1811bc31c0ab1
 WHIRLPOOL 
1190d8167c05062a53a7cc66a36310b42f6b90a711a497543b68626e1d6ca3fbc1c57a37dfa2a1fc98ed4f3b1dae5d7e77b74f3d708bc830b2bd5c31fc797b74
 DIST genpatches-4.4-9.base.tar.xz 304360 SHA256 
e9ba25000126256be414a273b154accc51ef523d236c35e2214ee75e243aa71f SHA512 
ef239c362defeafc92eae84ede7a07820ddf0c01002f52a58d39d7b0dcdfd83af2d5fa4d2ee3d2c57e4c89a30d4fbf05dc5519886b8f55bf148ce4197b85d465
 WHIRLPOOL 
88963d0eac645d453ccf1cfe0e30777090240f18f20ccf735b7551a57365c2505849b13c8cd4092542f6baf6d251eb0e9c44fbba118d9677f9cd334e0ef10861
 DIST genpatches-4.5-3.base.tar.xz 79372 SHA256 
989656536ab8dc8e42e930b3e661eb3920ff223b97503d5e4edb695892947d9e SHA512 
8eaa2a1f2e5ad1ede4bfa92e4a5ad46cd07c94c39e491ab39a5dc026782c53014a38733b8e47f1f09985750626cfdc39b10d99364b37bf74423446d6452c8424
 WHIRLPOOL 
48c94b3e86c5b87b686ea51e040770323b5c0ba269b820de8233b52c2683a7393d8c344f869261c5a44dacdf8bb64cffe47d2a2981009c46875d7961b9e807fc
 DIST hardened-patches-4.1.7-2.extras.tar.bz2 1419438 SHA256 
c8c0fc29c39eafbcea107b8237087fd0e185297e2df9ffeaafc6b3a4736b7a45 SHA512 
dac324e265174777d8b9c2369f57e52833b4228b3291e41952a9791ce41b9abf378e1d9a0521566c3a0e42de15a16afa5fe379985b7fee78b1b2b3b815d7cdd4
 WHIRLPOOL 
7638001f1b95e4af1d051b13648f486aa0eca524157e1a46dd2023fbd86313e0a5e8043653d7388b7286d42cc6e7c0f07cde2de3d5aee6cc058d12538a0980c1
 DIST hardened-patches-4.3.3-5.extras.tar.bz2 1649484 SHA256 
2a62a5eb4b98f4fbeb43511a0573d58226277d3112401abec37355d85e01ae23 SHA512 
09b7272af44fb1e29cba857f7c3305d97f8997881f228a2f2eb56dda909ae5402a69336c6fccdf3920f8788a7922f10b0977517f5918d44702e1a9b668c708c7
 WHIRLPOOL 
efc152c7680b84b682f9f6857b8c6b2b66b6d505f76b311a8e3289a606f46d4944d90478ff93e3656f41c367fdbcd65dcf3043842354b26b669b462ce49f3471
 DIST hardened-patches-4.4.2-1.extras.tar.bz2 1721230 SHA256 
81f1417d210e0a6d9f5e180b9f828beb87ddc27571a16c40552d0fa1979982ec SHA512 
599dedbef6fa26efc2a62c19e0536accedff6c60968294e9a7246c9844b26491b4414b1b40106eee9bb7540f8cd4ae74ab3720029b0730ce5541e005ba60cb9b
 WHIRLPOOL 
84e22467a6dcc738043e47274ab2476b69f1796f1f23e3ca4ed8e244dd73a7e4998de683c1d93baccdd41eb232327d4ef1eb07d01b8a790510b8690334032f02
-DIST hardened-patches-4.4.6-3.extras.tar.bz2 1697719 SHA256 
578fb7d0d6caf2d1f596bda34d00a18c96aa7103cb58cc30724607e24fdb1d11 SHA512 
802e22cd1e2837ad4ec88ed8086b7ee868e389e4717b9299b433fb259681e106153e4ec9058534695f7c6f94ae4f163f3228f69cbd7138d403d79c81d8f36924
 WHIRLPOOL 

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

2016-04-30 Thread Anthony G. Basile
commit: 20e96a032f30e769839a66131a7665a5dedb6b0b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 17:51:43 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 17:51:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20e96a03

sys-kernel/hardened-sources: 4.4.8-r1 stable on amd64 and x86

Package-Manager: portage-2.2.26

 sys-kernel/hardened-sources/hardened-sources-4.4.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/hardened-sources/hardened-sources-4.4.8-r1.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-4.4.8-r1.ebuild
index 01a347d..1bf456d 100644
--- a/sys-kernel/hardened-sources/hardened-sources-4.4.8-r1.ebuild
+++ b/sys-kernel/hardened-sources/hardened-sources-4.4.8-r1.ebuild
@@ -25,7 +25,7 @@ DESCRIPTION="Hardened kernel sources (kernel series 
${KV_MAJOR}.${KV_MINOR})"
 HOMEPAGE="http://www.gentoo.org/proj/en/hardened/;
 IUSE="deblob"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 RDEPEND=">=sys-devel/gcc-4.5"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/

2016-04-30 Thread Alexis Ballier
commit: 0298fbdab399338b06881993005b0ed6dab8c287
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 17:17:30 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 17:17:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0298fbda

dev-ml/utop: bump to 1.19.2

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/utop/Manifest   |  1 +
 dev-ml/utop/utop-1.19.2.ebuild | 59 ++
 2 files changed, 60 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index f1e0162..67411ff 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,3 +1,4 @@
 DIST utop-1.18.2.tar.gz 101774 SHA256 
f55c218d6a58577adaec2aaa68f01af653d96db7aea21bc483f89b97d4efbb38 SHA512 
7c5365d2effe74c4db17ec2c3696db3c88582c3cdc64a4750fe308f1b33d8ff95d14fa039aa38ca92592aa2ff6bd99f88efcb8327a441ff0f111c99e56397b3f
 WHIRLPOOL 
39abfaa7881e34a6ed1cbcbcd700186910e6db7b980354f7f14442512c8ae2977234fbeb3164703fedf6bf5ed59a164ece716e7fcf942624a2f3c83b6d14da87
 DIST utop-1.19.1.tar.gz 104347 SHA256 
dbda26873180dcd17be33be4fc600794f20454ff5ec080d0b1b7e6b0e5ded636 SHA512 
1caf208b96bdae214a969e2551be428dfe9ba3ded4adb2a0ac38f2ef1a066f63fa3e4ad70fb960525c829ddf78911574b9192eba66465cb471692e975e9a2c93
 WHIRLPOOL 
95bb9123630272216245ea8d2f8131320f4864906a30af7be451962272fca5a83efb8adef5e507d7f49be995190c9b552b0660915755641dee9f818746c03e2c
+DIST utop-1.19.2.tar.gz 104616 SHA256 
509ab26f13cf5d0cf401fb0a313751ed19727b6dff65ef7df81ac05cf15cbe43 SHA512 
4160b0576b1e860a54ecf8487bb9cd7259cc434d06a4da409671337bcc8342e4738cd5fa864ece54fa2b9f811597e8462556cf81d184d9d9c81e4463d76559c6
 WHIRLPOOL 
aa608b95d8846fb48cafcea5d34a4a4fb984bf2265387378be1f3496afc63cbfcca6c2ca319503e7a942b81d1937acd44a9478256a652a32a12f584ca785f7d1
 DIST utop-1.19.tar.gz 104253 SHA256 
fbfd0fd0d45f4bd85c11c4c96ba8f8d12cb89378c05a61bae9ae35b87eced11e SHA512 
d2943f47f8e2e508a33e09b60aef03e43ae82ae90e2d9378887b109178dbea9e64cc989042c8f9b68dce5ba33bb0b6483cd3920a35939f6aa89458a2d84847df
 WHIRLPOOL 
f62e29c2da97c39d73d5ee287bdf690dbaf3f4aa8aa544ecf8e1db77096dbe4672584fe899f5a1c7f0cd3f4693f582f1693744b4e41a1daa69f80782b1c43fb9

diff --git a/dev-ml/utop/utop-1.19.2.ebuild b/dev-ml/utop/utop-1.19.2.ebuild
new file mode 100644
index 000..8da80eb
--- /dev/null
+++ b/dev-ml/utop/utop-1.19.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+inherit oasis elisp-common
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop;
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="camlp4 emacs"
+
+DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+   >=dev-ml/lambda-term-1.2:=
+   >=dev-ml/zed-1.2:=
+   >=dev-ml/cppo-1.0.1:=
+   emacs? ( virtual/emacs )
+   camlp4? ( || ( dev-ml/camlp4:= 

[gentoo-commits] repo/gentoo:master commit in: dev-java/commons-launcher/, dev-java/commons-launcher/files/

2016-04-30 Thread Patrice Clement
commit: b964980b59be66e147e127b86a445f14b702c3d7
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr 30 16:53:06 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 16:54:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b964980b

dev-java/commons-launcher: Clean up old.

Package-Manager: portage-2.2.26

 .../commons-launcher-1.1-r1.ebuild | 40 --
 dev-java/commons-launcher/files/1.1-javadoc.patch  | 24 -
 2 files changed, 64 deletions(-)

diff --git a/dev-java/commons-launcher/commons-launcher-1.1-r1.ebuild 
b/dev-java/commons-launcher/commons-launcher-1.1-r1.ebuild
deleted file mode 100644
index 3308b11..000
--- a/dev-java/commons-launcher/commons-launcher-1.1-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="examples doc source"
-
-inherit base java-pkg-2 java-ant-2
-
-DESCRIPTION="Commons-launcher eliminates the need for a batch or shell script 
to launch a Java class"
-HOMEPAGE="http://commons.apache.org/launcher/;
-SRC_URI="mirror://apache/jakarta/${PN/-//}/source/${P}-src.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=">=virtual/jdk-1.4"
-RDEPEND=">=virtual/jre-1.4
-   dev-java/ant-core"
-
-S=${WORKDIR}/${PN}
-
-# https://issues.apache.org/jira/browse/LAUNCHER-7
-PATCHES=( "${FILESDIR}/1.1-javadoc.patch" )
-
-src_compile() {
-   java-ant_rewrite-classpath "${S}/build.xml"
-   EANT_GENTOO_CLASSPATH="ant-core" java-pkg-2_src_compile
-}
-
-# Standard commons build.xml but no tests actually implemented
-src_test() { :; }
-
-src_install() {
-   java-pkg_dojar dist/bin/*.jar || die "java-pkg_dojar died"
-   dodoc README.txt NOTICE.txt || die
-   use doc && java-pkg_dojavadoc dist/docs/api
-   use examples && java-pkg_doexamples example
-   use source && java-pkg_dosrc src/java/*
-}

diff --git a/dev-java/commons-launcher/files/1.1-javadoc.patch 
b/dev-java/commons-launcher/files/1.1-javadoc.patch
deleted file mode 100644
index d83229a..000
--- a/dev-java/commons-launcher/files/1.1-javadoc.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur src.old/java/org/apache/commons/launcher/types/ArgumentSet.java 
src/java/org/apache/commons/launcher/types/ArgumentSet.java
 src.old/java/org/apache/commons/launcher/types/ArgumentSet.java
2004-02-28 13:52:20.0 +0200
-+++ src/java/org/apache/commons/launcher/types/ArgumentSet.java
2007-05-05 16:26:13.0 +0300
-@@ -18,7 +18,7 @@
- 
- 
- /**
-- * A class that represents a set of nested  elements.
-+ * A class that represents a set of nested arg elements.
-  *
-  * @author Patrick Luby
-  */
-diff -ur 
src.old/java/org/apache/commons/launcher/types/ConditionalArgument.java 
src/java/org/apache/commons/launcher/types/ConditionalArgument.java
 src.old/java/org/apache/commons/launcher/types/ConditionalArgument.java
2004-02-28 14:43:31.0 +0200
-+++ src/java/org/apache/commons/launcher/types/ConditionalArgument.java
2007-05-05 16:26:50.0 +0300
-@@ -24,7 +24,7 @@
- import org.apache.tools.ant.types.Path;
- 
- /**
-- * A class that represents nested  or  elements. This class
-+ * A class that represents nested arg or jvmarg elements. 
This class
-  * provides the same functionality as the class that represents these same
-  * elements in a "java" task. In addition, this class supports conditional 
"if"
-  * and "unless" attributes.



[gentoo-commits] repo/gentoo:master commit in: dev-java/commons-launcher/

2016-04-30 Thread Patrice Clement
commit: 82b8da7814f2de9c9a046d68bc7cff99d7436018
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr 30 16:52:16 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 16:53:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82b8da78

dev-java/commons-launcher: Stable for amd64. Retroactively mark stable for the 
remaining arches using the ALLARCHES policy.

Package-Manager: portage-2.2.26

 dev-java/commons-launcher/commons-launcher-1.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/commons-launcher/commons-launcher-1.1-r2.ebuild 
b/dev-java/commons-launcher/commons-launcher-1.1-r2.ebuild
index 62e0414..eb9a236 100644
--- a/dev-java/commons-launcher/commons-launcher-1.1-r2.ebuild
+++ b/dev-java/commons-launcher/commons-launcher-1.1-r2.ebuild
@@ -8,13 +8,13 @@ JAVA_PKG_IUSE="examples doc source"
 
 inherit java-pkg-2 java-pkg-simple
 
-DESCRIPTION="Commons-launcher eliminates the need for a batch or shell script 
to launch a Java class"
+DESCRIPTION="Java library to launch Java classes"
 HOMEPAGE="http://commons.apache.org/launcher/;
 SRC_URI="mirror://apache/${PN%%-*}/${PN##*-}/source/${P}-src.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
 IUSE=""
 
 CDEPEND="dev-java/ant-core:0"



[gentoo-commits] repo/gentoo:master commit in: app-portage/g-cpan/

2016-04-30 Thread Andreas Hüttel
commit: 33853e969d66da9de441308d314ecefcd72dfd79
Author: Sergiy Borodych  gmail  com>
AuthorDate: Wed Apr 27 12:03:33 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 16:56:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33853e96

app-portage/g-cpan: remove keepdir on "/var/tmp" (#465834)

there is no need for that and it might provides unexpected behaviour

 app-portage/g-cpan/g-cpan-0.16.6.ebuild | 1 -
 app-portage/g-cpan/g-cpan-.ebuild   | 1 -
 2 files changed, 2 deletions(-)

diff --git a/app-portage/g-cpan/g-cpan-0.16.6.ebuild 
b/app-portage/g-cpan/g-cpan-0.16.6.ebuild
index 6052f4a..126324e 100644
--- a/app-portage/g-cpan/g-cpan-0.16.6.ebuild
+++ b/app-portage/g-cpan/g-cpan-0.16.6.ebuild
@@ -31,7 +31,6 @@ src_install() {
perl-module_src_install
diropts "-m0755"
dodir "/var/tmp/g-cpan"
-   keepdir "/var/tmp/g-cpan"
dodir "/var/log/g-cpan"
keepdir "/var/log/g-cpan"
 }

diff --git a/app-portage/g-cpan/g-cpan-.ebuild 
b/app-portage/g-cpan/g-cpan-.ebuild
index 2aebfdc..1d1c113 100644
--- a/app-portage/g-cpan/g-cpan-.ebuild
+++ b/app-portage/g-cpan/g-cpan-.ebuild
@@ -34,7 +34,6 @@ src_install() {
perl-module_src_install
diropts "-m0755"
dodir "/var/tmp/g-cpan"
-   keepdir "/var/tmp/g-cpan"
dodir "/var/log/g-cpan"
keepdir "/var/log/g-cpan"
 }



[gentoo-commits] repo/gentoo:master commit in: app-portage/g-cpan/

2016-04-30 Thread Andreas Hüttel
commit: 816f169fa1c39e5a52194ace5cf7f56166e52c16
Author: Sergiy Borodych  gmail  com>
AuthorDate: Wed Apr 27 12:08:20 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 16:56:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=816f169f

app-portage/g-cpan: update metadata.xml, upstream info was added

 app-portage/g-cpan/metadata.xml | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/app-portage/g-cpan/metadata.xml b/app-portage/g-cpan/metadata.xml
index 54eb701..fa5a8f4 100644
--- a/app-portage/g-cpan/metadata.xml
+++ b/app-portage/g-cpan/metadata.xml
@@ -4,8 +4,12 @@

robb...@gentoo.org

-
+   
p...@gentoo.org
Gentoo Perl Project

+   
+   gentoo-perl/g-cpan
+   https://github.com/gentoo-perl/g-cpan/issues
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-portage/g-cpan/

2016-04-30 Thread Andreas Hüttel
commit: 0ebe69b5a4f45573dfb56bbd90c3bf4be8521db1
Author: Sergiy Borodych  gmail  com>
AuthorDate: Wed Apr 27 13:01:40 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 16:56:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ebe69b5

app-portage/g-cpan: change to create dirs for portage user/group

this is allow to use g-cpan users besides root more easely,
just add users into portage group and do not fix permissions every install

 app-portage/g-cpan/g-cpan-.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-portage/g-cpan/g-cpan-.ebuild 
b/app-portage/g-cpan/g-cpan-.ebuild
index 1d1c113..1ff7291 100644
--- a/app-portage/g-cpan/g-cpan-.ebuild
+++ b/app-portage/g-cpan/g-cpan-.ebuild
@@ -32,15 +32,15 @@ RDEPEND="${DEPEND}
 
 src_install() {
perl-module_src_install
-   diropts "-m0755"
+   diropts -m0775 -o portage -g portage
dodir "/var/tmp/g-cpan"
dodir "/var/log/g-cpan"
keepdir "/var/log/g-cpan"
 }
 
 pkg_postinst() {
-   elog "You may wish to adjust the permissions on /var/tmp/g-cpan"
-   elog "if you have users besides root expecting to use g-cpan."
+   elog "If you want to use g-cpan besides root you may wish to"
+   elog " adjust the permissions on /var/tmp/g-cpan or add users into 
portage group."
elog "Please note that some CPAN packages need additional manual"
elog "parameters or tweaking, due to bugs in their build systems."
 }



[gentoo-commits] repo/gentoo:master commit in: app-portage/g-cpan/

2016-04-30 Thread Andreas Hüttel
commit: b0844266192fe8044e9a7c70321ecfb6ee7df2a3
Author: Sergiy Borodych  gmail  com>
AuthorDate: Wed Apr 27 12:08:54 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 16:56:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0844266

app-portage/g-cpan: switch to use EAPI=6

since now we have going to have a test enabled by default

 app-portage/g-cpan/g-cpan-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/g-cpan/g-cpan-.ebuild 
b/app-portage/g-cpan/g-cpan-.ebuild
index ab817e5..2aebfdc 100644
--- a/app-portage/g-cpan/g-cpan-.ebuild
+++ b/app-portage/g-cpan/g-cpan-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 inherit perl-module
 if [[ ${PV} == "" ]] ; then



[gentoo-commits] proj/portage:master commit in: pym/repoman/modules/scan/eclasses/

2016-04-30 Thread Brian Dolbec
commit: a2ee8a9a3c25723f0501286adee8e42a4f323aca
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sat Apr 30 16:15:31 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Sat Apr 30 16:15:31 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a2ee8a9a

repoman/modules/.../live.py: Fix space error in qa message

 pym/repoman/modules/scan/eclasses/live.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/repoman/modules/scan/eclasses/live.py 
b/pym/repoman/modules/scan/eclasses/live.py
index a5b06ed..dca10b5 100644
--- a/pym/repoman/modules/scan/eclasses/live.py
+++ b/pym/repoman/modules/scan/eclasses/live.py
@@ -52,7 +52,7 @@ class LiveEclassChecks(ScanBase):
 
if bad_stable_keywords:
self.qatracker.add_error(
-   "LIVEVCS.stable", "%s/%s.ebuild with stable 
keywords :%s" % (
+   "LIVEVCS.stable", "%s/%s.ebuild with stable 
keywords: %s" % (
package, y_ebuild, bad_stable_keywords))
 
good_keywords_exist = len(bad_stable_keywords) < len(keywords)



[gentoo-commits] repo/gentoo:master commit in: media-sound/wavpack/

2016-04-30 Thread Alexis Ballier
commit: c500a7b3f422e1c9f60fa4e99373045718d0df97
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 16:12:40 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 16:12:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c500a7b3

media-sound/wavpack: bump to 4.80.0, bug #580818 by Jens Rex

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 media-sound/wavpack/Manifest  |  1 +
 media-sound/wavpack/wavpack-4.80.0.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/media-sound/wavpack/Manifest b/media-sound/wavpack/Manifest
index 550caf0..91b601e 100644
--- a/media-sound/wavpack/Manifest
+++ b/media-sound/wavpack/Manifest
@@ -1 +1,2 @@
 DIST wavpack-4.70.0.tar.bz2 411878 SHA256 
2cade379b0aba99fbc4e442ccc6dac6c609f6212e46516a083e24c8c364430a4 SHA512 
6a93e36b3bea5b410142416b4b0329c5f65031418cdd303d395ca2aaad2a1ab02987b9a329dec6d14fe9387a3d5978caaf6345056eece24c5ad0ae9273349449
 WHIRLPOOL 
e9b34aad74e183814f710d038c30946dcf43c6472e25778507494c4c40f9adf166e8cda81916f670150876adcf34979bd88e40fc81ee2a7c036db1b3a285e69b
+DIST wavpack-4.80.0.tar.bz2 450257 SHA256 
79182ea75f7bd1ca931ed230062b435fde4a4c2e0dbcad048007bd1ef1e66be9 SHA512 
728d53df866c75d6d0d2e576b798fc59c308c735baf8075171dcdfb35cce81e5847114568f8160d411a2521aa8c0244c01c9129b0c124ee9cfa4f4748eed2b80
 WHIRLPOOL 
69e9a840ae3676036abd850d998884536cee572a9ef177031b46208e4f8773ca3ad0f2398268babcea62848b7f1fdb9dd494120faf21a20b7c0112c19c0c7e12

diff --git a/media-sound/wavpack/wavpack-4.80.0.ebuild 
b/media-sound/wavpack/wavpack-4.80.0.ebuild
new file mode 100644
index 000..b99c619
--- /dev/null
+++ b/media-sound/wavpack/wavpack-4.80.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
+AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
+inherit autotools-multilib
+
+DESCRIPTION="Hybrid lossless audio compression tools"
+HOMEPAGE="http://www.wavpack.com/;
+SRC_URI="http://www.wavpack.com/${P}.tar.bz2;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="static-libs"
+
+RDEPEND=">=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
+   abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r4
+   
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
+DEPEND="${RDEPEND}"
+
+DOCS=( ChangeLog README )



[gentoo-commits] proj/portage:master commit in: pym/repoman/modules/scan/eclasses/

2016-04-30 Thread Brian Dolbec
commit: 59014f2da612d09d0f969216e68cada91c19853d
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sat Apr 30 14:21:23 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Sat Apr 30 14:21:23 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=59014f2d

repoman: Fix commit 8e7971169c2 missing self in func() parameters, bug 581594

Fixes hastily committed preceeding live vcs logic change.
X-Gentoo-bug: 581594
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=581594

Thank you: Coacher 

 pym/repoman/modules/scan/eclasses/live.py | 14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/pym/repoman/modules/scan/eclasses/live.py 
b/pym/repoman/modules/scan/eclasses/live.py
index 0036f10..a5b06ed 100644
--- a/pym/repoman/modules/scan/eclasses/live.py
+++ b/pym/repoman/modules/scan/eclasses/live.py
@@ -26,19 +26,27 @@ class LiveEclassChecks(ScanBase):
@param xpkg: Package in which we check (string).
@param ebuild: Ebuild which we check (object).
@param y_ebuild: Ebuild which we check (string).
-   @returns: dictionary
+   @returns: boolean
'''
pkg = kwargs.get("pkg").result()
package = kwargs.get('xpkg')
ebuild = kwargs.get('ebuild').get()
y_ebuild = kwargs.get('y_ebuild')
-   keywords = ebuild.keywords
 
if ebuild.live_ebuild and self.repo_settings.repo_config.name 
== "gentoo":
return self.check_live(pkg, package, ebuild, y_ebuild)
return False
 
-   def check_live(pkg, package, ebuild, y_ebuild):
+   def check_live(self, pkg, package, ebuild, y_ebuild):
+   '''Perform the live vcs check
+
+   @param pkg: Package in which we check (object).
+   @param xpkg: Package in which we check (string).
+   @param ebuild: Ebuild which we check (object).
+   @param y_ebuild: Ebuild which we check (string).
+   @returns: boolean
+   '''
+   keywords = ebuild.keywords
is_stable = lambda kw: not kw.startswith("~") and not 
kw.startswith("-")
bad_stable_keywords = list(filter(is_stable, keywords))
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam/files/, dev-ml/opam/

2016-04-30 Thread Alexis Ballier
commit: 9ea57f3f0febdefdbe0ae810169ed485b165808b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 16:02:11 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 16:02:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ea57f3f

dev-ml/opam: apply debian patch, backported from upstream, to check certicates 
when downloading. Bug #580586

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/opam/files/no-insecure.patch| 25 ++
 .../{opam-1.2.2.ebuild => opam-1.2.2-r1.ebuild}|  4 +++-
 2 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/dev-ml/opam/files/no-insecure.patch 
b/dev-ml/opam/files/no-insecure.patch
new file mode 100644
index 000..aebd5b2
--- /dev/null
+++ b/dev-ml/opam/files/no-insecure.patch
@@ -0,0 +1,25 @@
+Description: remove insecure / no-check-certificate flags (see mail on 
opam-devel, #55 #2006)
+Author: Hannes Mehnert 
+Applied-Upstream: 3d43295df3bb9e67e60801d319bf82c2c8a84d24
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/core/opamSystem.ml
 b/src/core/opamSystem.ml
+@@ -694,7 +694,7 @@
+   let retry = string_of_int OpamGlobals.download_retry in
+   let wget ~compress:_ ?checksum:_ dir src =
+ let wget_args = [
+-  "--content-disposition"; "--no-check-certificate";
++  "--content-disposition";
+   "-t"; retry;
+   src
+ ] in
+@@ -704,7 +704,7 @@
+   in
+   let curl command ~compress ?checksum:_ dir src =
+ let curl_args = [
+-  "--write-out"; "%{http_code}\\n"; "--insecure";
++  "--write-out"; "%{http_code}\\n";
+   "--retry"; retry; "--retry-delay"; "2";
+ ] @ (if compress then ["--compressed"] else []) @ [
+ "-OL"; src

diff --git a/dev-ml/opam/opam-1.2.2.ebuild b/dev-ml/opam/opam-1.2.2-r1.ebuild
similarity index 91%
rename from dev-ml/opam/opam-1.2.2.ebuild
rename to dev-ml/opam/opam-1.2.2-r1.ebuild
index d0e1cc3..2b94b7e 100644
--- a/dev-ml/opam/opam-1.2.2.ebuild
+++ b/dev-ml/opam/opam-1.2.2-r1.ebuild
@@ -36,7 +36,9 @@ RDEPEND="${DEPEND}
 "
 
 src_prepare() {
-   epatch "${FILESDIR}/0001-Port-to-Dose3-4.0.1.patch"
+   epatch \
+   "${FILESDIR}/0001-Port-to-Dose3-4.0.1.patch" \
+   "${FILESDIR}/no-insecure.patch"
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/

2016-04-30 Thread Alexis Ballier
commit: 9dcd652f3df8cf9d456dfacdf0c2b79f874659db
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 15:52:08 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 15:52:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dcd652f

dev-ml/cudf: add := dep on cppo.

The dep is not a real one, it is there only by transitivity from extlib but if 
cudf is not rebuilt after a cppo update this causes issues like bug #580952.
Sadly, we dont have transitive := deps so we have to duplicate the dep here in 
cudf ebuild.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/cudf/{cudf-0.8.ebuild => cudf-0.8-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/cudf/cudf-0.8.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild
similarity index 98%
rename from dev-ml/cudf/cudf-0.8.ebuild
rename to dev-ml/cudf/cudf-0.8-r1.ebuild
index 1e63770..91b6bcc 100644
--- a/dev-ml/cudf/cudf-0.8.ebuild
+++ b/dev-ml/cudf/cudf-0.8-r1.ebuild
@@ -20,6 +20,7 @@ RDEPEND="
dev-ml/extlib:=
dev-libs/glib:2
dev-ml/camlp4:=
+   dev-ml/cppo:=
 "
 DEPEND="${RDEPEND}
test? ( dev-ml/ounit )



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Storable/

2016-04-30 Thread Andreas Hüttel
commit: adb42f36121420d01a900a5531dc8ae4268b6e35
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 30 15:47:48 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 15:48:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb42f36

virtual/perl-Storable: Also provided by 5.22.2

Package-Manager: portage-2.2.28

 ...-Storable-2.530.100.ebuild => perl-Storable-2.530.100-r1.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/virtual/perl-Storable/perl-Storable-2.530.100.ebuild 
b/virtual/perl-Storable/perl-Storable-2.530.100-r1.ebuild
similarity index 81%
rename from virtual/perl-Storable/perl-Storable-2.530.100.ebuild
rename to virtual/perl-Storable/perl-Storable-2.530.100-r1.ebuild
index 688e5c3..b9a2245 100644
--- a/virtual/perl-Storable/perl-Storable-2.530.100.ebuild
+++ b/virtual/perl-Storable/perl-Storable-2.530.100-r1.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
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 HOMEPAGE=""
@@ -15,7 +15,7 @@ IUSE=""
 
 DEPEND=""
 RDEPEND="
-   || ( =dev-lang/perl-5.22.1* ~perl-core/${PN#perl-}-${PV} )
+   || ( =dev-lang/perl-5.22.2* =dev-lang/perl-5.22.1* 
~perl-core/${PN#perl-}-${PV} )
!perl-core/${PN#perl-}-${PV}-r999
 "



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2016-04-30 Thread Lars Wendler
commit: c6d7571433a1f47c0fe38268f65dd63c1362f84f
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Apr 30 15:23:50 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Apr 30 15:24:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d75714

dev-vcs/git: Removed old.

Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler  gentoo.org>

 dev-vcs/git/Manifest |   3 -
 dev-vcs/git/git-2.8.0.ebuild | 681 ---
 2 files changed, 684 deletions(-)

diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest
index 3c58634..fb5f730 100644
--- a/dev-vcs/git/Manifest
+++ b/dev-vcs/git/Manifest
@@ -4,7 +4,6 @@ DIST git-2.6.6.tar.xz 3822260 SHA256 
8d53410d60f9c36b0f34c125076634d068c8d812f41
 DIST 
git-2.7.3-00-9831e92bfa833ee9c0ce464bbc2f941ae6c2698d-lose-name-path.patch 
28198 SHA256 b6bf7d67b9cc4d34550a10933af63b665b136b869dbbe23ad3ece0d463f027f9 
SHA512 
3fd64b0d6b53d5b08b791195e6edc162db682fc8a1bafc04aab7a7a4e61e2db4b3b84d9f769e0d7756da2739bdd900e30a233c228706c39817e42e309c36684c
 WHIRLPOOL 
7e1d9337d46222ea4ae2164429a6a220adb0f763bdde6722c0f2adf79789e092f5cfb74b932597b8d3971af4fc27dede1fea51b9cb72b44ec8e30bd78bdaaa8d
 DIST git-2.7.3.tar.xz 3909636 SHA256 
89c467912d4740da2b40288f956251f0a1e276e28eecd28a6d776067103629b6 SHA512 
f7acbf52d12f39d323bd90a82c7135aa2aacf2661f7087c71b41dbfbec688342e0a2fc061fc0f216848a538a0dbc4fce68e24ea2a26e747f5eb92f763fa5bc72
 WHIRLPOOL 
5cc261749f91c2e0b0509d2fac1bc7426b3ddcc37e859d4f524838e1dd471071ad430886751933bae57aafc20bdcf3f9a43f4c018cc9c89610134a5203b22447
 DIST git-2.7.4.tar.xz 3909636 SHA256 
dee574defbe05ec7356a0842ddbda51315926f2fa7e39c2539f2c3dcc52e457b SHA512 
82a646140834e909bf1748a017e86f37f0711c759fe0a6ad03529beb57c79742cb7bf77c2dba29ccd84fcf3d5f18ad9c85c00f002d3b257be42e058750423da7
 WHIRLPOOL 
74532038b6ba95a5354f43ebad00a9c159c495d46e7dc1b8a2a59f5a86e149538190d9800144a719dcc00e28cfea1039cd5dbfb67fd5aac5e7d0998d3231bae3
-DIST git-2.8.0.tar.xz 3969912 SHA256 
9a099a4f1e68c0446800f0c538ce7d5d24bd5b4ee5d559317600cd407a59e74c SHA512 
1b1f786d540efc96f89fdb5d6cc85db5ccc36fa03b066093e149ff491c349501806832279c09ed85afe7f248c6f183834b343e28ea8a9117499032569479c5fd
 WHIRLPOOL 
7069717d84e045ca67af2ef79ca19ce447fb0ad3a63e6ba90903e8000213842a5812c673579be698266627f5236c0acc0957110e9b161f2fdf157f5ab1c0ee80
 DIST git-2.8.1.tar.xz 3970056 SHA256 
e6626b43ba4bc63ad4918df4c275f50bd7f8af2ab54bde60496ad75e91e927fc SHA512 
67846ac7815a08b79c67007af411220ec96d5f54c77dcec602f602b87ae50c590d743fe35e6cfb67196ab28a892c383c21b57d4a3dfab30a2bf67ca29f848c3c
 WHIRLPOOL 
6c348360d8f04797bb78a9a694ffbe30eb9d691645aa33a59fab53825f6b7a6c62415fb52b64d19cb189ccbe4a6d4593e779f5721484921a760872abf1b19d70
 DIST git-2.8.2.tar.xz 3972444 SHA256 
ec0283d78a0f1c8408c5fd43610697b953fbaafe4077bb1e41446a9ee3a2f83d SHA512 
61c77138c9f29068fc639292f1d4a0119c065aa1267b9e615f90466a15ab5a23e8c1e04fb1032df0a3a5862ec1335d526927a54c02a19efe77267595f7d1cd85
 WHIRLPOOL 
540d4bafbe7bdf6af8089825ec80d4397eba5d2f651cf20c32457e2d214572779fdbb42921ef7f50a03fa4f0e2bd761a2c2d34642a56f058ef63624573d1d81e
 DIST git-htmldocs-2.4.11.tar.xz 997132 SHA256 
2764af41b319f4d11b29832de4bd05392f2887d9a1d3c56c864fb081920eac97 SHA512 
d5d2abae9cc303fe8ebeb72ae7078d44db94610d549ca03afffcbbef8b611efda662677423d9ff97a0c7a2384bbd4c3468b01a2ecd7b68f4fdc89e62ad688eb4
 WHIRLPOOL 
66cd4fc754be7c103ca58a030d4799ba988792419a426e85a39805172e6329ec617b3561696dc74be36801cca0b17a26102a194a1a58d6c7b9ee1ab17752c4a6
@@ -12,7 +11,6 @@ DIST git-htmldocs-2.5.5.tar.xz 1010216 SHA256 
15de2f234cf419496399f7ad396709544d
 DIST git-htmldocs-2.6.6.tar.xz 1021856 SHA256 
897fb0bc7e2eb67a4b582c963f337fda3a6ad2b23bca55e27f23f7d15bad7c5d SHA512 
85dcd8514e1ba2cb591512a0003aedf25eafbf185ba1eed01f8adfd9eb467d29b17108e6b087183004004ab17301316d403cd6762619ac2a030a565ea5c776b3
 WHIRLPOOL 
3cd964f1d0164db98e97e0097813a620911adadd9c50837e23a5ca79eb0f2d988aa68317b5b79fa7b052900564657c36d050e75841a1018d5ff12e1299c01dc6
 DIST git-htmldocs-2.7.3.tar.xz 1031848 SHA256 
f71f5e8e1a6103e83ea794f367bc419a1d14ba0f79ebacdc81b3b9430714adea SHA512 
50de5d9d3c0f6d874a6a4bc3b247a1795b1bcf154a276b546f88c3b5f5fb2eb27212d207a4bb50c04cba36d8537853afd25816addfb87c9a50e18528d93586fe
 WHIRLPOOL 
057d9bebfe51c29a0a7f689baa9873cb6a54feb1d2869c541396902b160379c9220c5de79a4cb59c6e804e5c7557c0fd141b89621b97d3b495dc6e0a77c67a9f
 DIST git-htmldocs-2.7.4.tar.xz 1032428 SHA256 
3fae21e2e68104621ea1405be73192b46bf3ef29bbc248a81b1e7e6fcf5acfad SHA512 
f05b7b8a4dd4abe23f7e51982e9c33026aa31610ac8640028aeae6b310b70b764aee9a81fa702ed0712ccf1b7ad897e06163eb5c5246c14f6cce7c5f4e462682
 WHIRLPOOL 
87fc486d182a4b72fd906105fefcc53b722c4ae6832b290cd6f759ac1eca7ebfbbe7c0e72c1d7b5ef3581d19d7576f1d0387d6e5b0a33d960d57f59ee61a7869
-DIST git-htmldocs-2.8.0.tar.xz 1038900 SHA256 
515bee47dbb1f1c345eae394e14f82009865529aaf0c201301defee32512a7c6 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2016-04-30 Thread Lars Wendler
commit: cd3e5394933a110c088b5c8091ccb139eaa3a4cb
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Apr 30 15:23:10 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Apr 30 15:24:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3e5394

dev-vcs/git: Bump to version 2.8.2

Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler  gentoo.org>

 dev-vcs/git/Manifest |   3 +
 dev-vcs/git/git-2.8.2.ebuild | 682 +++
 2 files changed, 685 insertions(+)

diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest
index c280cf6..3c58634 100644
--- a/dev-vcs/git/Manifest
+++ b/dev-vcs/git/Manifest
@@ -6,6 +6,7 @@ DIST git-2.7.3.tar.xz 3909636 SHA256 
89c467912d4740da2b40288f956251f0a1e276e28ee
 DIST git-2.7.4.tar.xz 3909636 SHA256 
dee574defbe05ec7356a0842ddbda51315926f2fa7e39c2539f2c3dcc52e457b SHA512 
82a646140834e909bf1748a017e86f37f0711c759fe0a6ad03529beb57c79742cb7bf77c2dba29ccd84fcf3d5f18ad9c85c00f002d3b257be42e058750423da7
 WHIRLPOOL 
74532038b6ba95a5354f43ebad00a9c159c495d46e7dc1b8a2a59f5a86e149538190d9800144a719dcc00e28cfea1039cd5dbfb67fd5aac5e7d0998d3231bae3
 DIST git-2.8.0.tar.xz 3969912 SHA256 
9a099a4f1e68c0446800f0c538ce7d5d24bd5b4ee5d559317600cd407a59e74c SHA512 
1b1f786d540efc96f89fdb5d6cc85db5ccc36fa03b066093e149ff491c349501806832279c09ed85afe7f248c6f183834b343e28ea8a9117499032569479c5fd
 WHIRLPOOL 
7069717d84e045ca67af2ef79ca19ce447fb0ad3a63e6ba90903e8000213842a5812c673579be698266627f5236c0acc0957110e9b161f2fdf157f5ab1c0ee80
 DIST git-2.8.1.tar.xz 3970056 SHA256 
e6626b43ba4bc63ad4918df4c275f50bd7f8af2ab54bde60496ad75e91e927fc SHA512 
67846ac7815a08b79c67007af411220ec96d5f54c77dcec602f602b87ae50c590d743fe35e6cfb67196ab28a892c383c21b57d4a3dfab30a2bf67ca29f848c3c
 WHIRLPOOL 
6c348360d8f04797bb78a9a694ffbe30eb9d691645aa33a59fab53825f6b7a6c62415fb52b64d19cb189ccbe4a6d4593e779f5721484921a760872abf1b19d70
+DIST git-2.8.2.tar.xz 3972444 SHA256 
ec0283d78a0f1c8408c5fd43610697b953fbaafe4077bb1e41446a9ee3a2f83d SHA512 
61c77138c9f29068fc639292f1d4a0119c065aa1267b9e615f90466a15ab5a23e8c1e04fb1032df0a3a5862ec1335d526927a54c02a19efe77267595f7d1cd85
 WHIRLPOOL 
540d4bafbe7bdf6af8089825ec80d4397eba5d2f651cf20c32457e2d214572779fdbb42921ef7f50a03fa4f0e2bd761a2c2d34642a56f058ef63624573d1d81e
 DIST git-htmldocs-2.4.11.tar.xz 997132 SHA256 
2764af41b319f4d11b29832de4bd05392f2887d9a1d3c56c864fb081920eac97 SHA512 
d5d2abae9cc303fe8ebeb72ae7078d44db94610d549ca03afffcbbef8b611efda662677423d9ff97a0c7a2384bbd4c3468b01a2ecd7b68f4fdc89e62ad688eb4
 WHIRLPOOL 
66cd4fc754be7c103ca58a030d4799ba988792419a426e85a39805172e6329ec617b3561696dc74be36801cca0b17a26102a194a1a58d6c7b9ee1ab17752c4a6
 DIST git-htmldocs-2.5.5.tar.xz 1010216 SHA256 
15de2f234cf419496399f7ad396709544d62537488a8e5200e6e34b0f1a685e7 SHA512 
265ddf3835352f85eb2e2ee983eb8aaf37bc7b151968866bdb8b9bb6782cdb72dbd1fefe5d7f694a6825954d49bcf4c799e8bcb4e3b25e3f228f6f97f041fd9b
 WHIRLPOOL 
90da44c0bdb6f9ff428d1673289e612936ed5f26110cd13d155c8cbef8433b13bd8b15cea88f967224a699e4c3a6ac41d70b67be1b25c4d35989879626eb10ad
 DIST git-htmldocs-2.6.6.tar.xz 1021856 SHA256 
897fb0bc7e2eb67a4b582c963f337fda3a6ad2b23bca55e27f23f7d15bad7c5d SHA512 
85dcd8514e1ba2cb591512a0003aedf25eafbf185ba1eed01f8adfd9eb467d29b17108e6b087183004004ab17301316d403cd6762619ac2a030a565ea5c776b3
 WHIRLPOOL 
3cd964f1d0164db98e97e0097813a620911adadd9c50837e23a5ca79eb0f2d988aa68317b5b79fa7b052900564657c36d050e75841a1018d5ff12e1299c01dc6
@@ -13,6 +14,7 @@ DIST git-htmldocs-2.7.3.tar.xz 1031848 SHA256 
f71f5e8e1a6103e83ea794f367bc419a1d
 DIST git-htmldocs-2.7.4.tar.xz 1032428 SHA256 
3fae21e2e68104621ea1405be73192b46bf3ef29bbc248a81b1e7e6fcf5acfad SHA512 
f05b7b8a4dd4abe23f7e51982e9c33026aa31610ac8640028aeae6b310b70b764aee9a81fa702ed0712ccf1b7ad897e06163eb5c5246c14f6cce7c5f4e462682
 WHIRLPOOL 
87fc486d182a4b72fd906105fefcc53b722c4ae6832b290cd6f759ac1eca7ebfbbe7c0e72c1d7b5ef3581d19d7576f1d0387d6e5b0a33d960d57f59ee61a7869
 DIST git-htmldocs-2.8.0.tar.xz 1038900 SHA256 
515bee47dbb1f1c345eae394e14f82009865529aaf0c201301defee32512a7c6 SHA512 
a3c8f474e049260e175edbb85a8ad8c7e44a6bdf56f143ad7c3c62ba23f56a43234fd0dc89b5ff031a17ee48884af27e5bd857f22835e5d076a4b410467cc4c1
 WHIRLPOOL 
5c7f88ce2aa44ed4f5bb0c78d8fef99f4c9987660e057b53df53427ac482b23c75b240468693cdf3b1b7b92e3481a6d4681ab10c1b8ed45c8cd28eef20565fda
 DIST git-htmldocs-2.8.1.tar.xz 1039208 SHA256 
0ef312091a6bc8938d3742be4e95510483a1700ccaeda6e85615f3d7c88d89a8 SHA512 
eb4f9f975f5257c53a60618ade7350d73df8c5d55a4d7f46458d02c1eae5e1351de2d75c96b4e4ae089533910f362e7d15074df7675bc44087d6e80a53f134cb
 WHIRLPOOL 
3f41834f1644fc426ac75c8437a7dce4bff1b9cd1b0a9038199c97285c6c0cd60fe858ad948645e0c8a6dd5e582a24bc9ee9188a3b9abdc660b2ed15acb1b343
+DIST git-htmldocs-2.8.2.tar.xz 1040552 SHA256 
28260088b325a75c66ae6333849f138c098ebb07fcfe78ca398e16f87811e29b SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-lang/perl/

2016-04-30 Thread Andreas Hüttel
commit: d59b6e27a177a116cdf24e27ab6fbe4e7bdcb7e9
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Apr 15 21:36:28 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 15:09:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d59b6e27

dev-lang/perl: Version bump

Package-Manager: portage-2.2.28

 dev-lang/perl/Manifest   |   2 +
 dev-lang/perl/perl-5.22.2.ebuild | 122 +++
 2 files changed, 124 insertions(+)

diff --git a/dev-lang/perl/Manifest b/dev-lang/perl/Manifest
index f72e5c6..b82fd8c 100644
--- a/dev-lang/perl/Manifest
+++ b/dev-lang/perl/Manifest
@@ -5,3 +5,5 @@ DIST perl-5.22.0-patches-1.tar.xz 20892 SHA256 
9abd87880c9c91e89e88eb467c124ba66
 DIST perl-5.22.0.tar.bz2 13811518 SHA256 
3689fdb519133d039f49e12834764ff4c1de8f8d925dea44a952ca110d0ac9f7 SHA512 
97e770d9bc9acbb7fa6939207a46d9a2887a61971c1ae1c8d6b5071bfc0d68a0f539486fea81ba81966f716d7ae532273a27a6baaf323e73fbd5c5eb9bf01fa4
 WHIRLPOOL 
9416c17323edc9ee5affb8a6d857e9ecf1ac5d7d37ca7d8703bfd15541c97f1031a9c669c9a41d8deb974676e197c0c7be753ad988f050f5fbb5b01942eacb3a
 DIST perl-5.22.1-patches-1.tar.xz 19920 SHA256 
c128b4d1575f3bcf1952a1526b5725fabb6dcd779c7458a05a73aae51ecc1508 SHA512 
2a0a74c935273ae3eafaebc6ed20c730a49f542433d899d51baaa3c3e7a291974fcef734d6320895811b4a6944c4e36b2a01400ed751a11c5d3edd6491bbf41b
 WHIRLPOOL 
5d5c3d35a217e9f61ee9f1406ea5383d192b0875dc736f124613056f71837d84346431127be3c56ae780394aa86cd18d9fad9740e7970e704beb5d2bf112
 DIST perl-5.22.1.tar.bz2 13696599 SHA256 
e98e4075a3167fa40524abe447c30bcca10c60e02a54ee1361eff278947a1221 SHA512 
4da26b1d3d8525c58677abd2c5c354ccaa4b1b260ebe7dfe379d51a5da00ac7ae06cb668011faac2aaf56229fd22b275c13a74c8c9dbc59cc155a36c0e7e8355
 WHIRLPOOL 
03d8a050421f1f1899ad8b195d61d0cc55ce061b39ab4dab41b0fbb079a4871d76e968943b83e8165f2f4d1fa42bc87e1c6780aeae1ccc22a720115dfddf17cb
+DIST perl-5.22.2-patches-1.tar.xz 19920 SHA256 
c128b4d1575f3bcf1952a1526b5725fabb6dcd779c7458a05a73aae51ecc1508 SHA512 
2a0a74c935273ae3eafaebc6ed20c730a49f542433d899d51baaa3c3e7a291974fcef734d6320895811b4a6944c4e36b2a01400ed751a11c5d3edd6491bbf41b
 WHIRLPOOL 
5d5c3d35a217e9f61ee9f1406ea5383d192b0875dc736f124613056f71837d84346431127be3c56ae780394aa86cd18d9fad9740e7970e704beb5d2bf112
+DIST perl-5.22.2.tar.bz2 13717881 SHA256 
f2322b9b04fe0cdbca9fe755360da04892cb6483d44959457cfebc0bcddc8058 SHA512 
1acb77ead47955ef6e8d84903e86cb584ee9415742fb99eb2f1f30772087e8ed0def5f643ce4ee7693df5a1dfe154b108aa85df232d81107f98820bb84a0d71a
 WHIRLPOOL 
bdfd1035728619abafeb679cdd3181269a91fad5c30f4995e91d5ae16cb65210ce2c4c47afe85eb192ebde88c0bbc4cd0ed77939acdfd09760b11b57eeace2a6

diff --git a/dev-lang/perl/perl-5.22.2.ebuild b/dev-lang/perl/perl-5.22.2.ebuild
new file mode 100644
index 000..0e287fe
--- /dev/null
+++ b/dev-lang/perl/perl-5.22.2.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils alternatives flag-o-matic toolchain-funcs multilib 
multiprocessing
+
+PATCH_VER=1
+
+PERL_OLDVERSEN="5.22.0 5.22.1"
+MODULE_AUTHOR=SHAY
+
+SHORT_PV="${PV%.*}"
+MY_P="perl-${PV/_rc/-RC}"
+MY_PV="${PV%_rc*}"
+
+DESCRIPTION="Larry Wall's Practical Extraction and Report Language"
+
+SRC_URI="
+   mirror://cpan/src/5.0/${MY_P}.tar.bz2
+   
mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MY_P}.tar.bz2
+   mirror://gentoo/${MY_P}-patches-${PATCH_VER}.tar.xz
+   
https://dev.gentoo.org/~dilfridge/distfiles/${MY_P}-patches-${PATCH_VER}.tar.xz
+"
+HOMEPAGE="http://www.perl.org/;
+
+LICENSE="|| ( Artistic GPL-1+ )"
+SLOT="0/${SHORT_PV}"
+KEYWORDS="~alpha ~amd64 ~amd64-fbsd ~amd64-linux ~arm ~arm64 ~hppa ~hppa-hpux 
~ia64 ~ia64-hpux ~ia64-linux ~m68k ~m68k-mint ~mips ~ppc ~ppc64 ~ppc-aix 
~ppc-macos ~s390 ~sh ~sparc ~sparc64-solaris ~sparc-solaris ~x64-freebsd 
~x64-macos ~x64-solaris ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~x86-linux 
~x86-macos ~x86-solaris"
+IUSE="berkdb debug doc gdbm ithreads"
+
+RDEPEND="
+   berkdb? ( sys-libs/db:* )
+   gdbm? ( >=sys-libs/gdbm-1.8.3 )
+   app-arch/bzip2
+   sys-libs/zlib
+"
+DEPEND="${RDEPEND}
+   !prefix? ( elibc_FreeBSD? ( sys-freebsd/freebsd-mk-defs ) )
+"
+PDEPEND="
+   >=app-admin/perl-cleaner-2.5
+   >=virtual/perl-File-Temp-0.230.400-r2
+   >=virtual/perl-Data-Dumper-2.154.0
+   virtual/perl-Test-Harness
+"
+# bug 390719, bug 523624
+# virtual/perl-Test-Harness is here for the bundled ExtUtils::MakeMaker
+
+S="${WORKDIR}/${MY_P}"
+
+dual_scripts() {
+   src_remove_dual  perl-core/Archive-Tar2.40.0   ptar 
ptardiff ptargrep
+   src_remove_dual  perl-core/Digest-SHA 5.950.0   shasum
+   src_remove_dual  perl-core/CPAN   2.110.0cpan
+   src_remove_dual  perl-core/Encode 2.720.0   enc2xs 
piconv
+ 

[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Module-CoreList/

2016-04-30 Thread Andreas Hüttel
commit: 5fdaf7c0b57cfe22ddfeb4f08efa0a0ff500947d
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Apr 15 21:41:20 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 15:09:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fdaf7c0

virtual/perl-Module-CoreList: Add Perl 5.22.2 version

Package-Manager: portage-2.2.28

 .../perl-Module-CoreList-5.201.604.290.ebuild| 20 
 1 file changed, 20 insertions(+)

diff --git 
a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.604.290.ebuild 
b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.604.290.ebuild
new file mode 100644
index 000..a6a70ee
--- /dev/null
+++ b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.604.290.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Virtual for ${PN#perl-}"
+HOMEPAGE=""
+SRC_URI=""
+
+LICENSE=""
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+RDEPEND="
+   || ( =dev-lang/perl-5.22.2* ~perl-core/${PN#perl-}-${PV} )
+   !perl-core/${PN#perl-}-${PV}-r999
+"



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-File-Spec/

2016-04-30 Thread Andreas Hüttel
commit: 2d732c3977e267b67458df3c81677a683515728f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Apr 15 21:39:31 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 15:09:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d732c39

virtual/perl-File-Spec: Add version for Perl 5.22.2

Package-Manager: portage-2.2.28

 ...perl-File-Spec-3.560.0.ebuild => perl-File-Spec-3.560.0-r1.ebuild} | 4 ++--
 ...{perl-File-Spec-3.560.0.ebuild => perl-File-Spec-3.560.100.ebuild} | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/virtual/perl-File-Spec/perl-File-Spec-3.560.0.ebuild 
b/virtual/perl-File-Spec/perl-File-Spec-3.560.0-r1.ebuild
similarity index 82%
copy from virtual/perl-File-Spec/perl-File-Spec-3.560.0.ebuild
copy to virtual/perl-File-Spec/perl-File-Spec-3.560.0-r1.ebuild
index 1ecbd77..2b7acad 100644
--- a/virtual/perl-File-Spec/perl-File-Spec-3.560.0.ebuild
+++ b/virtual/perl-File-Spec/perl-File-Spec-3.560.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~s390 ~s
 IUSE=""
 
 RDEPEND="
-   || ( =dev-lang/perl-5.22* ~perl-core/${PN#perl-}-${PV} )
+   || ( =dev-lang/perl-5.22.1* =dev-lang/perl-5.22.0* 
~perl-core/${PN#perl-}-${PV} )
!perl-core/${PN#perl-}-${PV}-r999
 "

diff --git a/virtual/perl-File-Spec/perl-File-Spec-3.560.0.ebuild 
b/virtual/perl-File-Spec/perl-File-Spec-3.560.100.ebuild
similarity index 85%
rename from virtual/perl-File-Spec/perl-File-Spec-3.560.0.ebuild
rename to virtual/perl-File-Spec/perl-File-Spec-3.560.100.ebuild
index 1ecbd77..b5adbb8 100644
--- a/virtual/perl-File-Spec/perl-File-Spec-3.560.0.ebuild
+++ b/virtual/perl-File-Spec/perl-File-Spec-3.560.100.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~s390 ~s
 IUSE=""
 
 RDEPEND="
-   || ( =dev-lang/perl-5.22* ~perl-core/${PN#perl-}-${PV} )
+   || ( =dev-lang/perl-5.22.2* ~perl-core/${PN#perl-}-${PV} )
!perl-core/${PN#perl-}-${PV}-r999
 "



[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-04-30 Thread Andreas Hüttel
commit: eba0fcd26cf9cb712ad6e10ef42180d4786b7594
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Apr 23 17:50:37 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Apr 30 15:09:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba0fcd2

package.mask: Add Perl 5.22.2 virtuals to mask

 profiles/package.mask | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 750ff23..a635baa 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -131,6 +131,8 @@ dev-java/freehep-xml
 # is like fiddling with the infinite improbability drive;
 # expect unexpected, weird, and potentially fatal results.
 =dev-lang/perl-5.22.2*
+=virtual/perl-File-Spec-3.560.100
+=virtual/perl-Module-CoreList-5.201.604.290
 =dev-lang/perl-5.24*
 
 # Michael Sterrett  (06 Apr 2016)



[gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/files/

2016-04-30 Thread Alexis Ballier
commit: 295de3a6c62704f437339af9c5e3751bfa65f601
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 15:20:39 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 15:21:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=295de3a6

net-libs/ignition-transport: add version guards to the protobuf3 patch so that 
protobuf2 support still works. Bug #581214 by Victor Mataré.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 net-libs/ignition-transport/files/protobuf3.patch | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/files/protobuf3.patch 
b/net-libs/ignition-transport/files/protobuf3.patch
index c5cdd32..fffe229 100644
--- a/net-libs/ignition-transport/files/protobuf3.patch
+++ b/net-libs/ignition-transport/files/protobuf3.patch
@@ -2,11 +2,13 @@ Index: 
ignition-transport-1.1.0/include/ignition/transport/RepHandler.hh
 ===
 --- ignition-transport-1.1.0.orig/include/ignition/transport/RepHandler.hh
 +++ ignition-transport-1.1.0/include/ignition/transport/RepHandler.hh
-@@ -22,6 +22,7 @@
+@@ -22,6 +22,9 @@
  #pragma warning(push, 0)
  #endif
  #include 
++#if GOOGLE_PROTOBUF_VERSION >= 300
 +#include 
++#endif
  #ifdef _MSC_VER
  #pragma warning(pop)
  #endif



[gentoo-commits] repo/user/ssnb:master commit in: sys-fs/vmfs-tools/files/, sys-fs/vmfs-tools/, sys-block/partclone/

2016-04-30 Thread Samuel Bernardo
commit: c21285bb28d87bc7190b935456c1a9afd8b1fc03
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sat Apr 30 14:59:18 2016 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sat Apr 30 14:59:18 2016 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=c21285bb

partclone and vmfs-tools update (already tested and working)

 sys-block/partclone/Manifest   |  5 ++
 sys-block/partclone/partclone-0.2.69.ebuild| 79 +++
 sys-block/partclone/partclone-0.2.88.ebuild| 92 ++
 sys-block/partclone/partclone-.ebuild  | 68 
 sys-fs/vmfs-tools/Manifest |  1 +
 .../files/vmfs-tools-0.2.5-buildsystem.patch   | 43 ++
 sys-fs/vmfs-tools/metadata.xml | 10 +++
 sys-fs/vmfs-tools/vmfs-tools-0.2.5.ebuild  | 31 
 8 files changed, 329 insertions(+)

diff --git a/sys-block/partclone/Manifest b/sys-block/partclone/Manifest
new file mode 100644
index 000..6ffd7e7
--- /dev/null
+++ b/sys-block/partclone/Manifest
@@ -0,0 +1,5 @@
+DIST partclone-0.2.69.tar.gz 566531 SHA256 
2248b1e0387e9d44c45be091dd3fb29e2f0d079f42023b713e6cc19b54587f55 SHA512 
70c5056fe31fbe1099e0f9603efa35ea7729d1af9efab692493a8e3e93b64c4b23c69d943185c62b4574089ed1320aedf67b93fab93c212e048eaaefb0905847
 WHIRLPOOL 
ae33f335e69d7eba1a85a741705fbb93f300da963a9c0871980d3c0971035692c1583f6bb3976ddb145d5d61315e2c0965d1be54bbc776544537d0984d5d8894
+DIST partclone-0.2.88.tar.gz 1024941 SHA256 
01acaab3f8f7a393ed930cebec8a77623f6598cc26239a78240d2a48d8544f36 SHA512 
f05480363ee5604b3e3ea7dbb28dbb3dbec9e4fbf8350f69c88be1392e84a7de248a9b786faa59bdcce2b82a16e7108c5cb9a37aa07a35cd5cf1d06d230a55f9
 WHIRLPOOL 
bd36b6d4c3cf15b8dba1ad144bbc77d7a0bbec0a684c778ab58fc5478fd570d5558e474c5b57713fa7dd09d6d146bdc49fd5abe30eedd0ce4d803d4c615eb39e
+EBUILD partclone-0.2.69.ebuild 2270 SHA256 
6904cea5e97259285b0aca68301a181db04828e4dc054a7293fc1a76dee23339 SHA512 
d035e6ac4eef65f8368517530f8cab89b15c2dbc8d4ff4c35f0adf0421de70ce386baac4f3e44efb0a1e3f96a0dad7ae925407f00da2e10122732b0df243135c
 WHIRLPOOL 
eccbadcf8a54e52158341168b039a7d4860575515d85cca8e478806cf2347acb6c5b28eb6d0b09ff323e2236cd2ec7dd508728be2e0dede391c11cc33ad528b1
+EBUILD partclone-0.2.88.ebuild 2985 SHA256 
810de8ac6f6946aee1bb56fd736bea83576d8af7fb080008773dffa86a542b2c SHA512 
456c3dbd988a7b3675522eee1779002aff78ba4b3020efd60431b5dc58a05e5cd8d8221422e7c73a2a0c8c372f959f25ec796fb7661cdd9c470eabd929612e8d
 WHIRLPOOL 
ecad42015dbcb0bff753ab185058878d567a12f0c9d26c4e36154e410be149c94a62b726099259684eddf10213a59d51ebf8026939cb6c297076d185cf2c0a9e
+EBUILD partclone-.ebuild 1694 SHA256 
3a15b1d5576b298c2ce0d1d38f3a973d1cf0c088d5494448e5d233cee79b0e11 SHA512 
62158878ed0dd0dd8eb4023e79fbd45402b0202becfebd8c7b1a3affd35b383d20e57a16a5456d310c88fb6f621095218f2d54af3b6cc5589fd409e0c1469807
 WHIRLPOOL 
2b60ee28435936b8006dfecb3061986ead97acc55b6fa7187983ba241a00f77145862c72e7aec908ef71540e099fb30e48a330044dfef13fb922e82b4efbc6cd

diff --git a/sys-block/partclone/partclone-0.2.69.ebuild 
b/sys-block/partclone/partclone-0.2.69.ebuild
new file mode 100644
index 000..39b4e3e
--- /dev/null
+++ b/sys-block/partclone/partclone-0.2.69.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit eutils
+
+DESCRIPTION="Partition cloning tool"
+HOMEPAGE="http://partclone.org;
+SRC_URI="http://sourceforge.net/projects/partclone/files/stable/${PV}/partclone_${PV}.orig.tar.gz/download
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="btrfs reiserfs reiser4 hfs fat minix ntfs jfs static vmfs xfs"
+
+# xfsprogs, see https://bugs.gentoo.org/show_bug.cgi?id=486514
+RDEPEND="${common_depends}
+   sys-fs/e2fsprogs
+   btrfs? ( sys-fs/btrfs-progs )
+   fat? ( sys-fs/dosfstools )
+   ntfs? ( sys-fs/ntfs3g )
+   hfs? ( sys-fs/hfsutils )
+   jfs? ( sys-fs/jfsutils )
+   reiserfs? ( sys-fs/progsreiserfs )
+   reiser4? ( sys-fs/reiser4progs )
+   xfs? ( >=sys-fs/xfsprogs-3.1.11-r1 )
+   static? ( sys-fs/e2fsprogs[static-libs]
+   sys-libs/e2fsprogs-libs[static-libs]
+   sys-fs/xfsprogs[static-libs]
+   sys-libs/ncurses[static-libs]
+   sys-fs/ntfs3g[static-libs]
+   )"
+DEPEND=""
+
+src_unpack()
+{
+   unpack ${A}
+   #epatch "${FILESDIR}/${PN}-xfslib.patch"
+   cd ${S}
+}
+
+src_compile() 
+{
+   local myconf
+   myconf="${myconf} --enable-extfs --enable-ncursesw --enable-fs-test"
+   use xfs && myconf="${myconf} --enable-xfs"
+   use reiserfs && myconf="${myconf} --enable-reiserfs"
+   use reiser4 && myconf="${myconf} --enable-reiser4"
+   use hfs && myconf="${myconf} --enable-hfsp"
+   use fat && myconf="${myconf} --enable-fat --enable-exfat"
+ 

[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-04-30 Thread Rafael Martins
commit: 01a08908db0497841642070aefe7429ba7022825
Author: Rafael G. Martins  gentoo  org>
AuthorDate: Sat Apr 30 14:35:27 2016 +
Commit: Rafael Martins  gentoo  org>
CommitDate: Sat Apr 30 14:35:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01a08908

profiles: fix typo

 profiles/package.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index e3c4db9..750ff23 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -34,7 +34,7 @@
 # Packages merged upstream with app-text/blogc. Please install
 # app-text/blogc with USE=git and USE=httpd instead. Removal in 30 days.
 dev-vcs/blogc-git-receiver
-www-server/blogc-runserver
+www-servers/blogc-runserver
 
 # James Le Cuirot  (27 Apr 2016)
 # Very very dead upstream and probably doesn't work any more like



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

2016-04-30 Thread Sam Jorna
commit: fe63884b4355094e5c69514f0e36b311d3aa873f
Author: Sam Jorna  gentoo  org>
AuthorDate: Sat Apr 30 13:53:20 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Sat Apr 30 14:34:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe63884b

app-admin/yadm: new package

yadm is a dotfile manager that handles the hassle of synchronizing the
dotfiles in your home folder across different workstations. It has a
philosophy using git and getting out of git's way to ensure it does what
it does best.

Maintainer assigned to Espen H per request under Proxy Maintainers.

Gentoo-bug: 581118
Package-Manager: portage-2.2.28

 app-admin/yadm/Manifest |  1 +
 app-admin/yadm/metadata.xml | 26 ++
 app-admin/yadm/yadm-1.04.ebuild | 37 +
 3 files changed, 64 insertions(+)

diff --git a/app-admin/yadm/Manifest b/app-admin/yadm/Manifest
new file mode 100644
index 000..227ed55
--- /dev/null
+++ b/app-admin/yadm/Manifest
@@ -0,0 +1 @@
+DIST yadm-1.04.tar.gz 27391 SHA256 
a73aa51245866ce67aeb4322a62995ebbb13f29dc35508f486819dceb534968a SHA512 
f3f909118f29382c6cbae565de336c27fd7d159955a231ac22b0d25e25e50c4c3e1bdc68b1629920904ad9353ee8ce8f7e5c5e50d289984447815a685a4132c9
 WHIRLPOOL 
c74c2bfc89abb6955bb4e0d60b1cb0777c9f9ec43bc1919c130cd8470e44c090fba9003e473f4344ed92df23e399ea45ece6dafde80d575a8af491bb4c16b554

diff --git a/app-admin/yadm/metadata.xml b/app-admin/yadm/metadata.xml
new file mode 100644
index 000..a5fe848
--- /dev/null
+++ b/app-admin/yadm/metadata.xml
@@ -0,0 +1,26 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   dev+gentoobugzi...@henriksen.is
+   Espen H
+   Proxy maintainer - set to assignee on 
bugs
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   TheLocehiliosan/yadm
+   
+   
+   yadm is a dotfile manager that handles the hassle of synchronizing the
+   dotfiles in your home folder across different workstations. It has a
+   philosophy using git and getting out of git's way to ensure it does 
what it
+   does best. What sets it apart is that it supports encryption, which 
enables
+   you to add files like mutt configuration with passwords and host it
+   publicly. It also enables you to add suffixes to your files like
+   ##Linux.hostname, and yadm will automatically symlink the file if you 
are
+   on that hostname.
+   
+

diff --git a/app-admin/yadm/yadm-1.04.ebuild b/app-admin/yadm/yadm-1.04.ebuild
new file mode 100644
index 000..661af4e
--- /dev/null
+++ b/app-admin/yadm/yadm-1.04.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="A dotfile manager for the config files in your home folder"
+HOMEPAGE="https://github.com/TheLocehiliosan/yadm/;
+SRC_URI="https://github.com/TheLocehiliosan/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DOCS=( CHANGES CONTRIBUTORS README.md )
+
+DEPEND="
+   test? (
+   dev-util/bats
+   dev-vcs/git
+   )"
+RDEPEND="dev-vcs/git
+   app-crypt/gnupg"
+
+src_test() {
+   # 109_accept_encryption tests are interactive, thus fail. Skip them
+   bats $(find test/ -type f -name '*.bats' -and -not -name 
'109_accept_encryption.bats') \
+   || die "Tests failed"
+}
+
+src_install() {
+   einstalldocs
+
+   dobin yadm
+   doman yadm.1
+}



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

2016-04-30 Thread Sam Jorna
commit: 50d8d91f5889bdd4b664835067dbc56212b11333
Author: Sam Jorna  gentoo  org>
AuthorDate: Sat Apr 30 11:57:33 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Sat Apr 30 14:33:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50d8d91f

dev-util/bats: new package

Bats is a TAP-compliant testing framework for Bash. It provides a simple
way to verify that the UNIX programs you write behave as expected.

This has been added in order to support app-admin/yadm in bug 581118.
Maintainer assigned to  Espen H per request under Proxy Maintainers.

Gentoo-bug: 581392
Package-Manager: portage-2.2.28

 dev-util/bats/Manifest  |  1 +
 dev-util/bats/bats-0.4.0.ebuild | 24 
 dev-util/bats/metadata.xml  | 26 ++
 3 files changed, 51 insertions(+)

diff --git a/dev-util/bats/Manifest b/dev-util/bats/Manifest
new file mode 100644
index 000..f74b43f
--- /dev/null
+++ b/dev-util/bats/Manifest
@@ -0,0 +1 @@
+DIST bats-0.4.0.tar.gz 17258 SHA256 
480d8d64f1681eee78d1002527f3f06e1ac01e173b761bc73d0cf33f4dc1d8d7 SHA512 
83c6c0e3ceec149708a8db5d33e95cc84852d8189498c22131c00f4288a6c870f9d522bae9230157f442338dc101e1468451d78dfa274afb83a6f0dd614c8bdb
 WHIRLPOOL 
9617418d6a288d6e57aa1d715498c9adcfbe80cd97a814382431203dab778f26139dc31a14aecfd6f2e71a51f11fe189fce6e3bb7174ce9d4ad25782a9a6fce0

diff --git a/dev-util/bats/bats-0.4.0.ebuild b/dev-util/bats/bats-0.4.0.ebuild
new file mode 100644
index 000..3fa4d97
--- /dev/null
+++ b/dev-util/bats/bats-0.4.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="An automated testing system for bash"
+HOMEPAGE="https://github.com/sstephenson/bats/;
+SRC_URI="https://github.com/sstephenson/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_test() {
+   bin/bats --tap test
+}
+
+src_install() {
+   einstalldocs
+
+   dobin libexec/*
+   doman man/bats.1 man/bats.7
+}

diff --git a/dev-util/bats/metadata.xml b/dev-util/bats/metadata.xml
new file mode 100644
index 000..63003cd
--- /dev/null
+++ b/dev-util/bats/metadata.xml
@@ -0,0 +1,26 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   dev+gentoobugzi...@henriksen.is
+   Espen H
+   Proxy maintainer - set to assignee on 
bugs
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   sstephenson/bats
+   
+   
+   Bats is a TAP-compliant testing framework for Bash. It provides a simple
+   way to verify that the UNIX programs you write behave as expected.
+
+   A Bats test file is a Bash script with special syntax for defining test
+   cases. Under the hood, each test case is just a function with a 
description.
+
+   Bats is most useful when testing software written in Bash, but you can 
use
+   it to test any UNIX program.
+   
+



[gentoo-commits] repo/gentoo:master commit in: eclass/

2016-04-30 Thread Alexis Ballier
commit: 85fb4193bc649782892ad48cf01da4fc9d3f194b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 14:23:08 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:23:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85fb4193

eclass/ros-catkin.eclass: use emake tests with nonfatal as nonfatal is still 
fatal with cmake-utils_src_make and breaks e.g. dev-ros/rviz.

 eclass/ros-catkin.eclass | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/eclass/ros-catkin.eclass b/eclass/ros-catkin.eclass
index 412ff66..30132b7 100644
--- a/eclass/ros-catkin.eclass
+++ b/eclass/ros-catkin.eclass
@@ -202,7 +202,9 @@ ros-catkin_src_compile() {
 # Decorator around cmake-utils_src_test to ensure tests are built before 
running them.
 ros-catkin_src_test_internal() {
cd "${BUILD_DIR}" || die
-   if nonfatal cmake-utils_src_make tests -n &> /dev/null ; then
+   # Using cmake-utils_src_make with nonfatal does not work and breaks e.g.
+   # dev-ros/rviz.
+   if nonfatal emake tests -n &> /dev/null ; then
cmake-utils_src_make tests
fi
cmake-utils_src_test "${@}"



[gentoo-commits] repo/gentoo:master commit in: dev-lang/ocaml/

2016-04-30 Thread Alexis Ballier
commit: d5bf89ad97a4d0f0a30f697ee4071e74fc2e9831
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 13:36:44 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5bf89ad

dev-lang/ocaml: remove 4.03 beta

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-lang/ocaml/Manifest  |   1 -
 dev-lang/ocaml/ocaml-4.03.0_beta2.ebuild | 124 ---
 2 files changed, 125 deletions(-)

diff --git a/dev-lang/ocaml/Manifest b/dev-lang/ocaml/Manifest
index 823cdd7..2b7acee 100644
--- a/dev-lang/ocaml/Manifest
+++ b/dev-lang/ocaml/Manifest
@@ -1,6 +1,5 @@
 DIST ocaml-3.12.1.tar.bz2 2949124 SHA256 
edcf563da75e0b91f09765649caa98ab1535e0c7498f0737b5591b7de084958d SHA512 
cbb050aabcbe19a4aa070d6cb74f3774cb136692dfd9433ca977f0f9520ad2f583b6cfb1a9cedfedc92e7dc794ac4a869e20aa5a67a4739002feb290435dc7e7
 WHIRLPOOL 
b7bf4844452ab52027e6b785159df6e4defc548d2f3d31eb73dc0dc05214e7c19ed654c8b3ff234a85691599df0be568ba02fafe257856be7f603177584a7ca0
 DIST ocaml-4.02.3.tar.xz 2058552 SHA256 
83c6697e135b599a196fd7936eaf8a53dd6b8f3155a796d18407b56f91df9ce3 SHA512 
a815421f6a320b18e7f351bd66884024ad4a33525ba161a198ea356892ce331be6c1ddf4cd07d120ebe9a902bcf815ce1b17e45f405e4e0b2d55ce1b6d2adada
 WHIRLPOOL 
1104cdcf23b773ebf0c0ef8d8ee36b2b4b58b1fab10a41ff7f2d522c34ae6161bc6cba28b279eea03ac183a111fc332557084b017d0c2ad6f9c969204e309597
-DIST ocaml-4.03.0+beta2.tar.xz 2282116 SHA256 
9a1e09c9676b9469a9a0137a708a277a109afec012eb2693e14a23f97540188c SHA512 
a93a20e956f2ef568f4004a201008090ac28ab941abe22822c5e0237883418ec2eff7492a81631cefe2403f255b50a18fb69ab48f934216c6d08ad9e58bc6347
 WHIRLPOOL 
e7eeb8e416fb1136cb615e6a8a11b3294681e5101a71c910e66c7d79d4cd931cc791ee07edc2a550ef561176437f520c2eecbd5071f59c9f4ae79f43f1900f5a
 DIST ocaml-4.03.0.tar.xz 2289296 SHA256 
695caf381105183f9d37bcfb63f863f782352b070e5d7ff3ca269712398fe326 SHA512 
9a7f4b17d459373334fb04f8a0d42732243245bf16bc35c935fb2119c7990d0c85549b2e11adea68a98a0a0171a461ccfbb2e249b59eedf90349f087a18ce243
 WHIRLPOOL 
9c822f7c66494a6e7fc30e565e7c8d120808a15b42cd64ccad0946f8413da44b50ec84dfd658e8f394dce4effe7eda380a0a203db14df9dfc24c7b54f7681cea
 DIST ocaml-patches-3.tar.bz2 4101 SHA256 
c4ceb604f4480c78d1cf4f848b0903c8d37798d9761f582d8d1643d4e38b8658 SHA512 
8be5c44de5a6b0b7c14723e41d92fe807b881b218cc5eee38ea7519c0f971415cb7fe30035303da275089dcb8a61c4f334c4a88e0bdbced3953503794b8308a7
 WHIRLPOOL 
f1920606785702c44dead01b1426145653bc1931acba2d614c6818baddc051e4f74ca0322cae66ade63ba0cd0df5651cfd67f511fca5f12973b67a0c50ebab6d
 DIST ocaml-patches-7.tar.bz2 2194 SHA256 
71e9496af89ded9852d8e1f32be18a5f0d7e11270958fb4bc8c588420b1e9156 SHA512 
63bca96f009e2de24ff6f7a4b37b97c5b7655d5ad6196f06cc2b18ca213e87878a310d169378c341c00aaac698530e458e301620bcc21284bc8b9ea143f642dd
 WHIRLPOOL 
02d17436f901c70b2fa8a104d8b7a6526c65ab9b40408b549c4f4dfe7a1eeae8213620d151fb181833782504e4d7cb6fa3ff7ddebe77efcb88d32fe057cbd8cc

diff --git a/dev-lang/ocaml/ocaml-4.03.0_beta2.ebuild 
b/dev-lang/ocaml/ocaml-4.03.0_beta2.ebuild
deleted file mode 100644
index f795dae..000
--- a/dev-lang/ocaml/ocaml-4.03.0_beta2.ebuild
+++ /dev/null
@@ -1,124 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit flag-o-matic eutils multilib versionator toolchain-funcs
-
-PATCHLEVEL="8"
-MY_P="${P/_/+}"
-DESCRIPTION="Fast modern type-inferring functional programming language 
descended from the ML family"
-HOMEPAGE="http://www.ocaml.org/;
-SRC_URI="http://caml.inria.fr/pub/distrib/ocaml-$(get_version_component_range 
1-2)/${MY_P}.tar.xz
-   mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2"
-
-LICENSE="QPL-1.0 LGPL-2"
-# Everytime ocaml is updated to a new version, everything ocaml must be 
rebuilt,
-# so here we go with the subslot.
-SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="emacs flambda latex ncurses +ocamlopt X xemacs"
-
-RDEPEND="
-   ncurses? ( sys-libs/ncurses:0= )
-   X? ( x11-libs/libX11 x11-proto/xproto )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-PDEPEND="emacs? ( app-emacs/ocaml-mode )
-   xemacs? ( app-xemacs/ocaml )"
-
-S="${WORKDIR}/${MY_P}"
-pkg_setup() {
-   # dev-lang/ocaml creates its own objects but calls gcc for linking, 
which will
-   # results in relocations if gcc wants to create a PIE executable
-   if gcc-specs-pie ; then
-   append-ldflags -nopie
-   ewarn "Ocaml generates its own native asm, you're using a PIE 
compiler"
-   ewarn "We have appended -nopie to ocaml build options"
-   ewarn "because linking an executable with pie while the objects 
are not pic will not work"
-   fi
-}
-
-src_prepare() {
-   EPATCH_SUFFIX="patch" epatch 

[gentoo-commits] repo/gentoo:master commit in: dev-ros/rviz/

2016-04-30 Thread Alexis Ballier
commit: d43092803bf9ff736a397e897b9244e9a90099e5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 14:18:00 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4309280

dev-ros/rviz: bump to 1.12.1

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/rviz/Manifest   |  1 +
 dev-ros/rviz/rviz-1.12.1.ebuild | 65 +
 2 files changed, 66 insertions(+)

diff --git a/dev-ros/rviz/Manifest b/dev-ros/rviz/Manifest
index 3d5821e..a8cfe59 100644
--- a/dev-ros/rviz/Manifest
+++ b/dev-ros/rviz/Manifest
@@ -2,3 +2,4 @@ DIST rviz-1.11.10.tar.gz 4526836 SHA256 
0b1f91042d9e4c90c7c40602a2f479632f432c7c
 DIST rviz-1.11.13.tar.gz 4532451 SHA256 
97189c47427f1d0d7d3599777544bd001da27694f7225d7fe3c3eab1c064b9b4 SHA512 
652355cfe062d22858925329081458b61a95d2f2d8ecf10f746b238e124553706dd2fa507c8191450d0f9a3907ebcfd2b1440212b918b7da69bd9f3b16d5a5a2
 WHIRLPOOL 
9dc30f05150304a9306b9bb41ca06ccc27271f8b4e9537128ec3a0d5ab9205598f423f234ebbf7619dd323f53ca81f0150a814bb47d280e7818159d4dbbcae2d
 DIST rviz-1.11.14.tar.gz 4532724 SHA256 
89b77d11315318e2f3737e0f04803df2b7808ff00e50c0d6ed0ae03ab3773d3e SHA512 
5d912050876b55ed405a5d31e6602db04e802e1b8cfd8f411f318519fa8c45d096fb17b3009ca195cf07345666f27d5a7b61a248d1bb88ec63b775c9fa6fa0e1
 WHIRLPOOL 
75b67c5702251a021da98a0da86c827209259231f02af6be78c79200716d6c5495541adc1c977076f8faaef35ae6ec986635639993586314456aafcf8b619a63
 DIST rviz-1.12.0.tar.gz 4531765 SHA256 
28753abc7dd3a3888b37b6eb2d7b66bbf74cd42b7eb08410e0f21ffd357aafa0 SHA512 
33b7a7fafb3b0565507a799e98c2fc2908a5b6e8ed68e013604583a2c7806693754665e363edd7e0f053fdc0f7522353cbbdee7e37a3e7e421ab3144f2ab68d9
 WHIRLPOOL 
2ac5771dcf5f67be5b51686a39efaca8887a3bdbd493a584281d7d32aa2d0a235729b667fd998535116cda0d43becd198ace05c993f09c4bef93541e4eeed480
+DIST rviz-1.12.1.tar.gz 4532138 SHA256 
194a387de5afd53b7b6de2cde06c81ae3a94d4d410545ea5bf62ef38ea2b03f0 SHA512 
64ff0cb00a1be2e845b8619f9aea7c7268b6d5ca42002fafb20a3c86b44dcce46ef7951883c51fea099763f0974675e1c24ac0f3fc5b93ae5795508443cd634c
 WHIRLPOOL 
1e65f2977337e73b5fbcf85ff633de2e6db4ce60f71be1601f06992595848c297d4048b6b1d83f0bae8bfbcf0b092783c2bdb89fd1a695f40817bf11cfa0b3a9

diff --git a/dev-ros/rviz/rviz-1.12.1.ebuild b/dev-ros/rviz/rviz-1.12.1.ebuild
new file mode 100644
index 000..23a35fa
--- /dev/null
+++ b/dev-ros/rviz/rviz-1.12.1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros-visualization/rviz;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="3D visualization tool for ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-libs/boost:=[threads]
+   media-libs/assimp
+   dev-games/ogre
+   virtual/opengl
+   dev-qt/qtwidgets:5
+   dev-qt/qtcore:5
+   dev-qt/qtopengl:5
+   dev-cpp/eigen:3
+   dev-cpp/yaml-cpp
+
+   dev-ros/angles
+   dev-ros/image_geometry
+   dev-ros/image_transport
+   dev-ros/interactive_markers
+   dev-ros/laser_geometry
+   dev-ros/message_filters
+   dev-ros/pluginlib
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-ros/resource_retriever
+   dev-ros/rosbag[${PYTHON_USEDEP}]
+   dev-ros/rosconsole
+   dev-ros/roscpp
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/tf
+   dev-ros/urdf
+
+   
dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-ros/map_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   
dev-ros/nav_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   
dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-ros/std_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/std_srvs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/visualization_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-ros/cmake_modules
+   virtual/pkgconfig
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-cpp/gtest
+   )"
+
+src_configure() {
+   local mycatkincmakeargs=( "-DUseQt5=ON" )
+   ros-catkin_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/lablgtk/

2016-04-30 Thread Alexis Ballier
commit: 5db87542cc41cb498dd0ddc28767f28930a56153
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 13:35:42 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db87542

dev-ml/lablgtk: remove old

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/lablgtk/Manifest |  2 -
 dev-ml/lablgtk/lablgtk-2.18.0-r1.ebuild | 82 -
 dev-ml/lablgtk/lablgtk-2.18.2.ebuild| 82 -
 3 files changed, 166 deletions(-)

diff --git a/dev-ml/lablgtk/Manifest b/dev-ml/lablgtk/Manifest
index 1660fe8..25e6303 100644
--- a/dev-ml/lablgtk/Manifest
+++ b/dev-ml/lablgtk/Manifest
@@ -1,4 +1,2 @@
-DIST lablgtk-2.18.0.tar.gz 789507 SHA256 
c76a7ae9454e89365666cf19728dbb51edb6810e2e57032b3bebd53ccec5946e SHA512 
5bb8eb753c928b4a7771e33a2f821dbc76fa64ce35df509884d11ce57efde90ceceb2fe94a57311f13c5106956f24d0fae581134a1a43c0645ff41c66fbd5461
 WHIRLPOOL 
e4b17de89f6e4a41b385cd0c06fdecb9943a5f675bf5a168ade20f421b66901d307430d0789018972c889491be7c9a06dc2a38ccb3e5eef2e8f1ad8663ae4e94
-DIST lablgtk-2.18.2.tar.gz 787674 SHA256 
deedce9f934821196f9a4d0fc85cad12f59ec82298b908d12cf76cb015d13939 SHA512 
799ee287a0088c1b532708191c2b5939287fdc9cfdca6483a60b51184be7fcf4f075cb502295aef2ce41d244b65aedaa9e18ccdb21857a36166b61aae7866406
 WHIRLPOOL 
0da1762455a46712b3b9c88634da2ee1bfa4c1a42a24620af4043c1c48afec13ba67d61b0d8f6e756e2128a8a1163d307ec3edaa99c94218fb88a0f490b5d24c
 DIST lablgtk-2.18.3.tar.gz 788177 SHA256 
975bebf2f9ca74dc3bf7431ebb640ff6a924bb80c8ee5f4467c475a7e4b0cbaf SHA512 
b455761cef742579449a46f98bf807732cc6b5384cbccf6d4eca940e351ccb5cbd464e0d81cda2884277b45a8f223838de44cb49878e2f602183c963cdb0defe
 WHIRLPOOL 
4c6bfcdf8a4fdc7e27014bd9c553942d03caf4e25f420ee6018eeb19d20cb6a5a8c6bb00eabf7fda80abe6b9c727b2c5d64641d8f9036c943276406836c87c03
 DIST lablgtk-2.18.4.tar.gz 800059 SHA256 
b316ae0b92e760c1ab0d1bdeaa0a3c2a6ab14face5a0fe2b93445be3a3d013c0 SHA512 
8b400f6467929ee433541e9649bf0301be2c851c9bdbaf3f001fe2bf2e1ee755a6dbc541b8e0b571d567ee8c8a997323aeb731d6f73a54b1594977237ff76d25
 WHIRLPOOL 
cec155ca6ae3e0829bde006f209110529697e856f758ed6aa7183f455dc58674a77cf8e9bab81ef7ce6d6f4511d7c49841a669fa53ec6eab2a22755ee7f99c9a

diff --git a/dev-ml/lablgtk/lablgtk-2.18.0-r1.ebuild 
b/dev-ml/lablgtk/lablgtk-2.18.0-r1.ebuild
deleted file mode 100644
index b7dbbdb..000
--- a/dev-ml/lablgtk/lablgtk-2.18.0-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit multilib findlib
-
-IUSE="debug examples glade gnomecanvas sourceview +ocamlopt opengl spell svg"
-
-DESCRIPTION="Objective CAML interface for Gtk+2"
-HOMEPAGE="http://lablgtk.forge.ocamlcore.org/;
-SRC_URI="https://forge.ocamlcore.org/frs/download.php/1261/${P}.tar.gz;
-LICENSE="LGPL-2.1-with-linking-exception examples? ( lablgtk-examples )"
-
-RDEPEND=">=x11-libs/gtk+-2.10:2
-   >=dev-lang/ocaml-3.10:=[ocamlopt?]
-   svg? ( >=gnome-base/librsvg-2.2:2 )
-   glade? ( >=gnome-base/libglade-2.0.1 )
-   gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 )
-   opengl? ( >=dev-ml/lablgl-0.98:=
-   >=x11-libs/gtkglarea-1.9:2 )
-   spell? ( app-text/gtkspell:2 )
-   sourceview? ( x11-libs/gtksourceview:2.0 )
-   "
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-SLOT="2/${PV}"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
-
-src_configure() {
-   econf $(use_enable debug) \
-   $(use_with svg rsvg) \
-   $(use_with glade) \
-   --without-gnomeui \
-   --without-panel \
-   $(use_with opengl gl) \
-   $(use_with spell gtkspell) \
-   --without-gtksourceview \
-   $(use_with sourceview gtksourceview2) \
-   $(use_with gnomecanvas)
-}
-
-src_compile() {
-   emake -j1 all
-   if use ocamlopt; then
-   emake -j1 opt
-   fi
-}
-
-install_examples() {
-   insinto /usr/share/doc/${P}/examples
-   doins examples/*.ml examples/*.rgb examples/*.png examples/*.xpm
-
-   # Install examples for optional components
-   use gnomecanvas && insinto /usr/share/doc/${PF}/examples/canvas && 
doins examples/canvas/*.ml examples/canvas/*.png
-   use svg && insinto /usr/share/doc/${PF}/examples/rsvg && doins 
examples/rsvg/*.ml examples/rsvg/*.svg
-   use glade && insinto /usr/share/doc/${PF}/examples/glade && doins 
examples/glade/*.ml examples/glade/*.glade*
-   use sourceview && insinto /usr/share/doc/${PF}/examples/sourceview && 
doins examples/sourceview/*.ml examples/sourceview/*.lang
-   use opengl && insinto /usr/share/doc/${PF}/examples/GL && doins 
examples/GL/*.ml
-
-   docompress -x /usr/share/doc/${PF}/examples

[gentoo-commits] repo/gentoo:master commit in: dev-ros/controller_manager_tests/

2016-04-30 Thread Alexis Ballier
commit: 440e806168422aaf05810c5032b8c9dfbe5a1dcd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:28 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=440e8061

dev-ros/controller_manager_tests: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/controller_manager_tests/Manifest  |  1 +
 .../controller_manager_tests-0.10.1.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/controller_manager_tests/Manifest 
b/dev-ros/controller_manager_tests/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/controller_manager_tests/Manifest
+++ b/dev-ros/controller_manager_tests/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git 
a/dev-ros/controller_manager_tests/controller_manager_tests-0.10.1.ebuild 
b/dev-ros/controller_manager_tests/controller_manager_tests-0.10.1.ebuild
new file mode 100644
index 000..c1106a1
--- /dev/null
+++ b/dev-ros/controller_manager_tests/controller_manager_tests-0.10.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for the controller manager"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/controller_manager[${PYTHON_USEDEP}]
+   dev-ros/controller_interface
+   dev-ros/control_toolbox
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest[${PYTHON_USEDEP}] 
dev-python/nose[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/labltk/

2016-04-30 Thread Alexis Ballier
commit: 9d232f45a95831f944a2f7f9615a68cb8f420e8e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 13:23:56 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d232f45

dev-ml/labltk: bump to 8.06.1

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/labltk/Manifest |  1 +
 dev-ml/labltk/labltk-8.06.1.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-ml/labltk/Manifest b/dev-ml/labltk/Manifest
index 1dc5c02..09a0f4f 100644
--- a/dev-ml/labltk/Manifest
+++ b/dev-ml/labltk/Manifest
@@ -1 +1,2 @@
 DIST labltk-8.06.0.tar.gz 368790 SHA256 
71997dbd6c36e4eb064484dc73037d4bd10e465e180fead07a4b193d21af9764 SHA512 
c005f8c177bca982a39bfcfd9d77640bedf7e4cc3a6690fc01fa2a8ebedcfb30ad3677501400ae2e0e276eb13fdd565319e23bb02dce84d78257ae7fbe545f47
 WHIRLPOOL 
e231527f1403fbe9aa1102d0a6bc444df0ce5806e64ce8d1323100580767e823922db0713c0d3423f79ff2e82e162673486160953aaea4ff188b5ae666ea4445
+DIST labltk-8.06.1.tar.gz 369426 SHA256 
d6ac4bb373d10342a1af045f28db34dcded50d92a6c6886ed45d1de050e63c8b SHA512 
e41fc4f69e2e72302e8f1064ab71f753e379a51f78e3cb8b793eb6483fb35467764df7ef47f1169968525561b4da4f70942f6e7c798de79fd4ffebe1a4390d0c
 WHIRLPOOL 
d4ab8e6ca710cc1147f83652a9beb26c1a6c2f3ebc754d8c2b9b1aed132b34ec1e65d71bec1eb4e672305421220df74b237d3d4f25ee53ca17d7669843f21bb2

diff --git a/dev-ml/labltk/labltk-8.06.1.ebuild 
b/dev-ml/labltk/labltk-8.06.1.ebuild
new file mode 100644
index 000..a5ef9d6
--- /dev/null
+++ b/dev-ml/labltk/labltk-8.06.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit findlib eutils
+
+DESCRIPTION="OCaml interface to the Tcl/Tk GUI framework"
+HOMEPAGE="https://forge.ocamlcore.org/projects/labltk/;
+SRC_URI="https://forge.ocamlcore.org/frs/download.php/1603/${P}.tar.gz;
+
+LICENSE="QPL-1.0 LGPL-2"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="+ocamlopt X"
+
+RDEPEND=">=dev-lang/tk-8.0.3:=
+   >=dev-lang/ocaml-4.03:=[ocamlopt?,X?]"
+DEPEND="${RDEPEND}
+   >=dev-ml/findlib-1.5.5-r1"
+
+src_prepare() {
+   epatch "${FILESDIR}/findlib.patch"
+}
+
+src_configure() {
+   ./configure --use-findlib --verbose $(use X || echo "--tk-no-x11") || 
die "configure failed!"
+}
+
+src_compile() {
+   emake -j1
+   use ocamlopt && emake -j1 opt
+}
+
+src_install() {
+   findlib_src_preinst
+   dodir /usr/bin
+   emake \
+   INSTALLDIR="${D}$(ocamlc -where)/labltk" \
+   INSTALLBINDIR="${ED}/usr/bin/" \
+   install
+   dodoc Changes README.mlTk
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/hardware_interface/

2016-04-30 Thread Alexis Ballier
commit: a5987a13ff09bb68ddcedcc185c8cc25d8c43f25
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:36 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5987a13

dev-ros/hardware_interface: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/hardware_interface/Manifest   |  1 +
 .../hardware_interface-0.10.1.ebuild  | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-ros/hardware_interface/Manifest 
b/dev-ros/hardware_interface/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/hardware_interface/Manifest
+++ b/dev-ros/hardware_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git a/dev-ros/hardware_interface/hardware_interface-0.10.1.ebuild 
b/dev-ros/hardware_interface/hardware_interface-0.10.1.ebuild
new file mode 100644
index 000..d7aebeb
--- /dev/null
+++ b/dev-ros/hardware_interface/hardware_interface-0.10.1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Hardware Interface base class"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-ros/roscpp"
+DEPEND="${RDEPEND}
+   test? ( dev-cpp/gtest )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/controller_manager_msgs/

2016-04-30 Thread Alexis Ballier
commit: 94dda87f4076c32166c2097bdfc4a384ce21835d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:23 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94dda87f

dev-ros/controller_manager_msgs: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/controller_manager_msgs/Manifest|  1 +
 .../controller_manager_msgs-0.10.1.ebuild   | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/controller_manager_msgs/Manifest 
b/dev-ros/controller_manager_msgs/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/controller_manager_msgs/Manifest
+++ b/dev-ros/controller_manager_msgs/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git 
a/dev-ros/controller_manager_msgs/controller_manager_msgs-0.10.1.ebuild 
b/dev-ros/controller_manager_msgs/controller_manager_msgs-0.10.1.ebuild
new file mode 100644
index 000..e424b8a
--- /dev/null
+++ b/dev-ros/controller_manager_msgs/controller_manager_msgs-0.10.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+CATKIN_HAS_MESSAGES=yes
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="The controller manager"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-ros/rospy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/oasis/

2016-04-30 Thread Alexis Ballier
commit: 49f585d8455bab58b8977879883f23f1b4437327
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 13:03:50 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f585d8

dev-ml/oasis: bump to 0.4.6

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/oasis/Manifest   |  1 +
 dev-ml/oasis/oasis-0.4.6.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ml/oasis/Manifest b/dev-ml/oasis/Manifest
index 0cf9d6e..32c8f8b 100644
--- a/dev-ml/oasis/Manifest
+++ b/dev-ml/oasis/Manifest
@@ -1 +1,2 @@
 DIST oasis-0.4.5.tar.gz 336502 SHA256 
6623a603415c4718add6a6ebad80f6688164a2e9b28576c082548b17bf8b2e44 SHA512 
97d5401762ffda6bf4d7a239d9c77f8647d58da1728925e6de6e8fdfded6f8e7bb69652a838b86ab7203cd68436b06f76921c76840b97db56a94bb87d74450d7
 WHIRLPOOL 
46f5c3f900baa3d3b6ada8c0cf90cc90cfddc70523510d5ba5541e5075c96360ebacdd23a1b0f8b28a90bda7fb1700b9a2e9d7989af650e9aa5d50f358795d92
+DIST oasis-0.4.6.tar.gz 337490 SHA256 
1324becb9fbc181f7276936339f62db224d166f01e50ea19f8f62037271bbbfb SHA512 
c85432c75de1814024b11f9aea89fc740016fc13f2fd16ad1a4819de406d26a698f33a43e64649cbc17fe194c5da336e83ad85af91d6b97d0b3f70db44f33d88
 WHIRLPOOL 
7a742e67dcab5468b57ae2e5c730508b07ff9380a584e75d4b269d84a09a73e826819511d9ebfbbc5748d57163104fc7ab93756e8bfcd56954a2ad411e9ab04c

diff --git a/dev-ml/oasis/oasis-0.4.6.ebuild b/dev-ml/oasis/oasis-0.4.6.ebuild
new file mode 100644
index 000..c654858
--- /dev/null
+++ b/dev-ml/oasis/oasis-0.4.6.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_TESTS=1
+OASIS_BUILD_DOCS=1
+
+inherit oasis
+
+MY_P=${P/_/\~}
+DESCRIPTION="OASIS is a tool to integrate a configure, build and install 
system in OCaml project"
+HOMEPAGE="http://oasis.forge.ocamlcore.org/index.php;
+SRC_URI="http://forge.ocamlcore.org/frs/download.php/1604/${MY_P}.tar.gz;
+
+LICENSE="LGPL-2.1-with-linking-exception"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=">=dev-ml/ocaml-data-notation-0.0.11:=
+   dev-ml/ocamlbuild:=[ocamlopt]"
+DEPEND="${RDEPEND}
+   >=dev-ml/findlib-1.3.1
+   dev-ml/ocamlify
+   dev-ml/ocamlmod
+   !=dev-ml/ocaml-fileutils-0.4.2
+   >=dev-ml/ounit-2.0.0
+   >=dev-ml/ocaml-expect-0.0.4
+   dev-ml/pcre-ocaml
+   dev-ml/extlib
+   )"
+
+STRIP_MASK="*/bin/*"
+S="${WORKDIR}/${MY_P}"
+DOCS=( "README.txt" "TODO.txt" "AUTHORS.txt" "CHANGES.txt" )



[gentoo-commits] repo/gentoo:master commit in: dev-ros/joint_limits_interface/

2016-04-30 Thread Alexis Ballier
commit: de4a89c0e094fec463b70cc88dd82f35ed8e55b0
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:44 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de4a89c0

dev-ros/joint_limits_interface: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/joint_limits_interface/Manifest|  1 +
 .../joint_limits_interface-0.10.1.ebuild   | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/joint_limits_interface/Manifest 
b/dev-ros/joint_limits_interface/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/joint_limits_interface/Manifest
+++ b/dev-ros/joint_limits_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git 
a/dev-ros/joint_limits_interface/joint_limits_interface-0.10.1.ebuild 
b/dev-ros/joint_limits_interface/joint_limits_interface-0.10.1.ebuild
new file mode 100644
index 000..ef9f711
--- /dev/null
+++ b/dev-ros/joint_limits_interface/joint_limits_interface-0.10.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Interface for enforcing joint limits"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roscpp
+   dev-ros/hardware_interface
+   dev-libs/urdfdom
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest dev-cpp/gtest )"



[gentoo-commits] repo/gentoo:master commit in: ros-meta/ros_control/

2016-04-30 Thread Alexis Ballier
commit: 98cbf865d2344f8b625e524285666c444704f72e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:59 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98cbf865

ros-meta/ros_control: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 ros-meta/ros_control/Manifest  |  1 +
 ros-meta/ros_control/ros_control-0.10.1.ebuild | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/ros-meta/ros_control/Manifest b/ros-meta/ros_control/Manifest
index 8a9d0b7..8125b98 100644
--- a/ros-meta/ros_control/Manifest
+++ b/ros-meta/ros_control/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git a/ros-meta/ros_control/ros_control-0.10.1.ebuild 
b/ros-meta/ros_control/ros_control-0.10.1.ebuild
new file mode 100644
index 000..0aed54a
--- /dev/null
+++ b/ros-meta/ros_control/ros_control-0.10.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Controller interfaces, controller managers, transmissions, 
hardware_interfaces, control_toolbox"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/controller_interface
+   dev-ros/controller_manager
+   dev-ros/controller_manager_msgs
+   dev-ros/controller_manager_tests
+   dev-ros/hardware_interface
+   dev-ros/joint_limits_interface
+   dev-ros/rqt_controller_manager
+   dev-ros/transmission_interface
+"
+DEPEND="${RDEPEND}"



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

2016-04-30 Thread Alexis Ballier
commit: 82a9b1e27e82d947eb70b08cb6c4271417663ded
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 12:34:12 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a9b1e2

media-video/ffmpeg: bump to 2.8.7

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/Manifest|   1 +
 media-video/ffmpeg/ffmpeg-2.8.7.ebuild | 458 +
 2 files changed, 459 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 1332dc9..91df101 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -1,2 +1,3 @@
 DIST ffmpeg-2.8.6.tar.bz2 8582420 SHA256 
40611e329bc354592c6f8f1deb033c31b91f80e91f5707ca4f9afceca78d8e62 SHA512 
68fb41884b95953025b9c56496b17e13062196800ff9834dac43a12e9a0048d4a763f50a2256418c91cc850b63713e1debbf9170737f29621f48946adef152dc
 WHIRLPOOL 
20a4b12b5a03f187b753cca43c65bd75b49cc21c9ffabad31b8ac0ab47fc8e017931ad5076b701c303bb594b20acb403d3ec2dabdf647fd262c070c8dabf1eea
+DIST ffmpeg-2.8.7.tar.bz2 8581128 SHA256 
8777ce4a335640fdd13680ba423ef6da330ff5071bfbe27cdbb452379167efe5 SHA512 
26c7e50b76c89c606f4a3894c7c42bf1dc70b1778df879ba66723b0b29bfb7a206004bd3e9da29a27f57cf870ce395eb8b7ff1d53d7ba7b3c620d956b1c4cb06
 WHIRLPOOL 
361a3ef9c664b3b5f489b871071a1ce581cfef089a6a1014988e6c7463d45533d3a8af9b3e49ddb7e2257cef06205771d8e584a090d65e3c645421e963346a35
 DIST ffmpeg-3.0.1.tar.bz2 8879122 SHA256 
f7f7052c120f494dd501f96becff9b5a4ae10cfbde97bc2f1e9f0fd6613a4984 SHA512 
417ceba9ca3e179ee0c3c4fead7c55f4b6f074bc156516dd61dae0bee0f8f7b2fe79c06c7aa7a748fecba48b8ff96cc4c24d395a833064f1962698ac5fd5a9ad
 WHIRLPOOL 
cbb28a851b6df518ae06d89b021a9363183c8b7c59a53125038fd7b32b4954dc1852edd35dde1d05c535631e13512652dea07e75d60b13992ee3653902ecfe9c

diff --git a/media-video/ffmpeg/ffmpeg-2.8.7.ebuild 
b/media-video/ffmpeg/ffmpeg-2.8.7.ebuild
new file mode 100644
index 000..e28564c
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-2.8.7.ebuild
@@ -0,0 +1,458 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=54.56.56
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-2"
+   EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
+fi
+
+inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution to record, convert and stream audio and video. 
Includes libavcodec"
+HOMEPAGE="http://ffmpeg.org/;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
+   SRC_URI="mirror://gentoo/${P}.tar.bz2"
+else # Release
+   SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2;
+fi
+FFMPEG_REVISION="${PV#*_p}"
+
+SLOT="0/${FFMPEG_SUBSLOT}"
+LICENSE="
+   !gpl? ( LGPL-2.1 )
+   gpl? ( GPL-2 )
+   amr? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   encode? (
+   aac? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   amrenc? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   )
+   samba? ( GPL-3 )
+"
+if [ "${PV#}" = "${PV}" ] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+fi
+
+# Options to use as use_enable in the foo[:bar] form.
+# This will feed configure with $(use_enable foo bar)
+# or $(use_enable foo foo) if no :bar is set.
+# foo is added to IUSE.
+FFMPEG_FLAG_MAP=(
+   +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls 
+gpl
+   +hardcoded-tables +iconv lzma +network openssl +postproc
+   samba:libsmbclient sdl:ffplay sdl vaapi vdpau X:xlib xcb:libxcb
+   xcb:libxcb-shm xcb:libxcb-xfixes +zlib
+   # libavdevice options
+   cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca 
openal
+   opengl
+   # indevs
+   libv4l:libv4l2 pulseaudio:libpulse
+   # decoders
+   amr:libopencore-amrwb amr:libopencore-amrnb fdk:libfdk-aac
+   jpeg2k:libopenjpeg 

[gentoo-commits] repo/gentoo:master commit in: dev-ros/controller_interface/

2016-04-30 Thread Alexis Ballier
commit: 58557ec5043a574d700015bd68e6bf2551c9bff8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:05 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58557ec5

dev-ros/controller_interface: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/controller_interface/Manifest  |  1 +
 .../controller_interface-0.10.1.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-ros/controller_interface/Manifest 
b/dev-ros/controller_interface/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/controller_interface/Manifest
+++ b/dev-ros/controller_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git a/dev-ros/controller_interface/controller_interface-0.10.1.ebuild 
b/dev-ros/controller_interface/controller_interface-0.10.1.ebuild
new file mode 100644
index 000..cae6627
--- /dev/null
+++ b/dev-ros/controller_interface/controller_interface-0.10.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Interface base class for controllers"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roscpp
+   dev-ros/hardware_interface
+   dev-ros/pluginlib
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/transmission_interface/

2016-04-30 Thread Alexis Ballier
commit: e21f0bcb7e06d2e94146e11f7b3d2fb4939bd266
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:55 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21f0bcb

dev-ros/transmission_interface: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/transmission_interface/Manifest|  1 +
 .../transmission_interface-0.10.1.ebuild   | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/transmission_interface/Manifest 
b/dev-ros/transmission_interface/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/transmission_interface/Manifest
+++ b/dev-ros/transmission_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git 
a/dev-ros/transmission_interface/transmission_interface-0.10.1.ebuild 
b/dev-ros/transmission_interface/transmission_interface-0.10.1.ebuild
new file mode 100644
index 000..7df9613
--- /dev/null
+++ b/dev-ros/transmission_interface/transmission_interface-0.10.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Transmission Interface"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/hardware_interface
+   dev-ros/pluginlib
+   dev-ros/resource_retriever
+   dev-ros/roscpp
+   dev-libs/tinyxml
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-04-30 Thread Alexis Ballier
commit: db05cccbe689e7388924068b0631c2e6cb0afb61
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 13:23:24 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db05cccb

profiles/package.mask: mask latest dev-ml/labltk with ocaml 4.03

 profiles/package.mask | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index c10dc6a..e3c4db9 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -260,6 +260,7 @@ dev-vcs/statcvs
 >=dev-lang/ocaml-4.03_beta
 >=dev-ml/camlp4-4.03
 >=dev-ml/ppx_tools-4.03
+>=dev-ml/labltk-8.06.1
 
 # Patrice Clement  (29 Feb 2016)
 # Duplicate of dev-libs/libedit.



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

2016-04-30 Thread Alexis Ballier
commit: eebe6d0b4d0f20c8d9ef67f938ffe8674886a7c9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 12:56:38 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eebe6d0b

media-video/ffmpeg: bump to 3.0.2

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/Manifest|   1 +
 media-video/ffmpeg/ffmpeg-3.0.2.ebuild | 462 +
 2 files changed, 463 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 91df101..76c2ea0 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -1,3 +1,4 @@
 DIST ffmpeg-2.8.6.tar.bz2 8582420 SHA256 
40611e329bc354592c6f8f1deb033c31b91f80e91f5707ca4f9afceca78d8e62 SHA512 
68fb41884b95953025b9c56496b17e13062196800ff9834dac43a12e9a0048d4a763f50a2256418c91cc850b63713e1debbf9170737f29621f48946adef152dc
 WHIRLPOOL 
20a4b12b5a03f187b753cca43c65bd75b49cc21c9ffabad31b8ac0ab47fc8e017931ad5076b701c303bb594b20acb403d3ec2dabdf647fd262c070c8dabf1eea
 DIST ffmpeg-2.8.7.tar.bz2 8581128 SHA256 
8777ce4a335640fdd13680ba423ef6da330ff5071bfbe27cdbb452379167efe5 SHA512 
26c7e50b76c89c606f4a3894c7c42bf1dc70b1778df879ba66723b0b29bfb7a206004bd3e9da29a27f57cf870ce395eb8b7ff1d53d7ba7b3c620d956b1c4cb06
 WHIRLPOOL 
361a3ef9c664b3b5f489b871071a1ce581cfef089a6a1014988e6c7463d45533d3a8af9b3e49ddb7e2257cef06205771d8e584a090d65e3c645421e963346a35
 DIST ffmpeg-3.0.1.tar.bz2 8879122 SHA256 
f7f7052c120f494dd501f96becff9b5a4ae10cfbde97bc2f1e9f0fd6613a4984 SHA512 
417ceba9ca3e179ee0c3c4fead7c55f4b6f074bc156516dd61dae0bee0f8f7b2fe79c06c7aa7a748fecba48b8ff96cc4c24d395a833064f1962698ac5fd5a9ad
 WHIRLPOOL 
cbb28a851b6df518ae06d89b021a9363183c8b7c59a53125038fd7b32b4954dc1852edd35dde1d05c535631e13512652dea07e75d60b13992ee3653902ecfe9c
+DIST ffmpeg-3.0.2.tar.bz2 8883140 SHA256 
30e3c77c2f4c358ed087869455a7496cbd7753a5e1b98d20ba49c1004009fd36 SHA512 
67697334899b57efd6cfaebca1bb7450635034af34daae1caf77c57239116a7d2854eef3da967d3d1be4b89f346c79e970dc221543ab6181088172460807bc91
 WHIRLPOOL 
f8aab8adb24a420bd6435454a84bc4a8e5068dea82a8282b4037470a9c9131f41d476dea0fdd9b659e9f91f2a835b19cc2bd9d70aa81bcbe861ec32ce954903a

diff --git a/media-video/ffmpeg/ffmpeg-3.0.2.ebuild 
b/media-video/ffmpeg/ffmpeg-3.0.2.ebuild
new file mode 100644
index 000..6abf75c
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-3.0.2.ebuild
@@ -0,0 +1,462 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=55.57.57
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
+fi
+
+inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution to record, convert and stream audio and video. 
Includes libavcodec"
+HOMEPAGE="http://ffmpeg.org/;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
+   SRC_URI="mirror://gentoo/${P}.tar.bz2"
+else # Release
+   SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2;
+fi
+FFMPEG_REVISION="${PV#*_p}"
+
+SLOT="0/${FFMPEG_SUBSLOT}"
+LICENSE="
+   !gpl? ( LGPL-2.1 )
+   gpl? ( GPL-2 )
+   amr? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   gmp? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   encode? (
+   amrenc? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   )
+   samba? ( GPL-3 )
+"
+if [ "${PV#}" = "${PV}" ] ; then
+   KEYWORDS="~amd64 ~mips ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+fi
+
+# Options to use as use_enable in the foo[:bar] form.
+# This will feed configure with $(use_enable foo bar)
+# or $(use_enable foo foo) if no :bar is set.
+# foo is added to IUSE.
+FFMPEG_FLAG_MAP=(
+   +bzip2:bzlib cpudetection:runtime-cpudetect debug gcrypt gnutls 
gmp
+   +gpl +hardcoded-tables +iconv lzma +network openssl +postproc
+   samba:libsmbclient sdl:ffplay sdl vaapi vdpau X:xlib xcb:libxcb
+   xcb:libxcb-shm xcb:libxcb-xfixes +zlib
+   # libavdevice options
+   

[gentoo-commits] repo/gentoo:master commit in: dev-lang/ocaml/

2016-04-30 Thread Alexis Ballier
commit: 901de1fdcf9e7105ea677eeadbb5ec7addaec8f2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 13:20:30 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=901de1fd

dev-lang/ocaml: bump to 4.03

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-lang/ocaml/Manifest|   1 +
 dev-lang/ocaml/ocaml-4.03.0.ebuild | 124 +
 2 files changed, 125 insertions(+)

diff --git a/dev-lang/ocaml/Manifest b/dev-lang/ocaml/Manifest
index cf28c4c..823cdd7 100644
--- a/dev-lang/ocaml/Manifest
+++ b/dev-lang/ocaml/Manifest
@@ -1,6 +1,7 @@
 DIST ocaml-3.12.1.tar.bz2 2949124 SHA256 
edcf563da75e0b91f09765649caa98ab1535e0c7498f0737b5591b7de084958d SHA512 
cbb050aabcbe19a4aa070d6cb74f3774cb136692dfd9433ca977f0f9520ad2f583b6cfb1a9cedfedc92e7dc794ac4a869e20aa5a67a4739002feb290435dc7e7
 WHIRLPOOL 
b7bf4844452ab52027e6b785159df6e4defc548d2f3d31eb73dc0dc05214e7c19ed654c8b3ff234a85691599df0be568ba02fafe257856be7f603177584a7ca0
 DIST ocaml-4.02.3.tar.xz 2058552 SHA256 
83c6697e135b599a196fd7936eaf8a53dd6b8f3155a796d18407b56f91df9ce3 SHA512 
a815421f6a320b18e7f351bd66884024ad4a33525ba161a198ea356892ce331be6c1ddf4cd07d120ebe9a902bcf815ce1b17e45f405e4e0b2d55ce1b6d2adada
 WHIRLPOOL 
1104cdcf23b773ebf0c0ef8d8ee36b2b4b58b1fab10a41ff7f2d522c34ae6161bc6cba28b279eea03ac183a111fc332557084b017d0c2ad6f9c969204e309597
 DIST ocaml-4.03.0+beta2.tar.xz 2282116 SHA256 
9a1e09c9676b9469a9a0137a708a277a109afec012eb2693e14a23f97540188c SHA512 
a93a20e956f2ef568f4004a201008090ac28ab941abe22822c5e0237883418ec2eff7492a81631cefe2403f255b50a18fb69ab48f934216c6d08ad9e58bc6347
 WHIRLPOOL 
e7eeb8e416fb1136cb615e6a8a11b3294681e5101a71c910e66c7d79d4cd931cc791ee07edc2a550ef561176437f520c2eecbd5071f59c9f4ae79f43f1900f5a
+DIST ocaml-4.03.0.tar.xz 2289296 SHA256 
695caf381105183f9d37bcfb63f863f782352b070e5d7ff3ca269712398fe326 SHA512 
9a7f4b17d459373334fb04f8a0d42732243245bf16bc35c935fb2119c7990d0c85549b2e11adea68a98a0a0171a461ccfbb2e249b59eedf90349f087a18ce243
 WHIRLPOOL 
9c822f7c66494a6e7fc30e565e7c8d120808a15b42cd64ccad0946f8413da44b50ec84dfd658e8f394dce4effe7eda380a0a203db14df9dfc24c7b54f7681cea
 DIST ocaml-patches-3.tar.bz2 4101 SHA256 
c4ceb604f4480c78d1cf4f848b0903c8d37798d9761f582d8d1643d4e38b8658 SHA512 
8be5c44de5a6b0b7c14723e41d92fe807b881b218cc5eee38ea7519c0f971415cb7fe30035303da275089dcb8a61c4f334c4a88e0bdbced3953503794b8308a7
 WHIRLPOOL 
f1920606785702c44dead01b1426145653bc1931acba2d614c6818baddc051e4f74ca0322cae66ade63ba0cd0df5651cfd67f511fca5f12973b67a0c50ebab6d
 DIST ocaml-patches-7.tar.bz2 2194 SHA256 
71e9496af89ded9852d8e1f32be18a5f0d7e11270958fb4bc8c588420b1e9156 SHA512 
63bca96f009e2de24ff6f7a4b37b97c5b7655d5ad6196f06cc2b18ca213e87878a310d169378c341c00aaac698530e458e301620bcc21284bc8b9ea143f642dd
 WHIRLPOOL 
02d17436f901c70b2fa8a104d8b7a6526c65ab9b40408b549c4f4dfe7a1eeae8213620d151fb181833782504e4d7cb6fa3ff7ddebe77efcb88d32fe057cbd8cc
 DIST ocaml-patches-8.tar.bz2 1803 SHA256 
bce7ea483842f6e201cdf3de266928b39b5b45322315010291ed28f811720525 SHA512 
fc477fbb5bdec60a3c4d3dfa110119bb579560ac0e0e57e30e076da72643bda6359c06fd3745fd3436c5d611dbbd888ec2921e9d1920f4929df633c35a797411
 WHIRLPOOL 
ae73b5377744add3afce012b5745fafd70c0f92f75cd6cf91560e0f2ba359a91f7276afed13db145c307be9fdf79c339c2c69be6946565354c68d701fa61a4be

diff --git a/dev-lang/ocaml/ocaml-4.03.0.ebuild 
b/dev-lang/ocaml/ocaml-4.03.0.ebuild
new file mode 100644
index 000..f795dae
--- /dev/null
+++ b/dev-lang/ocaml/ocaml-4.03.0.ebuild
@@ -0,0 +1,124 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit flag-o-matic eutils multilib versionator toolchain-funcs
+
+PATCHLEVEL="8"
+MY_P="${P/_/+}"
+DESCRIPTION="Fast modern type-inferring functional programming language 
descended from the ML family"
+HOMEPAGE="http://www.ocaml.org/;
+SRC_URI="http://caml.inria.fr/pub/distrib/ocaml-$(get_version_component_range 
1-2)/${MY_P}.tar.xz
+   mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2"
+
+LICENSE="QPL-1.0 LGPL-2"
+# Everytime ocaml is updated to a new version, everything ocaml must be 
rebuilt,
+# so here we go with the subslot.
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="emacs flambda latex ncurses +ocamlopt X xemacs"
+
+RDEPEND="
+   ncurses? ( sys-libs/ncurses:0= )
+   X? ( x11-libs/libX11 x11-proto/xproto )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+PDEPEND="emacs? ( app-emacs/ocaml-mode )
+   xemacs? ( app-xemacs/ocaml )"
+
+S="${WORKDIR}/${MY_P}"
+pkg_setup() {
+   # dev-lang/ocaml creates its own objects but calls gcc for linking, 
which will
+   # results in relocations if gcc wants to create a PIE executable
+   if gcc-specs-pie ; then
+   

[gentoo-commits] repo/gentoo:master commit in: dev-ros/rqt_controller_manager/

2016-04-30 Thread Alexis Ballier
commit: 99e99b38fa023bfb23b10c8db8d1aab14e9ce851
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:51 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99e99b38

dev-ros/rqt_controller_manager: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/rqt_controller_manager/Manifest|  1 +
 .../rqt_controller_manager-0.10.1.ebuild   | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-ros/rqt_controller_manager/Manifest 
b/dev-ros/rqt_controller_manager/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/rqt_controller_manager/Manifest
+++ b/dev-ros/rqt_controller_manager/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git 
a/dev-ros/rqt_controller_manager/rqt_controller_manager-0.10.1.ebuild 
b/dev-ros/rqt_controller_manager/rqt_controller_manager-0.10.1.ebuild
new file mode 100644
index 000..8a428a77
--- /dev/null
+++ b/dev-ros/rqt_controller_manager/rqt_controller_manager-0.10.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="RQT control manager plugin"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/controller_manager[${PYTHON_USEDEP}]
+   dev-ros/rqt_gui[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/lablgtk/

2016-04-30 Thread Alexis Ballier
commit: bfb6a1a824cef6e72ab9ccfff5f6fcc5d6b0625c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 13:34:48 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfb6a1a8

dev-ml/lablgtk: bump to 2.18.4

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/lablgtk/Manifest  |  1 +
 dev-ml/lablgtk/lablgtk-2.18.4.ebuild | 83 
 2 files changed, 84 insertions(+)

diff --git a/dev-ml/lablgtk/Manifest b/dev-ml/lablgtk/Manifest
index 40e643c..1660fe8 100644
--- a/dev-ml/lablgtk/Manifest
+++ b/dev-ml/lablgtk/Manifest
@@ -1,3 +1,4 @@
 DIST lablgtk-2.18.0.tar.gz 789507 SHA256 
c76a7ae9454e89365666cf19728dbb51edb6810e2e57032b3bebd53ccec5946e SHA512 
5bb8eb753c928b4a7771e33a2f821dbc76fa64ce35df509884d11ce57efde90ceceb2fe94a57311f13c5106956f24d0fae581134a1a43c0645ff41c66fbd5461
 WHIRLPOOL 
e4b17de89f6e4a41b385cd0c06fdecb9943a5f675bf5a168ade20f421b66901d307430d0789018972c889491be7c9a06dc2a38ccb3e5eef2e8f1ad8663ae4e94
 DIST lablgtk-2.18.2.tar.gz 787674 SHA256 
deedce9f934821196f9a4d0fc85cad12f59ec82298b908d12cf76cb015d13939 SHA512 
799ee287a0088c1b532708191c2b5939287fdc9cfdca6483a60b51184be7fcf4f075cb502295aef2ce41d244b65aedaa9e18ccdb21857a36166b61aae7866406
 WHIRLPOOL 
0da1762455a46712b3b9c88634da2ee1bfa4c1a42a24620af4043c1c48afec13ba67d61b0d8f6e756e2128a8a1163d307ec3edaa99c94218fb88a0f490b5d24c
 DIST lablgtk-2.18.3.tar.gz 788177 SHA256 
975bebf2f9ca74dc3bf7431ebb640ff6a924bb80c8ee5f4467c475a7e4b0cbaf SHA512 
b455761cef742579449a46f98bf807732cc6b5384cbccf6d4eca940e351ccb5cbd464e0d81cda2884277b45a8f223838de44cb49878e2f602183c963cdb0defe
 WHIRLPOOL 
4c6bfcdf8a4fdc7e27014bd9c553942d03caf4e25f420ee6018eeb19d20cb6a5a8c6bb00eabf7fda80abe6b9c727b2c5d64641d8f9036c943276406836c87c03
+DIST lablgtk-2.18.4.tar.gz 800059 SHA256 
b316ae0b92e760c1ab0d1bdeaa0a3c2a6ab14face5a0fe2b93445be3a3d013c0 SHA512 
8b400f6467929ee433541e9649bf0301be2c851c9bdbaf3f001fe2bf2e1ee755a6dbc541b8e0b571d567ee8c8a997323aeb731d6f73a54b1594977237ff76d25
 WHIRLPOOL 
cec155ca6ae3e0829bde006f209110529697e856f758ed6aa7183f455dc58674a77cf8e9bab81ef7ce6d6f4511d7c49841a669fa53ec6eab2a22755ee7f99c9a

diff --git a/dev-ml/lablgtk/lablgtk-2.18.4.ebuild 
b/dev-ml/lablgtk/lablgtk-2.18.4.ebuild
new file mode 100644
index 000..4994848
--- /dev/null
+++ b/dev-ml/lablgtk/lablgtk-2.18.4.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit multilib findlib
+
+IUSE="debug examples glade gnomecanvas sourceview +ocamlopt opengl spell svg"
+
+DESCRIPTION="Objective CAML interface for Gtk+2"
+HOMEPAGE="http://lablgtk.forge.ocamlcore.org/;
+SRC_URI="https://forge.ocamlcore.org/frs/download.php/1602/${P}.tar.gz;
+LICENSE="LGPL-2.1-with-linking-exception examples? ( lablgtk-examples )"
+
+RDEPEND=">=x11-libs/gtk+-2.10:2
+   >=dev-lang/ocaml-3.10:=[ocamlopt?]
+   svg? ( >=gnome-base/librsvg-2.2:2 )
+   glade? ( >=gnome-base/libglade-2.0.1 )
+   gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 )
+   opengl? ( >=dev-ml/lablgl-0.98:=
+   >=x11-libs/gtkglarea-1.9:2 )
+   spell? ( app-text/gtkspell:2 )
+   sourceview? ( x11-libs/gtksourceview:2.0 )
+   || ( dev-ml/camlp4:= 

[gentoo-commits] repo/gentoo:master commit in: dev-ros/controller_manager/

2016-04-30 Thread Alexis Ballier
commit: b4abc34b96b963addc60ce0036a9cd2499644269
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:04:15 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4abc34b

dev-ros/controller_manager: Bump to 0.10.1.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/controller_manager/Manifest|  1 +
 .../controller_manager-0.10.1.ebuild   | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ros/controller_manager/Manifest 
b/dev-ros/controller_manager/Manifest
index 8a9d0b7..8125b98 100644
--- a/dev-ros/controller_manager/Manifest
+++ b/dev-ros/controller_manager/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.10.0.tar.gz 620871 SHA256 
d11ef3c34874068cf32a1766901686f59177ce7b94e229cb151a30f6fc1fcaca SHA512 
93f400a024fa2eda49ec4a680f05559a31d0879e0c081e796c4ebccfc9c6e568655c79cde252e6afb6e5728c71135aa0d5d618a8727a66d69e7b49b46ae0f422
 WHIRLPOOL 
016631d6557919c1311da0912c34ce1aac34d55cff57cd0d0952d9899c3c99be6de650ecc495b724b46cc7294ca4b008a921ea2680bb7f8fa3ddec0e2f7fe6e6
+DIST ros_control-0.10.1.tar.gz 621418 SHA256 
2469f75eeeb46d3f68a1096864f91ea0599131d0fc894d18e948022ca8f8e957 SHA512 
78d7fd7e30cf9ebd19a13d426573f47da5a06ff070b40672074fa1900c35c64ed7bf28121356e85fd35709be37a4694711a1e73a7537d64e448ded662d4a8fa4
 WHIRLPOOL 
97d2860b3403a3178b12458305650501040c381da8bd3a62d49d9d556aae185c2f69a9b67dcefa25617fd8099bfda8fd34352b21ae5be79b4bcef35aa66532fa
 DIST ros_control-0.9.3.tar.gz 593174 SHA256 
51e5e58e2010f668c136fd6178f83747af643fe5cf170484ce449c7e4e219a4e SHA512 
37537de9cbee4702515f1db62980975c5d37c952e338bf1ffacf84722c605ad9f6bd660d8b6005e701fcb935f96b6adf1f28375640f14a2227703644b55e90fb
 WHIRLPOOL 
1077031ba3511ef293a280af62afd237ca5da97140083dd396a34bc93d752be29d1599090fb8336627be85d9ee6d66231829d7af9fdd2214fd21535dad4e0abf

diff --git a/dev-ros/controller_manager/controller_manager-0.10.1.ebuild 
b/dev-ros/controller_manager/controller_manager-0.10.1.ebuild
new file mode 100644
index 000..e5ae1de
--- /dev/null
+++ b/dev-ros/controller_manager/controller_manager-0.10.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="The controller manager"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/controller_interface
+   
>=dev-ros/controller_manager_msgs-0.10.0[${CATKIN_MESSAGES_PYTHON_USEDEP},${CATKIN_MESSAGES_CXX_USEDEP}]
+   >=dev-ros/hardware_interface-0.10.0
+   dev-ros/realtime_tools
+   dev-ros/pluginlib
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-ros/rosparam[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/controller_manager_tests/

2016-04-30 Thread Alexis Ballier
commit: bb76153dd9e47a52b4aaad530ca599c4277ba24f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Apr 30 10:06:48 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Apr 30 14:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb76153d

dev-ros/controller_manager_tests: add rosservice dep for tests

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 .../controller_manager_tests/controller_manager_tests-0.10.1.ebuild | 6 +-
 .../controller_manager_tests/controller_manager_tests-.ebuild   | 6 +-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git 
a/dev-ros/controller_manager_tests/controller_manager_tests-0.10.1.ebuild 
b/dev-ros/controller_manager_tests/controller_manager_tests-0.10.1.ebuild
index c1106a1..0721a2d 100644
--- a/dev-ros/controller_manager_tests/controller_manager_tests-0.10.1.ebuild
+++ b/dev-ros/controller_manager_tests/controller_manager_tests-0.10.1.ebuild
@@ -21,4 +21,8 @@ RDEPEND="
dev-ros/control_toolbox
 "
 DEPEND="${RDEPEND}
-   test? ( dev-ros/rostest[${PYTHON_USEDEP}] 
dev-python/nose[${PYTHON_USEDEP}] )"
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-ros/rosservice[${PYTHON_USEDEP}]
+   )"

diff --git 
a/dev-ros/controller_manager_tests/controller_manager_tests-.ebuild 
b/dev-ros/controller_manager_tests/controller_manager_tests-.ebuild
index c1106a1..0721a2d 100644
--- a/dev-ros/controller_manager_tests/controller_manager_tests-.ebuild
+++ b/dev-ros/controller_manager_tests/controller_manager_tests-.ebuild
@@ -21,4 +21,8 @@ RDEPEND="
dev-ros/control_toolbox
 "
 DEPEND="${RDEPEND}
-   test? ( dev-ros/rostest[${PYTHON_USEDEP}] 
dev-python/nose[${PYTHON_USEDEP}] )"
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-ros/rosservice[${PYTHON_USEDEP}]
+   )"



[gentoo-commits] repo/gentoo:master commit in: net-fs/openafs/

2016-04-30 Thread Andrew Savchenko
commit: efdf53386143027429f7293272221fb193527c51
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Apr 30 14:04:49 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Apr 30 14:05:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efdf5338

net-fs/openafs: version bump

- add missed deps
- new USE flags based on configure options previously ignored

Package-Manager: portage-2.2.28
Signed-off-by: Andrew Savchenko  gentoo.org>

 net-fs/openafs/Manifest  |   2 +
 net-fs/openafs/metadata.xml  |   5 +
 net-fs/openafs/openafs-1.6.18.ebuild | 223 +++
 3 files changed, 230 insertions(+)

diff --git a/net-fs/openafs/Manifest b/net-fs/openafs/Manifest
index 1469457..4a0162f 100644
--- a/net-fs/openafs/Manifest
+++ b/net-fs/openafs/Manifest
@@ -1,3 +1,5 @@
 DIST openafs-1.6.17-doc.tar.bz2 3529538 SHA256 
803e895f9a5dc4c74866e8de20e07a8b7b972ee48b1603fab215b49116117921 SHA512 
6056d5f410984a333fcd1581de623c4a4f218269138ab6ee4c9b9622a85ab89748b35d36517c092d8a7bace932fac0d6566645abbca087ae2b5d40e72cd52593
 WHIRLPOOL 
093b1c770748910af4c2144710350cef131b5621575d5d1648ff90ba54c4de13a1cc0bbcd9c8fcf81b126a81f20998806c90ab3d904446630eac214679c9b650
 DIST openafs-1.6.17-src.tar.bz2 14607107 SHA256 
96413a2dbffdc9170cc5dde6aa5ad0ae2383c6106994285ed8f186928813a398 SHA512 
3ca61a7731c9bd9bae7da2f7b3900438fcc9f75c95b354574389c2203af2ec0a7b4dcaaf13a437743477fcad8a46c3bbb8c68255a976b9a9917b8f0a0cdf028f
 WHIRLPOOL 
92de51878836a721e6fadbe2f6c7a8069ecf622a08fd05e3a01d8fef376bd2e18e9f3b4715d42a26e8d5f1d665f91924520ed6928ed1f460bac49b1bc906e129
+DIST openafs-1.6.18-doc.tar.bz2 3533400 SHA256 
c6a72f5a8c6982202f4b19b038e76abe439f3ce2f867f39ebb6dcce943bf0a84 SHA512 
2926f85408cea18da0eacd0cfb5eb61076649e4fc9f85da894a988978874576424af5287ab4080fec9a5012a2079750af6b3fa0ed81a2ede3f2b5001339cbf1e
 WHIRLPOOL 
d42ae4a655d5c6e216136df160950976a1f4a559d685a8cd889f5969e25f95be2cfd8e67fb923abb5d2bbc35af279761506e2002a0d81d1f77856cb30ad1d245
+DIST openafs-1.6.18-src.tar.bz2 14645551 SHA256 
b3c35e7be6b6c86b91e7c699fd015f53c87bc19d1ae8ec3ec9cda6b97327d3b6 SHA512 
e4c9afe857bed240ba2c8fdb0b22e680c10d3bed4cde8966c314610982c5fa6e6ead81bcf869a3cc9d41b8bbcefaaf2d165e8ae6dd6606ebcb5b986fc1aecee8
 WHIRLPOOL 
62cc93f6a3a549dae4ad111cdaaba907502c75329cbfd0052d4026df29323e35782e4cd9f073c71ac7df42258c5f4a18ba8e0820dbf2dce44a1627ed107b91dc
 DIST openafs-patches-20160321.tar.xz 10940 SHA256 
b8919d4db7ac962922f797b5f6a855de27f019f43163d4362946ae9b80d73278 SHA512 
581f2248cd9926e79d9b2d30d5e9e3349794e8751e0382fd47c59d5d131f7d814744ed9926f008525466afa9c783e59b2f10d3def5d37966aad98c04873cf4c5
 WHIRLPOOL 
6da7619158dccb5fcc86e73d9d2f0c83f16fdf2dee8bf51e860db307e96262f5e669e2f3d34b166f0b5cd83f9b5b36018efc4de8e45e1265964919b24ac85b1a

diff --git a/net-fs/openafs/metadata.xml b/net-fs/openafs/metadata.xml
index a205208..82ce026 100644
--- a/net-fs/openafs/metadata.xml
+++ b/net-fs/openafs/metadata.xml
@@ -11,7 +11,12 @@
please CC on bugs
 
 
+   Enable fast startup of file server by
+   not reading bitmap till needed.
+   Build fuse client.
Build libafs kernel module. Disable only if you 
know
what you're doing: without this module OpenAFS client will not 
work.
+   Enable installation of pthreaded ubik 
applications.
+   Enable support for nested pts groups.
 
 

diff --git a/net-fs/openafs/openafs-1.6.18.ebuild 
b/net-fs/openafs/openafs-1.6.18.ebuild
new file mode 100644
index 000..36149ff
--- /dev/null
+++ b/net-fs/openafs/openafs-1.6.18.ebuild
@@ -0,0 +1,223 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit autotools eutils flag-o-matic multilib pam systemd toolchain-funcs 
versionator
+
+MY_PV=$(delete_version_separator '_')
+MY_P="${PN}-${MY_PV}"
+PVER="20160321"
+
+DESCRIPTION="The OpenAFS distributed file system"
+HOMEPAGE="https://www.openafs.org/;
+# We always d/l the doc tarball as man pages are not USE=doc material
+[[ ${PV} == *_pre* ]] && MY_PRE="candidate/" || MY_PRE=""
+SRC_URI="
+   https://openafs.org/dl/openafs/${MY_PRE}${MY_PV}/${MY_P}-src.tar.bz2
+   https://openafs.org/dl/openafs/${MY_PRE}${MY_PV}/${MY_P}-doc.tar.bz2
+   https://dev.gentoo.org/~bircoph/afs/${PN}-patches-${PVER}.tar.xz
+"
+
+LICENSE="IBM BSD openafs-krb5-a APSL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+
+IUSE="bitmap-later debug doc fuse kerberos +modules ncurses pam pthreaded-ubik 
+supergroups"
+
+CDEPEND="
+   virtual/libintl
+   fuse? ( sys-fs/fuse )
+   kerberos? ( virtual/krb5 )
+   ncurses? ( sys-libs/ncurses:0= )
+   pam? ( virtual/pam )"
+
+DEPEND="${CDEPEND}
+   virtual/yacc
+   doc? (
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )"
+
+RDEPEND="${CDEPEND}
+   modules? ( 

[gentoo-commits] repo/gentoo:master commit in: net-fs/openafs-kernel/

2016-04-30 Thread Andrew Savchenko
commit: 7023b762d44f62443f41a8d4b9a88bd92352d28a
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Apr 30 13:59:21 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Apr 30 14:05:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7023b762

net-fs/openafs-kernel:  version bump

- kernels up to 4.4.x are supported
- add optional debugging support

Package-Manager: portage-2.2.28
Signed-off-by: Andrew Savchenko  gentoo.org>

 net-fs/openafs-kernel/Manifest |   1 +
 net-fs/openafs-kernel/openafs-kernel-1.6.18.ebuild | 123 +
 2 files changed, 124 insertions(+)

diff --git a/net-fs/openafs-kernel/Manifest b/net-fs/openafs-kernel/Manifest
index 05a06cb..8e07865 100644
--- a/net-fs/openafs-kernel/Manifest
+++ b/net-fs/openafs-kernel/Manifest
@@ -1,2 +1,3 @@
 DIST openafs-1.6.17-src.tar.bz2 14607107 SHA256 
96413a2dbffdc9170cc5dde6aa5ad0ae2383c6106994285ed8f186928813a398 SHA512 
3ca61a7731c9bd9bae7da2f7b3900438fcc9f75c95b354574389c2203af2ec0a7b4dcaaf13a437743477fcad8a46c3bbb8c68255a976b9a9917b8f0a0cdf028f
 WHIRLPOOL 
92de51878836a721e6fadbe2f6c7a8069ecf622a08fd05e3a01d8fef376bd2e18e9f3b4715d42a26e8d5f1d665f91924520ed6928ed1f460bac49b1bc906e129
+DIST openafs-1.6.18-src.tar.bz2 14645551 SHA256 
b3c35e7be6b6c86b91e7c699fd015f53c87bc19d1ae8ec3ec9cda6b97327d3b6 SHA512 
e4c9afe857bed240ba2c8fdb0b22e680c10d3bed4cde8966c314610982c5fa6e6ead81bcf869a3cc9d41b8bbcefaaf2d165e8ae6dd6606ebcb5b986fc1aecee8
 WHIRLPOOL 
62cc93f6a3a549dae4ad111cdaaba907502c75329cbfd0052d4026df29323e35782e4cd9f073c71ac7df42258c5f4a18ba8e0820dbf2dce44a1627ed107b91dc
 DIST openafs-patches-20160321.tar.xz 10940 SHA256 
b8919d4db7ac962922f797b5f6a855de27f019f43163d4362946ae9b80d73278 SHA512 
581f2248cd9926e79d9b2d30d5e9e3349794e8751e0382fd47c59d5d131f7d814744ed9926f008525466afa9c783e59b2f10d3def5d37966aad98c04873cf4c5
 WHIRLPOOL 
6da7619158dccb5fcc86e73d9d2f0c83f16fdf2dee8bf51e860db307e96262f5e669e2f3d34b166f0b5cd83f9b5b36018efc4de8e45e1265964919b24ac85b1a

diff --git a/net-fs/openafs-kernel/openafs-kernel-1.6.18.ebuild 
b/net-fs/openafs-kernel/openafs-kernel-1.6.18.ebuild
new file mode 100644
index 000..b0dbe75
--- /dev/null
+++ b/net-fs/openafs-kernel/openafs-kernel-1.6.18.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit autotools linux-mod multilib toolchain-funcs versionator
+
+MY_PV=$(delete_version_separator '_')
+MY_PN="${PN/-kernel}"
+MY_P="${MY_PN}-${MY_PV}"
+PVER="20160321"
+
+DESCRIPTION="The OpenAFS distributed file system kernel module"
+HOMEPAGE="https://www.openafs.org/;
+# We always d/l the doc tarball as man pages are not USE=doc material
+[[ ${PV} == *_pre* ]] && MY_PRE="candidate/" || MY_PRE=""
+SRC_URI="
+   https://openafs.org/dl/openafs/${MY_PRE}${MY_PV}/${MY_P}-src.tar.bz2
+   https://dev.gentoo.org/~bircoph/afs/${MY_PN}-patches-${PVER}.tar.xz
+"
+
+LICENSE="IBM BSD openafs-krb5-a APSL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+S=${WORKDIR}/${MY_P}
+
+CONFIG_CHECK="!DEBUG_RODATA ~!AFS_FS KEYS"
+ERROR_DEBUG_RODATA="OpenAFS is incompatible with linux' CONFIG_DEBUG_RODATA 
option"
+ERROR_AFS_FS="OpenAFS conflicts with the in-kernel AFS-support. Make sure not 
to load both at the same time!"
+ERROR_KEYS="OpenAFS needs CONFIG_KEYS option enabled"
+
+QA_TEXTRELS_x86_fbsd="/boot/modules/libafs.ko"
+QA_TEXTRELS_amd64_fbsd="/boot/modules/libafs.ko"
+
+PATCHES=( "${WORKDIR}/gentoo/patches" )
+
+pkg_pretend() {
+   if use kernel_linux && kernel_is ge 4 5 ; then
+   ewarn "Gentoo supports kernels which are supported by OpenAFS"
+   ewarn "which are limited to the kernel versions: < 4.5"
+   ewarn ""
+   ewarn "You are free to utilize epatch_user to provide whatever"
+   ewarn "support you feel is appropriate, but will not receive"
+   ewarn "support as a result of those changes."
+   ewarn ""
+   ewarn "Please do not file a bug report about this."
+   fi
+}
+
+pkg_setup() {
+   if use kernel_linux; then
+   linux-mod_pkg_setup
+   fi
+}
+
+src_prepare() {
+   default
+
+   # packaging is f-ed up, so we can't run eautoreconf
+   # run autotools commands based on what is listed in regen.sh
+   eaclocal -I src/cf
+   eautoconf
+   eautoconf -o configure-libafs configure-libafs.ac
+   eautoheader
+   einfo "Deleting autom4te.cache directory"
+   rm -rf autom4te.cache
+}
+
+src_configure() {
+   local myconf=""
+   # OpenAFS 1.6.11 has a bug with kernels 3.17-3.17.2 that requires a 
config option
+   if use kernel_linux && kernel_is -ge 3 17 && kernel_is -le 3 17 2; then
+   myconf="--enable-linux-d_splice_alias-extra-iput"
+   fi
+
+   local ARCH="$(tc-arch-kernel)"
+  

[gentoo-commits] repo/gentoo:master commit in: www-apps/wordpress/

2016-04-30 Thread Anthony G. Basile
commit: 3d62db41dfff1e9455022230590ea7f6b0367b55
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 13:59:20 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 13:59:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d62db41

www-apps/wordpress: bump to version 4.5.1

Package-Manager: portage-2.2.26

 www-apps/wordpress/Manifest   |  1 +
 www-apps/wordpress/wordpress-4.5.1.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/www-apps/wordpress/Manifest b/www-apps/wordpress/Manifest
index d3a8925..4704d61 100644
--- a/www-apps/wordpress/Manifest
+++ b/www-apps/wordpress/Manifest
@@ -1,2 +1,3 @@
 DIST wordpress-4.4.2.tar.gz 7099520 SHA256 
c8a74c0f7cfc0d19989d235759e70cebd90f42aa0513bd9bc344230b0f79e08b SHA512 
dfced463ece13f266c15e1b45d8e7882e58ce9cd3b7146c81a4671bc51c58998ae318bd6e45b1f7bc657e2d49d7d39f971d814998e074375129c8dff7cfcac63
 WHIRLPOOL 
c74b1b6d303bbdb3c66c432838e12528f06c124475c3258ccbc6472143e4a9cf56bda4293d7556564eb878d0f701f0853f46f3be7a37b9a2eb035bc08815e6d4
+DIST wordpress-4.5.1.tar.gz 7772980 SHA256 
7bf2912bc23633fd69c80494d7ab83f69d3d222a4ca8300c7e8348e394264bb7 SHA512 
5570ffce5d5da53b43ac864e000174c62a4d3e870832cce3d25337e5036171a6fec1577f5db1dcee01fd0869aa895d4bafd032a3bce9734d1cd625eaa604c00e
 WHIRLPOOL 
7f2f943c94f7ea873247c4be2ed3926a7da8a1a228fefb5825e7654ccc3d7b9c8f7c32e3169e98a7309b98e5f4aca25601a142cf5a7e27e941b45f0cb8a68589
 DIST wordpress-4.5.tar.gz 7762865 SHA256 
d99c9599d982c3e42e917e03628c2ced6b6b87b2a6fd05b38ebb724b4057faf0 SHA512 
2d3b5f0629be434e5e0785e373ca4e8d53171ecdde8720e26d70df661afcf0e2475087a54c3b3629a4d6101e11c1840ab90db38608eca4470436b34908d4c5a7
 WHIRLPOOL 
fa0ea4833c2237d343ebec510f966c57d5cb960bdd93abd746b25b2954adb7b103971112c7f101821fa74bb727e15ec5c1452c6a066cff6f8f9fd9f2aec71eca

diff --git a/www-apps/wordpress/wordpress-4.5.1.ebuild 
b/www-apps/wordpress/wordpress-4.5.1.ebuild
new file mode 100644
index 000..3f425a5
--- /dev/null
+++ b/www-apps/wordpress/wordpress-4.5.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit webapp
+
+DESCRIPTION="Wordpress PHP and MySQL based content management system (CMS)"
+HOMEPAGE="https://wordpress.org/;
+SRC_URI="https://wordpress.org/${P/_rc/-RC}.tar.gz;
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="virtual/httpd-php
+   || ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
+
+S=${WORKDIR}/${PN}
+
+need_httpd_cgi
+
+IUSE="+akismet examples +themes vhosts"
+
+src_install() {
+   webapp_src_preinst
+
+   dohtml readme.html
+   rm readme.html license.txt || die
+
+   if ! use akismet ; then
+   rm -R wp-content/plugins/akismet/ || die
+   fi
+   if ! use examples ; then
+   rm wp-content/plugins/hello.php || die
+   fi
+   if ! use themes ; then
+   rm -R wp-content/themes/*/ || die
+   fi
+
+   [[ -f wp-config.php ]] || cp wp-config-sample.php wp-config.php
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_serverowned "${MY_HTDOCSDIR}"/index.php
+   webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/menu.php
+   webapp_serverowned "${MY_HTDOCSDIR}"
+
+   webapp_configfile  "${MY_HTDOCSDIR}"/wp-config.php
+
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+   webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
+
+   webapp_src_install
+}



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

2016-04-30 Thread Anthony G. Basile
commit: f6e7099575e904285d568a49c89c5d705cfa5c79
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 12:13:56 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 12:14:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6e70995

sys-kernel/hardened-sources: version bump to 4.5.2-r1, remove 4.5.2

vanilla-4.5.2 + genpatches-4.5-3 + grsecurity-3.1-4.5.2-201604290633

Package-Manager: portage-2.2.26

 sys-kernel/hardened-sources/Manifest| 2 +-
 .../{hardened-sources-4.5.2.ebuild => hardened-sources-4.5.2-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index c6598d0..57cc2b1 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -19,7 +19,7 @@ DIST hardened-patches-4.4.6-3.extras.tar.bz2 1697719 SHA256 
578fb7d0d6caf2d1f596
 DIST hardened-patches-4.4.7-1.extras.tar.bz2 1696214 SHA256 
af8b6147887db4348c43c4e55f2a8593b32a0b00162e29f226a756e6bf18a647 SHA512 
f7b14fce045a4e89fe9a44c753dc6c4714bc883e77838c47d6a73ce161e162f52e55da948ada97fcb2268170033a7e02eb242054b24e9e2571fb0482a203d2e5
 WHIRLPOOL 
76e142d767fd1495b103f24e6f8abf5936e17dfc7ffc0b5471102f65f78e445104c63ef867e5eac0ca309b52fea069dd08d95d91d18eb40428d50cef46595b06
 DIST hardened-patches-4.4.8-1.extras.tar.bz2 1742981 SHA256 
d9dad00eaf7c32d7b8a77da3b40c4048e2e0912e4ff2608276698e5f147bbc42 SHA512 
d61fc293207f149565bd4b727d549f5ed27538dec3dfa79ff860a28d8d31a3d5321ae1112575278bd53fa39b82762e6abc280b3fcd002c6f98d60e756bcf14d7
 WHIRLPOOL 
a60f3223d373637c8d4ada22343e9cd23de11e729b936ce5b7c86305dd409eeb3eb7a82f97fe2bbfdff972bf64b0cd50caa0550bd7ca5835a9a07ada86acff9b
 DIST hardened-patches-4.4.8-2.extras.tar.bz2 1743408 SHA256 
5cde9a96f6a47ebe3c8abeb5d5add60480490fd365d4c31da2d7ac1973a4c258 SHA512 
cfb52ee6aee76b125a5a833cd9facc92ea1dff17129a488b66e976e94699cea8109e6f5df90835e818af1ea6e59e12cecc95159601d544f5b008560a1190b530
 WHIRLPOOL 
56facf79d5556aaac3bf08fa3b4be21b7fef561c8d3fd41943ce51c4d15b71e114be2e33914f5bf7e3d981abcebeffb95fb99aedde8d72231edcef72123ea9fa
-DIST hardened-patches-4.5.2-1.extras.tar.bz2 1885279 SHA256 
77c3cd52cf26ac25f638e47cb69fe4d922ec6967148eb18dc1d8de1b990cda4b SHA512 
176bff7f9892f41a5efd347d519551a6154ea9affed5436c2c1e62374f9b003b70e20281930c75e8cd28a23b5d4e5d5c7e39847c0f79ab1030ac664323125b8d
 WHIRLPOOL 
b46c55a8a5f934f301276182fb1cb17569e84005d0132390005505000efb86ece5eb58dbf1c7eb0ed935d6696738f161d54beb9a649dc128fdeee70857f541b8
+DIST hardened-patches-4.5.2-2.extras.tar.bz2 1891450 SHA256 
a7bbdbde64340b0e95d5f1c13f070ac0d056163a84ce3767db0b55e986f97aa6 SHA512 
ed6f22917bfe68cdc870666097f0f5412fd33161fbd63ed5c3b2f7040326490cf3e26555ffba8c8bcb64acb145853c0130115c03ecdc0d170f4b83529c503c57
 WHIRLPOOL 
9a12be96b019dbefa0a7afc5cd67ef0b687aa8f956d36b0eb96e8fcad2327cfde34d76fe5d5f3f4422e6a5bdeef0014b89d62efd1ec8ac1a10a7c048bbb15f42
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
 DIST linux-4.3.tar.xz 86920812 SHA256 
4a622cc84b8a3c38d39bc17195b0c064d2b46945dfde0dae18f77b120bc9f3ae SHA512 
d25812043850530fdcfdb48523523ee980747f3c2c1266149330844dae2cba0d056d4ddd9c0f129f570f5d1f6df5c20385aec5f6a2e0755edc1e2f5f93e2c6bc
 WHIRLPOOL 
e3f131443acc14d4f67bbd3f4e1c57af3d822c41c85a112564d54667a591c8619dce42327fd8166d30a2d7adfaf433c2e2134d4995c91c08f65ac0cc2190f935
 DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 
02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc

diff --git a/sys-kernel/hardened-sources/hardened-sources-4.5.2.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-4.5.2-r1.ebuild
similarity index 96%
rename from sys-kernel/hardened-sources/hardened-sources-4.5.2.ebuild
rename to sys-kernel/hardened-sources/hardened-sources-4.5.2-r1.ebuild
index 7b857dd..d46998b 100644
--- a/sys-kernel/hardened-sources/hardened-sources-4.5.2.ebuild
+++ b/sys-kernel/hardened-sources/hardened-sources-4.5.2-r1.ebuild
@@ -12,7 +12,7 @@ K_DEBLOB_AVAILABLE="1"
 inherit kernel-2
 detect_version
 
-HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1"
+HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2"
 
HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
 SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
 



[gentoo-commits] proj/hardened-patchset:master commit in: 4.5.2/

2016-04-30 Thread Anthony G. Basile
commit: 7a7e6b22b7b5ed9528af9141b51b38c5e77449c4
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 30 12:13:11 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 30 12:13:11 2016 +
URL:
https://gitweb.gentoo.org/proj/hardened-patchset.git/commit/?id=7a7e6b22

grsecurity-3.1-4.5.2-201604290633

 4.5.2/_README  |   2 +-
 ...> 4420_grsecurity-3.1-4.5.2-201604290633.patch} | 143 +
 2 files changed, 90 insertions(+), 55 deletions(-)

diff --git a/4.5.2/_README b/4.5.2/_README
index 6857874..53f08f8 100644
--- a/4.5.2/_README
+++ b/4.5.2/_README
@@ -6,7 +6,7 @@ Patch:  1001_linux-4.5.2.patch
 From:  http://www.kernel.org
 Desc:  Linux 4.5.2
 
-Patch: 4420_grsecurity-3.1-4.5.2-201604282058.patch
+Patch: 4420_grsecurity-3.1-4.5.2-201604290633.patch
 From:  http://www.grsecurity.net
 Desc:  hardened-sources base patch from upstream grsecurity
 

diff --git a/4.5.2/4420_grsecurity-3.1-4.5.2-201604282058.patch 
b/4.5.2/4420_grsecurity-3.1-4.5.2-201604290633.patch
similarity index 99%
rename from 4.5.2/4420_grsecurity-3.1-4.5.2-201604282058.patch
rename to 4.5.2/4420_grsecurity-3.1-4.5.2-201604290633.patch
index 00a02a9..89fb9b5 100644
--- a/4.5.2/4420_grsecurity-3.1-4.5.2-201604282058.patch
+++ b/4.5.2/4420_grsecurity-3.1-4.5.2-201604290633.patch
@@ -15850,7 +15850,7 @@ index 1a4477c..0031513 100644
) {
  
 diff --git a/arch/x86/entry/entry_32.S b/arch/x86/entry/entry_32.S
-index bb3e376..567eb30 100644
+index bb3e376..c49752a 100644
 --- a/arch/x86/entry/entry_32.S
 +++ b/arch/x86/entry/entry_32.S
 @@ -147,13 +147,157 @@
@@ -16231,7 +16231,7 @@ index bb3e376..567eb30 100644
  
  ENTRY(simd_coprocessor_error)
ASM_CLAC
-@@ -540,7 +758,7 @@ ENTRY(simd_coprocessor_error)
+@@ -540,20 +758,20 @@ ENTRY(simd_coprocessor_error)
pushl   $do_simd_coprocessor_error
  #endif
jmp error_code
@@ -16240,7 +16240,13 @@ index bb3e376..567eb30 100644
  
  ENTRY(device_not_available)
ASM_CLAC
-@@ -553,7 +771,7 @@ END(device_not_available)
+   pushl   $-1 # mark this as an int
+   pushl   $do_device_not_available
+   jmp error_code
+-END(device_not_available)
++ENDPROC(device_not_available)
+ 
+ #ifdef CONFIG_PARAVIRT
  ENTRY(native_iret)
iret
_ASM_EXTABLE(native_iret, iret_exc)
@@ -42998,10 +43004,17 @@ index eae5107..26e7a39 100644
  }
  EXPORT_SYMBOL_GPL(od_unregister_powersave_bias_handler);
 diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
-index cd83d47..3ad4309 100644
+index cd83d47..3d6afab 100644
 --- a/drivers/cpufreq/intel_pstate.c
 +++ b/drivers/cpufreq/intel_pstate.c
-@@ -147,7 +147,7 @@ static inline int32_t 
get_target_pstate_use_performance(struct cpudata *cpu);
+@@ -141,13 +141,13 @@ struct pstate_funcs {
+ struct cpu_defaults {
+   struct pstate_adjust_policy pid_policy;
+   struct pstate_funcs funcs;
+-};
++} __do_const;
+ 
+ static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu);
  static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu);
  
  static struct pstate_adjust_policy pid_params;
@@ -45690,6 +45703,26 @@ index 813ef23..17928d6 100644
  struct drm_display_mode *mode)
  {
struct drm_device *dev = connector->dev;
+diff --git a/drivers/gpu/drm/gma500/mdfld_dsi_dpi.c 
b/drivers/gpu/drm/gma500/mdfld_dsi_dpi.c
+index 7cd87a0..be562ce 100644
+--- a/drivers/gpu/drm/gma500/mdfld_dsi_dpi.c
 b/drivers/gpu/drm/gma500/mdfld_dsi_dpi.c
+@@ -120,9 +120,14 @@ static void dsi_set_pipe_plane_enable_state(struct 
drm_device *dev,
+   u32 pipeconf_reg = PIPEACONF;
+   u32 dspcntr_reg = DSPACNTR;
+ 
+-  u32 dspcntr = dev_priv->dspcntr[pipe];
++  u32 dspcntr;
+   u32 mipi = MIPI_PORT_EN | PASS_FROM_SPHY_TO_AFE | SEL_FLOPPED_HSTX;
+ 
++  if (pipe == -1)
++  return;
++
++  dspcntr = dev_priv->dspcntr[pipe];
++
+   if (pipe) {
+   pipeconf_reg = PIPECCONF;
+   dspcntr_reg = DSPCCNTR;
 diff --git a/drivers/gpu/drm/gma500/mdfld_dsi_output.c 
b/drivers/gpu/drm/gma500/mdfld_dsi_output.c
 index d758f4c..7828190 100644
 --- a/drivers/gpu/drm/gma500/mdfld_dsi_output.c
@@ -65533,9 +65566,20 @@ index 1fc622b..8c48fc3 100644
  
  extern struct oprofile_stat_struct oprofile_stats;
 diff --git a/drivers/oprofile/oprofilefs.c b/drivers/oprofile/oprofilefs.c
-index b48ac630..df1b012 100644
+index b48ac630..0a69794 100644
 --- a/drivers/oprofile/oprofilefs.c
 +++ b/drivers/oprofile/oprofilefs.c
+@@ -176,8 +176,8 @@ int oprofilefs_create_ro_ulong(struct dentry *root,
+ 
+ static ssize_t atomic_read_file(struct file *file, char __user *buf, size_t 
count, loff_t *offset)
+ {
+-  atomic_t *val = file->private_data;
+-  return oprofilefs_ulong_to_user(atomic_read(val), buf, count, offset);
++  atomic_unchecked_t *val = 

[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh-completions/

2016-04-30 Thread Manuel Rüger
commit: ac9072cc80e0d8b6871b5d11ed063f81b9978541
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Apr 30 12:04:14 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Apr 30 12:04:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac9072cc

app-shells/zsh-completions: Remove ninja completion

Package-Manager: portage-2.2.28

 app-shells/zsh-completions/zsh-completions-0.18.0.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/app-shells/zsh-completions/zsh-completions-0.18.0.ebuild 
b/app-shells/zsh-completions/zsh-completions-0.18.0.ebuild
index e5b1d5f..0d029de 100644
--- a/app-shells/zsh-completions/zsh-completions-0.18.0.ebuild
+++ b/app-shells/zsh-completions/zsh-completions-0.18.0.ebuild
@@ -20,6 +20,11 @@ SLOT="0"
 
 RDEPEND="app-shells/zsh"
 
+src_prepare() {
+   # Already included in dev-util/ninja
+   rm src/_ninja || die
+}
+
 src_install() {
insinto /usr/share/zsh/site-functions
doins src/_*



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

2016-04-30 Thread Ole Reifschneider
commit: 1dd403ca0b3ce09ac43eec8ee7d11c167acc85f0
Author: Ole Reifschneider  gentoo  org>
AuthorDate: Sat Apr 30 11:48:04 2016 +
Commit: Ole Reifschneider  gentoo  org>
CommitDate: Sat Apr 30 11:48:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dd403ca

dev-python/neovim-python-client: Improve neovim dependency

Package-Manager: portage-2.2.28

 dev-python/neovim-python-client/neovim-python-client-0.1.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/neovim-python-client/neovim-python-client-0.1.7.ebuild 
b/dev-python/neovim-python-client/neovim-python-client-0.1.7.ebuild
index bb8e604..c580a4a 100644
--- a/dev-python/neovim-python-client/neovim-python-client-0.1.7.ebuild
+++ b/dev-python/neovim-python-client/neovim-python-client-0.1.7.ebuild
@@ -22,7 +22,7 @@ DEPEND="
 
 RDEPEND="
${DEPEND}
-   =app-editors/neovim-0.1.3
+   >=app-editors/neovim-0.1.3
 "
 
 S="${WORKDIR}/python-client-${PV}"



[gentoo-commits] repo/gentoo:master commit in: app-misc/inputlircd/, app-misc/inputlircd/files/

2016-04-30 Thread Sam Jorna
commit: dfddec86a5787c2dc3633a0468d681126181d6a2
Author: Sam Jorna  gentoo  org>
AuthorDate: Sat Apr 30 11:32:51 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Sat Apr 30 11:34:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfddec86

app-misc/inputlircd: revbump, fix build with headers-4.4

Introduces conditional patch for building against linux-headers-4.4, fixing a
runtime issue with using unknown commands for the lirc socket. Patch and
initial ebuild submitted by user Michael Cook, ebuild updated to EAPI6.

Gentoo-bug: 581410
Package-Manager: portage-2.2.28

 .../files/inputlircd-linux-4.4-fix.patch   | 13 
 .../inputlircd/inputlircd-0.0.1_pre15-r2.ebuild| 37 ++
 2 files changed, 50 insertions(+)

diff --git a/app-misc/inputlircd/files/inputlircd-linux-4.4-fix.patch 
b/app-misc/inputlircd/files/inputlircd-linux-4.4-fix.patch
new file mode 100644
index 000..c605e34
--- /dev/null
+++ b/app-misc/inputlircd/files/inputlircd-linux-4.4-fix.patch
@@ -0,0 +1,13 @@
+diff --git a/Makefile b/Makefile
+index 71bc693..3904632 100644
+--- a/Makefile
 b/Makefile
+@@ -27,7 +27,7 @@ MANDIR ?= $(SHAREDIR)/man
+ 
+ all: $(SBIN)
+ 
+-names.h: /usr/include/linux/input.h gennames
++names.h: /usr/include/linux/input-event-codes.h gennames
+   ./gennames $< > $@
+ 
+ inputlircd: inputlircd.c /usr/include/linux/input.h names.h

diff --git a/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild 
b/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild
new file mode 100644
index 000..d428d3f
--- /dev/null
+++ b/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit toolchain-funcs eutils versionator
+
+DESCRIPTION="Inputlirc daemon to utilize /dev/input/event*"
+HOMEPAGE="http://svn.sliepen.eu.org/inputlirc/trunk;
+SRC_URI="http://gentooexperimental.org/~genstef/dist/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~x86"
+
+src_prepare() {
+   local ver="$(best_version sys-kernel/linux-headers)"
+   ver=${ver#sys-kernel/linux-headers-}
+   if version_is_at_least 4.4 ${ver} ; then
+   epatch "${FILESDIR}/inputlircd-linux-4.4-fix.patch"
+   fi
+
+   sed -e 's:$(CFLAGS):$(CFLAGS) $(LDFLAGS):' -i Makefile || die
+
+   default
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX=/usr install
+
+   newinitd "${FILESDIR}"/inputlircd.init.2  inputlircd
+   newconfd "${FILESDIR}"/inputlircd.conf  inputlircd
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/commons-discovery/files/, dev-java/commons-discovery/

2016-04-30 Thread Patrice Clement
commit: 623800f098af0dbdc4df647b58863a6393bcbc30
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Apr 29 12:28:00 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 11:14:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=623800f0

dev-java/commons-discovery: Clean up old.

Package-Manager: portage-2.2.26

 dev-java/commons-discovery/Manifest|  1 -
 .../commons-discovery/commons-discovery-0.4.ebuild | 52 --
 .../commons-discovery/files/0.4-jar-target.patch   | 41 -
 .../files/commons-discovery-0.2-gentoo.diff| 51 -
 4 files changed, 145 deletions(-)

diff --git a/dev-java/commons-discovery/Manifest 
b/dev-java/commons-discovery/Manifest
index 52731a0..43c8968 100644
--- a/dev-java/commons-discovery/Manifest
+++ b/dev-java/commons-discovery/Manifest
@@ -1,2 +1 @@
-DIST commons-discovery-0.4-src.tar.gz 78453 SHA256 
596242302be4f0502073f5a934c608289bba6221591e7dbea53ce629f67498a3 SHA512 
337db71167534785471b540bd89107a16e146bee4094ed746feb68fd1efa7697c0f629f24e63fb760f6c664d98f35d97ee71ca114a26d17ae078bf27459b1705
 WHIRLPOOL 
7608a0d99955c464b7a62fab615a6ec5b8a782c59c2dacb2440d2a5f6e681ec998583ffa4af51bdbb08a88c4f66bc4ecf736969a67ca7ff53da3eae6b482031e
 DIST commons-discovery-0.5.jar 81725 SHA256 
c7ff18e5004b7e2bd12f5d1987481849a54188f911ec465c47c32e08580b6d7a SHA512 
348e42df5e4e34fdaa49d638018e654119a9d4e2aad967ed2a6f2706e89ffb2ea5daa9ac86747fa1f6d7b245759fac1a80090c571a057be1cdf8cea3514936f3
 WHIRLPOOL 
6ecf2367a6e71c14acd11a421dccf16239e3c54769fcdf00fed5f8ea5ea922e289acb663549aa5d845833e9b4ddfb29353cee092b1a9dad992e6b92bf957e0d1

diff --git a/dev-java/commons-discovery/commons-discovery-0.4.ebuild 
b/dev-java/commons-discovery/commons-discovery-0.4.ebuild
deleted file mode 100644
index f0585c7..000
--- a/dev-java/commons-discovery/commons-discovery-0.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="Commons Discovery: Service Discovery component"
-HOMEPAGE="http://commons.apache.org/discovery/;
-SRC_URI="mirror://apache/jakarta/commons/discovery/source/${P}-src.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc source test"
-
-RDEPEND=">=virtual/jre-1.4
-   dev-java/commons-logging"
-
-DEPEND=">=virtual/jdk-1.4
-   ${RDEPEND}
-   dev-java/ant-core
-   source? ( app-arch/zip )
-   test? ( =dev-java/junit-3* )"
-
-S="${WORKDIR}/${P}-src/"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   # https://issues.apache.org/jira/browse/DISCOVERY-10
-   epatch "${FILESDIR}/0.4-jar-target.patch"
-}
-
-src_compile() {
-   java-pkg-2_src_compile \
-   -Dlogger.jar="$(java-pkg_getjar commons-logging 
commons-logging.jar)"
-}
-
-src_test() {
-   eant test.discovery \
-   -Djunit.jar="$(java-pkg_getjar --build-only junit junit.jar)" \
-   -Dlogger.jar="$(java-pkg_getjar commons-logging 
commons-logging.jar)"
-}
-
-src_install() {
-   java-pkg_dojar dist/${PN}.jar
-
-   dodoc NOTICE.txt RELEASE-NOTES.txt || die
-
-   use doc &&  java-pkg_dojavadoc dist/docs/api
-   use source && java-pkg_dosrc src/java/*
-}

diff --git a/dev-java/commons-discovery/files/0.4-jar-target.patch 
b/dev-java/commons-discovery/files/0.4-jar-target.patch
deleted file mode 100644
index 7cc3c98..000
--- a/dev-java/commons-discovery/files/0.4-jar-target.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-Index: build.xml
-===
 build.xml  (revision 498103)
-+++ build.xml  (working copy)
-@@ -175,23 +175,26 @@
- 
-   
- 
-+  
-+
-+
-+
-+
-+
-+  
- 
--  
- 
--
- 
- 
--
--
--
--
-   
- 
- 

diff --git a/dev-java/commons-discovery/files/commons-discovery-0.2-gentoo.diff 
b/dev-java/commons-discovery/files/commons-discovery-0.2-gentoo.diff
deleted file mode 100644
index b55e10f..000
--- a/dev-java/commons-discovery/files/commons-discovery-0.2-gentoo.diff
+++ /dev/null
@@ -1,51 +0,0 @@
 build.xml.orig 2005-04-17 16:14:52.0 +0200
-+++ build.xml  2005-04-17 16:14:57.0 +0200
-@@ -14,13 +14,15 @@
-
-  
- 
-+  
-+  
- 
- 
- 
- 
-   
--  
--  
-+  
-+  
- 
- 
- 
-@@ -38,8 +40,6 @@
-   
-   
- 
--  
--  
- 
-   
-   
-@@ -116,6 +116,7 @@
- 
-  
-   
-+ 
- 
- 
- 
--
-+
- 
--
- 

[gentoo-commits] repo/gentoo:master commit in: dev-java/commons-discovery/

2016-04-30 Thread Patrice Clement
commit: a150bca3648a70bc6e552354be3264069419f157
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Apr 29 12:27:00 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 11:14:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a150bca3

dev-java/commons-discovery: Stable for amd64. Retroactively mark stable for the 
remaining arches using the ALLARCHES policy.

Package-Manager: portage-2.2.26

 dev-java/commons-discovery/commons-discovery-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/commons-discovery/commons-discovery-0.5.ebuild 
b/dev-java/commons-discovery/commons-discovery-0.5.ebuild
index 02e9a28..35941a1 100644
--- a/dev-java/commons-discovery/commons-discovery-0.5.ebuild
+++ b/dev-java/commons-discovery/commons-discovery-0.5.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://repo1.maven.org/maven2/${PN}/${PN}/${PV}/${P}-sources.jar -> ${
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 CDEPEND="dev-java/commons-logging:0"



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/octave/

2016-04-30 Thread Manuel Rüger
commit: f235f5084dabbf3c5b5f3eff3b7f080935314611
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Apr 30 11:24:02 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Apr 30 11:24:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f235f508

sci-mathematics/octave: Version bump to 4.0.2

Package-Manager: portage-2.2.28

 sci-mathematics/octave/Manifest|   1 +
 sci-mathematics/octave/octave-4.0.2.ebuild | 169 +
 2 files changed, 170 insertions(+)

diff --git a/sci-mathematics/octave/Manifest b/sci-mathematics/octave/Manifest
index c1e4dfe..650d367 100644
--- a/sci-mathematics/octave/Manifest
+++ b/sci-mathematics/octave/Manifest
@@ -3,3 +3,4 @@ DIST octave-3.8.1.tar.bz2 17664241 SHA256 
d6762ed2ad4a042243a095fb44c7a1d3a91c63
 DIST octave-3.8.2.tar.bz2 17834980 SHA256 
83bbd701aab04e7e57d0d5b8373dd54719bebb64ce0a850e69bf3d7454f33bae SHA512 
c2bf4cc844a5b8dbabf2b54d2458ee7573f87dc92ca8cd7829e8c057591387b3a0995b5b48c6e50ff2944411f2b28521de26e438ed431f68ab5b49b8ce1d94cc
 WHIRLPOOL 
c117b935a060572577b3506a508d558a2af85b2785af02647e9edc47c5df97e357d954449edc90cc40a6af3230f99faccf6c7cf1b9b2bc6044f35749d3ae1af0
 DIST octave-4.0.0.tar.xz 15759196 SHA256 
cf6be2fac6796fda68971e249c96d026ce4a1b0ed074ce49a5791365a958c474 SHA512 
54559686d017b7fe731a89a24e74d08781365028d2799a86f25ebf4c433013eab03e5b4381a992b79e40bce1827a6eee2aefd0798b739128dd8dd7b41d936b89
 WHIRLPOOL 
0e0154dac5ac76268d99533186a88f54bc811817cdfc3c0bc22ff456fd23829f7015eebcb9d441665c1d2782ed57c06ab00880f64d63b22ef4aad43f132a
 DIST octave-4.0.1.tar.xz 15637340 SHA256 
d58f4861f93dbf4c98f3574d6066cfa25001349bd58ce063cf443efba4e1c287 SHA512 
7fa22b50c9116c917b2a2bd63d81a8106eba95842a5de736fbf89ee6ea3dbd5542c183ab6229b62f548ad07abbf67514152a8e553e8fbdf86036d44ced669798
 WHIRLPOOL 
7bcc16a1e01543dc0baab92993a305c6fea7fc9eb9d806004a1b3e11479c34d8a4de60e2291a27c846d54abc35883a16583bc324681d7897624fa40d98bb
+DIST octave-4.0.2.tar.xz 15668728 SHA256 
98c11ecead8ea759eb1d010ad6319a63a1c6199d3a7e2abbafe453c753090403 SHA512 
e79d43528d47a2b3f0fbc9e43eefd5fb8e199dd3818ffd745c1424c7cfca9397186dab129b6f61ee52f5c5203d613e5290d8dc5e32b318cfdd3d38f7facf63cd
 WHIRLPOOL 
bf870ef3b6affb4a157951d99132078f528b52be403f7d01bfd98fd657d4089ebbf5fb78f340ce18e59ae27d5eddb9edbbf76583810bcf2dbd5c9ce8ea3434cd

diff --git a/sci-mathematics/octave/octave-4.0.2.ebuild 
b/sci-mathematics/octave/octave-4.0.2.ebuild
new file mode 100644
index 000..a527708
--- /dev/null
+++ b/sci-mathematics/octave/octave-4.0.2.ebuild
@@ -0,0 +1,169 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+inherit autotools-utils multilib toolchain-funcs fortran-2 flag-o-matic 
java-pkg-opt-2 pax-utils
+
+DESCRIPTION="High-level interactive language for numerical computations"
+LICENSE="GPL-3"
+HOMEPAGE="http://www.octave.org/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+SLOT="0/${PV}"
+IUSE="curl doc fftw +glpk gnuplot gui hdf5 +imagemagick java jit opengl
+   postscript +qhull +qrupdate readline +sparse static-libs X zlib"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   app-text/ghostscript-gpl
+   dev-libs/libpcre:3=
+   sys-libs/ncurses:0=
+   virtual/blas
+   virtual/lapack
+   curl? ( net-misc/curl:0= )
+   fftw? ( sci-libs/fftw:3.0= )
+   glpk? ( sci-mathematics/glpk:0= )
+   gnuplot? ( sci-visualization/gnuplot )
+   gui? ( x11-libs/qscintilla:0= )
+   hdf5? ( sci-libs/hdf5:0= )
+   imagemagick? ( || (
+   media-gfx/graphicsmagick[cxx]
+   media-gfx/imagemagick[cxx] ) )
+   java? ( >=virtual/jre-1.6.0:* )
+   jit? (
+   >=sys-devel/autoconf-archive-2015.02.04
+   >=sys-devel/llvm-3.3:0= =x11-libs/fltk-1.3:1=[opengl,xft]
+   x11-libs/gl2ps:0=
+   virtual/glu )
+   postscript? (
+   app-text/epstool
+   media-gfx/pstoedit
+   media-gfx/transfig )
+   qhull? ( media-libs/qhull:0= )
+   qrupdate? ( sci-libs/qrupdate:0= )
+   readline? ( sys-libs/readline:0= )
+   sparse? (
+   sci-libs/arpack:0=
+   sci-libs/camd:0=
+   sci-libs/ccolamd:0=
+   sci-libs/cholmod:0=
+   sci-libs/colamd:0=
+   sci-libs/cxsparse:0=
+   sci-libs/umfpack:0= )
+   X? ( x11-libs/libX11:0= )
+   zlib? ( sys-libs/zlib:0= )"
+
+DEPEND="${RDEPEND}
+   qrupdate? ( app-misc/pax-utils )
+   sparse? ( app-misc/pax-utils )
+   java? ( >=virtual/jdk-1.6.0 )
+   doc? (
+   virtual/latex-base
+   dev-texlive/texlive-genericrecommended
+   dev-texlive/texlive-metapost
+   sys-apps/texinfo )
+   

[gentoo-commits] proj/lua:master commit in: dev-lang/luajit/

2016-04-30 Thread Vadim A. Misbakh-Soloviov
commit: 361c448ef32972f43a119fd733ec820754ae3c9b
Author: Vadim A. Misbakh-Soloviov  mva  name>
AuthorDate: Sat Apr 30 06:50:55 2016 +
Commit: Vadim A. Misbakh-Soloviov  mva  name>
CommitDate: Sat Apr 30 06:50:55 2016 +
URL:https://gitweb.gentoo.org/proj/lua.git/commit/?id=361c448e

luajit: change src_prep patching according makefile changes

 dev-lang/luajit/luajit-2.1..ebuild | 31 ++-
 1 file changed, 6 insertions(+), 25 deletions(-)

diff --git a/dev-lang/luajit/luajit-2.1..ebuild 
b/dev-lang/luajit/luajit-2.1..ebuild
index 68a2986..4a69cf2 100644
--- a/dev-lang/luajit/luajit-2.1..ebuild
+++ b/dev-lang/luajit/luajit-2.1..ebuild
@@ -2,9 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: This ebuild is from Lua overlay; Bumped by mva; $
 
-EAPI="5"
+EAPI="6"
 
-inherit base eutils multilib multilib-minimal portability pax-utils 
toolchain-funcs versionator flag-o-matic check-reqs git-r3
+inherit eutils multilib multilib-minimal portability pax-utils toolchain-funcs 
versionator flag-o-matic check-reqs git-r3
 
 DESCRIPTION="Just-In-Time Compiler for the Lua programming language"
 HOMEPAGE="http://luajit.org/;
@@ -30,7 +30,7 @@ PDEPEND="
virtual/lua[luajit]
 "
 
-HTML_DOCS=( "doc/" )
+HTML_DOCS=( "doc/." )
 
 MULTILIB_WRAPPED_HEADERS=(
 /usr/include/luajit-${SLOT}/luaconf.h
@@ -54,45 +54,26 @@ pkg_setup() {
 
 src_prepare(){
# fixing prefix and version
-#  sed -r \
-#  -e 's|^(VERSION)=.*|\1=$(MAJVER).$(MINVER)|' \
-#  -e 's|\$\(MAJVER\)\.\$\(MINVER\)\.\$\(RELVER\)|$(VERSION)|' \
-#  -e 's|^(FILE_MAN)=.*|\1=${PN}-$(VERSION).1|' \
-#  -e 's|^(INSTALL_PCNAME)=.*|\1=${PN}-$(VERSION).pc|' \
-#  -e 's|^(INSTALL_SOSHORT)=.*|\1=lib${PN}-${SLOT}.so|' \
-#  -e 's|^(INSTALL_ANAME)=.*|\1=lib${PN}-${SLOT}.a|' \
-#  -e 's|^(INSTALL_SONAME)=.*|\1=lib${PN}-${SLOT}.so.${PV}|' \
-#  -e 's|( PREFIX)=.*|\1=/usr|' \
-#  -e '/\$\(SYMLINK\)\ \$\(INSTALL_TNAME\)\ \$\(INSTALL_TSYM\)/d' \
-#  -i Makefile || die "failed to fix prefix in Makefile"
-
sed -r \
-e 's|^(VERSION)=.*|\1=${PV}|' \
-   -e 's|\$\(MAJVER\)\.\$\(MINVER\)\.\$\(RELVER\)|$(VERSION)|' \
+   -e 's|^(INSTALL_SONAME)=.*|\1=$(INSTALL_SOSHORT1).$(VERSION)|' \
-e 's|^(INSTALL_PCNAME)=.*|\1=${P}.pc|' \
-e 's|( PREFIX)=.*|\1=/usr|' \
-e 's|^(FILE_MAN)=.*|\1=${P}.1|' \
-i Makefile || die "failed to fix prefix in Makefile"
 
-#  sed -r \
-#  -e 's|^(libname=.*-)\$\{abiver\}|\1${majver}.${minver}|' \
-#  -i "etc/${PN}.pc" || die "Failed to slottify"
-
-#  sed -r \
-#  -e 's|^(TARGET_SONAME)=.*|\1=lib${PN}-${SLOT}.so.${PV}|' \
-#  -i src/Makefile || die "Failed to slottify"
-
sed -r \
-e 's|^(#define LUA_LJDIR).*|\1 "/'${P}'/"|' \
-i src/luaconf.h || die "Failed to slotify"
 
use debug && (
sed -r \
-   -e 's/#(CCDEBUG= -g)/\1 -ggdb/' \
+   -e 's/#(CCDEBUG= -g)/\1 -ggdb -O0/' \
-i src/Makefile || die "Failed to enable debug"
)
mv "${S}"/etc/${PN}.1 "${S}"/etc/${P}.1
 
+   eapply_user
multilib_copy_sources
 }
 



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/chrome-gnome-shell/, profiles/features/selinux/

2016-04-30 Thread Patrice Clement
commit: ba6eb934e51e309fb300badb988fa33ede690458
Author: Yuri Konotopov  gmail  com>
AuthorDate: Wed Apr  6 19:16:02 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 10:51:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba6eb934

gnome-extra/chrome-gnome-shell: new package

Native host messaging program and web extension for Google Chrome browser
(and derivatives) that provides integration with GNOME Shell
and the corresponding extensions repository https://extensions.gnome.org

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

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

 gnome-extra/chrome-gnome-shell/Manifest|  1 +
 .../chrome-gnome-shell-5.2.ebuild  | 27 ++
 gnome-extra/chrome-gnome-shell/metadata.xml| 16 +
 profiles/features/selinux/package.mask |  1 +
 4 files changed, 45 insertions(+)

diff --git a/gnome-extra/chrome-gnome-shell/Manifest 
b/gnome-extra/chrome-gnome-shell/Manifest
new file mode 100644
index 000..baa15da
--- /dev/null
+++ b/gnome-extra/chrome-gnome-shell/Manifest
@@ -0,0 +1 @@
+DIST chrome-gnome-shell-5.2.tar.xz 58276 SHA256 
67144e5fca2240a6804e1367e7652b6c66ab595de27cf97629e78a8a8d547c3e SHA512 
4619ca717645ccadd9d015fdf3f5ac3b2457b9486644be2e0b032021b41da149046810a8a7eb7e5a7ba55357e7498257ba7a6c04227319dc7bd3df62dbee1321
 WHIRLPOOL 
91d19034e53d46b17e2f90d47f2f8c0851710513b6c36f859f15165c981c143a12607d15f6ac753eaa4beca86f4205825e5c5bbf1c006acba49882efc47cca87

diff --git a/gnome-extra/chrome-gnome-shell/chrome-gnome-shell-5.2.ebuild 
b/gnome-extra/chrome-gnome-shell/chrome-gnome-shell-5.2.ebuild
new file mode 100644
index 000..8f32064
--- /dev/null
+++ b/gnome-extra/chrome-gnome-shell/chrome-gnome-shell-5.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Provides integration with GNOME Shell extensions repository for 
Chrome browser"
+HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome;
+SRC_URI="mirror://gnome/sources/${PN}/${PV}/${P}.tar.xz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-lang/python:2.7
+   gnome-base/gnome-shell
+"
+DEPEND=""
+
+src_configure() {
+   local mycmakeargs=( -DBUILD_EXTENSION=OFF )
+   cmake-utils_src_configure
+}

diff --git a/gnome-extra/chrome-gnome-shell/metadata.xml 
b/gnome-extra/chrome-gnome-shell/metadata.xml
new file mode 100644
index 000..fd6978f
--- /dev/null
+++ b/gnome-extra/chrome-gnome-shell/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   ykonoto...@gmail.com
+   Yuri Konotopov
+   
+   
+proxy-ma...@gentoo.org
+Proxy Maintainers
+
+   
+   
https://github.com/nE0sIghT/chrome-gnome-shell-mirror/issues
+   GNOME/chrome-gnome-shell
+   
+

diff --git a/profiles/features/selinux/package.mask 
b/profiles/features/selinux/package.mask
index 7abde74..04d597a 100644
--- a/profiles/features/selinux/package.mask
+++ b/profiles/features/selinux/package.mask
@@ -12,6 +12,7 @@ gnome-base/gnome
 gnome-base/gnome-extra-apps
 gnome-base/gnome-light
 gnome-base/gnome-shell
+gnome-extra/chrome-gnome-shell
 gnome-extra/gnome-logs
 gnome-extra/gnome-shell-extensions
 gnome-extra/gnome-shell-frippery



[gentoo-commits] repo/gentoo:master commit in: dev-games/aseprite/files/

2016-04-30 Thread Patrice Clement
commit: 0d6608f6921b4a6a9b029f7a6351d31e18071f80
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr 30 10:41:06 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 30 10:42:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d6608f6

dev-games/aseprite: Mend patch format.

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

Package-Manager: portage-2.2.26

 .../files/aseprite-1.1.4.1_underlinking.patch  | 26 +++---
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/dev-games/aseprite/files/aseprite-1.1.4.1_underlinking.patch 
b/dev-games/aseprite/files/aseprite-1.1.4.1_underlinking.patch
index 8481657..e62cc15 100644
--- a/dev-games/aseprite/files/aseprite-1.1.4.1_underlinking.patch
+++ b/dev-games/aseprite/files/aseprite-1.1.4.1_underlinking.patch
@@ -4,25 +4,25 @@ Date: Fri, 22 Apr 2016 13:42:26 +0500
 Subject: [PATCH] Fixing underlinking for gcc 4.9
 
 Allegro4 backend uses XGrabPointer() from libX11.
-Added ${X11_LIBRARIES} for she to resolve underlinking.
+Added ${X11_LIBRARIES} to resolve underlinking.
 ---
  src/she/CMakeLists.txt | 3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 diff --git a/src/she/CMakeLists.txt b/src/she/CMakeLists.txt
 index cddf5bc..1841aa6 100644
 a/src/she/CMakeLists.txt
-+++ b/src/she/CMakeLists.txt
-@@ -242,7 +242,8 @@ if(USE_ALLEG4_BACKEND)
-   target_link_libraries(she
- ${LOADPNG_LIBRARY}
- ${LIBALLEGRO4_LINK_FLAGS}
--${DXGUID_LIBRARIES})
-+${DXGUID_LIBRARIES}
-+${X11_LIBRARIES})
- endif()
- 
- if(USE_SKIA_BACKEND)
+--- a/src/she/CMakeLists.txt.orig  2016-04-30 10:36:25.19800 +
 b/src/she/CMakeLists.txt   2016-04-30 10:37:01.16300 +
+@@ -241,7 +241,8 @@
+   target_link_libraries(she
+ ${LOADPNG_LIBRARY}
+ ${LIBALLEGRO4_LINK_FLAGS}
+-${DXGUID_LIBRARIES})
++${DXGUID_LIBRARIES},
++${X11_LIBRARIES})
+ endif()
+ 
+ if(USE_SKIA_BACKEND)
 -- 
 2.7.3
 



  1   2   >