[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/grass/files/, sci-geosciences/grass/

2015-10-22 Thread Ian Delaney
commit: ea4be14d06c027b2e0dcdf0c3beab1b2cf45e3ee
Author: Ian Delaney  gentoo  org>
AuthorDate: Fri Oct 23 06:52:09 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Fri Oct 23 06:52:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea4be14d

sci-geosciences/grass: patch, fixes failure built with format-security

qa issue; error filed upstream by 'wraeth', patch rebased from the
upstream commit, runtested by myself, closes gentoo bug

Upstream patch: https://trac.osgeo.org/grass/changeset/66561
Gentoo bug: #563490

Package-Manager: portage-2.2.20.1

 sci-geosciences/grass/files/7.0.1-sec-format.patch | 1026 
 sci-geosciences/grass/grass-7.0.1-r1.ebuild|   10 +-
 2 files changed, 1032 insertions(+), 4 deletions(-)

diff --git a/sci-geosciences/grass/files/7.0.1-sec-format.patch 
b/sci-geosciences/grass/files/7.0.1-sec-format.patch
new file mode 100644
index 000..a545a2b
--- /dev/null
+++ b/sci-geosciences/grass/files/7.0.1-sec-format.patch
@@ -0,0 +1,1026 @@
+rebased patch by 'wraeth' from
+https://trac.osgeo.org/grass/changeset/66561
+diff --git a/db/drivers/dbf/column.c b/db/drivers/dbf/column.c
+index ee0fd6e..1d2780e 100644
+--- a/db/drivers/dbf/column.c
 b/db/drivers/dbf/column.c
+@@ -40,7 +40,7 @@ int add_column(int tab, int type, char *name, int width, int 
decimals)
+   sprintf(buf, "DBMI-DBF driver: column name '%s'", name);
+   name[DBF_COL_NAME - 1] = '\0';
+   sprintf(buf + strlen(buf), " truncated to '%s'", name);
+-  G_warning(buf);
++  G_warning("%s", buf);
+ }
+ 
+ /* Check if the column exists */
+diff --git a/db/drivers/ogr/select.c b/db/drivers/ogr/select.c
+index 27ae090..6584bd5 100644
+--- a/db/drivers/ogr/select.c
 b/db/drivers/ogr/select.c
+@@ -48,7 +48,7 @@ int db__driver_open_select_cursor(dbString * sel, dbCursor * 
dbc, int mode)
+ 
+ if (c->hLayer == NULL) {
+   db_d_append_error(_("Unable to select: \n"));
+-  db_d_append_error(db_get_string(sel));
++  db_d_append_error("%s", db_get_string(sel));
+   db_d_append_error("\n");
+   db_d_report_error();
+   return DB_FAILED;
+diff --git a/db/drivers/postgres/db.c b/db/drivers/postgres/db.c
+index b02bade..5e171eb 100644
+--- a/db/drivers/postgres/db.c
 b/db/drivers/postgres/db.c
+@@ -248,7 +248,7 @@ int create_delete_db(dbHandle *handle, int create)
+ if (PQstatus(pg_conn) == CONNECTION_BAD) {
+   db_d_append_error(_("Connection failed."));
+   db_d_append_error("\n");
+-  db_d_append_error(PQerrorMessage(pg_conn));
++  db_d_append_error("%s", PQerrorMessage(pg_conn));
+   db_d_report_error();
+   PQfinish(pg_conn);
+   return DB_FAILED;
+@@ -269,7 +269,7 @@ int create_delete_db(dbHandle *handle, int create)
+   else
+   db_d_append_error(_("Unable to drop database <%s>"), name);
+   db_d_append_error("\n");
+-  db_d_append_error(PQerrorMessage(pg_conn));
++  db_d_append_error("%s", PQerrorMessage(pg_conn));
+   db_d_report_error();
+   
+   PQclear(res);   
+diff --git a/imagery/i.landsat.toar/landsat_met.c 
b/imagery/i.landsat.toar/landsat_met.c
+index 506d719..5b612a4 100644
+--- a/imagery/i.landsat.toar/landsat_met.c
 b/imagery/i.landsat.toar/landsat_met.c
+@@ -384,14 +384,14 @@ void lsat_metadata(char *metafile, lsat_data * lsat)
+   sprintf(key, "Band%dGainSetting", lsat->band[i].code);
+   get_mtldata(mtldata, key, value);
+   if (value[0] == '\0') {
+-  G_warning(key);
++G_warning("%s", key);
+   continue;
+   }
+   lsat->band[i].gain = atof(value);
+   sprintf(key, "Band%dBiasSetting", lsat->band[i].code);
+   get_mtldata(mtldata, key, value);
+   if (value[0] == '\0') {
+-  G_warning(key);
++  G_warning("%s", key);
+   continue;
+   }
+   lsat->band[i].bias = atof(value);
+diff --git a/imagery/i.ortho.photo/i.ortho.rectify/cp.c 
b/imagery/i.ortho.photo/i.ortho.rectify/cp.c
+index b8ec48c..86e5b33 100644
+--- a/imagery/i.ortho.photo/i.ortho.rectify/cp.c
 b/imagery/i.ortho.photo/i.ortho.rectify/cp.c
+@@ -31,7 +31,7 @@ int get_conz_points(void)
+ default:
+   return 1;
+ }
+-G_fatal_error(msg);
++G_fatal_error("%s", msg);
+ }
+ 
+ int get_ref_points(void)
+@@ -61,6 +61,6 @@ int get_ref_points(void)
+ default:
+   return 1;
+ }
+-G_fatal_error(msg);
++G_fatal_error("%s", msg);
+ /* exit(1);   shouldn't get here */
+ }
+diff --git a/imagery/i.ortho.photo/i.ortho.rectify/target.c 
b/imagery/i.ortho.photo/i.ortho.rectify/target.c
+index 99f8480..462833a 100644
+--- a/imagery/i.ortho.photo/i.ortho.rectify/target.c
 b/imagery/i.ortho.photo/i.ortho.rectify/target.c
+@@ -31,5 +31,5 @@ int get_target(char *group)
+ sprintf(buf, _("Mapset <%s> in target location <%s> - "), mapset, 
location);
+ strcat(buf, s

[gentoo-commits] proj/java:master commit in: dev-java/icedtea/

2015-10-22 Thread Andrew John Hughes
commit: 92b533455f197621a03a2a2dc2de15d694c93702
Author: Andrew John Hughes  member  fsf  org>
AuthorDate: Thu Oct 22 23:23:16 2015 +
Commit: Andrew John Hughes  member  fsf  org>
CommitDate: Thu Oct 22 23:24:01 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=92b53345

dev-java/icedtea: Bring in changes from main tree.

Package-Manager: portage-2.2.20.1

 dev-java/icedtea/ChangeLog |   8 +
 dev-java/icedtea/Manifest  |  10 -
 ...-6.1.13.8.ebuild => icedtea-6.1.13.8-r1.ebuild} |  76 ++--
 dev-java/icedtea/icedtea-7.2.5.6.ebuild| 432 -
 ...ea-7.2.6.1.ebuild => icedtea-7.2.6.1-r1.ebuild} | 126 +++---
 5 files changed, 112 insertions(+), 540 deletions(-)

diff --git a/dev-java/icedtea/ChangeLog b/dev-java/icedtea/ChangeLog
index 0555ee9..9c978fe 100644
--- a/dev-java/icedtea/ChangeLog
+++ b/dev-java/icedtea/ChangeLog
@@ -2,6 +2,14 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*icedtea-6.1.13.8-r1 (22 Oct 2015)
+*icedtea-7.2.6.1-r1 (22 Oct 2015)
+
+  22 Oct 2015; Andrew John Hughes 
+  +icedtea-6.1.13.8-r1.ebuild, +icedtea-7.2.6.1-r1.ebuild,
+  -icedtea-6.1.13.8.ebuild, -icedtea-7.2.5.6.ebuild, -icedtea-7.2.6.1.ebuild:
+  dev-java/icedtea: Bring in changes from main tree. Drop obsolete 2.5.x
+
 *icedtea-3.0.0_pre06 (03 Oct 2015)
 
   03 Oct 2015; Andrew John Hughes 

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index 6067312..ac0ec72 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -1,12 +1,3 @@
-DIST icedtea-2.5-aarch64-b19bc5aeaa09.tar.bz2 8157927 SHA256 
00043b0c09aa06ce1766c2973d18b0283bd2128a44c94cde97b626a4856b68b3 SHA512 
ce9d1ee654e9c25bb2cb8953aab838b206e96fe27804acaa0ed652d8b1bc6dffb138c90ea7e188b189c3ec743dc594c6c49d7217d14cd88ecb6bb9314c74f44c
 WHIRLPOOL 
f001f9a290941c36607abb36e2c1faeb4ff6a9fa5a7c1877ad29c2335840ad1c3d5efa090a44ff086dcb62ffd5a3e418f19d7ac16520724029fc2658ce19af53
-DIST icedtea-2.5-corba-a146d87ff390.tar.bz2 1070505 SHA256 
d2c060e77ac62a2ace76cf7d098973803398a33c627b40401ca36e932136 SHA512 
065f138eeedddf0703a2229d10c384a6003b4404a6fa2766ef3a1df8d29d71f1fddc609b9840ddaa31553a29c287eab33d368e227ccc25650aba4e98d50b4aa2
 WHIRLPOOL 
274acd68bf5e06d68bac50253ebb0e68bf0333188636ce7d96a403778af737547d4a3a154c1bc99c8151816b18dba25cdda1febf19cada7f2e9f3c0884a3c51e
-DIST icedtea-2.5-hotspot-383de087ee57.tar.bz2 7802328 SHA256 
2831eeb73a4af0007fb31978e8a17aae1e9677bd545563956f99b1e0ec8bb923 SHA512 
42d540632e315318e91a61ee21e2fb6c8e4b813d5bba734b9a1658be8799063a7547d6ee30846a070e806e63f77220a08e215d071c8f622cddfc1f923e9d7d07
 WHIRLPOOL 
747c4b273126989081789574a63a99ca8a03e9024e5626e9dd78c320df047bcb774610efb4a32cab8bf25b1e8b71f8b4268d298338edac512a46a43dc55179ba
-DIST icedtea-2.5-jaxp-3d9457280537.tar.bz2 2738979 SHA256 
488480d8f69297e38f4b6df0131dfc445b59cad9b99327f29096ad820c972c38 SHA512 
743931ba791ba09d5f0c45d589e5ba2562f6bed395f766619c8d1d15fd35f709e888017387d6cd01005156dca756450c7c0d286ca8a1585c012099164d977920
 WHIRLPOOL 
3f78e43fd0a31f97b944ff87133795a0a71be9a8b0b4efeb718ff215d947267270de8533d4378d82f2685cc69f9b599b5acf70564527fb37452666e998a8ebc1
-DIST icedtea-2.5-jaxws-bc5d03e92fd3.tar.bz2 2019582 SHA256 
98c6c09d41ef3d179fb4f47e733be0f306ad85479473d5ec51c58acac07cf491 SHA512 
a50929f80c40ddf11ad35571540a7d09c6b069b4d055dec41ff6c50d1d737bcf26fc7d14096d4528d184f7c83cadc61cf764664ecd25693afdbe48e59bf00c68
 WHIRLPOOL 
c3e40d74a9ac4c2aa9e9a722c39de36f713b85b36517b8e1bc3b992d040a695c4fd50bafce5f4a4a8f55522faf580c16ba87818368d5a48d05e7e9a809880966
-DIST icedtea-2.5-jdk-48b2e510f78e.tar.bz2 31880992 SHA256 
c944ef8d1810e861b54d3f8122960dd4b247b52ed23afd5b1cb053da988fffe4 SHA512 
84f4122ec8336b5e3c71b17426f77d0b7719d0e688f3c5a9606db5749187e7858334de5438b683729b73fb91200b8cf087ee2166cd284baab38b3ac5d08ac6a1
 WHIRLPOOL 
68d2f890434afab440dd8e63fcfc00bdeb792b276ed9bbf2eb813197e2842d7d5903f1f3ca04df830118ced1fe2443b211faebf6f172d9e6dfab82fb1e2ebf22
-DIST icedtea-2.5-langtools-a6d3d79b4547.tar.bz2 1702391 SHA256 
9f272f88ea0e8c090fb659c48f96f73fb066e6863f13f293e4ab19d691254693 SHA512 
4a39600151f400cf6c17124757e4e8e877cf863445b9c95fb6c8c095f3f46072054f1b2f0262b4964594d6a330579cead0fdd423d61cfd425ec05b90121f79fe
 WHIRLPOOL 
553ede3cf18308f79f4cedf57b2f491780532e23c546e158aca286076d6ab618d1fdf6d825a79fcf3c1a9fc18b2c130d2f84c29c37f3e19fe6e01a14bcb969d8
-DIST icedtea-2.5-openjdk-44f140fd2873.tar.bz2 127517 SHA256 
d100158d10a47b064f700f516874c987f105e05947e580d5a143e00fb0b30fad SHA512 
82bceecd1fb29b184ea45e5cfbf819b497707e041bc8d25a4ca8447e736db5f5d859dd9ad0129ba2fe300ce3d2ace18d8e528967ec43e467ef12991a860ea5d3
 WHIRLPOOL 
e037bbbd9f85d81ce57759e68f40116db3178a43f4260806e0734fc2a1cd05f86f43cdd82aacaa8f4780e75a1ec7c7e0a7780baf722803a0a711506f0ba847f2
-DIST icedtea-2.5.6.tar.xz 2034152 SHA256 
bb3c7e9fd372c737849d9d3129d935174492a0d924a2801223c822426338b8c4 SHA512 
773601e4fc08d9a4

[gentoo-commits] proj/java:master commit in: dev-java/icedtea/

2015-10-22 Thread Andrew John Hughes
commit: fb02aff669bdc241fca739f4bc2a41a5d0569699
Author: Andrew John Hughes  member  fsf  org>
AuthorDate: Fri Oct 23 06:25:03 2015 +
Commit: Andrew John Hughes  member  fsf  org>
CommitDate: Fri Oct 23 06:25:03 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=fb02aff6

dev-java/icedtea: Update to 2.6.2, http://bitly.com/it20602

Package-Manager: portage-2.2.20.1

 dev-java/icedtea/ChangeLog |  6 ++
 dev-java/icedtea/Manifest  | 16 
 ...cedtea-7.2.6.1-r1.ebuild => icedtea-7.2.6.2.ebuild} | 18 +++---
 3 files changed, 21 insertions(+), 19 deletions(-)

diff --git a/dev-java/icedtea/ChangeLog b/dev-java/icedtea/ChangeLog
index db537b1..de17131 100644
--- a/dev-java/icedtea/ChangeLog
+++ b/dev-java/icedtea/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*icedtea-7.2.6.2 (23 Oct 2015)
+
+  23 Oct 2015; Andrew John Hughes 
+  +icedtea-7.2.6.2.ebuild, -icedtea-7.2.6.1-r1.ebuild:
+  dev-java/icedtea: Update to 2.6.2, http://bitly.com/it20602
+
   22 Oct 2015; Andrew John Hughes 
   icedtea-3.0.0_pre06.ebuild, icedtea-6.1.13.8-r1.ebuild, 
icedtea-6..ebuild,
   icedtea-7.2.6.1-r1.ebuild, icedtea-7.2.7.0_pre00.ebuild, metadata.xml:

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index ac0ec72..a5415e2 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -1,11 +1,11 @@
-DIST icedtea-2.6-corba-2545636482d6.tar.bz2 1071895 SHA256 
cd03d97c171a2d45ca94c1642265e09c09a459b1d4ac1191f82af88ca171f6f8 SHA512 
16a0bd71db484cd948ef3e941566af5b63d657f4d946caed0cef2fb104680beb21bd8633a6f48501c987cedb7949d7228ca7957e5fae3f4adc9ec48050193a12
 WHIRLPOOL 
98a317a85c4eed1098c7391f67e6687869337a1576bedc65ec4ddfde5885b4c514d12a5aebdac20a70970bb4c79d8b14f7bc153bf0b105b747f4e63ac79c3b79
-DIST icedtea-2.6-hotspot-b19bc5aeaa09.tar.bz2 8157927 SHA256 
00043b0c09aa06ce1766c2973d18b0283bd2128a44c94cde97b626a4856b68b3 SHA512 
ce9d1ee654e9c25bb2cb8953aab838b206e96fe27804acaa0ed652d8b1bc6dffb138c90ea7e188b189c3ec743dc594c6c49d7217d14cd88ecb6bb9314c74f44c
 WHIRLPOOL 
f001f9a290941c36607abb36e2c1faeb4ff6a9fa5a7c1877ad29c2335840ad1c3d5efa090a44ff086dcb62ffd5a3e418f19d7ac16520724029fc2658ce19af53
-DIST icedtea-2.6-jaxp-ffbe529eeac7.tar.bz2 2737160 SHA256 
c00c4c2889f77c4615fd655415067e14840764f52e503f220ed324720117faeb SHA512 
1d8e68f0118f0e8465e333a8edd8aa9fdc16591c62bf4cc5c7791fb7f9acb97b9c6290fa4879a13138a68cb8b4fa93534cef3ebaee7bb8f3c0565595a3228493
 WHIRLPOOL 
e85c5840883eaef4b1ebbb2dd0bae7d82457e01b6591653ac8d2d12a045f0736cb85b4c056a33614df7bb3b63cd61cf9e7caecdb5dae5f1d6be4f7ed1456cb53
-DIST icedtea-2.6-jaxws-b9776fab65b8.tar.bz2 2021243 SHA256 
2d5ff95dc62ab7986973e15e9cf91d5596d2cf486ee52beab9eab62f70f2ae9f SHA512 
0d5fc0001571381d151033b4e8ca98658bed3943c34faafc73ffea2d537d44b433ad49e246fc00335828418fc6e1c40d75fd1ee2280ebf0bf4014b4551f80bb0
 WHIRLPOOL 
f35173656c30525678a1a09a5b30ef019816ee006e7c0682c3852df7a92523eef28b936418805d6dc874a31db3d3ddd1d02938227a8ba6b9080d17239c68ff74
-DIST icedtea-2.6-jdk-61d3e001dee6.tar.bz2 32421128 SHA256 
a8083e75e14ddb4575bf2cd733e80a0074201b45d8debbe04f84564b32875363 SHA512 
d5921683a63cca12fb73224ddd248ae37a986af1f9df131a130fb6f2f808631730298770382a90468b136c2bedb699985d129acb7e0fa2de662ab7543bcfba4c
 WHIRLPOOL 
17d84d00f39774e08ba2934fd3e59cf5a372d0a8180576b2dbe6add617f36482cbd31f6d982e0b50b27fea54b9d35aec8552ab8d399cf7bd75047d4e55c1356d
-DIST icedtea-2.6-langtools-9c6e1de67d7d.tar.bz2 1710699 SHA256 
6db9bd16658fa8460e0afa4b05f28bd47148528d7581a403bea1e70f56cedd43 SHA512 
38136bba4d52b8de60e9a38f6ad47253d7513e46d82830ebb8f2f8659f66f99b7e3d7c4ad31c604cc5c516f1de331f2cdaf0ab0b37cff1dfd327c25ccc0f246f
 WHIRLPOOL 
697447e27419d265a4e3f178f665ba59ba11ae0865acb4133c3e20096501b119b10c566c3a15ab5bd8b83a96fa48de36ca7be41cab92cff73c2e269e470bf333
-DIST icedtea-2.6-openjdk-39b2c4354d0a.tar.bz2 129720 SHA256 
0168a0174ee47407139ee32458c4d2a298ba4f44260343b209250156e4da463f SHA512 
b17315b58d6662953f7a6d73eb222a5a81165f55bed2f48f3d3915a169e8c8e503b5f22c59fce5cd3202ed2392f946f8701d9cff92d235ae44696d370f2efd28
 WHIRLPOOL 
5f14c467228f0a96c4b2e9b67a64836d871fbbfa13daec5b77adb8b39d8db4d20d18130f548c838826d58523f1cdc7972744ddbb564d07dc0fe27f6fa456a629
-DIST icedtea-2.6.1.tar.xz 2049108 SHA256 
cce4fac1e729690e986ef6f6d1c47b507f622a61da33d57d2b0a8c12e23e2068 SHA512 
b465a025cd44c5395b43067042882cf272f5a9c71f06380a9bc4dedbd5e99c512161c84eaad8175aeb87d0477cd568aca4968862f02b9bd969736d2ee904b990
 WHIRLPOOL 
682dc4e4b14a604b1f30bf4a315ec56e91fddb72445dfe4110517e0e0dc5c4deb68565accf0600e6959febd818161078f1c65cf74a87e848c803820afce2bdb1
+DIST icedtea-2.6-corba-a4d55c5cec23.tar.bz2 1072249 SHA256 
92fa1e73dc0eb463bccd9ce3636643f492b8935cb7a23b91c5d855f4641382af SHA512 
819974b10fe3d0ba15e45da843b3bc908e7caafb9fe264c43026bfa1a10daecef6e4cf23bd486f89cae0d6952ef812a170cf297a934679fc6dec29ca941c48

[gentoo-commits] proj/java:master commit in: dev-java/icedtea/

2015-10-22 Thread Andrew John Hughes
commit: 08dbfe123b59d1fb49b4eda6e38fabc86315ccec
Author: Andrew John Hughes  member  fsf  org>
AuthorDate: Thu Oct 22 23:32:21 2015 +
Commit: Andrew John Hughes  member  fsf  org>
CommitDate: Thu Oct 22 23:52:18 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=08dbfe12

dev-java/icedtea: Rename X/awt USE flag to headless to match upstream 
terminology.

Package-Manager: portage-2.2.20.1

 dev-java/icedtea/ChangeLog|  6 ++
 dev-java/icedtea/icedtea-3.0.0_pre06.ebuild   |  8 
 dev-java/icedtea/icedtea-6.1.13.8-r1.ebuild   | 10 +-
 dev-java/icedtea/icedtea-6..ebuild| 10 +-
 dev-java/icedtea/icedtea-7.2.6.1-r1.ebuild| 12 ++--
 dev-java/icedtea/icedtea-7.2.7.0_pre00.ebuild | 12 ++--
 dev-java/icedtea/metadata.xml |  2 +-
 7 files changed, 33 insertions(+), 27 deletions(-)

diff --git a/dev-java/icedtea/ChangeLog b/dev-java/icedtea/ChangeLog
index 9c978fe..db537b1 100644
--- a/dev-java/icedtea/ChangeLog
+++ b/dev-java/icedtea/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  22 Oct 2015; Andrew John Hughes 
+  icedtea-3.0.0_pre06.ebuild, icedtea-6.1.13.8-r1.ebuild, 
icedtea-6..ebuild,
+  icedtea-7.2.6.1-r1.ebuild, icedtea-7.2.7.0_pre00.ebuild, metadata.xml:
+  dev-java/icedtea: Rename X/awt USE flag to headless to match upstream
+  terminology.
+
 *icedtea-6.1.13.8-r1 (22 Oct 2015)
 *icedtea-7.2.6.1-r1 (22 Oct 2015)
 

diff --git a/dev-java/icedtea/icedtea-3.0.0_pre06.ebuild 
b/dev-java/icedtea/icedtea-3.0.0_pre06.ebuild
index 485976a..5665e7b 100644
--- a/dev-java/icedtea/icedtea-3.0.0_pre06.ebuild
+++ b/dev-java/icedtea/icedtea-3.0.0_pre06.ebuild
@@ -62,7 +62,7 @@ EHG_REVISION="${ICEDTEA_PKG}${ICEDTEA_PRE}"
 LICENSE="Apache-1.1 Apache-2.0 GPL-1 GPL-2 GPL-2-with-linking-exception LGPL-2 
MPL-1.0 MPL-1.1 public-domain W3C"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 
-IUSE="+X +alsa cacao cjk +cups debug doc examples jamvm +jbootstrap +nsplugin
+IUSE="+alsa cacao cjk +cups debug doc examples headless jamvm +jbootstrap 
+nsplugin
+nss pax_kernel pulseaudio sctp selinux smartcard +source test zero 
+webstart"
 
 # Ideally the following were optional at build time.
@@ -108,7 +108,7 @@ COMMON_DEP="
 # cups is needed for X. #390945 #390975
 RDEPEND="${COMMON_DEP}
!dev-java/icedtea:0
-   X? (
+   !headless? (
${CUPS_COMMON_DEP}
${X_COMMON_DEP}
media-fonts/dejavu
@@ -323,7 +323,7 @@ src_install() {
 
# Ensures HeadlessGraphicsEnvironment is used.
# Hack; we should get IcedTea to support passing --disable-headful
-   if ! use X; then
+   if use headless ; then
rm -vf "${ddest}"/jre/lib/$(get_system_arch)/libawt_xawt.so || 
die
fi
 
@@ -361,7 +361,7 @@ src_install() {
chmod 644 "${ddest}/jre/lib/security/cacerts" || die
 
set_java_env "${FILESDIR}/icedtea.env"
-   if ! use X || ! use alsa || ! use cups; then
+   if use headless || ! use alsa || ! use cups; then
java-vm_revdep-mask "${dest}"
fi
java-vm_sandbox-predict /proc/self/coredump_filter

diff --git a/dev-java/icedtea/icedtea-6.1.13.8-r1.ebuild 
b/dev-java/icedtea/icedtea-6.1.13.8-r1.ebuild
index ff53a11..18438c6 100644
--- a/dev-java/icedtea/icedtea-6.1.13.8-r1.ebuild
+++ b/dev-java/icedtea/icedtea-6.1.13.8-r1.ebuild
@@ -37,7 +37,7 @@ SLOT="6"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 RESTRICT="test"
 
-IUSE="+alsa +awt cacao cjk +cups debug doc examples +gtk javascript
+IUSE="+alsa cacao cjk +cups debug doc examples +gtk headless javascript
+jbootstrap kerberos +nsplugin +nss pax_kernel pulseaudio selinux
source systemtap test zero +webstart"
 
@@ -81,7 +81,6 @@ RDEPEND="${COMMON_DEP}
!dev-java/icedtea-web:6
media-fonts/dejavu
alsa? ( ${ALSA_COMMON_DEP} )
-   awt? ( ${X_COMMON_DEP} )
cjk? (
media-fonts/arphicfonts
media-fonts/baekmuk-fonts
@@ -91,6 +90,7 @@ RDEPEND="${COMMON_DEP}
)
cups? ( ${CUPS_COMMON_DEP} )
gtk? ( >=x11-libs/gtk+-2.8:2 )
+   !headless? ( ${X_COMMON_DEP} )
selinux? ( sec-policy/selinux-java )"
 
 # Only ant-core-1.8.1 has fixed ant -diagnostics when xerces+xalan are not 
present.
@@ -233,8 +233,8 @@ src_configure() {

--with-abs-install-dir="${EPREFIX}/usr/$(get_libdir)/icedtea${SLOT}" \
--with-pkgversion="Gentoo package ${PF}" \
--disable-downloading --disable-Werror \
-   $(use_enable awt system-gif) \
-   $(use_enable awt system-png) \
+   $(use_enable !headless system-gif) \
+   $(use_enable !headless system-png) \
$(use_enable !debug optimizations) \
$(use_enable doc docs) \
$(use_enable kerberos system-kerberos) \

[gentoo-commits] proj/java:master commit in: dev-java/icedtea/

2015-10-22 Thread Andrew John Hughes
commit: 13e6104e1f66c003b91171f71fa8613a387ae8f4
Author: Andrew John Hughes  member  fsf  org>
AuthorDate: Thu Oct 22 23:16:04 2015 +
Commit: Andrew John Hughes  member  fsf  org>
CommitDate: Thu Oct 22 23:16:04 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=13e6104e

Revert "dev-java/icedtea: Remove versions that are now in the main tree"

This reverts commit 87a3c93b52162ab18debfff91281a8a227a9ccc3.

Conflicts:
dev-java/icedtea/Manifest

 dev-java/icedtea/Manifest|  21 ++
 dev-java/icedtea/icedtea-6.1.13.8.ebuild | 355 +
 dev-java/icedtea/icedtea-7.2.5.6.ebuild  | 432 +++
 dev-java/icedtea/icedtea-7.2.6.1.ebuild  | 406 +
 4 files changed, 1214 insertions(+)

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index fbb4e5d..6067312 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -1,3 +1,20 @@
+DIST icedtea-2.5-aarch64-b19bc5aeaa09.tar.bz2 8157927 SHA256 
00043b0c09aa06ce1766c2973d18b0283bd2128a44c94cde97b626a4856b68b3 SHA512 
ce9d1ee654e9c25bb2cb8953aab838b206e96fe27804acaa0ed652d8b1bc6dffb138c90ea7e188b189c3ec743dc594c6c49d7217d14cd88ecb6bb9314c74f44c
 WHIRLPOOL 
f001f9a290941c36607abb36e2c1faeb4ff6a9fa5a7c1877ad29c2335840ad1c3d5efa090a44ff086dcb62ffd5a3e418f19d7ac16520724029fc2658ce19af53
+DIST icedtea-2.5-corba-a146d87ff390.tar.bz2 1070505 SHA256 
d2c060e77ac62a2ace76cf7d098973803398a33c627b40401ca36e932136 SHA512 
065f138eeedddf0703a2229d10c384a6003b4404a6fa2766ef3a1df8d29d71f1fddc609b9840ddaa31553a29c287eab33d368e227ccc25650aba4e98d50b4aa2
 WHIRLPOOL 
274acd68bf5e06d68bac50253ebb0e68bf0333188636ce7d96a403778af737547d4a3a154c1bc99c8151816b18dba25cdda1febf19cada7f2e9f3c0884a3c51e
+DIST icedtea-2.5-hotspot-383de087ee57.tar.bz2 7802328 SHA256 
2831eeb73a4af0007fb31978e8a17aae1e9677bd545563956f99b1e0ec8bb923 SHA512 
42d540632e315318e91a61ee21e2fb6c8e4b813d5bba734b9a1658be8799063a7547d6ee30846a070e806e63f77220a08e215d071c8f622cddfc1f923e9d7d07
 WHIRLPOOL 
747c4b273126989081789574a63a99ca8a03e9024e5626e9dd78c320df047bcb774610efb4a32cab8bf25b1e8b71f8b4268d298338edac512a46a43dc55179ba
+DIST icedtea-2.5-jaxp-3d9457280537.tar.bz2 2738979 SHA256 
488480d8f69297e38f4b6df0131dfc445b59cad9b99327f29096ad820c972c38 SHA512 
743931ba791ba09d5f0c45d589e5ba2562f6bed395f766619c8d1d15fd35f709e888017387d6cd01005156dca756450c7c0d286ca8a1585c012099164d977920
 WHIRLPOOL 
3f78e43fd0a31f97b944ff87133795a0a71be9a8b0b4efeb718ff215d947267270de8533d4378d82f2685cc69f9b599b5acf70564527fb37452666e998a8ebc1
+DIST icedtea-2.5-jaxws-bc5d03e92fd3.tar.bz2 2019582 SHA256 
98c6c09d41ef3d179fb4f47e733be0f306ad85479473d5ec51c58acac07cf491 SHA512 
a50929f80c40ddf11ad35571540a7d09c6b069b4d055dec41ff6c50d1d737bcf26fc7d14096d4528d184f7c83cadc61cf764664ecd25693afdbe48e59bf00c68
 WHIRLPOOL 
c3e40d74a9ac4c2aa9e9a722c39de36f713b85b36517b8e1bc3b992d040a695c4fd50bafce5f4a4a8f55522faf580c16ba87818368d5a48d05e7e9a809880966
+DIST icedtea-2.5-jdk-48b2e510f78e.tar.bz2 31880992 SHA256 
c944ef8d1810e861b54d3f8122960dd4b247b52ed23afd5b1cb053da988fffe4 SHA512 
84f4122ec8336b5e3c71b17426f77d0b7719d0e688f3c5a9606db5749187e7858334de5438b683729b73fb91200b8cf087ee2166cd284baab38b3ac5d08ac6a1
 WHIRLPOOL 
68d2f890434afab440dd8e63fcfc00bdeb792b276ed9bbf2eb813197e2842d7d5903f1f3ca04df830118ced1fe2443b211faebf6f172d9e6dfab82fb1e2ebf22
+DIST icedtea-2.5-langtools-a6d3d79b4547.tar.bz2 1702391 SHA256 
9f272f88ea0e8c090fb659c48f96f73fb066e6863f13f293e4ab19d691254693 SHA512 
4a39600151f400cf6c17124757e4e8e877cf863445b9c95fb6c8c095f3f46072054f1b2f0262b4964594d6a330579cead0fdd423d61cfd425ec05b90121f79fe
 WHIRLPOOL 
553ede3cf18308f79f4cedf57b2f491780532e23c546e158aca286076d6ab618d1fdf6d825a79fcf3c1a9fc18b2c130d2f84c29c37f3e19fe6e01a14bcb969d8
+DIST icedtea-2.5-openjdk-44f140fd2873.tar.bz2 127517 SHA256 
d100158d10a47b064f700f516874c987f105e05947e580d5a143e00fb0b30fad SHA512 
82bceecd1fb29b184ea45e5cfbf819b497707e041bc8d25a4ca8447e736db5f5d859dd9ad0129ba2fe300ce3d2ace18d8e528967ec43e467ef12991a860ea5d3
 WHIRLPOOL 
e037bbbd9f85d81ce57759e68f40116db3178a43f4260806e0734fc2a1cd05f86f43cdd82aacaa8f4780e75a1ec7c7e0a7780baf722803a0a711506f0ba847f2
+DIST icedtea-2.5.6.tar.xz 2034152 SHA256 
bb3c7e9fd372c737849d9d3129d935174492a0d924a2801223c822426338b8c4 SHA512 
773601e4fc08d9a448f6f306e5678eca6f0b5b4704cdca66a40434de6e6b8208bc826e2a63235160b6b88bd92d746f8f7d1a74cfcfc0eaa58417ac3c8cb8aeb3
 WHIRLPOOL 
2443d7e1387f7d4d9f5b05d85a1768c9346e39471862e62e24585091aaab0d74f9099c8aa1bd6add5b4cd5179132c238021f1a40576c7a40de43ab170bce
+DIST icedtea-2.6-corba-2545636482d6.tar.bz2 1071895 SHA256 
cd03d97c171a2d45ca94c1642265e09c09a459b1d4ac1191f82af88ca171f6f8 SHA512 
16a0bd71db484cd948ef3e941566af5b63d657f4d946caed0cef2fb104680beb21bd8633a6f48501c987cedb7949d7228ca7957e5fae3f4adc9ec48050193a12
 WHIRLPOOL 
98a317a85c4eed1098c7391f67e6687869337a1576bedc65ec4ddfde5885b4c514d12a5aebdac20a70970bb4c79d8b14f7bc153bf

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

2015-10-22 Thread Jeroen Roovers
commit: 86cdd79cf3a2916d656eac9266ecfca21afd02af
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 23 06:22:02 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 23 06:22:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86cdd79c

sys-process/nmon: Version bump.

Package-Manager: portage-2.2.23

 sys-process/nmon/Manifest|  1 +
 sys-process/nmon/nmon-15g.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/sys-process/nmon/Manifest b/sys-process/nmon/Manifest
index d5c67b7..29b409e 100644
--- a/sys-process/nmon/Manifest
+++ b/sys-process/nmon/Manifest
@@ -1 +1,2 @@
 DIST lmon14i.c 201877 SHA256 
d401cb5048e3e8e8f1ad63e68a0499c73ec64d5d2b7c41a1aeb2b596374eaa86 SHA512 
fe739044516f1e11a30a83ea49a4db6dc65175fcbb5c6e305320e2763a6936bfa565910984008279b1f3595473166b8e3371472f76bd2472928892ab97c0fbfa
 WHIRLPOOL 
e924e79171037239f701f889cffd80f36d435a9d0b36febc573e9fb168dc0d1a9fadca2a8b7d67fb58fc4a859b01bd82b85c0a8a3649ca4fdd46a976cbf1f72e
+DIST lmon15g.c 211460 SHA256 
0f4958c4fecfbaae5794a4cb41393880b25d2530ba7643fade9c344b03454d2c SHA512 
849238148e5217e1460b4564bab9a9f4e9afb6364d3df75c83611b561b17414fccac16dcd9538e08a6448d5b19f9e506c3e5e44c8273b0e691389dd8d3160f12
 WHIRLPOOL 
9448863da7cdc8d5e3faa092850049c3f0c53816c547ae09f34209db145b3f818f273725a6be9a04b9e3117bcaa8a9fc394f2ab987fe6f3feecd9e02b95cbe85

diff --git a/sys-process/nmon/nmon-15g.ebuild b/sys-process/nmon/nmon-15g.ebuild
new file mode 100644
index 000..f0c67a5
--- /dev/null
+++ b/sys-process/nmon/nmon-15g.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Nigel's performance MONitor for CPU, memory, network, disks, 
etc..."
+HOMEPAGE="http://nmon.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/lmon${PV}.c"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="sys-libs/ncurses"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+
+S=${WORKDIR}
+
+src_unpack() {
+   cp "${DISTDIR}"/lmon${PV}.c "${S}"/nmon.c || die
+}
+
+src_compile() {
+   append-cppflags -DJFS -DGETUSER -DLARGEMEM -DPOWER
+   emake CC="$(tc-getCC)" LDLIBS="$( $(tc-getPKG_CONFIG) --libs ncurses) 
-lm" ${PN}
+}
+
+src_install() {
+   dobin nmon
+}



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

2015-10-22 Thread Jeroen Roovers
commit: 5c641f6a9e72d339a4f56c75e444581f7c1e8054
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 23 05:57:26 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 23 05:57:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c641f6a

net-misc/chrony: Add live ebuild.

Package-Manager: portage-2.2.23

 net-misc/chrony/chrony-.ebuild | 114 +
 1 file changed, 114 insertions(+)

diff --git a/net-misc/chrony/chrony-.ebuild 
b/net-misc/chrony/chrony-.ebuild
new file mode 100644
index 000..2dae405
--- /dev/null
+++ b/net-misc/chrony/chrony-.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils git-r3 systemd toolchain-funcs
+
+DESCRIPTION="NTP client and server programs"
+HOMEPAGE="http://chrony.tuxfamily.org/";
+EGIT_REPO_URI="git://git.tuxfamily.org/gitroot/chrony/chrony.git"
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS=""
+IUSE="caps +cmdmon ipv6 libedit +ntp +phc +pps readline +refclock +rtc selinux 
+adns"
+REQUIRED_USE="
+   ?? ( libedit readline )
+"
+
+CDEPEND="
+   caps? ( sys-libs/libcap )
+   libedit? ( dev-libs/libedit )
+   readline? ( >=sys-libs/readline-4.1-r4:= )
+"
+DEPEND="
+   ${CDEPEND}
+   sys-apps/texinfo
+"
+RDEPEND="
+   ${CDEPEND}
+   selinux? ( sec-policy/selinux-chronyd )
+"
+
+RESTRICT=test
+
+S="${WORKDIR}/${P/_/-}"
+
+src_prepare() {
+   sed -i \
+   -e 's:/etc/chrony\.:/etc/chrony/chrony.:g' \
+   -e 's:/var/run:/run:g' \
+   conf.c chrony.texi.in examples/* || die
+}
+
+src_configure() {
+   tc-export CC
+
+   local CHRONY_EDITLINE
+   # ./configure legend:
+   # --disable-readline : disable line editing entirely
+   # --without-readline : do not use sys-libs/readline (enabled by default)
+   # --without-editline : do not use dev-libs/libedit (enabled by default)
+   if ! use readline && ! use libedit; then
+   CHRONY_EDITLINE='--disable-readline'
+   else
+   CHRONY_EDITLINE+=" $(usex readline '' --without-readline)"
+   CHRONY_EDITLINE+=" $(usex libedit '' --without-editline)"
+   fi
+
+   # not an autotools generated script
+   local CHRONY_CONFIGURE="
+   ./configure \
+   $(usex caps '' --disable-linuxcaps) \
+   $(usex cmdmon '' --disable-cmdmon) \
+   $(usex ipv6 '' --disable-ipv6) \
+   $(usex ntp '' --disable-ntp) \
+   $(usex phc '' --disable-phc) \
+   $(usex pps '' --disable-pps) \
+   $(usex rtc '' --disable-rtc) \
+   $(usex refclock '' --disable-refclock) \
+   $(usex adns '' --disable-asyncdns) \
+   ${CHRONY_EDITLINE} \
+   ${EXTRA_ECONF} \
+   --docdir=/usr/share/doc/${PF} \
+   --chronysockdir=/run/chrony \
+   --infodir=/usr/share/info \
+   --mandir=/usr/share/man \
+   --prefix=/usr \
+   --sysconfdir=/etc/chrony \
+   --disable-sechash \
+   --without-nss \
+   --without-tomcrypt
+   "
+
+   # print the ./configure call to aid in future debugging
+   einfo ${CHRONY_CONFIGURE}
+   bash ${CHRONY_CONFIGURE} || die
+}
+
+src_compile() {
+   emake all docs
+}
+
+src_install() {
+   default
+
+   doinfo chrony.info*
+
+   newinitd "${FILESDIR}"/chronyd.init chronyd
+   newconfd "${FILESDIR}"/chronyd.conf chronyd
+
+   insinto /etc/${PN}
+   newins examples/chrony.conf.example1 chrony.conf
+
+   dodoc examples/*.example*
+
+   keepdir /var/{lib,log}/chrony
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/chrony-2.2.logrotate chrony
+
+   systemd_newunit "${FILESDIR}"/chronyd.service-r2 chronyd.service
+   systemd_enable_ntpunit 50-chrony chronyd.service
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/fping/

2015-10-22 Thread Jeroen Roovers
commit: c46d6798f601e84a7656209aa9fb7eb258dd3ff3
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 23 05:47:10 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 23 05:47:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c46d6798

net-analyzer/fping: Old.

Package-Manager: portage-2.2.23

 net-analyzer/fping/Manifest  |  2 --
 net-analyzer/fping/fping-3.11.ebuild | 27 ---
 net-analyzer/fping/fping-3.12.ebuild | 27 ---
 3 files changed, 56 deletions(-)

diff --git a/net-analyzer/fping/Manifest b/net-analyzer/fping/Manifest
index dae47bf..d5ffe8b 100644
--- a/net-analyzer/fping/Manifest
+++ b/net-analyzer/fping/Manifest
@@ -1,6 +1,4 @@
 DIST fping-3.10.tar.gz 157010 SHA256 
cd47e842f32fe6aa72369d8a0e3545f7c137bb019e66f47379dc70febad357d8 SHA512 
64bf93c7dbfa2b8adc3344514b2e6e182f1e5950da08b042b8d4d5e4c94b2b8bdc3aaba804339d0461dd88e0efbdfc0bd914a10d22810da8138c9c45335f7047
 WHIRLPOOL 
fe0610464e2771fe3937d64b5cf687e5c2cd3e2dd292bc0ccdf0ee936113f3b418d8f70dfb9b3f188155d98406cbdf6a0b7332e4daf893596d22b2ed89093c04
-DIST fping-3.11.tar.gz 155955 SHA256 
d824a4a8be88f74efe17ed66147b1e75c36ff83442e847ab1d5cfa7d9548c507 SHA512 
231ab41ac30df41361dc6b261b6ebe11460ad0baa2d017e393288718dbb5a9019d8c48ab0270df51269b30a397d295061007463870ce1629a17205739e63087b
 WHIRLPOOL 
c51fa25deba1f052d44d53c7101b8ed79ce094daaa33efcc95b87bcb0cdb15314e9f3beb803b8b03c9636e8dadca9ee199f33f74562fe8229db73cf505b7eab5
-DIST fping-3.12.tar.gz 155909 SHA256 
d86f2281bda4653c7049e6ba8fce24ba67edbf9193b7bb1cf6219b0c8ddce4e6 SHA512 
8fd0d58d3e92ef92a31cc2cacdcfddbe3527f95d2480cbbc1a15e321a291b20298a3494888b9cf7e0aa257ab7092d9291b98b204ad139824133519d31a615106
 WHIRLPOOL 
3756382f93f9e4a31e7c8f80ac37414401570e7144dd0d6d057f7eb51f475b8a343c9d205a549b4cf868b7962ead8411e72a94c6be1d03885c5eabd5ea6f1f3e
 DIST fping-3.13.tar.gz 155976 SHA256 
4bb28efd1cb3d1240ae551dadc20daa852b1ba71bafe32e49ca629c1848e5720 SHA512 
d6c1c5b9edb97ef59cfb6d22f74f6a055e52465d3ba0f93be35b6fc9615ee08490ee927f3cf9efd087e18279519292f353abe6152061985ee166ba5f7e95e29d
 WHIRLPOOL 
53fa2a877ea74168d0ad22e2d508b6313bfd1750d1d810f3cf13053d6c945530cc18c06734a14b9fb76e6948653b4187e7af3c2d8c2c3cf05c430e149023005c
 DIST fping_2.4b2-to-ipv6-16.1.diff.gz 8488 SHA256 
de0021aba41ba6b1b98d34fb98f99bfd55455d332ed6aece83690e2d93159e6e SHA512 
6af25324d159df4ddd7dd909e2e1a0d85e08c2f51c31469960c2dbc7a9eb4967fd114eb87361f8c6b1691de60e7f753d371e6c902bec706f3fed3d205fbe49f0
 WHIRLPOOL 
5bb9fdf9fba3769985d34d2e06b2e28540e997a00eb84d7b5a6d71e4cfe4f7a3b50933981df291df5141b8f43729375c95ceb9009cafbcf234c1f50cb89cf232
 DIST fping_2.4b2-to-ipv6.orig.tar.gz 6 SHA256 
77e1a90af4fff4a5ffc4b70542c6ff44130558357e7d549f99a9eff23108d172 SHA512 
3d1a76680d3a7cd361481d6e6de49797fbaf01422a73c784c8b667131afd56de2bfbbeb17014047cd2dea903f87d9f19e38ed7b0a5c2e8f2faf82759bf064ff9
 WHIRLPOOL 
a1b0ce998004aea349a04a67a1430b2331292f1c4cb03fdee4d1b579e36c93c9852ed676f450fecdeb22690b2aee18b0319b0c193d794684d195cb73fa62697b

diff --git a/net-analyzer/fping/fping-3.11.ebuild 
b/net-analyzer/fping/fping-3.11.ebuild
deleted file mode 100644
index 22d0f98..000
--- a/net-analyzer/fping/fping-3.11.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
-
-DESCRIPTION="A utility to ping multiple hosts at once"
-HOMEPAGE="http://fping.org/";
-SRC_URI="http://fping.org/dist/${P}.tar.gz";
-
-LICENSE="fping"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="ipv6 suid"
-
-src_configure() {
-   econf $(use_enable ipv6)
-}
-
-src_install() {
-   default
-
-   if use suid ; then
-   fperms u+s /usr/sbin/fping
-   use ipv6 && fperms u+s /usr/sbin/fping6
-   fi
-}

diff --git a/net-analyzer/fping/fping-3.12.ebuild 
b/net-analyzer/fping/fping-3.12.ebuild
deleted file mode 100644
index 22d0f98..000
--- a/net-analyzer/fping/fping-3.12.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
-
-DESCRIPTION="A utility to ping multiple hosts at once"
-HOMEPAGE="http://fping.org/";
-SRC_URI="http://fping.org/dist/${P}.tar.gz";
-
-LICENSE="fping"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="ipv6 suid"
-
-src_configure() {
-   econf $(use_enable ipv6)
-}
-
-src_install() {
-   default
-
-   if use suid ; then
-   fperms u+s /usr/sbin/fping
-   use ipv6 && fperms u+s /usr/sbin/fping6
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2015-10-22 Thread Jeroen Roovers
commit: 4a7332f9759b415194639ddf1585940cd78c37ac
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 23 05:41:54 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 23 05:42:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a7332f9

net-analyzer/wireshark: Install pcap icons, explicitly name Qt variant in 
desktop file by miflab (bug #563246).

Package-Manager: portage-2.2.23

 net-analyzer/wireshark/wireshark-.ebuild | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/net-analyzer/wireshark/wireshark-.ebuild 
b/net-analyzer/wireshark/wireshark-.ebuild
index c17f5f2..4a25e68 100644
--- a/net-analyzer/wireshark/wireshark-.ebuild
+++ b/net-analyzer/wireshark/wireshark-.ebuild
@@ -236,6 +236,10 @@ src_install() {
newins image/${c}${d}-app-wireshark.png 
wireshark.png
done
done
+   for d in 16 24 32 48 64 128 256 ; do
+   insinto /usr/share/icons/hicolor/${d}x${d}/mimetypes
+   newins image/WiresharkDoc-${d}.png 
application-vnd.tcpdump.pcap.png
+   done
fi
 
if use gtk3; then
@@ -243,7 +247,11 @@ src_install() {
fi
 
if use qt4 || use qt5; then
-   sed -e '/Exec=/s|wireshark|&-qt|g' wireshark.desktop > 
wireshark-qt.desktop || die
+   sed \
+   -e '/Exec=/s|wireshark|&-qt|g' \
+   -e 's|^Name.*=Wireshark|& (Qt)|g' \
+   wireshark.desktop > wireshark-qt.desktop \
+   || die
domenu wireshark-qt.desktop
fi
 



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

2015-10-22 Thread Jeroen Roovers
commit: 7ea43556b8ba5d5dba55f251468e0f96ec9e7e81
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 23 05:39:10 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 23 05:42:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ea43556

dev-util/debootstrap: Version bump.

Package-Manager: portage-2.2.23

 dev-util/debootstrap/Manifest  |  4 +-
 dev-util/debootstrap/debootstrap-1.0.70.ebuild | 44 --
 dev-util/debootstrap/debootstrap-1.0.71.ebuild | 44 --
 ...rap-1.0.69.ebuild => debootstrap-1.0.73.ebuild} |  1 +
 4 files changed, 2 insertions(+), 91 deletions(-)

diff --git a/dev-util/debootstrap/Manifest b/dev-util/debootstrap/Manifest
index 7b5e772..24c89f2 100644
--- a/dev-util/debootstrap/Manifest
+++ b/dev-util/debootstrap/Manifest
@@ -1,6 +1,4 @@
 DIST debootstrap_1.0.67.tar.gz 61863 SHA256 
0a12e0a2bbff185d47711a716b1f2734856100e8784361203e834fed0cffa51b SHA512 
751cfabdcefa6de099f12377f4e5ac611d97952197040c8d194abc0ac8f3abd59c21110828592bfa2c7a92299db57fe8c6ee0991e11894470f444a71cfd25151
 WHIRLPOOL 
64acdd3bda9f901b90621a1ce26671075f1a24da748b00ffc1ef9d554fb6ef04bed964988679a168df9e82780a30876c48b6d381dcbe41bd9a7c0f5a8119b261
-DIST debootstrap_1.0.69.tar.gz 61843 SHA256 
146aac21c3121b0af09fdc841e4fd3a13ce9f5d990f3ca1b56a61e61d77dbe11 SHA512 
697a725bc881a43bae0f65c6a1b23f0710ed2e724a27df7650cc261aa9dada7b812ca4a899496b16ff9cd41fdc281c3636b6181a5a11cd0caf05391ab6dc86f3
 WHIRLPOOL 
2901637279afe52e634731b63e5e11b5a6b68c61b9a98386b750dc236514581f27d96f27164430d198d8d17c494f1484a8eb45307be3bd932d9ac8ed2fd5258f
-DIST debootstrap_1.0.70.tar.gz 61438 SHA256 
b23e6d5fc6cab7f3f381e064efd2a8178ac210d4b4335b29104e09048d7e200e SHA512 
5fad057e6f942e937c7b0fedac0565cf426a07a1ca5a4438013756d789831b5e4612db575234a207264d162b3b4ac46582059f5b9161c865c6c03785e059bef3
 WHIRLPOOL 
93d276114ee50defbd3648924878961f49adbde4a8702491de6e43e2fb9f17b1918f2bdc58a2e0ec8b0926198a4c6e4c3c4e339a0110d91fb1ebb54487231c9f
-DIST debootstrap_1.0.71.tar.gz 61472 SHA256 
356147383a1c1bf3ef2544b72d69c7ff7d41a1ed6ce3fd589fed21e73b659466 SHA512 
0c6372a759676c6ea6a6e726251aa7d60acdb8759d41c84b41e80cbc3b2b77f26540c2ba2fb4b149f698e30c8acdbec1b8a3b55a686b43ccc02d0aa157d38e97
 WHIRLPOOL 
ed42b07e7282f38114d03919e19c2d869571ebb9e2fecfbdee19409700c09505625264420488297e148550b8a2355426bdfedb5c56d60661b000968001128494
 DIST debootstrap_1.0.72.tar.gz 62089 SHA256 
90f4cf1390326f020b9192b6a45ba1d323fffab9c22c6f62451780e6f5482f8d SHA512 
b8f186b13f66789e96f775337d06821cfb464e35dd661a2bff1420bfb1254cf85ce9eb46be1a27dad7a462628e441cbfcdfffaf12ee5a394d15c248882295848
 WHIRLPOOL 
4106d631445661979321a89f43835bcd73460bc984baaf78da9b7cf12bbb8a97702d9fee4cb86a5f5dfe9a161085adc33ecb13f6d6aec3d121bb466861215285
+DIST debootstrap_1.0.73.tar.gz 61236 SHA256 
dc24580ff9decfba8087cadd094932b54b42a113d6de80622de5ca82ee7f6653 SHA512 
41beca3c71af3f97d87d2dc05ec8ef896f34dc8a7a2002d3072680b5c26da3245c72e77ad51699cf25f654941e5f9aec9c73c4bd7f31b8b290969b039e1d
 WHIRLPOOL 
26a3b528aa52356c1adaac0559d75109c892d8427aa29e400706dabe344b3940b50bbc7c381b8ce1f39a337a887fbc5b3b19471b92368b251a508bc7e9c93130
 DIST devices.tar.gz 47835 SHA256 
0d93f93c8b21160069d14e74f8f990a2e0e1e5a90dc828b29e6b3f5aa5829e48 SHA512 
994ec8d72e3d52d2d872f7ff0da2336e4cbd3a5fa73bb6cdb9e06f5e7f5b8c69cea639c738fdba1186f382d6dcf62e7746fface664bfbd744aac24b16f034432
 WHIRLPOOL 
222963bb920e1311bc2f481bba04e49f386b60cce6ce0576424896277e0c4fc6a339d4403d587744c32b0bfb1db6391f200fa8d66117e3f21e1c12f35365d732

diff --git a/dev-util/debootstrap/debootstrap-1.0.70.ebuild 
b/dev-util/debootstrap/debootstrap-1.0.70.ebuild
deleted file mode 100644
index b1d33cf..000
--- a/dev-util/debootstrap/debootstrap-1.0.70.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="Debian/Ubuntu bootstrap scripts"
-HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html";
-SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz
-   mirror://gentoo/devices.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
-
-RDEPEND="
-   app-arch/dpkg
-   net-misc/wget
-   sys-devel/binutils
-"
-
-DOCS=( TODO debian/changelog )
-
-src_unpack() {
-   unpack ${PN}_${PV}.tar.gz
-   cp "${DISTDIR}"/devices.tar.gz "${S}"
-}
-
-src_compile() {
-   return
-}
-
-src_install() {
-   default
-   doman debootstrap.8
-}
-
-pkg_postinst() {
-   if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; 
then
-   elog "To check Release files against a keyring"
-   elog " (--keyring=K), please install app-crypt/gnupg."
-   fi
-}

diff --git a/dev-util/debootstrap/debootstrap-1.0.71.ebuild 
b/dev-util/debootstrap/deboot

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

2015-10-22 Thread Lars Wendler
commit: 156f642b15af03cc579f722b5c5030fe54ab7a65
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 23 05:30:52 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 23 05:30:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=156f642b

app-admin/monit: Bump to version 5.15

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

 app-admin/monit/Manifest  |  1 +
 app-admin/monit/monit-5.15.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/app-admin/monit/Manifest b/app-admin/monit/Manifest
index aa44614..6195df5 100644
--- a/app-admin/monit/Manifest
+++ b/app-admin/monit/Manifest
@@ -1,6 +1,7 @@
 DIST monit-5.12.2.tar.gz 1192066 SHA256 
8ab0296d1aa2351b1573481592d7b5e06de1edd49dff1b5552839605a450914c SHA512 
086f9af2c6d155c5375e7de5641025707f34577d4f2a4a76d1a104361b5d5793a4f04313cafb5d6884a01aba59f1bbb405b37294ba133d9a93c05e484e5933ff
 WHIRLPOOL 
3d25ab0dc3cfe0e2c881f35e48b64355fe12ce1d3357450d2b1d2aba7344acbe55c031e4fd6b49f7c523b674ff650cbad5bbc91853ec15dd10e64f164504ea70
 DIST monit-5.13.tar.gz 1193463 SHA256 
9abae036f3be93a19c6b476ecd106b29d4da755bbc05f0a323e882eab6b2c5a9 SHA512 
257fc9d5ece7b39973107adef51b437941c944909efa03949f53067a0811ab8929ea57e98cbf06a22dd6d69aaa0aadd65a22788165819ede8316dcd1894ad546
 WHIRLPOOL 
7556bd2299b4f930525877543c74c9a30f4a719e7abfb7e5b596ba070dc5c9a6aefaf129891e7ba1f5d1643bc8edbbfd9b35513b38c1bfec143f33e34b667420
 DIST monit-5.14.tar.gz 1200131 SHA256 
d0424c3ee8ed43d670ba039184a972ac9f3ad6f45b0806ec17c23820996256c6 SHA512 
6491434e15fab6f92e29b9f490418332a7700d110c0bd825d65e1aadd68ea082a1d9a7e2b570075b35d6cdb64ae207567bdeb2580e6e5407ba277cc6d1693c78
 WHIRLPOOL 
8e7ba198f6048d8de06082a269a9f7fa8fbbcd95e14174010bdf54935db53f840d00744e35f4260e9de5d8d9a6ea47aa7c4b037998b035775bbbe212057d75e7
+DIST monit-5.15.tar.gz 1218043 SHA256 
deada8153dc7e8755f572bc4d790143a92c7a8668dccb563ae4dbd73af56697c SHA512 
7e2b011a89d9b1dc990faf413a38f0c68aea398e25efd5392d6aa1baf50d68ea2db087ea2093c84658a99b7a83d133b23562d5ad11e1197db7a54a2b961177cd
 WHIRLPOOL 
e305705583c79b8d861595cae4d000b5832e3288f3d0ec59e69ac811e1f402af489e44c8fe568941781d97c953ff181a8048f0b3dfaeec14a26fd4bbc8cff697
 DIST monit-5.8.1.tar.gz 1212491 SHA256 
a25e4b79257ac29ebaf46605dccb7ed693c8e001669c0ccc8feb22e7d4c870e5 SHA512 
0cf8b46ea5a5ab42beac4aab649d4fa324b03e02aaceee6a86968849db46b129cd8f20e314c855653620a0bd4b4aa105e2c812a386ddd2be3196ff956f1e7e11
 WHIRLPOOL 
8134017da3c1f0dc2675df9cb2d7ecd0905765a92a248701a4de2b9ba449a548ae28cf661019e882a1992c027095360f14d1b2378c924623937c85b691c6056c
 DIST monit-5.8.tar.gz 1237958 SHA256 
0c00573ebc0156c534a5952f392c2a7bedde194f8261c05497322055938847f5 SHA512 
61f2cb4a6b2da8617adfd16ace4d9b246957385109fee9a3312272ac271003cd89a12872ac3a07b0148ad7bdbe544e447745033d2a9fab19908ef19b7a106dda
 WHIRLPOOL 
0eb1f5b778264d7881281f7139037fa07c225a5c7ece7cae2149460036a58c008e16a3d883e1876a2dc08f092900e05d164e37714ec5fc19960d4127e13c6eeb
 DIST monit-5.9.tar.gz 1161683 SHA256 
274044485170b7498de29e7876cd86488378f50d69df4303a14930ba1f5e4a11 SHA512 
915d548d5a4e043b346ec32d9fd3131d7eafd8ed1167e4fca3d4918df9ff87a166dbb2b3398d59a8510c7190c43fe26043568742a27828257140683bea349c83
 WHIRLPOOL 
d5bde04202b05feeef7bca5e0ec23c18c0bf5a6940ac30b8bfc8cc01056a802b3beae8e0caac861770e167b7b48254fe08fbb9294554e25102bec620f508

diff --git a/app-admin/monit/monit-5.15.ebuild 
b/app-admin/monit/monit-5.15.ebuild
new file mode 100644
index 000..70f94ad
--- /dev/null
+++ b/app-admin/monit/monit-5.15.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+inherit pam systemd
+
+DESCRIPTION="a utility for monitoring and managing daemons or similar programs 
running on a Unix system"
+HOMEPAGE="http://mmonit.com/monit/";
+SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE="pam ssl"
+
+RDEPEND="ssl? ( dev-libs/openssl:0= )"
+DEPEND="${RDEPEND}
+   sys-devel/flex
+   sys-devel/bison
+   pam? ( virtual/pam )"
+
+src_prepare() {
+   sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die "sed failed in 
Makefile.in"
+}
+
+src_configure() {
+   econf $(use_with ssl) $(use_with pam)
+}
+
+src_install() {
+   default
+
+   dodoc README*
+   dohtml -r doc/*
+
+   insinto /etc; insopts -m600; doins monitrc
+   newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
+   systemd_dounit "${FILESDIR}"/${PN}.service
+
+   use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN}
+}
+
+pkg_postinst() {
+   elog "Sample configurations are available at:"
+   elog "http://mmonit.com/monit/documentation/";
+}



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

2015-10-22 Thread Lars Wendler
commit: fbd5142cb901076dfdfd0828f7e02a3a312bba98
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 23 05:32:38 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 23 05:32:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd5142c

app-admin/monit: Removed old.

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

 app-admin/monit/Manifest  |  3 ---
 app-admin/monit/monit-5.13.ebuild | 47 -
 app-admin/monit/monit-5.8.1-r1.ebuild | 49 ---
 app-admin/monit/monit-5.9.ebuild  | 49 ---
 4 files changed, 148 deletions(-)

diff --git a/app-admin/monit/Manifest b/app-admin/monit/Manifest
index 6195df5..1a5676a 100644
--- a/app-admin/monit/Manifest
+++ b/app-admin/monit/Manifest
@@ -1,7 +1,4 @@
 DIST monit-5.12.2.tar.gz 1192066 SHA256 
8ab0296d1aa2351b1573481592d7b5e06de1edd49dff1b5552839605a450914c SHA512 
086f9af2c6d155c5375e7de5641025707f34577d4f2a4a76d1a104361b5d5793a4f04313cafb5d6884a01aba59f1bbb405b37294ba133d9a93c05e484e5933ff
 WHIRLPOOL 
3d25ab0dc3cfe0e2c881f35e48b64355fe12ce1d3357450d2b1d2aba7344acbe55c031e4fd6b49f7c523b674ff650cbad5bbc91853ec15dd10e64f164504ea70
-DIST monit-5.13.tar.gz 1193463 SHA256 
9abae036f3be93a19c6b476ecd106b29d4da755bbc05f0a323e882eab6b2c5a9 SHA512 
257fc9d5ece7b39973107adef51b437941c944909efa03949f53067a0811ab8929ea57e98cbf06a22dd6d69aaa0aadd65a22788165819ede8316dcd1894ad546
 WHIRLPOOL 
7556bd2299b4f930525877543c74c9a30f4a719e7abfb7e5b596ba070dc5c9a6aefaf129891e7ba1f5d1643bc8edbbfd9b35513b38c1bfec143f33e34b667420
 DIST monit-5.14.tar.gz 1200131 SHA256 
d0424c3ee8ed43d670ba039184a972ac9f3ad6f45b0806ec17c23820996256c6 SHA512 
6491434e15fab6f92e29b9f490418332a7700d110c0bd825d65e1aadd68ea082a1d9a7e2b570075b35d6cdb64ae207567bdeb2580e6e5407ba277cc6d1693c78
 WHIRLPOOL 
8e7ba198f6048d8de06082a269a9f7fa8fbbcd95e14174010bdf54935db53f840d00744e35f4260e9de5d8d9a6ea47aa7c4b037998b035775bbbe212057d75e7
 DIST monit-5.15.tar.gz 1218043 SHA256 
deada8153dc7e8755f572bc4d790143a92c7a8668dccb563ae4dbd73af56697c SHA512 
7e2b011a89d9b1dc990faf413a38f0c68aea398e25efd5392d6aa1baf50d68ea2db087ea2093c84658a99b7a83d133b23562d5ad11e1197db7a54a2b961177cd
 WHIRLPOOL 
e305705583c79b8d861595cae4d000b5832e3288f3d0ec59e69ac811e1f402af489e44c8fe568941781d97c953ff181a8048f0b3dfaeec14a26fd4bbc8cff697
-DIST monit-5.8.1.tar.gz 1212491 SHA256 
a25e4b79257ac29ebaf46605dccb7ed693c8e001669c0ccc8feb22e7d4c870e5 SHA512 
0cf8b46ea5a5ab42beac4aab649d4fa324b03e02aaceee6a86968849db46b129cd8f20e314c855653620a0bd4b4aa105e2c812a386ddd2be3196ff956f1e7e11
 WHIRLPOOL 
8134017da3c1f0dc2675df9cb2d7ecd0905765a92a248701a4de2b9ba449a548ae28cf661019e882a1992c027095360f14d1b2378c924623937c85b691c6056c
 DIST monit-5.8.tar.gz 1237958 SHA256 
0c00573ebc0156c534a5952f392c2a7bedde194f8261c05497322055938847f5 SHA512 
61f2cb4a6b2da8617adfd16ace4d9b246957385109fee9a3312272ac271003cd89a12872ac3a07b0148ad7bdbe544e447745033d2a9fab19908ef19b7a106dda
 WHIRLPOOL 
0eb1f5b778264d7881281f7139037fa07c225a5c7ece7cae2149460036a58c008e16a3d883e1876a2dc08f092900e05d164e37714ec5fc19960d4127e13c6eeb
-DIST monit-5.9.tar.gz 1161683 SHA256 
274044485170b7498de29e7876cd86488378f50d69df4303a14930ba1f5e4a11 SHA512 
915d548d5a4e043b346ec32d9fd3131d7eafd8ed1167e4fca3d4918df9ff87a166dbb2b3398d59a8510c7190c43fe26043568742a27828257140683bea349c83
 WHIRLPOOL 
d5bde04202b05feeef7bca5e0ec23c18c0bf5a6940ac30b8bfc8cc01056a802b3beae8e0caac861770e167b7b48254fe08fbb9294554e25102bec620f508

diff --git a/app-admin/monit/monit-5.13.ebuild 
b/app-admin/monit/monit-5.13.ebuild
deleted file mode 100644
index 1fe7bec..000
--- a/app-admin/monit/monit-5.13.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit pam systemd
-
-DESCRIPTION="a utility for monitoring and managing daemons or similar programs 
running on a Unix system"
-HOMEPAGE="http://mmonit.com/monit/";
-SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
-IUSE="pam ssl"
-
-RDEPEND="ssl? ( dev-libs/openssl )"
-DEPEND="${RDEPEND}
-   sys-devel/flex
-   sys-devel/bison
-   pam? ( virtual/pam )"
-
-src_prepare() {
-   sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die "sed failed in 
Makefile.in"
-}
-
-src_configure() {
-   econf $(use_with ssl) $(use_with pam)
-}
-
-src_install() {
-   default
-
-   dodoc README*
-   dohtml -r doc/*
-
-   insinto /etc; insopts -m600; doins monitrc
-   newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
-   systemd_dounit "${FILESDIR}"/${PN}.service
-
-   use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN}
-}
-
-pkg_postinst() {
-   elog "Sample configurations are available at:"
-   elog "http://mmonit.com/monit/documentation/";
-}

diff --git a/app-ad

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2015-10-22 Thread Jeroen Roovers
commit: c5f30611b1cd0ffb13295d45262628b43e3e8c5a
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 23 05:18:50 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 23 05:19:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5f30611

net-analyzer/wireshark: Install pcap icons, explicitly name Qt variant in 
desktop file by miflab (bug #563246).

Package-Manager: portage-2.2.23

 ...2.0.0_rc1.ebuild => wireshark-1.12.8-r1.ebuild} | 43 +++---
 0_rc1.ebuild => wireshark-2.0.0_rc1-r1.ebuild} | 10 -
 2 files changed, 31 insertions(+), 22 deletions(-)

diff --git a/net-analyzer/wireshark/wireshark-2.0.0_rc1.ebuild 
b/net-analyzer/wireshark/wireshark-1.12.8-r1.ebuild
similarity index 86%
copy from net-analyzer/wireshark/wireshark-2.0.0_rc1.ebuild
copy to net-analyzer/wireshark/wireshark-1.12.8-r1.ebuild
index 74ed55f..730e6ee 100644
--- a/net-analyzer/wireshark/wireshark-2.0.0_rc1.ebuild
+++ b/net-analyzer/wireshark/wireshark-1.12.8-r1.ebuild
@@ -7,22 +7,20 @@ inherit autotools eutils fcaps flag-o-matic multilib 
qmake-utils qt4-r2 user
 
 DESCRIPTION="A network protocol analyzer formerly known as ethereal"
 HOMEPAGE="http://www.wireshark.org/";
-SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.bz2"
+SRC_URI="${HOMEPAGE}download/src/all-versions/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS=""
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="
adns +caps crypt doc doc-pdf geoip +gtk3 ipv6 kerberos lua +netlink 
+pcap
-   portaudio +qt4 qt5 selinux sbc smi cpu_flags_x86_sse4_2 ssl zlib
+   portaudio +qt4 qt5 sbc selinux smi ssl zlib
 "
 REQUIRED_USE="
ssl? ( crypt )
?? ( qt4 qt5 )
 "
 
-S=${WORKDIR}/${P/_/}
-
 GTK_COMMON_DEPEND="
x11-libs/gdk-pixbuf
x11-libs/pango
@@ -95,9 +93,12 @@ src_prepare() {
epatch \
"${FILESDIR}"/${PN}-1.6.13-ldflags.patch \
"${FILESDIR}"/${PN}-1.11.0-oldlibs.patch \
-   "${FILESDIR}"/${PN}-1.99.0.1975-sse4_2.patch \
-   "${FILESDIR}"/${PN}--pkgconfig.patch \
-   "${FILESDIR}"/${PN}-1.99.8-qtchooser.patch
+   "${FILESDIR}"/${PN}-1.12.8-gtk-deprecated-warnings.patch \
+   "${FILESDIR}"/${PN}-1.99.0-qt5.patch \
+   "${FILESDIR}"/${PN}-1.99.1-sbc.patch \
+   "${FILESDIR}"/${PN}-1.12.5-cross-compile.patch \
+   "${FILESDIR}"/${PN}-1.99.7-qt-pie.patch \
+   "${FILESDIR}"/${PN}-1.12.6-rcc.patch
 
epatch_user
 
@@ -127,13 +128,7 @@ src_configure() {
myconf+=( "--disable-wireshark" )
fi
 
-   if ! use qt4 && ! use qt5; then
-   myconf+=( "--with-qt=no" )
-   fi
-
-   if use qt4; then
-   export QT_MIN_VERSION=4.6.0
-   fi
+   use qt4 && export QT_MIN_VERSION=4.6.0
 
if use qt5; then
export QT_MIN_VERSION=5.3.0
@@ -158,8 +153,8 @@ src_configure() {
$(use_with pcap dumpcap-group wireshark) \
$(use_with pcap) \
$(use_with portaudio) \
-   $(usex qt4 --with-qt=4 '') \
-   $(usex qt5 --with-qt=5 '') \
+   $(use_with qt4) \
+   $(use_with qt5) \
$(usex qt4 MOC=$(qt4_get_bindir)/moc '') \
$(usex qt4 RCC=$(qt4_get_bindir)/rcc '') \
$(usex qt4 UIC=$(qt4_get_bindir)/uic '') \
@@ -171,7 +166,6 @@ src_configure() {
$(use_with ssl gnutls) \
$(use_with zlib) \
$(usex netlink --with-libnl=3 --without-libnl) \
-   $(usex cpu_flags_x86_sse4_2 --enable-sse4_2 '') \
--disable-profile-build \
--disable-usr-local \
--disable-warnings-as-errors \
@@ -190,12 +184,11 @@ src_compile() {
 
 src_install() {
default
-
if use doc; then
dohtml -r docbook/{release-notes.html,ws{d,u}g_html{,_chunked}}
if use doc-pdf; then
insinto /usr/share/doc/${PF}/pdf/
-   doins docbook/{developer,user}-guide-{a4,us}.pdf 
docbook/release-notes.pdf
+   doins 
docbook/{{developer,user}-guide,release-notes}-{a4,us}.pdf
fi
fi
 
@@ -235,6 +228,10 @@ src_install() {
newins image/${c}${d}-app-wireshark.png 
wireshark.png
done
done
+   for d in 16 24 32 48 64 128 256 ; do
+   insinto /usr/share/icons/hicolor/${d}x${d}/mimetypes
+   newins image/WiresharkDoc-${d}.png 
application-vnd.tcpdump.pcap.png
+   done
fi
 
if use gtk3; then
@@ -242,7 +239,11 @@ src_install() {
fi
 
if use qt4 || use qt5; then
-   sed -e '/Exec=/s|wireshark|&-qt|g' wireshark.desktop 

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

2015-10-22 Thread Jeroen Roovers
commit: 0e0a0f1e519d39a8693166fc95913bea1f2ad50b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 23 05:12:07 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 23 05:19:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e0a0f1e

www-client/vivaldi: Version bump.

Package-Manager: portage-2.2.23

 www-client/vivaldi/Manifest   | 4 ++--
 .../{vivaldi-1.0.300.5_p1.ebuild => vivaldi-1.0.303.23_p1.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index 1a55c60..a70f0d5 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -1,4 +1,4 @@
-DIST vivaldi-1.0.300.5_p1-amd64.deb 41761456 SHA256 
1e058fe35c8ed9a9a3ced891457574e66287df02590860a350fa762830fc8137 SHA512 
ee0f6cb47853157b21f0d1da019569ac9ff024c14037d56383c1d78566d4ac73c03eac06655ea318a02365f3f76b5d80a9106da34cc0bf4eaaccdf285a70db4d
 WHIRLPOOL 
1d4e19e3b4fa0f12cce1b04fbea4fe7704bec0fbfe3499afaf84a4a3a5e7b9c0d057c138359a1791f651caa86b29c10c9530d7999a2892d3ffc35cc28613aaa0
-DIST vivaldi-1.0.300.5_p1-i386.deb 42268480 SHA256 
02123c70bc0dce1e7bbae1316acda8693af6ce8fe80627c56a6e6c26c1c16558 SHA512 
54ddbcee3dbe1700eed7f646fa23f9e36c0193dda989166700e59e20be329305f8763f7d20617fbb6f9f8d56f0db7be2bcb54d52fab5b20508b34895fda8c05f
 WHIRLPOOL 
9e354dc658dfcee4cbbc6697c3e3570d76d0feadd87c26b9f447923a6e3ae643d1bcf249474f945eb427f2bd3ebfbf2e6384e035dc5194339f0412df86d2e4e9
 DIST vivaldi-1.0.303.22_p1-amd64.deb 41779050 SHA256 
2edbc2a62e7920d30478bb030700794aec81e075694a932a03bfe0b5ff03e883 SHA512 
e2beef75622e8c38160ec01c4088a8ef31616fed0c3452288d01696aab1a2b192309ea7d1e7ef73f77622c4b82ed8178572bc0e6b8e65bf1903b449d5db67201
 WHIRLPOOL 
c4946b918e2601680c7219bdaf7ad21172b3928cbbd60ef1049f48ef32a961f80134f86e77ee7f5bc18f11b9c73c714f01df0cf435c92544e76b781cd362428f
 DIST vivaldi-1.0.303.22_p1-i386.deb 42297978 SHA256 
5099faf6e1729efc9c87a75f7f644ff8da35298da7ce5dfd568e979cb60b10e3 SHA512 
19d99b01a8d69fd2608fd11dd523b1900b6cc368db01276a285051ed3ae56d47c395fc667761a7e2c79940668c87ee490f485ffc6a4f7cf9ffc677ba93c8e4a6
 WHIRLPOOL 
8573b9fdb50f899cd2cea2d6d429d1a617b12cb87ffc1bea78aa1e1e56e6a9fd3067e602aa022ca80c1df39b2d32be28e86604c169b47e760bf3d9a4f0e18504
+DIST vivaldi-1.0.303.23_p1-amd64.deb 41796198 SHA256 
b58e90380ca40e94933523e3ec5c67708fd693a3fe7f11380f52ee88cc7e0819 SHA512 
b8ef7b6881d64239a1151b5350b878384849ec9040d3ed62b894ff6eacde1a43031b7502df1dae935439416083094ad516affdd831415b8d8ed24d5ffc58608b
 WHIRLPOOL 
dcba679aeaf2cade9085a058a6a14b6ec9607eb8a5ed50dc4b1bfd6eb750677cd04476e973a8c4189255972218abf2a518b744cb3df4056160a1d56c31a90f40
+DIST vivaldi-1.0.303.23_p1-i386.deb 42319714 SHA256 
f1bfbc5dd5b6f8dac6f4fbf5627e26623e341d964d323802825f3a03cb5006f5 SHA512 
e1164a991c1685b612dcabe122af488d085946504121a17a2e88b87913a1a1ea4f1c5b3ce89b27b614baf1706df3aac6349c44aa1630467834bad8fffa40720c
 WHIRLPOOL 
ccc9787a6f24beb48a1c4f23e9b299dd95d54f4287ed303aeadf0f8bb650ef16999d51eecddce608b1199c027673df749da318161c3ed2c9e29d1a078f562ea0

diff --git a/www-client/vivaldi/vivaldi-1.0.300.5_p1.ebuild 
b/www-client/vivaldi/vivaldi-1.0.303.23_p1.ebuild
similarity index 100%
rename from www-client/vivaldi/vivaldi-1.0.300.5_p1.ebuild
rename to www-client/vivaldi/vivaldi-1.0.303.23_p1.ebuild



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

2015-10-22 Thread Michael Palimaka
commit: b55cd2845fa6c61836f6f446d66d6387735bb306
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 19:20:13 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:32:44 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b55cd284

kde-apps/libkface: don't block slot 4

Package-Manager: portage-2.2.20.1

 kde-apps/libkface/libkface-.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/kde-apps/libkface/libkface-.ebuild 
b/kde-apps/libkface/libkface-.ebuild
index fc4c3d3..80421ec 100644
--- a/kde-apps/libkface/libkface-.ebuild
+++ b/kde-apps/libkface/libkface-.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+KDE_BLOCK_SLOT4="false"
 inherit kde5
 
 DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and 
detection"
@@ -21,9 +22,7 @@ DEPEND="
dev-qt/qtxml:5
>=media-libs/opencv-3[contrib]
 "
-RDEPEND="${DEPEND}
-   !media-libs/libkface
-"
+RDEPEND="${DEPEND}"
 
 src_configure() {
local mycmakeargs=(



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

2015-10-22 Thread Michael Palimaka
commit: 1639d22fa40d141e4d54a13ce2c3cd1972b68ec6
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 20:26:09 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:32:44 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1639d22f

kde-apps/libkipi: don't block slot 4[minimal]

Package-Manager: portage-2.2.20.1

 kde-apps/libkipi/libkipi-.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-apps/libkipi/libkipi-.ebuild 
b/kde-apps/libkipi/libkipi-.ebuild
index 3a13708..9a49660 100644
--- a/kde-apps/libkipi/libkipi-.ebuild
+++ b/kde-apps/libkipi/libkipi-.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+KDE_BLOCK_SLOT4="false"
 KDE_TEST="true"
 inherit kde5
 
@@ -22,4 +23,6 @@ DEPEND="
dev-qt/qtxml:5
 "
 
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   !kde-apps/libkipi:4[-minimal(-)]
+"



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

2015-10-22 Thread Michael Palimaka
commit: b6cf743136705cfcc851617f0f5a57f521d11d53
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 18:42:43 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:32:44 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b6cf7431

kde-apps/libkdcraw: don't block slot 4

Package-Manager: portage-2.2.20.1

 kde-apps/libkdcraw/libkdcraw-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/libkdcraw/libkdcraw-.ebuild 
b/kde-apps/libkdcraw/libkdcraw-.ebuild
index e9b627d..1842cc2 100644
--- a/kde-apps/libkdcraw/libkdcraw-.ebuild
+++ b/kde-apps/libkdcraw/libkdcraw-.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+KDE_BLOCK_SLOT4="false"
 inherit kde5
 
 DESCRIPTION="Digital camera raw image library wrapper"



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2015-10-22 Thread Michael Palimaka
commit: 4f31e3b027a213f831498059cbb22b94cf9c13c3
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 18:48:31 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:32:44 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4f31e3b0

profiles: Update 15.08.2 package.mask

 profiles/package.mask/kde-apps-15.08.2 | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/package.mask/kde-apps-15.08.2 
b/profiles/package.mask/kde-apps-15.08.2
index e6b71c6..0d0615a 100644
--- a/profiles/package.mask/kde-apps-15.08.2
+++ b/profiles/package.mask/kde-apps-15.08.2
@@ -146,14 +146,9 @@
 ~kde-apps/kubrick-15.08.2
 ~kde-apps/kwalletmanager-15.08.2
 ~kde-apps/kwordquiz-15.08.2
-~kde-apps/libkdcraw-15.08.2
 ~kde-apps/libkdeedu-15.08.2
 ~kde-apps/libkdegames-15.08.2
 ~kde-apps/libkeduvocdocument-15.08.2
-~kde-apps/libkexiv2-15.08.2
-~kde-apps/libkface-15.08.2
-~kde-apps/libkgeomap-15.08.2
-~kde-apps/libkipi-15.08.2
 ~kde-apps/libkmahjongg-15.08.2
 ~kde-apps/libkomparediff2-15.08.2
 ~kde-apps/libksane-15.08.2



[gentoo-commits] proj/kde:master commit in: kde-apps/libkdcraw/, kde-apps/libkexiv2/, kde-apps/libkipi/

2015-10-22 Thread Michael Palimaka
commit: c4dddef0a38465c72bd9d3a8f6ca5b8072449bf4
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 18:47:21 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:32:44 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c4dddef0

kde-apps: Drop old and moved to tree

Package-Manager: portage-2.2.20.1

 kde-apps/libkdcraw/libkdcraw-15.04.3.ebuild | 16 
 kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild | 16 
 kde-apps/libkexiv2/libkexiv2-15.04.3.ebuild | 17 -
 kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild | 17 -
 kde-apps/libkipi/libkipi-15.04.3.ebuild | 11 ---
 kde-apps/libkipi/libkipi-15.08.2.ebuild | 11 ---
 6 files changed, 88 deletions(-)

diff --git a/kde-apps/libkdcraw/libkdcraw-15.04.3.ebuild 
b/kde-apps/libkdcraw/libkdcraw-15.04.3.ebuild
deleted file mode 100644
index d520d2a..000
--- a/kde-apps/libkdcraw/libkdcraw-15.04.3.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="KDE digital camera raw image library wrapper"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-DEPEND="
-   >=media-libs/libraw-0.16_beta1-r1:=
-"
-RDEPEND="${DEPEND}"

diff --git a/kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild 
b/kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild
deleted file mode 100644
index d520d2a..000
--- a/kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="KDE digital camera raw image library wrapper"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-DEPEND="
-   >=media-libs/libraw-0.16_beta1-r1:=
-"
-RDEPEND="${DEPEND}"

diff --git a/kde-apps/libkexiv2/libkexiv2-15.04.3.ebuild 
b/kde-apps/libkexiv2/libkexiv2-15.04.3.ebuild
deleted file mode 100644
index efb00e6..000
--- a/kde-apps/libkexiv2/libkexiv2-15.04.3.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug +xmp"
-
-DEPEND="
-   >=media-gfx/exiv2-0.24:=[xmp=]
-   virtual/jpeg:0
-"
-RDEPEND="${DEPEND}"

diff --git a/kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild 
b/kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild
deleted file mode 100644
index efb00e6..000
--- a/kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug +xmp"
-
-DEPEND="
-   >=media-gfx/exiv2-0.24:=[xmp=]
-   virtual/jpeg:0
-"
-RDEPEND="${DEPEND}"

diff --git a/kde-apps/libkipi/libkipi-15.04.3.ebuild 
b/kde-apps/libkipi/libkipi-15.04.3.ebuild
deleted file mode 100644
index 1bf4677..000
--- a/kde-apps/libkipi/libkipi-15.04.3.ebuild
+++ /dev/null
@@ -1,11 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="A library for image plugins accross KDE applications"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"

diff --git a/kde-apps/libkipi/libkipi-15.08.2.ebuild 
b/kde-apps/libkipi/libkipi-15.08.2.ebuild
deleted file mode 100644
index 1bf4677..000
--- a/kde-apps/libkipi/libkipi-15.08.2.ebuild
+++ /dev/null
@@ -1,11 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="A library for image plugins accross KDE applications"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"



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

2015-10-22 Thread Michael Palimaka
commit: 4ee9e88e5ffeda0dce414c8670087b1e4f1b819e
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 19:53:57 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:30:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ee9e88e

kde-apps/libkexiv2: Add 15.08.2 from overlay

Package-Manager: portage-2.2.20.1

 kde-apps/libkexiv2/Manifest |  1 +
 kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/kde-apps/libkexiv2/Manifest b/kde-apps/libkexiv2/Manifest
index 537e8c8..09d3532 100644
--- a/kde-apps/libkexiv2/Manifest
+++ b/kde-apps/libkexiv2/Manifest
@@ -1 +1,2 @@
+DIST libkexiv2-15.08.2.tar.xz 137372 SHA256 
20705d7e9938876d2afacf11b7a9d79b95ea36d7a96c509b5ab64b32dd69cc0d SHA512 
fb7ad6207053ab37008b4fb167600d6e5b21e6d19f12c3260d4cb9a417ffa580b18ee0b489c06da835ba4150953b351f234017dcdc78004415262d430f6d0a54
 WHIRLPOOL 
e44865d32f4ec1bb6f45f50d8be162e64ab866963ebb708c1751bc2e67124ecc14ce83016fd49a2ae396c2889d774b8b2029d3d93aa7deac9d0ff4ee1507abf1
 DIST libkexiv2-4.14.3.tar.xz 136292 SHA256 
c487078cc7349768dc76f0eabd98e546762fdd3fda9da088fbfa74785daf0efd SHA512 
3700bf4370e6746a482d03ee654d9c32d7de816cfacbdcbb5347036234dc30da93fb85e2d1d4fbcdc9cbe01f23eaab1533e39541068a9294d1690856de75a29b
 WHIRLPOOL 
83331db4c66a6a523baf549a476722e1fc5af7b5ef5c4fe521e50e0eb5eb3a1cb50a9df611e5aa8aa51432a40dc75c6804958443803af282655470d37a02d9cb

diff --git a/kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild 
b/kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild
new file mode 100644
index 000..efb00e6
--- /dev/null
+++ b/kde-apps/libkexiv2/libkexiv2-15.08.2.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit kde4-base
+
+DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug +xmp"
+
+DEPEND="
+   >=media-gfx/exiv2-0.24:=[xmp=]
+   virtual/jpeg:0
+"
+RDEPEND="${DEPEND}"



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

2015-10-22 Thread Michael Palimaka
commit: 9ba351172a9d083f0c92f99ebeae0f2964634fd4
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 19:55:03 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:30:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba35117

kde-apps/libkipi: Add 15.08.2-r1 with USE=minimal

/usr/share/icons collides with libkipi:5

Package-Manager: portage-2.2.20.1

 kde-apps/libkipi/Manifest  |  1 +
 kde-apps/libkipi/libkipi-15.08.2-r1.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/kde-apps/libkipi/Manifest b/kde-apps/libkipi/Manifest
index 96a65ef..201262c 100644
--- a/kde-apps/libkipi/Manifest
+++ b/kde-apps/libkipi/Manifest
@@ -1 +1,2 @@
+DIST libkipi-15.08.2.tar.xz 95064 SHA256 
2cba98a78cce056be512f847470891ecf6895ee1bf0fbd3428bbf8ffab98cce7 SHA512 
e58c1adc3cb8d9a2f568e3d29d31201c55678172e9c87dc989e57e72562ab3a9cd1e4ce9879aed9518886092e0d1c96922b6607e16fee0f33d0ebd3a81d89d42
 WHIRLPOOL 
a4541e343522dccc6752dfeacce7f744df80ae75401e442373589cad82ac3bf3c9ac945cbd012034d2e968ba264d0604006cbafbb13aff27c9ee3236579e6919
 DIST libkipi-4.14.3.tar.xz 94636 SHA256 
dcedbad556840e1ed3b35609a6f700917f76cc0a4f41ca499da4e5c8af49553a SHA512 
62c93663e82336d302d454cb923d001592e255a90ceb6eabfab95637a0b4c220e10601bfeda381383b165c56db5f114da094dca3861f365874587bee14052941
 WHIRLPOOL 
de2936e6082257e1333b0fd7b6f86b0f15f5dc480a8c11c504ca469d5e2a2295534c439b429cf5f4029e33b1671af1d74dfcf0c5e2f50624c35ea45178892124

diff --git a/kde-apps/libkipi/libkipi-15.08.2-r1.ebuild 
b/kde-apps/libkipi/libkipi-15.08.2-r1.ebuild
new file mode 100644
index 000..216b880
--- /dev/null
+++ b/kde-apps/libkipi/libkipi-15.08.2-r1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit kde4-base
+
+DESCRIPTION="A library for image plugins accross KDE applications"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug minimal"
+
+src_install() {
+   kde4-base_src_install
+
+   if use minimal ; then
+   rm -r "${D}"/usr/share/icons
+   fi
+}



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

2015-10-22 Thread Michael Palimaka
commit: 2027a9ba088ab3762b238280207e53a5dd2d1985
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Oct 22 20:58:25 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Oct 23 02:30:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2027a9ba

kde-apps/libkdcraw: Add 15.08.2 from overlay

Package-Manager: portage-2.2.20.1

 kde-apps/libkdcraw/Manifest |  1 +
 kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/kde-apps/libkdcraw/Manifest b/kde-apps/libkdcraw/Manifest
index fb1e480..1e564da 100644
--- a/kde-apps/libkdcraw/Manifest
+++ b/kde-apps/libkdcraw/Manifest
@@ -1 +1,2 @@
+DIST libkdcraw-15.08.2.tar.xz 102336 SHA256 
9e5bc1067eeed7981e8f11ebeb1c3b289145835ed4f2dcb5904436239d624ed7 SHA512 
ffaa8d207d955ecc896e6f7e4e0aafce83a4ee2a8059d60b5b54de7c73a3e6d0a84dcd8f484d14355fd167089e5ff051225e71cfb973328b759d2c1a69510fa4
 WHIRLPOOL 
5a18225b9a3acb23b288410a779bfeddd69e67f9f0bfaba51bd40c28e148d1f36a131055f47a21593623939f296c1f2cd927f46fc5bc4fd095326b79579c6079
 DIST libkdcraw-4.14.3.tar.xz 100176 SHA256 
78c851dba252224bf30012d2f6a79f3c846103b7ce6770d939ac2b8530cf4a4f SHA512 
5c8a3ba54ada6aeb41898afaa87853cdb320c3bab1ab5f768baeaf077974a98262ec426c36b4697c4b7fadc054d3622104cda6bf66e6165cb5d13ce55eb31888
 WHIRLPOOL 
e7da13be31c3d9037278ca87a942f3d626adc8032f3b664ce2a4027aa80389037ef393c312cac49da2a4c0b9f0b1fe79c88a63f6c873984a12225481aef17e9e

diff --git a/kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild 
b/kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild
new file mode 100644
index 000..d520d2a
--- /dev/null
+++ b/kde-apps/libkdcraw/libkdcraw-15.08.2.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit kde4-base
+
+DESCRIPTION="KDE digital camera raw image library wrapper"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+DEPEND="
+   >=media-libs/libraw-0.16_beta1-r1:=
+"
+RDEPEND="${DEPEND}"



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

2015-10-22 Thread Mike Pagano
commit: 50b93914b9fe72dfc607de6cab111d66b4d8c1db
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Oct 23 01:25:03 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Oct 23 01:25:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b93914

sys-kernel/gentoo-sources: Linux patch 3.12.49

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-3.12.49.ebuild   | 29 ++
 2 files changed, 32 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 594a33a..2204754 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -32,6 +32,9 @@ DIST genpatches-3.12-44.extras.tar.xz 18232 SHA256 
b1007266063f8a9d2e15877a440cf
 DIST genpatches-3.12-45.base.tar.xz 1453664 SHA256 
ec4d9bcce9b1210e68a0bb24af280eb1e969e8b0179138647fcbdf44a3572fab SHA512 
a18cbd4359fb410b10ec3bf579ff77f931f6f86b1d29d7be61204ef0984d34870810942ff395456578efba76d73ab8416d51e7eb2edf3ced4be5a00d8a4967ab
 WHIRLPOOL 
c3795f46cee61c54f46a66b7e3dd1d1232035ad6d745f19598bfa4a69aef297b89b11bd7d845fa75247bcc723d7f52d5501a3281c95c8a4b80dee6104b72dd61
 DIST genpatches-3.12-45.experimental.tar.xz 46536 SHA256 
10a2fad4f699cfed49f8a5e3b0e5685a12328ffe06cd90c97fdf92d7bf7f33a3 SHA512 
6dd0e76110fcdd50e48c85f6e777ffc63a55a434be59c92c33318fe331a4f04561c9e526dd015bae84ab5b5df0101389e764b3f77b164a59b8b46f22fa2a3ae9
 WHIRLPOOL 
59f60478fea7af16e373cc3e4166391d97cd1c5198d736844f5f692fea8c4456f87db1b37475508b1aa185bafbe08b9b685bc8235c8439eef488c49525af8316
 DIST genpatches-3.12-45.extras.tar.xz 18244 SHA256 
976054ba797b073b302e723ed6823b0e35b354d469dd7516f312d290f98a SHA512 
77da50d1f74455ce5c38d5eeabb54dc9de936b3cdfd9dc3666f93cdcbfb546b32ad1dbcc0798c08c538389997182f87afa8d009ab26c6872a4c32a4d5b76a734
 WHIRLPOOL 
38eccba1cdee6da7ee00f332d740c0046f4cefe3d629e15f13acf4b3740ccbfe8c52029df2d1286e4510ba9f459dc738a75877b73b40b0b98d13d607295325fc
+DIST genpatches-3.12-46.base.tar.xz 1477068 SHA256 
62f8e7101afdf671a51e3beb9b01f8c06cc3df6b12274fdbfdb1bacf2d3f2952 SHA512 
8464d356a7267f41a5d4b8eaae24b3ba391d51157adb3b5b7d6bd626b1569e5c565f4383e138bd3d939d4a2bc3dfde349f74c2b421365205d98132cb79442612
 WHIRLPOOL 
50aa1c4ccb5bf46e54ef1cbf699c7af27f00252325b09bf25e8f9cead1faf346a94bce29e4cc556e7eb3e339b627e8fd321acc320221a8a208fcff4493eaaa29
+DIST genpatches-3.12-46.experimental.tar.xz 46524 SHA256 
48069be9b5b0a4ba7f1da5dc046770e2e36a52951bd6815a00907cd721881b25 SHA512 
6daf5d04d5cf569eb5b0bedd5feee8f3869938ceb9093f109f82ec8e4fed5349a5dfd445f89a9f5c5459b2524bc4d00707c4fbfa449783ef63a65204755546e3
 WHIRLPOOL 
e51be15d4756dcc8ec59179809584bc1232ff20148a1bb2143947138a8591311a7bc7162b29ea3db81c0781551a186b7650f597ad850864b1ffd2f7dc975b00f
+DIST genpatches-3.12-46.extras.tar.xz 18240 SHA256 
7cf508f807c15884428573ec210eeefb53470504bfef2eca8357e60d82cbfc4c SHA512 
11736da85ec15ae89dff6c850ea730fe5ca62bfa24d864df3d7c832fb20fc4321485306124b516037b3121e1b8c5a47bc0610f17767867babc9f8cab4ee599e0
 WHIRLPOOL 
c5164b37852f78ef0297c70a41f984ff6647eced6e980f7718d924622f28c8ccb325b32cc04f0cb14b01fde029ed09f0b2b6d0ed41126140061e010aa4e95405
 DIST genpatches-3.14-54.base.tar.xz 1000384 SHA256 
31496c9d1175b58ddea2e7e832cc0a1d6485754b0876bf10395de151b113bc26 SHA512 
8c41346830512bedf1efa20914aa4c0a5895a78a8442e7f6749845986518a01bf0ef4d8759887b8368735c7c3cf5537717bd31ea9b2bd02c30204358a2e1adfa
 WHIRLPOOL 
7aac6195994ca15659a7c8d73ae23fdcc0391f1a0260f795ec7c10833ef3dba90caf7fe1a8b1debcf314739515d180635e3a37721943083181a4784a8f38a30b
 DIST genpatches-3.14-54.experimental.tar.xz 60308 SHA256 
d65996f339e190d74e5ec1279b7e7e50712a75c36a83d71fa030c6a91cf402d9 SHA512 
a51652a814070674c106bbff39acf2a65b6f011b676a7963138ea9279fb0dfc35842efea5fbf5d02e57db53a20535edf62afdb433a31282226b3fcfb10d525f3
 WHIRLPOOL 
a6696e0271df7ae8c4c16c1fb9450b8e3383c330967ba131e988569d67481c1d7a124094573e1522a01df8bcae0453f1a722456c637efe0531fd96b0b34e97df
 DIST genpatches-3.14-54.extras.tar.xz 18268 SHA256 
082caa7769237e2105c3aedcc3be569809cdaa3dfa7a99107aaddc7f5830d5ef SHA512 
8b238352a15587c7ce44ae90311b5cb7e49e05abfda5af2a57306464316527527c2f47d81f4689acc9998d3059a3e7854b38b9ce2929de2383cdfd321d65
 WHIRLPOOL 
d7c633218de7299be91eb3c01f5e3c5a00d348dc00612de52381ae3c4385717d9424670e8e2e0c2de94b032c50af732371f090c7189915877d6e7ef0e6896945

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.12.49.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-3.12.49.ebuild
new file mode 100644
index 000..8146df2
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-3.12.49.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="46"
+K_DEBLOB_AVAILABLE="0"
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alp

[gentoo-commits] proj/linux-patches: New tag: 3.12-46

2015-10-22 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 22 23:08:45 2015 +

New tag: 3.12-46




[gentoo-commits] proj/linux-patches:3.12 commit in: /

2015-10-22 Thread Mike Pagano
commit: 1f1599b9c061aa845dfbaaadf32ea05bbe4ba493
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 22 23:08:05 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 22 23:08:05 2015 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=1f1599b9

Update README

 _README | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/_README b/_README
index 5930bec..e565511 100644
--- a/_README
+++ b/_README
@@ -228,7 +228,15 @@ Desc:   Linux 3.12.46
 
 Patch:  1046_linux-3.12.47.patch
 From:   http://www.kernel.org
-Desc:   Linux 3.12.4
+Desc:   Linux 3.12.47
+
+Patch:  1047_linux-3.12.48.patch
+From:   http://www.kernel.org
+Desc:   Linux 3.12.48
+
+Patch:  1048_linux-3.12.49.patch
+From:   http://www.kernel.org
+Desc:   Linux 3.12.49
 
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644



[gentoo-commits] proj/gnome:master commit in: dev-python/pygobject/

2015-10-22 Thread Remi Cardona
commit: d3e46bfc09dbaaf89d96a1d95598af4c9dda0e85
Author: Rémi Cardona  gentoo  org>
AuthorDate: Thu Oct 22 23:05:08 2015 +
Commit: Remi Cardona  gentoo  org>
CommitDate: Thu Oct 22 23:05:34 2015 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=d3e46bfc

dev-python/pygobject: sync with portage

Add python3.5 support
gentoo.git commit cbece91e0447d77754f10e34c45b66b827cc0b35

Package-Manager: portage-2.2.23
Manifest-Sign-Key: 901AB08A

 dev-python/pygobject/metadata.xml| 4 ++--
 dev-python/pygobject/pygobject-3.18.0.ebuild | 3 ++-
 dev-python/pygobject/pygobject-.ebuild   | 3 ++-
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/dev-python/pygobject/metadata.xml 
b/dev-python/pygobject/metadata.xml
index 9b1bc26..7c374a2 100644
--- a/dev-python/pygobject/metadata.xml
+++ b/dev-python/pygobject/metadata.xml
@@ -1,6 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-gnome
-python
+   gnome
+   python
 

diff --git a/dev-python/pygobject/pygobject-3.18.0.ebuild 
b/dev-python/pygobject/pygobject-3.18.0.ebuild
index 1b3fb2a..3229154 100644
--- a/dev-python/pygobject/pygobject-3.18.0.ebuild
+++ b/dev-python/pygobject/pygobject-3.18.0.ebuild
@@ -3,9 +3,10 @@
 # $Id$
 
 EAPI="5"
+
 GCONF_DEBUG="no"
 GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit eutils gnome2 python-r1 virtualx
 

diff --git a/dev-python/pygobject/pygobject-.ebuild 
b/dev-python/pygobject/pygobject-.ebuild
index 2ca3519..5fb9dd6 100644
--- a/dev-python/pygobject/pygobject-.ebuild
+++ b/dev-python/pygobject/pygobject-.ebuild
@@ -3,9 +3,10 @@
 # $Id$
 
 EAPI="5"
+
 GCONF_DEBUG="no"
 GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit eutils gnome2 python-r1 virtualx
 if [[ ${PV} =  ]]; then



[gentoo-commits] proj/linux-patches:3.12 commit in: /

2015-10-22 Thread Mike Pagano
commit: 332e735eb1f56098e3ccdcca5f6502d114d98c60
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 22 23:00:30 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 22 23:00:30 2015 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=332e735e

Linux patch 3.12.49

 1048_linux-3.12.49.patch | 3673 ++
 1 file changed, 3673 insertions(+)

diff --git a/1048_linux-3.12.49.patch b/1048_linux-3.12.49.patch
new file mode 100644
index 000..30795f1
--- /dev/null
+++ b/1048_linux-3.12.49.patch
@@ -0,0 +1,3673 @@
+diff --git a/Makefile b/Makefile
+index a01f2573731d..b2985713121c 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 3
+ PATCHLEVEL = 12
+-SUBLEVEL = 48
++SUBLEVEL = 49
+ EXTRAVERSION =
+ NAME = One Giant Leap for Frogkind
+ 
+diff --git a/arch/arm/mach-omap2/clockdomains7xx_data.c 
b/arch/arm/mach-omap2/clockdomains7xx_data.c
+index 57d5df0c1fbd..7581e036bda6 100644
+--- a/arch/arm/mach-omap2/clockdomains7xx_data.c
 b/arch/arm/mach-omap2/clockdomains7xx_data.c
+@@ -331,7 +331,7 @@ static struct clockdomain l4per2_7xx_clkdm = {
+   .dep_bit  = DRA7XX_L4PER2_STATDEP_SHIFT,
+   .wkdep_srcs   = l4per2_wkup_sleep_deps,
+   .sleepdep_srcs= l4per2_wkup_sleep_deps,
+-  .flags= CLKDM_CAN_HWSUP_SWSUP,
++  .flags= CLKDM_CAN_SWSUP,
+ };
+ 
+ static struct clockdomain mpu0_7xx_clkdm = {
+diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
+index fe70eaea0e28..c6ab435557b2 100644
+--- a/arch/arm64/Kconfig
 b/arch/arm64/Kconfig
+@@ -56,6 +56,10 @@ config NO_IOPORT
+ config STACKTRACE_SUPPORT
+   def_bool y
+ 
++config ILLEGAL_POINTER_VALUE
++  hex
++  default 0xdead
++
+ config LOCKDEP_SUPPORT
+   def_bool y
+ 
+@@ -265,6 +269,22 @@ config SYSVIPC_COMPAT
+   def_bool y
+   depends on COMPAT && SYSVIPC
+ 
++config ARM64_ERRATUM_843419
++  bool "Cortex-A53: 843419: A load or store might access an incorrect 
address"
++  depends on MODULES
++  default y
++  help
++This option builds kernel modules using the large memory model in
++order to avoid the use of the ADRP instruction, which can cause
++a subsequent memory access to use an incorrect address on Cortex-A53
++parts up to r0p4.
++
++Note that the kernel itself must be linked with a version of ld
++which fixes potentially affected ADRP instructions through the
++use of veneers.
++
++If unsure, say Y.
++
+ endmenu
+ 
+ source "net/Kconfig"
+diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile
+index d90cf79f233a..4148c05df99a 100644
+--- a/arch/arm64/Makefile
 b/arch/arm64/Makefile
+@@ -28,6 +28,10 @@ comma = ,
+ 
+ CHECKFLAGS+= -D__aarch64__
+ 
++ifeq ($(CONFIG_ARM64_ERRATUM_843419), y)
++CFLAGS_MODULE += -mcmodel=large
++endif
++
+ # Default value
+ head-y:= arch/arm64/kernel/head.o
+ 
+diff --git a/arch/arm64/kernel/head.S b/arch/arm64/kernel/head.S
+index 7090c126797c..aca41b06dc7a 100644
+--- a/arch/arm64/kernel/head.S
 b/arch/arm64/kernel/head.S
+@@ -192,6 +192,11 @@ ENTRY(el2_setup)
+   msr hstr_el2, xzr   // Disable CP15 traps to EL2
+ #endif
+ 
++  /* EL2 debug */
++  mrs x0, pmcr_el0// Disable debug access traps
++  ubfxx0, x0, #11, #5 // to EL2 and allow access to
++  msr mdcr_el2, x0// all PMU counters from EL1
++
+   /* Stage-2 translation */
+   msr vttbr_el2, xzr
+ 
+diff --git a/arch/arm64/kernel/module.c b/arch/arm64/kernel/module.c
+index ca0e3d55da99..9589a92f6332 100644
+--- a/arch/arm64/kernel/module.c
 b/arch/arm64/kernel/module.c
+@@ -390,12 +390,14 @@ int apply_relocate_add(Elf64_Shdr *sechdrs,
+   ovf = reloc_insn_imm(RELOC_OP_PREL, loc, val, 0, 21,
+INSN_IMM_ADR);
+   break;
++#ifndef CONFIG_ARM64_ERRATUM_843419
+   case R_AARCH64_ADR_PREL_PG_HI21_NC:
+   overflow_check = false;
+   case R_AARCH64_ADR_PREL_PG_HI21:
+   ovf = reloc_insn_imm(RELOC_OP_PAGE, loc, val, 12, 21,
+INSN_IMM_ADR);
+   break;
++#endif
+   case R_AARCH64_ADD_ABS_LO12_NC:
+   case R_AARCH64_LDST8_ABS_LO12_NC:
+   overflow_check = false;
+diff --git a/arch/arm64/kernel/signal32.c b/arch/arm64/kernel/signal32.c
+index b9564b8d6bab..1e60acc6a4d7 100644
+--- a/arch/arm64/kernel/signal32.c
 b/arch/arm64/kernel/signal32.c
+@@ -231,14 +231,32 @@ int copy_siginfo_from_user32(siginfo_t *to, 
compat_siginfo_t __user *from)
+ 
+ /*
+  * VFP save/restore code.
++ *
++ * We have to be careful with endianness, since the fpsimd context-switch
++ * code operates on 128-bit (Q) register v

[gentoo-commits] repo/gentoo:master commit in: sci-physics/lammps/

2015-10-22 Thread Nicolas Bock
commit: 308bb0c246b672de7cf3b775602df68ec15d5bdd
Author: Nicolas Bock  gentoo  org>
AuthorDate: Thu Oct 22 22:07:33 2015 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Thu Oct 22 22:08:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308bb0c2

sci-physics/lammps: Version bump.

Package-Manager: portage-2.2.20.1

 sci-physics/lammps/Manifest   |   1 +
 sci-physics/lammps/lammps-20151022.ebuild | 267 ++
 2 files changed, 268 insertions(+)

diff --git a/sci-physics/lammps/Manifest b/sci-physics/lammps/Manifest
index 9d1cdf0..8d361b7 100644
--- a/sci-physics/lammps/Manifest
+++ b/sci-physics/lammps/Manifest
@@ -4,6 +4,7 @@ DIST lammps-11Sep15.tar.gz 87274144 SHA256 
79a40bc395a9052345cf1c7caa8da69f6ec06
 DIST lammps-15May15.tar.gz 63835027 SHA256 
0233ea98c7d77d31bd0a538bb674c0ee8f000f1d0ee1b8c049072873192aa228 SHA512 
a23c16b98117590b15ca7662b878fb2f76ec41399c329c98deb48e28a0ffce293443269513a96c2503389894b598787b19dadc210d4b4dbc6a7432caf633e7d1
 WHIRLPOOL 
4c4edfd772bbf534e42fc43e1feaf3b8f76e74c58ec1e985e3c29ee0d8e64aa8c501b8e45e078643409c320a1d834b0d5eb699e7d1ec29df06be0126d12492f1
 DIST lammps-18Aug15.tar.gz 87893731 SHA256 
513237934cda7c1e026f4983096fd53cb510fadee12c55b13b4735086155245a SHA512 
5816509f5b988dbe74c9f40a9faa42b3bcf260388dfe70703a1544517acd3f868d3bc398fb4c2fa7713d24409075d44ad80b8e91a25a28db783c2605aff30977
 WHIRLPOOL 
7022f3aabadffdfa2ef4c8219589e46fba2572d9ed4b52591f6516a61d4895b39d637d88535ba83881db5d48661e34ca6ff2f22a6819dbec015af979721a0f53
 DIST lammps-21Aug15.tar.gz 87096749 SHA256 
46f68e7b61e50ab3e790c53cadd82fde7c7aa58aa73e8a3257f24facff2ed0a4 SHA512 
b1dd90890c43a6cf55a57a61279dcc4c10fdedb4ad90f225a06c0e93eb139d30f2d56baa233c081b38adeeb0a8419a0315ccc4b0fa15c3ffbf7db626ca261e9d
 WHIRLPOOL 
a1d7d4ab30f9ecca3fd64216e729fef6fa1b3f7a6698b9eaf104bcbfa03a66862cd8c5882e94f73e841064d94bf030aaf569ebb457d89fbd345b391f9cee6822
+DIST lammps-22Oct15.tar.gz 87938562 SHA256 
8376b52e8eef4d1c3628c15ff358ecf74303e308566f41fd055701f6af3b6484 SHA512 
cbe61420cccd11cd23214802dfd2d1b2b1b28511a53dbf22e993fa3592404e8dda29fcb7bcd4e6e2d1e2251ddc6f020d48bafa66c8fceaa27d4af2e21640
 WHIRLPOOL 
11d09b18ff742d6ac4fcb400df93d7ac29144ee554f7241e58da80d039a99ef23b4b81709170ed12215693de97b6b48c9a6967d7d0539fd7f2f172a1e0a83661
 DIST lammps-24Sep15.tar.gz 87307191 SHA256 
e03cdeb2b3b6107d98969febea26575c85590603ab4f79d26efc46bac6d6cc60 SHA512 
356dd556f845cec456865062375120c0898cef1870617d80b31b0e8e964585140120b21f891cd9b40ecde7aaf43beb34d7b15396830e08273624a9b14da551e4
 WHIRLPOOL 
667b8aaf927d268c569a192c835b7dbdc80a0f25abb1f2c96007517ea218a69b2816dde4ebe28ca82974d01472c0e1126b67e89a19fb3ef49e4020f3d9c69fba
 DIST lammps-29Aug15.tar.gz 87253305 SHA256 
fff69b47c40936d4ccd90a8443ce5bb1bcf4cb449ae06a5822c1b11a2ab2dd67 SHA512 
991c56608a3288ebdcd2fb0857c595d42047b5ed0780b6d4ddb98388627499727b6c04fe0eff3e7221238dba2a8601f0b4b4067b5aa5ec2f356b4ee13f6c129c
 WHIRLPOOL 
88da74fa65aeb187330439417512d516fe8adf4a5df4be48fdafafa198e8c4d657ecce7f04f749d77cb2f8a7881ac47f4604cf6bc8eb3ca8b2cbc7988d866a87
 DIST lammps-4Sep15.tar.gz 87259558 SHA256 
8652c801e4ce8b6b7d42a6c71f76b68a6e741dc8efb8d7d3dad36b624fe8f150 SHA512 
ee730c8bd96e14931192a68c12e4ebde301cc3525b20816d051059f155b70c6edcea7dc2ed911e0b89685d751cd5a74b4bb5eedd6c16a042a2191bf8a9665fc9
 WHIRLPOOL 
271ac0d74e03d3e3e118a8b2385d98ce3f566ead67f1c329a219c265f886dc267b11be17c2caa52749ebac212bbc7456fba2d0d6ec69cd25815316e601b3360a

diff --git a/sci-physics/lammps/lammps-20151022.ebuild 
b/sci-physics/lammps/lammps-20151022.ebuild
new file mode 100644
index 000..5400e87
--- /dev/null
+++ b/sci-physics/lammps/lammps-20151022.ebuild
@@ -0,0 +1,267 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3} )
+
+inherit eutils flag-o-matic fortran-2 multilib python-r1
+
+convert_month() {
+   case $1 in
+   01) echo Jan
+   ;;
+   02) echo Feb
+   ;;
+   03) echo Mar
+   ;;
+   04) echo Apr
+   ;;
+   05) echo May
+   ;;
+   06) echo Jun
+   ;;
+   07) echo Jul
+   ;;
+   08) echo Aug
+   ;;
+   09) echo Sep
+   ;;
+   10) echo Oct
+   ;;
+   11) echo Nov
+   ;;
+   12) echo Dec
+   ;;
+   *)  echo unknown
+   ;;
+   esac
+}
+
+MY_P=${PN}-$((10#${PV:6:2}))$(convert_month ${PV:4:2})${PV:2:2}
+
+DESCRIPTION="Large-scale Atomic/Molecular Massively Parallel Simulator"
+HOMEPAGE="http://lammps.sandia.gov/";
+SRC_URI="http://lammps.sandia.gov/t

[gentoo-commits] repo/gentoo:master commit in: app-emacs/ghc-mod/files/, app-emacs/ghc-mod/

2015-10-22 Thread Sergei Trofimovich
commit: 42bb87c3b1657d2e6aad059f5c46184612242273
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:31:00 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:32:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42bb87c3

app-emacs/ghc-mod: new package

"Happy Haskell Programming",

"The ghc-mod command is a backend command to enrich
Haskell programming on editors including
Emacs, Vim, and Sublime."

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352

Package-Manager: portage-2.2.23

 app-emacs/ghc-mod/Manifest |  1 +
 app-emacs/ghc-mod/files/50ghc-mod-gentoo.el|  3 +
 .../ghc-mod/files/ghc-mod-5.4.0.0-gentoo.patch | 11 +++
 app-emacs/ghc-mod/ghc-mod-5.4.0.0.ebuild   | 95 ++
 app-emacs/ghc-mod/metadata.xml | 16 
 5 files changed, 126 insertions(+)

diff --git a/app-emacs/ghc-mod/Manifest b/app-emacs/ghc-mod/Manifest
new file mode 100644
index 000..7029073
--- /dev/null
+++ b/app-emacs/ghc-mod/Manifest
@@ -0,0 +1 @@
+DIST ghc-mod-5.4.0.0.tar.gz 132546 SHA256 
736652a2f63f9e8625c859c94f193ad8ac9f8fe793bbee672b65576309bfb069 SHA512 
fabcc5ce2fb9e8790043faae2d42b3714fab96da1409d7f1c4736f332c6b74c76724dce253456fd787526d125cfaa1fe48c4725a0da16aabb35d5edf560f2415
 WHIRLPOOL 
8f493cf40724ffb7b56877f9a9cf752e9b23d7babb4fbd29fad0068a1b8f8ef85b40a96c1fa65508ef924cb05d73300762081a762777b982e5c8d41af467d2f0

diff --git a/app-emacs/ghc-mod/files/50ghc-mod-gentoo.el 
b/app-emacs/ghc-mod/files/50ghc-mod-gentoo.el
new file mode 100644
index 000..402c84d
--- /dev/null
+++ b/app-emacs/ghc-mod/files/50ghc-mod-gentoo.el
@@ -0,0 +1,3 @@
+;;; ghc-mod site-lisp configuration
+
+(add-to-list 'load-path "@SITELISP@")

diff --git a/app-emacs/ghc-mod/files/ghc-mod-5.4.0.0-gentoo.patch 
b/app-emacs/ghc-mod/files/ghc-mod-5.4.0.0-gentoo.patch
new file mode 100644
index 000..f852744
--- /dev/null
+++ b/app-emacs/ghc-mod/files/ghc-mod-5.4.0.0-gentoo.patch
@@ -0,0 +1,11 @@
+--- ghc-mod.cabal.orig 2015-04-18 13:14:37.566613645 +0200
 ghc-mod.cabal  2015-04-18 13:14:53.420241209 +0200
+@@ -26,8 +26,6 @@
+ Category:   GHC, Development
+ Cabal-Version:  >= 1.14
+ Build-Type: Custom
+-Data-Files: elisp/Makefile
+-elisp/*.el
+ Data-Files: LICENSE COPYING.BSD3 COPYING.AGPL3
+ Extra-Source-Files: ChangeLog
+ SetupCompat.hs

diff --git a/app-emacs/ghc-mod/ghc-mod-5.4.0.0.ebuild 
b/app-emacs/ghc-mod/ghc-mod-5.4.0.0.ebuild
new file mode 100644
index 000..eb22207
--- /dev/null
+++ b/app-emacs/ghc-mod/ghc-mod-5.4.0.0.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6
+
+CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite"
+inherit elisp-common haskell-cabal
+
+DESCRIPTION="Happy Haskell Programming"
+HOMEPAGE="http://www.mew.org/~kazu/proj/ghc-mod/";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="AGPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs"
+
+RESTRICT=test # doctests break on modules collisions: temporary / temporary-rc
+
+RDEPEND="dev-haskell/async:=[profile?]
+   >=dev-haskell/cabal-helper-0.6.0.0:=[profile?] 
=dev-haskell/cereal-0.4:=[profile?]
+   dev-haskell/convertible:=[profile?]
+   >=dev-haskell/djinn-ghc-0.0.2.2:=[profile?]
+   >=dev-haskell/extra-1.4:2=[profile?] =dev-haskell/fclabels-2.0:=[profile?] 
=dev-haskell/hlint-1.8.61:=[profile?]
+   >=dev-haskell/monad-control-1:=[profile?]
+   >=dev-haskell/monad-journal-0.4:=[profile?]
+   >=dev-haskell/mtl-2.0:=[profile?]
+   dev-haskell/old-time:=[profile?]
+   >=dev-haskell/pipes-4.1:=[profile?] =dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.14
+   test? ( >=dev-haskell/doctest-0.9.3
+   dev-haskell/executable-path
+   >=dev-haskell/hspec-2.0.0 )
+"
+SITEFILE=50${PN}-gentoo.el
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-5.4.0.0-gentoo.patch
+}
+
+src_compile() {
+   haskell-cabal_src_compile
+   if use emacs ; then
+   pushd elisp
+   elisp-compile *.el || die
+   popd
+   fi
+}
+
+src_install() {
+   haskell-cabal_src_install
+   if use emacs ; then
+   pushd "${S}"
+   elisp-install ghc-mod elisp/*.{el,elc}
+   elisp-site-file-install "${FILESDIR}"/${SITEFILE}
+   popd
+   fi
+}
+
+pkg_postinst() {
+   if use emacs ; then
+   elisp-site-regen
+   elog "To configure ghc-mod either add this line to ~/.emacs:"
+   elog "(autoload 'ghc-init \"ghc\" nil t)"
+   elog "and either this line:"
+   elog "(add-hook 'haskell-mode-hook

[gentoo-commits] repo/gentoo:master commit in: dev-haskell/ghc-syb-utils/

2015-10-22 Thread Sergei Trofimovich
commit: b483aba56d16233ac2c5a3b89e923ad0ccaaa416
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:22:41 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:31:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b483aba5

dev-haskell/ghc-syb-utils: new package

"Scrap Your Boilerplate utilities for the GHC API",
a depend for app-emacs/ghc-mod.

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352
Package-Manager: portage-2.2.23

 dev-haskell/ghc-syb-utils/Manifest |  1 +
 .../ghc-syb-utils/ghc-syb-utils-0.2.3.ebuild   | 26 ++
 dev-haskell/ghc-syb-utils/metadata.xml |  8 +++
 3 files changed, 35 insertions(+)

diff --git a/dev-haskell/ghc-syb-utils/Manifest 
b/dev-haskell/ghc-syb-utils/Manifest
new file mode 100644
index 000..4860665
--- /dev/null
+++ b/dev-haskell/ghc-syb-utils/Manifest
@@ -0,0 +1 @@
+DIST ghc-syb-utils-0.2.3.tar.gz 4689 SHA256 
7ef63fcfe829b621d5b947c6a4567de111976a463f2ffaf0fafc5e76776cbc67 SHA512 
af311d21396c1f7e98c532b1192d2aad27a942f66f4e09eea4cb0d6c1fe444a49c4e14ce4030504f544c796818a887e1ce6bf828cbd28c69c1123e224793cd32
 WHIRLPOOL 
7fff256a52fad8dfea518090cdf8b5975b45f105ab398c1752ed2b122fb76b43c4592887a68bb1b934ab67cdd4abbef8e4e4e713d9e1f8e0cb87ef1f545337fc

diff --git a/dev-haskell/ghc-syb-utils/ghc-syb-utils-0.2.3.ebuild 
b/dev-haskell/ghc-syb-utils/ghc-syb-utils-0.2.3.ebuild
new file mode 100644
index 000..dbf2641
--- /dev/null
+++ b/dev-haskell/ghc-syb-utils/ghc-syb-utils-0.2.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.4.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Scrap Your Boilerplate utilities for the GHC API"
+HOMEPAGE="https://github.com/nominolo/ghc-syb";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/syb-0.1.0:=[profile?]
+   >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.6
+"

diff --git a/dev-haskell/ghc-syb-utils/metadata.xml 
b/dev-haskell/ghc-syb-utils/metadata.xml
new file mode 100644
index 000..52a967b
--- /dev/null
+++ b/dev-haskell/ghc-syb-utils/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   haskell
+   
+   Scrap Your Boilerplate utilities for the GHC API.
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/extra/

2015-10-22 Thread Sergei Trofimovich
commit: c98952f122e01bdacdef92765538fe3cdfa2946d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:20:24 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:31:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c98952f1

dev-haskell/extra: version bump

Package-Manager: portage-2.2.23

 dev-haskell/extra/Manifest|  2 ++
 dev-haskell/extra/extra-1.4.2.ebuild  | 27 
 dev-haskell/extra/extra-1.46.3.ebuild | 48 +++
 dev-haskell/extra/metadata.xml|  8 +++---
 4 files changed, 81 insertions(+), 4 deletions(-)

diff --git a/dev-haskell/extra/Manifest b/dev-haskell/extra/Manifest
index f8e4995..d8ca418 100644
--- a/dev-haskell/extra/Manifest
+++ b/dev-haskell/extra/Manifest
@@ -1,2 +1,4 @@
 DIST Extra-1.46.1.tar.gz 19066 SHA256 
e95b5bfcc770fc9f54edcf002055690537df7763cd5d78ba190c5660b438f235 SHA512 
cf222ccac42e899d6af75980e30e46a6ea41217174262060b41972cb9925f54f15f71050055731f5978c44d7c0eb0d2e32b45e153130b11656590cc132f719b6
 WHIRLPOOL 
0dc1842de0ab87d9cfdbd98d15582609028c74f0fbc954693404e9c134e6d804cc2a523621288bd88041a9c4cb9c4af3358a60a7e4f07c961d62594181705700
+DIST Extra-1.46.3.tar.gz 19186 SHA256 
d0fb7267853f610a9b9e7d5e37ab39f6de2b99f21c15d44bffb6807459babcf6 SHA512 
63fad1f1da19303019859e9fa13076068f817a507f7c74e5d1f7fb3f51d54434d6714702c2ce76539b322513cda4c97bd3cd366fb4a028def400e947aa39e6c8
 WHIRLPOOL 
9f5e4f85c4aa3dccce07c71dffc911055685b0c0b76b13c5fdb8466a965c31ab49287d7d513e39a382f6b420b299bc76871dda0490495ffd7f56c2b70a494da0
 DIST extra-1.3.1.tar.gz 30439 SHA256 
94c8cc02b530e589171d2e0520afac066994a1cb48cd4c847496387489230dfa SHA512 
d6e736a021ee39139855516647b91a328e8ff075b94bdcc84c1296586d9f58a20819fcf78a45bd0fc9b3e9516780c68fb27ec0dc406964b6d9d5c93e26bfc9c5
 WHIRLPOOL 
f8d02f3cd149f3d1dd5e30a5411f3359a2e4590061856f8f0350e63b4baafa961ade1ca142696dd1b1db97dc7ec35dc5481e836a4eaaf62803f55cf66b40caac
+DIST extra-1.4.2.tar.gz 31311 SHA256 
0ea699d56bb08ad6e70ee6aaa2069326c2bc76ac347c0f04e94ce38cf3ec30c1 SHA512 
5d0c5ee70d51fa4d132b5e7813908a65badbf339cfcae4182932933b70cb7b8faf659d22c624086757c38973aeff769b5175bf533bbb51c3ec419ba09bb28409
 WHIRLPOOL 
f8090b12f6412d9a15b115cad88b760053844549e5132a2def334f2ced98c51d3e87d45786bdaa55c862bcafea054211c4d2f3bea81f134b0c8e60a3f81c89c6

diff --git a/dev-haskell/extra/extra-1.4.2.ebuild 
b/dev-haskell/extra/extra-1.4.2.ebuild
new file mode 100644
index 000..6432d11
--- /dev/null
+++ b/dev-haskell/extra/extra-1.4.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Extra functions I use"
+HOMEPAGE="https://github.com/ndmitchell/extra#readme";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+# this package has nothing to do with extra:0 (aka Extra on hackage)
+SLOT="2/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.10
+   test? ( dev-haskell/quickcheck )
+"

diff --git a/dev-haskell/extra/extra-1.46.3.ebuild 
b/dev-haskell/extra/extra-1.46.3.ebuild
new file mode 100644
index 000..551557e
--- /dev/null
+++ b/dev-haskell/extra/extra-1.46.3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+MY_PN="Extra"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A grab bag of modules"
+HOMEPAGE="https://github.com/ddssff/haskell-extra";
+SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+network-uri"
+
+RDEPEND="dev-haskell/bzlib:=[profile?]
+   dev-haskell/hunit:=[profile?]
+   dev-haskell/mtl:=[profile?]
+   dev-haskell/old-locale:=[profile?]
+   dev-haskell/old-time:=[profile?]
+   dev-haskell/puremd5:=[profile?]
+   >=dev-haskell/quickcheck-2:2=[profile?] 
=dev-haskell/unixutils-1.51:=[profile?]
+   dev-haskell/zlib:=[profile?]
+   >=dev-lang/ghc-7.4.1:=
+   network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] )
+   !network-uri? ( >=dev-haskell/network-2.4:=[profile?] )
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.2
+"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   haskell-cabal_src_configure \
+   $(cabal_flag network-uri network-uri)
+}

diff --git a/dev-haskell/extra/metadata.xml b/dev-haskell/extra/metadata.xml
index 0606167..ecc6a87 100644
--- a/dev-haskell/extra/metadata.xml
+++ b/dev-haskell/extra/metadata.xml
@@ -1,11 +1,11 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd";>

[gentoo-commits] repo/gentoo:master commit in: dev-haskell/monad-journal/

2015-10-22 Thread Sergei Trofimovich
commit: 2c0b64f042254bbc569c07bcedfecd67913ef1f3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:21:42 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:31:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c0b64f0

dev-haskell/monad-journal: new package

"Pure logger typeclass and monad transformer",
a depend of app-emacs/ghc-mod.

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352
Package-Manager: portage-2.2.23

 dev-haskell/monad-journal/Manifest |  1 +
 dev-haskell/monad-journal/metadata.xml | 13 ++
 .../monad-journal/monad-journal-0.7.1.ebuild   | 30 ++
 3 files changed, 44 insertions(+)

diff --git a/dev-haskell/monad-journal/Manifest 
b/dev-haskell/monad-journal/Manifest
new file mode 100644
index 000..df1c5d8
--- /dev/null
+++ b/dev-haskell/monad-journal/Manifest
@@ -0,0 +1 @@
+DIST monad-journal-0.7.1.tar.gz 4582 SHA256 
79afa46b66530b7877a1860352ad3696a6ce65f3ad2f17468c3d4e78bc4fd2ad SHA512 
5a19f49d05aa00e558b1a945c2064342bc265d8579767903d0080a5c8bc39ced8b871922d2e4b50dbbcc73d431b4784b1ec66ee1a53df97898eaf6c8ed23d7ab
 WHIRLPOOL 
a840bdee90a464c5b3a0274f7153fef3cd122064df0dd4fca37e5acb4c21f7225da6262929a46f119affcc5bfe418f11fd8ff3f0f187750e60122bfebba6dafe

diff --git a/dev-haskell/monad-journal/metadata.xml 
b/dev-haskell/monad-journal/metadata.xml
new file mode 100644
index 000..2ba2db8
--- /dev/null
+++ b/dev-haskell/monad-journal/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   haskell
+   
+   This package provides a typeclass for logging in
+   pure code, or more generally, in any kind of
+   context. You can do whatever you want with
+   logs, especially get them, clear them or even
+   sink them through `IO` if you're logging in
+   `(MonadIO m) => m`.
+   
+

diff --git a/dev-haskell/monad-journal/monad-journal-0.7.1.ebuild 
b/dev-haskell/monad-journal/monad-journal-0.7.1.ebuild
new file mode 100644
index 000..235f140
--- /dev/null
+++ b/dev-haskell/monad-journal/monad-journal-0.7.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.5.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Pure logger typeclass and monad transformer"
+HOMEPAGE="https://github.com/phaazon/monad-journal";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/either-4.1:=[profile?] 
=dev-haskell/monad-control-0.3:=[profile?] 
=dev-haskell/mtl-2.1:=[profile?] =dev-haskell/transformers-0.3:=[profile?] 
=dev-haskell/transformers-base-0.4:=[profile?] 
=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.10
+"



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/djinn-ghc/

2015-10-22 Thread Sergei Trofimovich
commit: 30116e190da954e247c1452388560cea9d174dc7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:27:13 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:31:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30116e19

dev-haskell/djinn-ghc: new package

"Generate Haskell code from a type. Bridge from Djinn to GHC API",
a depend of app-emacs/ghc-mod

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352
Package-Manager: portage-2.2.23

 dev-haskell/djinn-ghc/Manifest |  1 +
 dev-haskell/djinn-ghc/djinn-ghc-0.0.2.3.ebuild | 29 ++
 dev-haskell/djinn-ghc/metadata.xml | 10 +
 3 files changed, 40 insertions(+)

diff --git a/dev-haskell/djinn-ghc/Manifest b/dev-haskell/djinn-ghc/Manifest
new file mode 100644
index 000..cd1e857
--- /dev/null
+++ b/dev-haskell/djinn-ghc/Manifest
@@ -0,0 +1 @@
+DIST djinn-ghc-0.0.2.3.tar.gz 3330 SHA256 
cb956aed69bc5c342b45ef1b1142b6555fd2865dde1a80ac6ab3ef86aca314a4 SHA512 
441b6ce7f5d7e4672394bcc6654db9405406540e68855c41b7db33ef9e267178aa56f20209c4a91ffda59a7e44847c7bfebfa3f0c3df3d0868600f34912d9ae8
 WHIRLPOOL 
f842efe8bd312f5de27d15d4cfb99bc4e3e4fd40827b1c1fa84a2c2d13841a5945232fec5aa335f54905a16a0845ea5b2fe0b8a8d7705749b84bcc82e5da2a7c

diff --git a/dev-haskell/djinn-ghc/djinn-ghc-0.0.2.3.ebuild 
b/dev-haskell/djinn-ghc/djinn-ghc-0.0.2.3.ebuild
new file mode 100644
index 000..7147095
--- /dev/null
+++ b/dev-haskell/djinn-ghc/djinn-ghc-0.0.2.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.4.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Generate Haskell code from a type. Bridge from Djinn to GHC API"
+HOMEPAGE="http://hackage.haskell.org/package/djinn-ghc";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-haskell/async:=[profile?]
+   >=dev-haskell/djinn-lib-0.0.1.2:=[profile?]
+   dev-haskell/mtl:=[profile?]
+   dev-haskell/transformers:=[profile?]
+   >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.8
+"

diff --git a/dev-haskell/djinn-ghc/metadata.xml 
b/dev-haskell/djinn-ghc/metadata.xml
new file mode 100644
index 000..98c679a
--- /dev/null
+++ b/dev-haskell/djinn-ghc/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   haskell
+   
+   Djinn uses an theorem prover for intuitionistic propositional 
logic
+   to generate a Haskell expression when given a type.
+   This is the bridge from djinn-lib to GHC API.
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/djinn-lib/

2015-10-22 Thread Sergei Trofimovich
commit: 5ad8663afd8765f1a7f5fd9948583ae482e960ca
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:26:38 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:31:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad8663a

dev-haskell/djinn-lib: new package

"Generate Haskell code from a type. Library extracted from djinn package",
a depend of app-emacs/ghc-mod

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352
Package-Manager: portage-2.2.23

 dev-haskell/djinn-lib/Manifest |  1 +
 dev-haskell/djinn-lib/djinn-lib-0.0.1.2.ebuild | 26 ++
 dev-haskell/djinn-lib/metadata.xml | 10 ++
 3 files changed, 37 insertions(+)

diff --git a/dev-haskell/djinn-lib/Manifest b/dev-haskell/djinn-lib/Manifest
new file mode 100644
index 000..b7e8126
--- /dev/null
+++ b/dev-haskell/djinn-lib/Manifest
@@ -0,0 +1 @@
+DIST djinn-lib-0.0.1.2.tar.gz 14608 SHA256 
c0fe10b7aa5cb39f828e933925fc5bbf86c290bb7661021e4d9250ae8ed01011 SHA512 
403878b72540362a6b6d545a65ded9f10d05c623180adf8a03e732fac30dd00a42b090b9e4f9da16baa5dc1fdbd6f29a97158174917f3c0527a37b6ecbcfbe8e
 WHIRLPOOL 
a8a9c78505853f3f68f756b538c62770ff5a4bf68d12a29d079dea6799f82ce0d6ed96289a5b6d06ab055c6fc50f4b64b02ddf7814d4a25545c39e393a1ef71f

diff --git a/dev-haskell/djinn-lib/djinn-lib-0.0.1.2.ebuild 
b/dev-haskell/djinn-lib/djinn-lib-0.0.1.2.ebuild
new file mode 100644
index 000..733317b
--- /dev/null
+++ b/dev-haskell/djinn-lib/djinn-lib-0.0.1.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.3.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Generate Haskell code from a type. Library extracted from djinn 
package"
+HOMEPAGE="http://www.augustsson.net/Darcs/Djinn/";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-haskell/mtl:=[profile?]
+   >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.2
+"

diff --git a/dev-haskell/djinn-lib/metadata.xml 
b/dev-haskell/djinn-lib/metadata.xml
new file mode 100644
index 000..02d9032
--- /dev/null
+++ b/dev-haskell/djinn-lib/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   haskell
+   
+   Djinn uses an theorem prover for intuitionistic propositional 
logic
+   to generate a Haskell expression when given a type.
+   This is a library extracted from Djinn sources.
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/pipes/

2015-10-22 Thread Sergei Trofimovich
commit: 300667cace72259e9298123e6df82b33fee3eb3f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:28:24 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:32:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=300667ca

dev-haskell/pipes: new package

"Compositional pipelines", a depend of app-emacs/ghc-mod

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352
Package-Manager: portage-2.2.23

 dev-haskell/pipes/Manifest   |  1 +
 dev-haskell/pipes/metadata.xml   | 32 
 dev-haskell/pipes/pipes-4.1.6.ebuild | 31 +++
 3 files changed, 64 insertions(+)

diff --git a/dev-haskell/pipes/Manifest b/dev-haskell/pipes/Manifest
new file mode 100644
index 000..d556bda
--- /dev/null
+++ b/dev-haskell/pipes/Manifest
@@ -0,0 +1 @@
+DIST pipes-4.1.6.tar.gz 38387 SHA256 
2d6a5060380497a16287d156c69cbd55d2d3efc6d57d5079f794f90c944e7435 SHA512 
a5467658ad9e60b8d2ba39fe4c8fca228388484e9a534e284b51069abc3a7f61382d0cdd6277fa99d5295af06d05496cd2cf4acbdec7cc1556de870d6b0abedd
 WHIRLPOOL 
afec914749e101feda0c5d32f405fb3a6e69917048524dfd6e4e22a22e5bd864a016995881774032d2d1d05b1c283da78aa7362be7d1f5d0be53fd45c57a4dc4

diff --git a/dev-haskell/pipes/metadata.xml b/dev-haskell/pipes/metadata.xml
new file mode 100644
index 000..739bd90
--- /dev/null
+++ b/dev-haskell/pipes/metadata.xml
@@ -0,0 +1,32 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   haskell
+   
+   \"Coroutines done right\".  This library generalizes 
iteratees and coroutines
+   simply and elegantly.
+   
+   Advantages over traditional iteratee\/coroutine implementations:
+   
+   * /Concise API/: Use three simple commands: 
('>->'), 'request', and 'respond'
+   
+   * /Bidirectionality/: Implement duplex channels
+   
+   * /Blazing fast/: Implementation tuned for speed
+   
+   * /Elegant semantics/: Use practical category theory
+   
+   * /Extension Framework/: Mix and match extensions and create 
your own
+   
+   * /ListT/: Correct implementation of ListT that interconverts 
with pipes
+   
+   * /Lightweight Dependency/: @pipes@ depends only on 
@transformers@ and
+   @mmorph@ and compiles rapidly
+   
+   * /Extensive Documentation/: Second to none!
+   
+   Import "Control.Proxy" to use the library.
+   
+   Read "Control.Proxy.Tutorial" for an extensive 
tutorial.
+   
+

diff --git a/dev-haskell/pipes/pipes-4.1.6.ebuild 
b/dev-haskell/pipes/pipes-4.1.6.ebuild
new file mode 100644
index 000..4543dd4
--- /dev/null
+++ b/dev-haskell/pipes/pipes-4.1.6.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.5.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Compositional pipelines"
+HOMEPAGE="http://hackage.haskell.org/package/pipes";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/mmorph-1.0.0:=[profile?] 
=dev-haskell/mtl-2.1:=[profile?] =dev-haskell/transformers-0.2.0.0:=[profile?] 
=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.10
+   test? ( >=dev-haskell/quickcheck-2.4 =dev-haskell/test-framework-0.4 =dev-haskell/test-framework-quickcheck2-0.2.0 


[gentoo-commits] repo/gentoo:master commit in: dev-haskell/fclabels/

2015-10-22 Thread Sergei Trofimovich
commit: 4814995991699fb33dd852e6009940d1b61e4534
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:23:41 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:31:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48149959

dev-haskell/fclabels: new package

"First class accessor labels implemented as lenses",
a depend of app-emacs/ghc-mod

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352
Package-Manager: portage-2.2.23

 dev-haskell/fclabels/Manifest|  1 +
 dev-haskell/fclabels/fclabels-2.0.2.3.ebuild | 28 
 dev-haskell/fclabels/metadata.xml| 26 ++
 3 files changed, 55 insertions(+)

diff --git a/dev-haskell/fclabels/Manifest b/dev-haskell/fclabels/Manifest
new file mode 100644
index 000..4f33a57
--- /dev/null
+++ b/dev-haskell/fclabels/Manifest
@@ -0,0 +1 @@
+DIST fclabels-2.0.2.3.tar.gz 22787 SHA256 
82ba7747afeec6526d3bc2df61b222ae71b45aa3dd8bb8787e9ab2c537f6fad5 SHA512 
54e6391ec9fa3c3032c9609a1df0f2082947342a6ea48f3378686eec5bf14bc29ca2f7243ab74fa69b2b18a0749ab40417f59e7338cb5fdc1c4404fb00b6dd7d
 WHIRLPOOL 
178b94abd8a66484253eb10fba2cbf15e0443a58db02ea9c708e77c7fa18ff48cb7f5b6e8e563a2517fe1c9968a05f115a5f10f42e728e1f43054f26370d3d73

diff --git a/dev-haskell/fclabels/fclabels-2.0.2.3.ebuild 
b/dev-haskell/fclabels/fclabels-2.0.2.3.ebuild
new file mode 100644
index 000..0249b55
--- /dev/null
+++ b/dev-haskell/fclabels/fclabels-2.0.2.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="First class accessor labels implemented as lenses"
+HOMEPAGE="https://github.com/sebastiaanvisser/fclabels";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/mtl-1.0:=[profile?] =dev-haskell/transformers-0.2:=[profile?] 
=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.8
+   test? ( >=dev-haskell/hunit-1.2 
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   haskell
+   
+   This package provides first class labels that can act as
+   bidirectional record fields. The labels can be derived
+   automatically using Template Haskell which means you don't 
have
+   to write any boilerplate yourself. The labels are implemented as
+   lenses and are fully composable. Labels can be used to /get/,
+   /set/ and /modify/ parts of a datatype in a consistent way.
+   
+   See "Data.Label" for an introductory explanation.
+   
+   Internally lenses are not tied to Haskell functions directly,
+   but are implemented as arrows. Arrows allow the lenses to be run
+   in custom computational contexts. This approach allows us to
+   make partial lenses that point to fields of multi-constructor
+   datatypes in an elegant way.
+   
+   See the "Data.Label.Maybe" module for the use of 
partial labels.
+   
+   > 1.0.3 -> 1.0.4
+   >   - Bugfix to compile on GHC 6.12 again.
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/cabal-helper/

2015-10-22 Thread Sergei Trofimovich
commit: 34cbdc43b47ec40614ddb04ee93dc9b78f9b6686
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 22 21:25:06 2015 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 22 21:31:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34cbdc43

dev-haskell/cabal-helper: new package

"Simple interface to some of Cabal's configuration state used by ghc-mod",
a new depend of app-emacs/ghc-mod.

Bug: https://bugs.gentoo.org/show_bug.cgi?id=476352
Package-Manager: portage-2.2.23

 dev-haskell/cabal-helper/Manifest  |  1 +
 .../cabal-helper/cabal-helper-0.6.1.0.ebuild   | 31 ++
 dev-haskell/cabal-helper/metadata.xml  | 29 
 3 files changed, 61 insertions(+)

diff --git a/dev-haskell/cabal-helper/Manifest 
b/dev-haskell/cabal-helper/Manifest
new file mode 100644
index 000..732f043
--- /dev/null
+++ b/dev-haskell/cabal-helper/Manifest
@@ -0,0 +1 @@
+DIST cabal-helper-0.6.1.0.tar.gz 32694 SHA256 
57e81db2036ae1781e1002d448a1f7abe7fef2b689cf3a3c61689a89c30929df SHA512 
8c85b5e49f95acb74dc743a57e428ffe3f9801a9020e4601f28f10bd3e3f98910dc90d8b611162e61cda0eec06a48ab09bd23eaf82093a85427a4c8330f7
 WHIRLPOOL 
dab600db4e36d70b9d23163b166a8c34ea819074ea8848f319c31b211d41039a35bf4eaf6303323b5c441dd99797dce3d218e7021bf0e2927884ad0da4fec51d

diff --git a/dev-haskell/cabal-helper/cabal-helper-0.6.1.0.ebuild 
b/dev-haskell/cabal-helper/cabal-helper-0.6.1.0.ebuild
new file mode 100644
index 000..965156f
--- /dev/null
+++ b/dev-haskell/cabal-helper/cabal-helper-0.6.1.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+
+CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Simple interface to some of Cabal's configuration state used by 
ghc-mod"
+HOMEPAGE="http://hackage.haskell.org/package/cabal-helper";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="AGPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/cabal-1.14:=[profile?] 
=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.10
+   test? ( dev-haskell/extra:2 )
+"

diff --git a/dev-haskell/cabal-helper/metadata.xml 
b/dev-haskell/cabal-helper/metadata.xml
new file mode 100644
index 000..c37e984
--- /dev/null
+++ b/dev-haskell/cabal-helper/metadata.xml
@@ -0,0 +1,29 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   haskell
+   
+   @cabal-helper@ provides a library which wraps the internal use 
of executables
+   to lift the restrictions imposed by linking against versions of 
GHC before
+   @7.10@.
+   
+   @cabal-helper@ uses a wrapper executable to compile the actual 
cabal-helper
+   executable at runtime while linking against an arbitrary 
version of
+   Cabal. This runtime-compiled helper executable is then used to 
extract
+   various bits and peices from Cabal\'s on disk state 
(dist/setup-config)
+   written by it's configure command.
+   
+   In addition to this the wrapper executable also supports 
installing any
+   version of Cabal from hackage in case it cannot be found in any 
available
+   package database. The wrapper installs these instances of the 
Cabal library
+   into a private package database so as to not interfere with the 
user's
+   packages.
+   
+   Furthermore the wrapper supports one special case namely 
reading a state
+   file for Cabal itself. This is needed as Cabal compiles 
it's Setup.hs using
+   itself and not using any version of Cabal installed in any 
package database.
+   
+   @cabal-helper@ can compile with @Cabal >= 1.14@ but requires 
@Cabal >= 1.16@
+   at runtime.
+   
+



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

2015-10-22 Thread Manuel Rüger
commit: e1f1a4594ee91da209cc3bd404671d4ef92d7605
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 22 21:21:49 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 22 21:21:49 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e1f1a459

kde-apps/libkface: Moved to the tree

Package-Manager: portage-2.2.23

 kde-apps/libkface/libkface-15.04.3.ebuild | 19 ---
 kde-apps/libkface/libkface-15.08.2.ebuild | 19 ---
 2 files changed, 38 deletions(-)

diff --git a/kde-apps/libkface/libkface-15.04.3.ebuild 
b/kde-apps/libkface/libkface-15.04.3.ebuild
deleted file mode 100644
index 5cbeb56..000
--- a/kde-apps/libkface/libkface-15.04.3.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and 
detection"
-HOMEPAGE="http://api.kde.org/4.x-api/kdegraphics-apidocs/libs/libkface/libkface/html/index.html";
-
-LICENSE="GPL-2"
-IUSE=""
-
-KEYWORDS="~amd64 ~x86"
-
-DEPEND=">=media-libs/opencv-2.4.9"
-RDEPEND="${DEPEND}
-   !media-libs/libkface"

diff --git a/kde-apps/libkface/libkface-15.08.2.ebuild 
b/kde-apps/libkface/libkface-15.08.2.ebuild
deleted file mode 100644
index 5cbeb56..000
--- a/kde-apps/libkface/libkface-15.08.2.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and 
detection"
-HOMEPAGE="http://api.kde.org/4.x-api/kdegraphics-apidocs/libs/libkface/libkface/html/index.html";
-
-LICENSE="GPL-2"
-IUSE=""
-
-KEYWORDS="~amd64 ~x86"
-
-DEPEND=">=media-libs/opencv-2.4.9"
-RDEPEND="${DEPEND}
-   !media-libs/libkface"



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

2015-10-22 Thread Manuel Rüger
commit: 1755e26a298b6636fc83288cc5c0361e52091e71
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 22 21:22:21 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 22 21:22:21 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1755e26a

kde-apps/libkgeomap: Moved to the tree

Package-Manager: portage-2.2.23

 kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild | 23 ---
 1 file changed, 23 deletions(-)

diff --git a/kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild 
b/kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild
deleted file mode 100644
index 477ed3d..000
--- a/kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-VIRTUALX_REQUIRED="test"
-inherit kde4-base
-
-DESCRIPTION="Wrapper library for world map components as marble, openstreetmap 
and googlemap"
-HOMEPAGE="https://www.digikam.org/";
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   kde-apps/libkexiv2:4=
-   kde-apps/marble:4=[kde,plasma]
-"
-RDEPEND="${DEPEND}
-   !media-libs/libkgeomap
-"



[gentoo-commits] repo/gentoo:master commit in: games-action/openclonk/

2015-10-22 Thread Michael Sterrett
commit: 5b222a930f8600a7873330a7b0023f2316e7aa6a
Author: Michael Sterrett  gentoo  org>
AuthorDate: Thu Oct 22 21:13:16 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Thu Oct 22 21:13:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b222a93

add virtual/jpeg slot

Package-Manager: portage-2.2.20.1

 games-action/openclonk/openclonk-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-action/openclonk/openclonk-6.1.ebuild 
b/games-action/openclonk/openclonk-6.1.ebuild
index 8fb09ab..527f86c 100644
--- a/games-action/openclonk/openclonk-6.1.ebuild
+++ b/games-action/openclonk/openclonk-6.1.ebuild
@@ -33,7 +33,7 @@ RDEPEND="
media-libs/libvorbis
media-libs/openal
media-libs/sdl-mixer[mp3,vorbis,wav]
-   virtual/jpeg:=
+   virtual/jpeg:0=
virtual/opengl
virtual/glu
x11-libs/gdk-pixbuf



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

2015-10-22 Thread William Hubbs
commit: 15e4adef9f7ba22fc33515f28954a704c7c79dc7
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Oct 22 20:24:50 2015 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Oct 22 20:24:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e4adef

dev-lang/go: Do Not include testdata as part of the dependencies

This is for bug #563744

 dev-lang/go/go-1.4.2.ebuild | 2 ++
 dev-lang/go/go-1.5.1.ebuild | 2 ++
 dev-lang/go/go-1.5.ebuild   | 2 ++
 dev-lang/go/go-.ebuild  | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/dev-lang/go/go-1.4.2.ebuild b/dev-lang/go/go-1.4.2.ebuild
index 4de9d43..8384e08 100644
--- a/dev-lang/go/go-1.4.2.ebuild
+++ b/dev-lang/go/go-1.4.2.ebuild
@@ -32,6 +32,8 @@ QA_EXECSTACK="
usr/lib/go/src/debug/elf/testdata/go-relocation-test-gcc482-aarch64.obj
usr/lib/go/src/debug/elf/testdata/gcc-amd64-openbsd-debug-with-rela.obj"
 
+   REQUIRES_EXCLUDE="/usr/lib/go/src/debug/elf/testdata/*"
+
 # The tools in /usr/lib/go should not cause the multilib-strict check to fail.
 QA_MULTILIB_PATHS="usr/lib/go/pkg/tool/.*/.*"
 

diff --git a/dev-lang/go/go-1.5.1.ebuild b/dev-lang/go/go-1.5.1.ebuild
index b34ebb3..8d4c715 100644
--- a/dev-lang/go/go-1.5.1.ebuild
+++ b/dev-lang/go/go-1.5.1.ebuild
@@ -32,6 +32,8 @@ RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: sys-apps/dbus/

2015-10-22 Thread Mike Gilbert
commit: d70d0aa7803688a772677e2868a11b96904b56f7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 22 19:19:42 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 22 19:19:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d70d0aa7

sys-apps/dbus: Fix machine-id symlink when ROOT != /

Bug: https://bugs.gentoo.org/560646

Package-Manager: portage-2.2.23_p7

 sys-apps/dbus/dbus-1.8.16.ebuild | 2 +-
 sys-apps/dbus/dbus-1.8.18.ebuild | 2 +-
 sys-apps/dbus/dbus-1.8.20.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-apps/dbus/dbus-1.8.16.ebuild b/sys-apps/dbus/dbus-1.8.16.ebuild
index 1bba9db..c9b188d 100644
--- a/sys-apps/dbus/dbus-1.8.16.ebuild
+++ b/sys-apps/dbus/dbus-1.8.16.ebuild
@@ -223,7 +223,7 @@ pkg_postinst() {
# for DBUS_MACHINE_UUID_FILE (see tools/dbus-launch.c) and reverse
# dependencies with hardcoded paths (although the known ones got fixed 
already)
dbus-uuidgen --ensure="${EROOT%/}"/etc/machine-id
-   ln -sf "${EROOT%/}"/etc/machine-id "${EROOT%/}"/var/lib/dbus/machine-id
+   ln -sf "${EPREFIX}"/etc/machine-id "${EROOT%/}"/var/lib/dbus/machine-id
 
if [[ ${CHOST} == *-darwin* ]]; then
local plist="org.freedesktop.dbus-session.plist"

diff --git a/sys-apps/dbus/dbus-1.8.18.ebuild b/sys-apps/dbus/dbus-1.8.18.ebuild
index 824ceb8..ed5e8b2 100644
--- a/sys-apps/dbus/dbus-1.8.18.ebuild
+++ b/sys-apps/dbus/dbus-1.8.18.ebuild
@@ -227,7 +227,7 @@ pkg_postinst() {
# for DBUS_MACHINE_UUID_FILE (see tools/dbus-launch.c) and reverse
# dependencies with hardcoded paths (although the known ones got fixed 
already)
dbus-uuidgen --ensure="${EROOT%/}"/etc/machine-id
-   ln -sf "${EROOT%/}"/etc/machine-id "${EROOT%/}"/var/lib/dbus/machine-id
+   ln -sf "${EPREFIX}"/etc/machine-id "${EROOT%/}"/var/lib/dbus/machine-id
 
if [[ ${CHOST} == *-darwin* ]]; then
local plist="org.freedesktop.dbus-session.plist"

diff --git a/sys-apps/dbus/dbus-1.8.20.ebuild b/sys-apps/dbus/dbus-1.8.20.ebuild
index 824ceb8..ed5e8b2 100644
--- a/sys-apps/dbus/dbus-1.8.20.ebuild
+++ b/sys-apps/dbus/dbus-1.8.20.ebuild
@@ -227,7 +227,7 @@ pkg_postinst() {
# for DBUS_MACHINE_UUID_FILE (see tools/dbus-launch.c) and reverse
# dependencies with hardcoded paths (although the known ones got fixed 
already)
dbus-uuidgen --ensure="${EROOT%/}"/etc/machine-id
-   ln -sf "${EROOT%/}"/etc/machine-id "${EROOT%/}"/var/lib/dbus/machine-id
+   ln -sf "${EPREFIX}"/etc/machine-id "${EROOT%/}"/var/lib/dbus/machine-id
 
if [[ ${CHOST} == *-darwin* ]]; then
local plist="org.freedesktop.dbus-session.plist"



[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/, www-client/firefox/files/

2015-10-22 Thread Ian Stakenvicius
commit: e523f3623a71c92739775476319a72bec6d97637
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Oct 22 18:05:44 2015 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Oct 22 18:05:44 2015 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=e523f362

Removed 41.0.2-r1, the experiment failed.

 www-client/firefox/Manifest |   2 +-
 www-client/firefox/files/jit-hardened.patch |  11 -
 www-client/firefox/firefox-41.0.2-r1.ebuild | 420 
 3 files changed, 1 insertion(+), 432 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index df16049..d581e14 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -80,4 +80,4 @@ DIST firefox-41.0.2-zh-CN.xpi 486222 SHA256 
8c49c52b80937a00da8953ecb1bdd1c6505e
 DIST firefox-41.0.2-zh-TW.xpi 479033 SHA256 
a1b3661c004ead49b5b1adac7515de402319ae82b06121313deb51b1ec7fcb20 SHA512 
08a7e516fb556b1134a9a05c782b0312c5b4d8907d671be47a0aeedd1a0933fb22b0fd5ab6fcc7888a00258b06b420555752baeccacbea7de8e2d996578ba95b
 WHIRLPOOL 
40f955c3d9d96fa2a2a5ffdab65260d7dd06e9d10b855a0397baf72305002b517dfba55d75e762dbe1a3ea237a691c082b9a6cf1d0241fa055232f02349b46db
 DIST firefox-41.0.2.source.tar.xz 159761468 SHA256 
ff00689f4d2ff54c5eb7b3aa367560a3645800eb0c96e73a795e461461b1970e SHA512 
700c1f355436747f8707b4086dfa0865c87ca7d1c3a5a879347e3460b26158681716addf085dc2446b1eeaccf328b3f3d6282df8e00cd97d8affd97dd780b409
 WHIRLPOOL 
dd52ac3fa4c97ff0252eaf8530340a9baf515a0ad7afd121391c05de7fa030cd5151476073665a917568fe9c81cddc67109d19ad8f453ce601ff7ef4de148f08
 DIST firefox-42.0-patches-01b2.tar.xz 6424 SHA256 
6c8a89c75ea4a359bf720f011e1bb856b653cd6676767b33ccb9d2f807a089e3 SHA512 
d40266c98aa5bfeed243e3bd42f9146bc73492bd20bd07ac4941df83793a7e3a832220b65fc8c9eeb5f3a00089087251a2b758df5fc0d3dd3403468ec0b9eb53
 WHIRLPOOL 
93356507e31a5dca653a5fcc844c24acc1de6b2a01f3dbd7227c1e23eda4e8799a59cf1a50bb49b721249cb82c744d49f4671bfb7188275101c6de955afdb149
-DIST firefox-42.0b6.source.tar.xz 165774656 SHA256 
fbf1674306c4bf97c5f420811ccf761ef729148669560fd384355467d5f1dc0a SHA512 
ae5c30b4592bee65d3f4efbd7ceb383390534ccb0cd58a36b57f4a07af02d6a7bcebb3d98368714ffe5a228ab4a715ffdb75f7ddf8f50d6d1971fb9e1b05091e
 WHIRLPOOL 
7c9fa4f5e0a53fea6c8a0654d85c9b3673aa3fba38adc129cf1990b3b2cd558d966c4a7f1bdf35902489f6921560985a9637e94abf83dc3247c24a81472f8102
+DIST firefox-42.0b8.source.tar.xz 165772404 SHA256 
f813958903af24e0dd29c0647ff90e18596283b60fa10ea27f3b9c7fa1f10e82 SHA512 
e436607ba62604f7543fad30da33c49996f04895e3ba5c67ce69241a75ef34282e7e24cf986da54e226810815f21a005dd73b878ecc20ea098d46e26bf961d70
 WHIRLPOOL 
e210343f74a7cb15f7526a4aeaca2727012c14518bf394163ec1b4b16f8f9cb1c24c6c8203e007bdea44d3d74204ff138a1f989c9159a586a3a883532d19f5a7

diff --git a/www-client/firefox/files/jit-hardened.patch 
b/www-client/firefox/files/jit-hardened.patch
deleted file mode 100644
index 9fb48ea..000
--- a/www-client/firefox/files/jit-hardened.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/js/src/jit/ExecutableAllocator.cpp   2015-10-19 19:19:40.0 
-0400
-+++ b/js/src/jit/ExecutableAllocator.cpp   2015-10-20 12:35:37.995626076 
-0400
-@@ -88,7 +88,7 @@
- }
- }
- 
--#if TARGET_OS_IPHONE
-+#if ! TARGET_OS_IPHONE
- bool ExecutableAllocator::nonWritableJitCode = true;
- #else
- bool ExecutableAllocator::nonWritableJitCode = false;

diff --git a/www-client/firefox/firefox-41.0.2-r1.ebuild 
b/www-client/firefox/firefox-41.0.2-r1.ebuild
deleted file mode 100644
index 99807ee..000
--- a/www-client/firefox/firefox-41.0.2-r1.ebuild
+++ /dev/null
@@ -1,420 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-VIRTUALX_REQUIRED="pgo"
-WANT_AUTOCONF="2.1"
-MOZ_ESR=""
-
-# This list can be updated with scripts/get_langs.sh from the mozilla overlay
-# No official support as of fetch time
-# csb
-MOZ_LANGS=( af ar as ast be bg bn-BD bn-IN br bs ca cs cy da de el en
-en-GB en-US en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd
-gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko lt lv mai mk ml mr
-nb-NO nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta te
-th tr uk vi xh zh-CN zh-TW )
-
-# Convert the ebuild version to the upstream mozilla version, used by 
mozlinguas
-MOZ_PV="${PV/_alpha/a}" # Handle alpha for SRC_URI
-MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI
-MOZ_PV="${MOZ_PV/_rc/rc}" # Handle rc for SRC_URI
-
-if [[ ${MOZ_ESR} == 1 ]]; then
-   # ESR releases have slightly version numbers
-   MOZ_PV="${MOZ_PV}esr"
-fi
-
-# Patch version
-PATCH="${PN}-41.0-patches-01"
-MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/releases";
-
-MOZCONFIG_OPTIONAL_GTK3=1
-MOZCONFIG_OPTIONAL_WIFI=1
-# MOZCONFIG_OPTIONAL_JIT="enabled"
-
-inherit check-reqs flag-o-matic toolchain-funcs eutils gnome2-utils 
mozconfig-v6.41 multilib pax-utils fdo-mime autot

[gentoo-commits] repo/gentoo:master commit in: app-portage/smart-live-rebuild/

2015-10-22 Thread Mike Gilbert
commit: caf201258e66f638fed32e9bcbc7c2a3a5dbe18b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 22 17:50:35 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 22 17:50:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caf20125

app-portage/smart-live-rebuild: Add python3.5 support

Package-Manager: portage-2.2.23_p7

 app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild | 2 +-
 app-portage/smart-live-rebuild/smart-live-rebuild-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild 
b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild
index dea4ec7..e5d0edd 100644
--- a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild
+++ b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit distutils-r1
 

diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-.ebuild 
b/app-portage/smart-live-rebuild/smart-live-rebuild-.ebuild
index ab4da86..cdc4ac9 100644
--- a/app-portage/smart-live-rebuild/smart-live-rebuild-.ebuild
+++ b/app-portage/smart-live-rebuild/smart-live-rebuild-.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit distutils-r1
 



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

2015-10-22 Thread Mike Gilbert
commit: 202f0ed020fae1714702ea644ae26b64221215f5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 22 17:45:06 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 22 17:45:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=202f0ed0

app-portage/gentoopm: Add python3.5 support

Package-Manager: portage-2.2.23_p7

 app-portage/gentoopm/gentoopm-0.2.9.ebuild | 2 +-
 app-portage/gentoopm/gentoopm-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/gentoopm/gentoopm-0.2.9.ebuild 
b/app-portage/gentoopm/gentoopm-0.2.9.ebuild
index d1722d0..c8ff968 100644
--- a/app-portage/gentoopm/gentoopm-0.2.9.ebuild
+++ b/app-portage/gentoopm/gentoopm-0.2.9.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
 
 inherit distutils-r1
 

diff --git a/app-portage/gentoopm/gentoopm-.ebuild 
b/app-portage/gentoopm/gentoopm-.ebuild
index bc40c8d..7a48874 100644
--- a/app-portage/gentoopm/gentoopm-.ebuild
+++ b/app-portage/gentoopm/gentoopm-.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
 
 inherit distutils-r1
 



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

2015-10-22 Thread Mike Gilbert
commit: 140e8d39442dd6cd411f2ec75265d73feae1ba73
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 22 17:39:27 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 22 17:39:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=140e8d39

net-p2p/transmission: Refer to lrelease by absolute path

Bug: https://bugs.gentoo.org/563500

Package-Manager: portage-2.2.23_p4

 net-p2p/transmission/transmission-2.84-r3.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net-p2p/transmission/transmission-2.84-r3.ebuild 
b/net-p2p/transmission/transmission-2.84-r3.ebuild
index 4c99f38..3834c7c 100644
--- a/net-p2p/transmission/transmission-2.84-r3.ebuild
+++ b/net-p2p/transmission/transmission-2.84-r3.ebuild
@@ -102,10 +102,11 @@ src_compile() {
emake
 
if use qt4 || use qt5; then
-   use qt4 && local -x QT_SELECT=4
-   use qt5 && local -x QT_SELECT=5
+   local qt_bindir
+   use qt4 && qt_bindir=$(qt4_get_bindir)
+   use qt5 && qt_bindir=$(qt5_get_bindir)
emake -C qt
-   lrelease qt/translations/*.ts || die
+   "${qt_bindir}"/lrelease qt/translations/*.ts || die
fi
 }
 



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

2015-10-22 Thread Brian Dolbec
commit: f1862a45e6b7893b20a5fc8947cbaaab263d52ed
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Oct 22 17:31:00 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Oct 22 17:31:00 2015 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f1862a45

Gentoo-keys: Update gentoo-devs.seeds

 files/gentoo-keys/seeds/gentoo-devs.seeds |   4 ++--
 files/gentoo-keys/seeds/gentoo-devs.seeds.sig | Bin 639 -> 639 bytes
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/files/gentoo-keys/seeds/gentoo-devs.seeds 
b/files/gentoo-keys/seeds/gentoo-devs.seeds
index bbddd5d..b1037e2 100644
--- a/files/gentoo-keys/seeds/gentoo-devs.seeds
+++ b/files/gentoo-keys/seeds/gentoo-devs.seeds
@@ -2015,11 +2015,11 @@
 }, 
 "nerdboy": {
 "fingerprint": [
-"44EEF84F86F8733C9BB02377605EC01F47D46D61"
+"B7F957E80E0131F5CDBB86D9297FC399D6403BFC"
 ], 
 "keydir": "nerdboy", 
 "keys": [
-"44EEF84F86F8733C9BB02377605EC01F47D46D61"
+"B7F957E80E0131F5CDBB86D9297FC399D6403BFC"
 ], 
 "name": "Steve Arnold", 
 "nick": "nerdboy", 

diff --git a/files/gentoo-keys/seeds/gentoo-devs.seeds.sig 
b/files/gentoo-keys/seeds/gentoo-devs.seeds.sig
index 789814b..bc63943 100644
Binary files a/files/gentoo-keys/seeds/gentoo-devs.seeds.sig and 
b/files/gentoo-keys/seeds/gentoo-devs.seeds.sig differ



[gentoo-commits] proj/gkey-seeds:master commit in: /

2015-10-22 Thread Brian Dolbec
commit: 2267b83a6d495ea91b35aff18f53b921bd45aac7
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Oct 22 17:30:44 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Oct 22 17:30:44 2015 +
URL:https://gitweb.gentoo.org/proj/gkey-seeds.git/commit/?id=2267b83a

Gentoo-keys: Update gentoo-devs.seeds

 gentoo-devs.seeds |   4 ++--
 gentoo-devs.seeds.sig | Bin 639 -> 639 bytes
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gentoo-devs.seeds b/gentoo-devs.seeds
index bbddd5d..b1037e2 100644
--- a/gentoo-devs.seeds
+++ b/gentoo-devs.seeds
@@ -2015,11 +2015,11 @@
 }, 
 "nerdboy": {
 "fingerprint": [
-"44EEF84F86F8733C9BB02377605EC01F47D46D61"
+"B7F957E80E0131F5CDBB86D9297FC399D6403BFC"
 ], 
 "keydir": "nerdboy", 
 "keys": [
-"44EEF84F86F8733C9BB02377605EC01F47D46D61"
+"B7F957E80E0131F5CDBB86D9297FC399D6403BFC"
 ], 
 "name": "Steve Arnold", 
 "nick": "nerdboy", 

diff --git a/gentoo-devs.seeds.sig b/gentoo-devs.seeds.sig
index 789814b..bc63943 100644
Binary files a/gentoo-devs.seeds.sig and b/gentoo-devs.seeds.sig differ



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

2015-10-22 Thread Michael Palimaka
commit: b7ddd195093bbfbaff0b30f753f777e7cf6610b1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 17:08:21 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 17:10:15 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b7ddd195

kde-apps/libkexiv2: remove unused dependencies

Upstream-commit: 14b8339989e7f8c6c6a1176471b3230a37e1ed56
Upstream-commit: 37a2453f8b3e0c4eaa0b7f34a2959358f7cec477

Package-Manager: portage-2.2.20.1

 kde-apps/libkexiv2/libkexiv2-.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/kde-apps/libkexiv2/libkexiv2-.ebuild 
b/kde-apps/libkexiv2/libkexiv2-.ebuild
index a8b2208..73ef815 100644
--- a/kde-apps/libkexiv2/libkexiv2-.ebuild
+++ b/kde-apps/libkexiv2/libkexiv2-.ebuild
@@ -12,8 +12,6 @@ IUSE="+xmp"
 
 DEPEND="
dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
>=media-gfx/exiv2-0.25:=[xmp=]
 "
 RDEPEND="${DEPEND}"



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

2015-10-22 Thread Michael Palimaka
commit: 45fdc5c4ce1eba55d011b5d490b7659a09dede80
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 17:11:02 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 17:11:02 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=45fdc5c4

kde-apps/libkexiv2: don't block slot 4

Package-Manager: portage-2.2.20.1

 kde-apps/libkexiv2/libkexiv2-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/libkexiv2/libkexiv2-.ebuild 
b/kde-apps/libkexiv2/libkexiv2-.ebuild
index 73ef815..6b9f64b 100644
--- a/kde-apps/libkexiv2/libkexiv2-.ebuild
+++ b/kde-apps/libkexiv2/libkexiv2-.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+KDE_BLOCK_SLOT4="false"
 inherit kde5
 
 DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper"



[gentoo-commits] repo/gentoo:master commit in: net-wireless/wireless-regdb/

2015-10-22 Thread Richard Farina
commit: 80a85064f38e1d27cff81c16f5e4f17f90354f19
Author: Zero_Chaos  gentoo  org>
AuthorDate: Thu Oct 22 16:54:26 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Thu Oct 22 16:54:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80a85064

net-wireless/wireless-regdb: stable bump to 2015-10-22 release

Package-Manager: portage-2.2.23
RepoMan-Options: --force

 net-wireless/wireless-regdb/Manifest   |  3 +-
 .../wireless-regdb/wireless-regdb-20150313.ebuild  | 34 --
 ...50605.ebuild => wireless-regdb-20151022.ebuild} |  0
 3 files changed, 1 insertion(+), 36 deletions(-)

diff --git a/net-wireless/wireless-regdb/Manifest 
b/net-wireless/wireless-regdb/Manifest
index 1eb93f4..f479c00 100644
--- a/net-wireless/wireless-regdb/Manifest
+++ b/net-wireless/wireless-regdb/Manifest
@@ -1,5 +1,4 @@
 DIST wireless-regdb-2013.02.13.tar.xz 12752 SHA256 
314415cf9699b385e7f8fa770097069790987f9d5c6e5b944aceba3c0a3a29be SHA512 
93e4ac80f420155ca08d15fee99c209d27c0d068dd3d3bc10cb26ebbe1d834b7ce495fe041d8b2dc0c9ba477c0252f9d5c24d42ed3da252af3e19deddeb2b739
 WHIRLPOOL 
36278fe7f865980552f025ca90e3dd44a6efc064f099b5c3f76094038f02a7eeaa840d5001a540d78b7ada1ad10397c9ea8e82283475de4219fb62250fd77052
 DIST wireless-regdb-2014.11.18.tar.xz 15036 SHA256 
eab6b50f30748a8b0065ba38cf3df05aac161a5861ae0a6c3cfd01d38a71c9dd SHA512 
a55b7d8b0917aa171fedcff53a58fcdf770721597628da1fe9ad22e2119a80773e06e12e21b21fc1b95c1a5969870415f3cc3c22b3580be07a6872777659a1c5
 WHIRLPOOL 
a5d835af9298b14e0d2da7382b138cc66612e8a6d4872becaf673afee2d99ecf59d84f84d7506d6eabcc265d1d688c7fe1066dc42ecec775614622957921256c
-DIST wireless-regdb-2015.03.13.tar.xz 15116 SHA256 
5e6f00b8e23391de9b068b2400ac3172324e5f590fc424018bb5a1389ffe6f84 SHA512 
4215637bd8f242f172e1940cbfd05ac826f68ac76474a1587774e7e030bb5886cb47fef1f2bb6cd0a870275d44c5b5af487b44745e4ec87175ecdf75f1dfedb0
 WHIRLPOOL 
f3d66a7f4e16cb38120963ff3f7a8e8d6d7f909f0da4ea8f3fafbe24fb54d21b9ede83f56aa6891e6977d9574b59109b83c3efa5f3115a9a3772c6ff85703f66
-DIST wireless-regdb-2015.06.05.tar.xz 15392 SHA256 
69306cfd5ae97ae5f905e0e1e167b6ac8d28e49b58880621ad0024b59f4f8564 SHA512 
91de8e6464f3f7cf01c79bf2169c4a25549c14f9f2f8d3806a02a97ec1b81dac0e12caff9bc8709d36f62486b5f43a947cbaf5ae7ec6db349d176caf8c2f8d11
 WHIRLPOOL 
5ae910b287816f82847ee079e886de0b371d6ca2d0b2e21d3e47f7a427ac87e2487fc21ad55d88baf3df1fd94cc695a3aa13187d15ea7bf87a3cedd4f059cb10
 DIST wireless-regdb-2015.09.25.tar.xz 15420 SHA256 
06dbcfcd4c0835440b0787084e726b7ea1a707acfb53e17a3be08eff4ee2 SHA512 
264905b85d5806c87d4fceb4dff2dbdfbd7f1cb0648a1d42b827856e3e22080222d8b525a5197a3895bce3d7fb77f7596e21551099a1dfa96befcc2662ecb148
 WHIRLPOOL 
878b18a5b5ac49493249e78c13274758a91eaf34393a71363fde1708dd0f0cd6602b38926ac242afb7d950f0d107fc7347a2f9ef99b1976d970e62cdaa40c7e3
+DIST wireless-regdb-2015.10.22.tar.xz 15708 SHA256 
19ef80c2b9d24f0c483c32294258640b2510df1775ea1c6323e84cced02f1612 SHA512 
e52f876981861ff40eed3160c1e56d7c1aa9353dc60a27157af924e8bb4a91611c456d67b1f3b8e62a80da8cb39a2235e39e4427ccf192cc67f48aacd72f9dbc
 WHIRLPOOL 
fb899d679105acda72ed8709bcf26481f1cfe69ff9f005ac37d77c225a53f29aee1640b633f02666ad4e17969014901f1caad3abc7652fdd3c42bbf4820f9df5

diff --git a/net-wireless/wireless-regdb/wireless-regdb-20150313.ebuild 
b/net-wireless/wireless-regdb/wireless-regdb-20150313.ebuild
deleted file mode 100644
index bd7882a..000
--- a/net-wireless/wireless-regdb/wireless-regdb-20150313.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_P="wireless-regdb-${PV:0:4}.${PV:4:2}.${PV:6:2}"
-DESCRIPTION="Binary regulatory database for CRDA"
-HOMEPAGE="https://wireless.kernel.org/en/developers/Regulatory";
-SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${MY_P}.tar.xz";
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
-   einfo "Recompiling regulatory.bin from db.txt would break CRDA verify. 
Installing unmodified binary version."
-}
-
-src_install() {
-   # This file is not ABI-specific, and crda itself always hardcodes
-   # this path.  So install into a common location for all ABIs to use.
-   insinto /usr/lib/crda
-   doins regulatory.bin
-
-   insinto /etc/wireless-regdb/pubkeys
-   doins sforshee.key.pub.pem
-
-   doman regulatory.bin.5
-   dodoc README db.txt
-}

diff --git a/net-wireless/wireless-regdb/wireless-regdb-20150605.ebuild 
b/net-wireless/wireless-regdb/wireless-regdb-20151022.ebuild
similarity index 100%
rename from net-wireless/wireless-regdb/wireless-regdb-20150605.ebuild
rename to net-wireless/wireless-regdb/wireless-regdb-20151022.ebuild



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/metasploit/, dev-ruby/metasploit_data_models/

2015-10-22 Thread Richard Farina
commit: 6dbb8375cb31347371758a0622828bd2091d77be
Author: Zero_Chaos  gentoo  org>
AuthorDate: Thu Oct 22 16:51:51 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Thu Oct 22 16:51:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dbb8375

net-analyzer/metasploit: needs metasploit_data_models 1.2.8 now

 dev-ruby/metasploit_data_models/Manifest| 2 +-
 ...oit_data_models-1.2.7.ebuild => metasploit_data_models-1.2.8.ebuild} | 0
 net-analyzer/metasploit/metasploit-.ebuild  | 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/metasploit_data_models/Manifest 
b/dev-ruby/metasploit_data_models/Manifest
index 089d03b..773c310 100644
--- a/dev-ruby/metasploit_data_models/Manifest
+++ b/dev-ruby/metasploit_data_models/Manifest
@@ -1,2 +1,2 @@
 DIST metasploit_data_models-1.2.5.gem 170496 SHA256 
7aa426e8f0d69c7a2c00f916dfbbbd19817ec0fe5e55e2d1260fb37ff8b32e29 SHA512 
b7bb1f12da67b0a052cba68e5f870bc7512baba884573a79095abd4d55539c18956615bd7097f1c1260507222f80644a2d0a65bb9f3ca7cc4c45e275ee5c9500
 WHIRLPOOL 
d6702bdeb59e8dcac3516f2ba8be3a319348e6a08803bcc93a8beba6a76a6e3ca5ce8e46263f9e30c37f01c745ab4badd3665a3984f7ea6ae015bb4b8c3330ec
-DIST metasploit_data_models-1.2.7.gem 170496 SHA256 
b5c31cce2d94fed8129a23f08a54dc4dbdccfaaf302db3fb574d14c675434aa0 SHA512 
8380bec869fc506cfd3e8c7f128af102e2a0bc6ea22c6a2b6e7a19576a70907c504387bd020627a45067a2faac091c3e5ff4533cd786e19a99525b6b01192c87
 WHIRLPOOL 
29821d7ce975f07b63aa172ea962fd69ae9e9f3b2169a6d336442deee51fc6c66ad83e2a6d827a71ede3facd478c1453036d8b3290a5ba9173602cedb0a92b5e
+DIST metasploit_data_models-1.2.8.gem 171008 SHA256 
f1f071dc8504fdbdd3229a1b967688b806cd05584af54a31a8553ed824707be9 SHA512 
911fbb19da5f82875f1de844f67abd051bf682f6e67e8c79cabfdf669b448428b63d636ab3e34f1f809d740e18b2c31d7c6935b35314bb35306fb2cc528e9e3b
 WHIRLPOOL 
3eff006a616b2bff7027e37781976d4124ef066d0c4020f82be1f2ea6317aa8de830171fa1d947108efb5bb0ab1a552041f977e09b1b9395ac21ca7f4d4b56bc

diff --git 
a/dev-ruby/metasploit_data_models/metasploit_data_models-1.2.7.ebuild 
b/dev-ruby/metasploit_data_models/metasploit_data_models-1.2.8.ebuild
similarity index 100%
rename from dev-ruby/metasploit_data_models/metasploit_data_models-1.2.7.ebuild
rename to dev-ruby/metasploit_data_models/metasploit_data_models-1.2.8.ebuild

diff --git a/net-analyzer/metasploit/metasploit-.ebuild 
b/net-analyzer/metasploit/metasploit-.ebuild
index c929688..c833634 100644
--- a/net-analyzer/metasploit/metasploit-.ebuild
+++ b/net-analyzer/metasploit/metasploit-.ebuild
@@ -47,7 +47,7 @@ RUBY_COMMON_DEPEND="virtual/ruby-ssl
dev-ruby/json
dev-ruby/kissfft
dev-ruby/metasm:1.0.2
-   dev-ruby/metasploit_data_models:1.2.7
+   dev-ruby/metasploit_data_models:1.2.8
dev-ruby/meterpreter_bins:0.0.22
dev-ruby/metasploit-payloads:1.0.15
dev-ruby/metasploit-credential:1.0.1



[gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/

2015-10-22 Thread Paul Varner
commit: 1537ab55fffda2348753ce26d6d7c11de49d9032
Author: Paul Varner  gentoo  org>
AuthorDate: Thu Oct 22 16:09:30 2015 +
Commit: Paul Varner  gentoo  org>
CommitDate: Thu Oct 22 16:09:30 2015 +
URL:https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=1537ab55

gentoolkit: Fix to allow package names of all digits. Bug 562952

According to PMS, "A package name may contain any of the characters
[A-Za-z0-9+_-]. It must not begin with a hyphen or a plus sign, and must
not end in a hyphen followed by anything matching the version syntax".

This specification means that a package name can be composed of all
digits.

This fixes cpv.py and query.py to allow package names of all digits.

 pym/gentoolkit/cpv.py   | 2 +-
 pym/gentoolkit/query.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pym/gentoolkit/cpv.py b/pym/gentoolkit/cpv.py
index 473ae60..f1e3241 100644
--- a/pym/gentoolkit/cpv.py
+++ b/pym/gentoolkit/cpv.py
@@ -243,7 +243,7 @@ def isvalid_pkg_name(chunks):
mf = _pkg_re.match
if not all(not s or mf(s) for s in chunks):
return False
-   if chunks[-1].isdigit() or not chunks[-1]:
+   if not chunks[-1] or (len(chunks) > 1 and chunks[-1].isdigit()):
# not allowed.
return False
return True

diff --git a/pym/gentoolkit/query.py b/pym/gentoolkit/query.py
index df6e2fd..9d1a313 100644
--- a/pym/gentoolkit/query.py
+++ b/pym/gentoolkit/query.py
@@ -19,7 +19,7 @@ __all__ = (
 import fnmatch
 import re
 from functools import partial
-from string import ascii_letters
+from string import ascii_letters, digits
 
 import portage
 
@@ -47,7 +47,7 @@ class Query(CPV):
"""
 
# We need at least one of these chars for a valid query
-   needed_chars = ascii_letters + '*'
+   needed_chars = ascii_letters + digits + '*'
if not set(query).intersection(needed_chars):
raise errors.GentoolkitInvalidPackage(query)
 



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

2015-10-22 Thread Mike Gilbert
commit: 7408b987c4b42b138492d75b294c7e4f1c761597
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 22 16:10:23 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 22 16:10:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7408b987

www-client/google-chrome-beta: automated update

Package-Manager: portage-2.2.23_p4

 www-client/google-chrome-beta/Manifest| 4 ++--
 0.2526.16_p1.ebuild => google-chrome-beta-47.0.2526.27_p1.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 9c06977..a5742c5 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1,2 +1,2 @@
-DIST google-chrome-beta_47.0.2526.16-1_amd64.deb 47459896 SHA256 
14f68a8f849c929b47bdda112331427dc0f7d1659432f3589ef15603d873b8db SHA512 
ff081188efd4afe7446eb4df9dbc292d281b9775b54ff1a77a7ade6cdd9a2bb5257f918f1907cfda95bd01c8a9332c3ebe62b6bebff375f900f16557d20ab76b
 WHIRLPOOL 
7be3e86a9e36e4baa6a198af07b19590312b983b4f38d54b13659f8f12e99635d5881cec8bba3153392724cbdfb7e2b422726ab4e782b32ed0e024b7f16bd7f5
-DIST google-chrome-beta_47.0.2526.16-1_i386.deb 46820172 SHA256 
a5fe7b98413a6e5b0b4747576aaeb947a57e2751380741ab5159eca21132de2a SHA512 
2ddc79ae9910d3810b41549b9dd7e501dab176ae7e562eb9a3a235ff01632fb9a0dcf216cb5c619bd6f41475ccb37d7b977c107eb8e374914472613b0e8b4932
 WHIRLPOOL 
6ee0ac0436688986fa85d398672dbad1f58c9c81fddcf53f37b6eefa821ef7ecc26be5f6832d83f865fef5ba6995f0966453eea6f664bdda8741ef69fb6cd56a
+DIST google-chrome-beta_47.0.2526.27-1_amd64.deb 47182218 SHA256 
24f6a0b6c5c7593f941b12874620ae39eefa796030c0c8a3e5d0b6f650af5e51 SHA512 
5c84019746941f7c9adb6f147ec6db6b8aeb3147146a305b2464b1438733f292abe759e60b65dbebe57187a356e633a6110fc6ea6a9beef4136f57000b150a05
 WHIRLPOOL 
e392759a3e5c24b04d15fc6acfc7c9352af9427a0c6ef91a364be24562bf9c0ed0d27d923bf990de239da698478d87687be6b2d34c674d7ab9402f907a7b795c
+DIST google-chrome-beta_47.0.2526.27-1_i386.deb 47207988 SHA256 
70f70014f0b4c5529699c40171894e5aed0f575d79418399d8ad76bf9edc9f9d SHA512 
8df2307d24ae19e2022cb12b8f1472701c06a0e5d743308a10c52cff84e5434d63d8e0da1b4dd41ae0819b8611c6c8eac283b0ca38b7e5b08b5ead093c00cb3e
 WHIRLPOOL 
a1374d6023a08b945f45ae902cc6e24e48f85730522e2679331ab405ece418c8fbd40edce2098844165e072d07c9dbe9ca842fb9fc0c1fad3d44df1b094a80a9

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-47.0.2526.16_p1.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-47.0.2526.27_p1.ebuild
similarity index 100%
rename from 
www-client/google-chrome-beta/google-chrome-beta-47.0.2526.16_p1.ebuild
rename to 
www-client/google-chrome-beta/google-chrome-beta-47.0.2526.27_p1.ebuild



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

2015-10-22 Thread Mike Gilbert
commit: 6d822bb425b0c03e472a5e177fd1a18072e37e98
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 22 16:10:05 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 22 16:10:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d822bb4

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

Package-Manager: portage-2.2.23_p4

 www-plugins/chrome-binary-plugins/Manifest| 8 
 ...ha1.ebuild => chrome-binary-plugins-47.0.2526.27_beta1.ebuild} | 0
 ...ta1.ebuild => chrome-binary-plugins-48.0.2541.0_alpha1.ebuild} | 0
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 2564f95..49d0a2d 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,6 +1,6 @@
-DIST google-chrome-beta_47.0.2526.16-1_amd64.deb 47459896 SHA256 
14f68a8f849c929b47bdda112331427dc0f7d1659432f3589ef15603d873b8db SHA512 
ff081188efd4afe7446eb4df9dbc292d281b9775b54ff1a77a7ade6cdd9a2bb5257f918f1907cfda95bd01c8a9332c3ebe62b6bebff375f900f16557d20ab76b
 WHIRLPOOL 
7be3e86a9e36e4baa6a198af07b19590312b983b4f38d54b13659f8f12e99635d5881cec8bba3153392724cbdfb7e2b422726ab4e782b32ed0e024b7f16bd7f5
-DIST google-chrome-beta_47.0.2526.16-1_i386.deb 46820172 SHA256 
a5fe7b98413a6e5b0b4747576aaeb947a57e2751380741ab5159eca21132de2a SHA512 
2ddc79ae9910d3810b41549b9dd7e501dab176ae7e562eb9a3a235ff01632fb9a0dcf216cb5c619bd6f41475ccb37d7b977c107eb8e374914472613b0e8b4932
 WHIRLPOOL 
6ee0ac0436688986fa85d398672dbad1f58c9c81fddcf53f37b6eefa821ef7ecc26be5f6832d83f865fef5ba6995f0966453eea6f664bdda8741ef69fb6cd56a
+DIST google-chrome-beta_47.0.2526.27-1_amd64.deb 47182218 SHA256 
24f6a0b6c5c7593f941b12874620ae39eefa796030c0c8a3e5d0b6f650af5e51 SHA512 
5c84019746941f7c9adb6f147ec6db6b8aeb3147146a305b2464b1438733f292abe759e60b65dbebe57187a356e633a6110fc6ea6a9beef4136f57000b150a05
 WHIRLPOOL 
e392759a3e5c24b04d15fc6acfc7c9352af9427a0c6ef91a364be24562bf9c0ed0d27d923bf990de239da698478d87687be6b2d34c674d7ab9402f907a7b795c
+DIST google-chrome-beta_47.0.2526.27-1_i386.deb 47207988 SHA256 
70f70014f0b4c5529699c40171894e5aed0f575d79418399d8ad76bf9edc9f9d SHA512 
8df2307d24ae19e2022cb12b8f1472701c06a0e5d743308a10c52cff84e5434d63d8e0da1b4dd41ae0819b8611c6c8eac283b0ca38b7e5b08b5ead093c00cb3e
 WHIRLPOOL 
a1374d6023a08b945f45ae902cc6e24e48f85730522e2679331ab405ece418c8fbd40edce2098844165e072d07c9dbe9ca842fb9fc0c1fad3d44df1b094a80a9
 DIST google-chrome-stable_46.0.2490.71-1_amd64.deb 46987242 SHA256 
d70e55812164bf4f35f629af302ee53fc771ee4e00ffd26205e6541f3b6c8a96 SHA512 
eb1ac7c4336d5400fd3ed50767bfc04f4e045345a9d7702154c2ae11cb2ac377cc22b6b0f1f9dcee1245cf57671bb1460fc3f30b882b797635ca76f08c1731a8
 WHIRLPOOL 
a174d60bda0cd8e6e3a90ee3125bfc467064208b7f48803afb19cba4b4f1e6dbfb909dc2b46cd13606bc568dbcff7a815ba0086d5dd1fa0d49e81c56eec85dbb
 DIST google-chrome-stable_46.0.2490.71-1_i386.deb 46770472 SHA256 
4e931cedefb37ce905c51075c4a328202bfc97ec06eae37ff3b3fe26c6632aec SHA512 
f38b88c365afab4ed1d6a3e04a1b5c3e1ed1763a922e6f52f029afb9b95f724df331b8788343f407d0434999265ce6a9f60c04d6d8a293bc05299af08bd6029c
 WHIRLPOOL 
83ae90f1b7418fdbb9d362bc5d9d3b8a38dc2d3e1d3776aca19d1baf9b525b5aceec5b8d194c0f3e1b2e9d1dcc04fa1dedef7ca2de9325b14aa890e79ff8d12d
-DIST google-chrome-unstable_48.0.2535.0-1_amd64.deb 47698618 SHA256 
a107c14521652ffacced9754c039121ac027c25f0b568bceae0b85a2f5b9b5f5 SHA512 
fedeea38d7d67b261fe591c64f2ce132e3cfa79ceb7b877dda4af002ba76f5b01f72e324ee1ca62d762cc1fbafdc20905f0405cd47bef78208b0b225829468c4
 WHIRLPOOL 
ed4c03801275042fc3ce4665588d83db6b725a96ccd3b1f0c456c87b087ff2bb4fdffe516f5b68778500b23ff6c91533b1a865c13e31f219f735cb4dfce3326f
-DIST google-chrome-unstable_48.0.2535.0-1_i386.deb 46985194 SHA256 
2bc818bb6482c9974137fb79d8d456cab76061561daa45a7642c63e2408383b9 SHA512 
825f2202391a9fac791fd787d39de8f786251e1074057c41ad9ddd57c59bbc62a96d1bef31ea0de06a8a7bb0687b96a4bde7487a943cca98b8524a1a010daf1a
 WHIRLPOOL 
50374395238e4607638cea82bb62bfc42c6475f937385755696ba1a8da7b7e8560c65811743cabe64d4aba46c10c3ea372ecd16eac23a2d3df2ac764a9e5d4d3
+DIST google-chrome-unstable_48.0.2541.0-1_amd64.deb 47822896 SHA256 
96561ef74947ec511e20bee51bf7dc94e42ccdbc51a2180d61effe6907865d05 SHA512 
1e56c0489c0740fc7c4b095c66a35952cd1ea6374611498a302afc4cb9daa0553738cd80dfbb5bee7e66fe3bd12736a24e6ee0b9d94317f4f2b649a17bdfe092
 WHIRLPOOL 
4fb4d69e8422d486bc69460433ac442bea8c2fbe8c1b3b4c6fd3cf105aa75b2123f37879abf3625cd694c72fe292c4a5675049dbe3795330cfcc0f7d327e78cd
+DIST google-chrome-unstable_48.0.2541.0-1_i386.deb 47379976 SHA256 
03576fef4165fe77ad32bf3faa4c787120fd342323b8ffb8098b381437fe6351 SHA512 
7376c3a0e0ba48f5325195190495a7d45abf037446a8ef6710d5f4a309bed0c4cb7179592d0b06341bece887b525a5a9a6ddf3ab5f51e31259615acf32d02556
 WHIRLPOOL 
91bc6c30fb0b04b9d54c07afb16a769578d110439db547e32266ecb3e57a9a362bb756f4055f35e3266abed5f2143b9b577ef01d1508c4c1d669f

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

2015-10-22 Thread Mike Gilbert
commit: cab2525e4aad73ab017c1d6166e753a39f416457
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 22 16:10:14 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 22 16:10:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cab2525e

www-client/google-chrome-unstable: automated update

Package-Manager: portage-2.2.23_p4

 www-client/google-chrome-unstable/Manifest| 4 ++--
 2535.0_p1.ebuild => google-chrome-unstable-48.0.2541.0_p1.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index aca7666..62aef2c 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1,2 +1,2 @@
-DIST google-chrome-unstable_48.0.2535.0-1_amd64.deb 47698618 SHA256 
a107c14521652ffacced9754c039121ac027c25f0b568bceae0b85a2f5b9b5f5 SHA512 
fedeea38d7d67b261fe591c64f2ce132e3cfa79ceb7b877dda4af002ba76f5b01f72e324ee1ca62d762cc1fbafdc20905f0405cd47bef78208b0b225829468c4
 WHIRLPOOL 
ed4c03801275042fc3ce4665588d83db6b725a96ccd3b1f0c456c87b087ff2bb4fdffe516f5b68778500b23ff6c91533b1a865c13e31f219f735cb4dfce3326f
-DIST google-chrome-unstable_48.0.2535.0-1_i386.deb 46985194 SHA256 
2bc818bb6482c9974137fb79d8d456cab76061561daa45a7642c63e2408383b9 SHA512 
825f2202391a9fac791fd787d39de8f786251e1074057c41ad9ddd57c59bbc62a96d1bef31ea0de06a8a7bb0687b96a4bde7487a943cca98b8524a1a010daf1a
 WHIRLPOOL 
50374395238e4607638cea82bb62bfc42c6475f937385755696ba1a8da7b7e8560c65811743cabe64d4aba46c10c3ea372ecd16eac23a2d3df2ac764a9e5d4d3
+DIST google-chrome-unstable_48.0.2541.0-1_amd64.deb 47822896 SHA256 
96561ef74947ec511e20bee51bf7dc94e42ccdbc51a2180d61effe6907865d05 SHA512 
1e56c0489c0740fc7c4b095c66a35952cd1ea6374611498a302afc4cb9daa0553738cd80dfbb5bee7e66fe3bd12736a24e6ee0b9d94317f4f2b649a17bdfe092
 WHIRLPOOL 
4fb4d69e8422d486bc69460433ac442bea8c2fbe8c1b3b4c6fd3cf105aa75b2123f37879abf3625cd694c72fe292c4a5675049dbe3795330cfcc0f7d327e78cd
+DIST google-chrome-unstable_48.0.2541.0-1_i386.deb 47379976 SHA256 
03576fef4165fe77ad32bf3faa4c787120fd342323b8ffb8098b381437fe6351 SHA512 
7376c3a0e0ba48f5325195190495a7d45abf037446a8ef6710d5f4a309bed0c4cb7179592d0b06341bece887b525a5a9a6ddf3ab5f51e31259615acf32d02556
 WHIRLPOOL 
91bc6c30fb0b04b9d54c07afb16a769578d110439db547e32266ecb3e57a9a362bb756f4055f35e3266abed5f2143b9b577ef01d1508c4c1d669f417014d33b5

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-48.0.2535.0_p1.ebuild
 
b/www-client/google-chrome-unstable/google-chrome-unstable-48.0.2541.0_p1.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-48.0.2535.0_p1.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-48.0.2541.0_p1.ebuild



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

2015-10-22 Thread Ian Stakenvicius
commit: 2956fc66e49e9d2ab5ded8cd6b293c86875e2025
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Oct 22 16:07:39 2015 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Oct 22 16:08:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2956fc66

app-portage/eix: workaround gettext issue when USE=-nls

Gentoo bug 563680

Package-Manager: portage-2.2.20.1

 app-portage/eix/Manifest | 2 +-
 app-portage/eix/{eix-0.31.0.ebuild => eix-0.31.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 250765b..2654101 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -3,4 +3,4 @@ DIST eix-0.30.11.tar.bz2 790760 SHA256 
bea8ddce48fd65d389ee0497baaeb4fa966b9d67f
 DIST eix-0.30.4.tar.xz 556632 SHA256 
4c753a82e15ce0f8bbdd74edcebb7bc23bd3de8dfca501f86733c335b55d9f4f SHA512 
33e62765a9790d18256fcbcb4370b2e63f0b927e3088e0685cbc23dad47e0afa488bb84e5268b4da0d70b5a93b080a866e56257e3df21714ef5fd867f3de182e
 WHIRLPOOL 
5731b6c36f8212fdb4e6b599224699cfc258a1026ef9f8ed8e95618e86df02b5872e7b1f170a3f0698bd348a5084161463d71e6fa14dff859ca92c9b3072dfc2
 DIST eix-0.30.7.tar.xz 558144 SHA256 
ed000a8430ffb1c9087807d2ef686b10252d9b199e67c88f7bce11077a371473 SHA512 
babb23176e68d47bcc5d899090abb326eae6b3ce4c587a6cf977c6216d193f4cf93dd54a647e50f08434440e022f117c8e5f800f1db2c048220bd229fd6cd4f5
 WHIRLPOOL 
0a27efa1c8003ae23ab96cb93672f38120828dc75cc333450e19026b7505c19ee411b42261049192c009a57b22c15c9ed5c9b7875171a039b21bbc142d220904
 DIST eix-0.30.8.tar.xz 559076 SHA256 
525c5d0276b8d40de012668af36042ecb674175c3b92fb9214c3f1f1b0dacaec SHA512 
ee1901037507d3e527d5e37338efb4b9c38c4d42efae042918d0e24e8bd08ece0064ac2efec960fc3280bc2bb14b46d87b66d6c04aa634c8737276321f580255
 WHIRLPOOL 
d29d6cf704ef331621cf9b6e37433de643b43cc8b079295cbaa6f25979a399ef0b5e72ddaee3de205b8dd831de946e16b96d5c1f9b63666027a5a9b8f6d24e08
-DIST eix-0.31.0.tar.bz2 791226 SHA256 
b3d3b42be2a6500249d9af4325e8a85d27b98bcf264f7dfc75543be8a9b116cc SHA512 
7ed0a2def1e8bce13168a503850723231f341fdade7ba5435ef9e2a57f1fb3c9f6bf4d786c0b58a754f0c5fcf1e195fa7154bb582af8ab5e5c14863d0cef3b6d
 WHIRLPOOL 
7507fd0a13f4b06bf3f3c5302638d3d09aa0b4a7b932aa0fe764634e547bbbebcfc38c0df7d418720657535aec80389cb1331453f414407d7fb12fd2ddc96b42
+DIST eix-0.31.1.tar.bz2 791116 SHA256 
1402d474ee3d1dc6fcfe35508657629d4a5aef6cbe1913687fa65c8e139f3fdf SHA512 
7fdd579f884f92bf58a876c89c4f397610c2af8da0c47382bf25b8d4919d1f24713fd8029ab82c73a9be382e51b1aac78476d006961620f12c0386fe864b6c22
 WHIRLPOOL 
3ea640ab80a6119497323312b4b527aa8060597ed09d29a43d68abf3ae20bafeb793c6df1890a2e433f5d77485b14dfa507795fc7e9e0d7e2b69dd16668c5aa8

diff --git a/app-portage/eix/eix-0.31.0.ebuild 
b/app-portage/eix/eix-0.31.1.ebuild
similarity index 100%
rename from app-portage/eix/eix-0.31.0.ebuild
rename to app-portage/eix/eix-0.31.1.ebuild



[gentoo-commits] data/gentoo-news:master commit in: 2015-10-22-gcc-5-new-c++11-abi/

2015-10-22 Thread Mike Frysinger
commit: 9e7f85087d04f931cba57ba019a8842a8af9470b
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Oct 22 13:56:54 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Oct 22 16:04:55 2015 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=9e7f8508

gcc-5: news item about C++ ABI breakage

 .../2015-10-22-gcc-5-new-c++11-abi.en.txt   | 21 +
 1 file changed, 21 insertions(+)

diff --git 
a/2015-10-22-gcc-5-new-c++11-abi/2015-10-22-gcc-5-new-c++11-abi.en.txt 
b/2015-10-22-gcc-5-new-c++11-abi/2015-10-22-gcc-5-new-c++11-abi.en.txt
new file mode 100644
index 000..5f6ffbb
--- /dev/null
+++ b/2015-10-22-gcc-5-new-c++11-abi/2015-10-22-gcc-5-new-c++11-abi.en.txt
@@ -0,0 +1,21 @@
+Title: GCC 5 Defaults to the New C++11 ABI
+Author: Mike Frysinger 
+Content-Type: text/plain
+Posted: 2015-10-22
+Revision: 1
+News-Item-Format: 1.0
+Display-If-Installed: >=sys-devel/gcc-5
+
+GCC 5 uses the new C++ ABI by default.  When building new code, you might run
+into link time errors that include lines similar to:
+...: undefined reference to '_ZNSt6chrono12steady_clock3nowEv@GLIBCXX_3.4.17'
+
+Or you might see linkage failures with "std::__cxx11::string" in the output.
+
+These are signs that you need to rebuild packages using the new C++ ABI.
+You can quickly do so by using revdep-rebuild (from gentoolkit) like so:
+# revdep-rebuild --library 'libstdc\+\+\.so\.6' -- --exclude gcc
+
+For more details, feel free to peruse:
+https://developerblog.redhat.com/2015/02/05/gcc5-and-the-c11-abi/
+https://blogs.gentoo.org/blueness/2015/03/10/the-c11-abi-incompatibility-problem-in-gentoo/



[gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/

2015-10-22 Thread Michael Palimaka
commit: d812727501afd318b4aced719afc8720428a0b18
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 15:52:53 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 15:53:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8127275

media-gfx/digikam: fix invalid atom

Gentoo-bug: 563808

Package-Manager: portage-2.2.20.1

 media-gfx/digikam/digikam-4.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/digikam/digikam-4.12.0.ebuild 
b/media-gfx/digikam/digikam-4.12.0.ebuild
index bb4c04b..e78ff14 100644
--- a/media-gfx/digikam/digikam-4.12.0.ebuild
+++ b/media-gfx/digikam/digikam-4.12.0.ebuild
@@ -29,7 +29,7 @@ CDEPEND="
kde-apps/libkdcraw:4=
kde-apps/libkexiv2:4=
>=kde-apps/libkface-4.12.0:4
-   >=kde-appslibkgeomap-4.12.0:4=
+   >=kde-apps/libkgeomap-4.12.0:4=
kde-apps/libkipi:4
kde-apps/marble:4=[plasma]
kde-apps/kcmshell:4



[gentoo-commits] repo/gentoo:master commit in: mail-client/trojita/files/, mail-client/trojita/

2015-10-22 Thread Michael Palimaka
commit: e34323fc29c3ef1afeb54b727766c33b64c1eb6c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 15:49:57 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 15:50:48 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e34323fc

mail-client/trojita: backport patch from upstream to solve build failure with 
Qt 5.5

Gentoo-bug: 563556

Package-Manager: portage-2.2.20.1

 .../trojita/files/trojita-0.5-qt5.5-includes.patch | 40 ++
 mail-client/trojita/trojita-0.5.ebuild |  1 +
 2 files changed, 41 insertions(+)

diff --git a/mail-client/trojita/files/trojita-0.5-qt5.5-includes.patch 
b/mail-client/trojita/files/trojita-0.5-qt5.5-includes.patch
new file mode 100644
index 000..31bc62d
--- /dev/null
+++ b/mail-client/trojita/files/trojita-0.5-qt5.5-includes.patch
@@ -0,0 +1,40 @@
+From 8a2496c273f2b0034f0edcc525e4987938a86c50 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= 
+Date: Tue, 10 Mar 2015 14:41:20 +0100
+Subject: [PATCH] Fix build with (unreleased) Qt 5.5
+
+It is our fault for not including the headers we need, of course.
+
+Change-Id: Ibaa1df4a8b763bf6ae611c85cbdeeac5d2e3f9fd
+---
+ src/AbookAddressbook/AbookAddressbook.h | 1 +
+ src/Imap/Model/MailboxMetadata.cpp  | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/src/AbookAddressbook/AbookAddressbook.h 
b/src/AbookAddressbook/AbookAddressbook.h
+index 787661b..6f0634d 100644
+--- a/src/AbookAddressbook/AbookAddressbook.h
 b/src/AbookAddressbook/AbookAddressbook.h
+@@ -25,6 +25,7 @@
+ #ifndef ABOOK_ADDRESSBOOK
+ #define ABOOK_ADDRESSBOOK
+ 
++#include 
+ #include 
+ #include "Gui/AbstractAddressbook.h"
+ 
+diff --git a/src/Imap/Model/MailboxMetadata.cpp 
b/src/Imap/Model/MailboxMetadata.cpp
+index d5d2323..0dba1cd 100644
+--- a/src/Imap/Model/MailboxMetadata.cpp
 b/src/Imap/Model/MailboxMetadata.cpp
+@@ -20,6 +20,7 @@
+along with this program.  If not, see .
+ */
+ #include "MailboxMetadata.h"
++#include 
+ 
+ namespace Imap
+ {
+-- 
+1.8.3.2
+

diff --git a/mail-client/trojita/trojita-0.5.ebuild 
b/mail-client/trojita/trojita-0.5.ebuild
index b0bfd16..171063d 100644
--- a/mail-client/trojita/trojita-0.5.ebuild
+++ b/mail-client/trojita/trojita-0.5.ebuild
@@ -60,6 +60,7 @@ DEPEND="${RDEPEND}
 "
 
 DOCS="README LICENSE"
+PATCHES=( "${FILESDIR}/${P}-qt5.5-includes.patch" )
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: sys-devel/distcc/

2015-10-22 Thread Sergey Popov
commit: 730e9ee0159451cb3d6700ed2ccce4647b8475aa
Author: Sergey Popov  gentoo  org>
AuthorDate: Thu Oct 22 15:38:39 2015 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Thu Oct 22 15:38:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=730e9ee0

sys-devel/distcc: fix documentation path

Documentation about using distcc in Gentoo were moved to wiki,
fix apropriate URLs

Gentoo-Bug: 534502

Package-Manager: portage-2.2.20

 sys-devel/distcc/distcc-3.1-r10.ebuild| 2 +-
 sys-devel/distcc/distcc-3.2_rc1-r4.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/distcc/distcc-3.1-r10.ebuild 
b/sys-devel/distcc/distcc-3.1-r10.ebuild
index bb6f38b..f700ea2 100644
--- a/sys-devel/distcc/distcc-3.1-r10.ebuild
+++ b/sys-devel/distcc/distcc-3.1-r10.ebuild
@@ -147,7 +147,7 @@ pkg_postinst() {
fi
elog
elog "Tips on using distcc with Gentoo can be found at"
-   elog "https://www.gentoo.org/doc/en/distcc.xml";
+   elog "https://wiki.gentoo.org/wiki/Distcc";
elog
elog "How to use pump mode with Gentoo:"
elog "# distcc-config --set-hosts \"foo,cpp,lzo bar,cpp,lzo 
baz,cpp,lzo\""

diff --git a/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild 
b/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild
index 5dbdc16..88b8108 100644
--- a/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild
+++ b/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild
@@ -170,7 +170,7 @@ pkg_postinst() {
 
elog
elog "Tips on using distcc with Gentoo can be found at"
-   elog "https://www.gentoo.org/doc/en/distcc.xml";
+   elog "https://wiki.gentoo.org/wiki/Distcc";
elog
elog "How to use pump mode with Gentoo:"
elog "# distcc-config --set-hosts \"foo,cpp,lzo bar,cpp,lzo 
baz,cpp,lzo\""



[gentoo-commits] repo/gentoo:master commit in: sys-devel/distcc/files/, sys-devel/distcc/, sys-devel/distcc/files/3.2/

2015-10-22 Thread Sergey Popov
commit: b64eb2f7af96867a39670527daa637bc05e2
Author: Sergey Popov  gentoo  org>
AuthorDate: Thu Oct 22 15:14:39 2015 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Thu Oct 22 15:17:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b64eb2f7

sys-devel/distcc: revision bump

Distcc-config appears to be installed twice, which is wrong.
Also, create separate subdirectory for config files and initscripts,
related to 3.2 branch of package. Drop old revision.

Gentoo-Bug: 523658

Package-Manager: portage-2.2.20

 ...-3.2_rc1-r3.ebuild => distcc-3.2_rc1-r4.ebuild} |  8 ++---
 sys-devel/distcc/files/3.2/conf| 40 ++
 .../{distcc-config-3.2_rc1 => 3.2/distcc-config}   |  0
 sys-devel/distcc/files/3.2/init| 32 +
 4 files changed, 75 insertions(+), 5 deletions(-)

diff --git a/sys-devel/distcc/distcc-3.2_rc1-r3.ebuild 
b/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild
similarity index 96%
rename from sys-devel/distcc/distcc-3.2_rc1-r3.ebuild
rename to sys-devel/distcc/distcc-3.2_rc1-r4.ebuild
index 29e2e0f..5dbdc16 100644
--- a/sys-devel/distcc/distcc-3.2_rc1-r3.ebuild
+++ b/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild
@@ -76,7 +76,7 @@ src_prepare() {
sed \
-e "s:@EPREFIX@:${EPREFIX:-/}:" \
-e "s:@libdir@:/usr/$(get_libdir):" \
-   "${FILESDIR}/distcc-config-3.2_rc1" > "${T}/distcc-config" || 
die
+   "${FILESDIR}/3.2/distcc-config" > "${T}/distcc-config" || die
 
eaclocal -Im4 --output=aclocal.m4
eautoconf
@@ -102,13 +102,11 @@ src_install() {
default
python_optimize
 
-   dobin "${FILESDIR}/3.0/distcc-config"
-
-   newinitd "${FILESDIR}/3.1/init" distccd
+   newinitd "${FILESDIR}/3.2/init" distccd
systemd_dounit "${FILESDIR}/distccd.service"
systemd_install_serviced "${FILESDIR}/distccd.service.conf"
 
-   cp "${FILESDIR}/3.0/conf" "${T}/distccd" || die
+   cp "${FILESDIR}/3.2/conf" "${T}/distccd" || die
if use avahi; then
cat >> "${T}/distccd" <<-EOF
 

diff --git a/sys-devel/distcc/files/3.2/conf b/sys-devel/distcc/files/3.2/conf
new file mode 100644
index 000..c499271
--- /dev/null
+++ b/sys-devel/distcc/files/3.2/conf
@@ -0,0 +1,40 @@
+# /etc/conf.d/distccd: config file for /etc/init.d/distccd
+
+DISTCCD_OPTS=""
+
+# this is the distccd executable 
+DISTCCD_EXEC="/usr/bin/distccd"
+
+# this is where distccd will store its pid file
+DISTCCD_PIDFILE="/var/run/distccd/distccd.pid"
+
+# set this option to run distccd with extra parameters
+# Default port is 3632.  For most people the default is okay.
+DISTCCD_OPTS="${DISTCCD_OPTS} --port 3632"
+
+# Logging
+# You can change some logging options here:
+# --log-file FILE
+# --log-level LEVEL  [critical,error,warning, notice, info, debug]
+#
+# Leaving --log-file blank will log to syslog
+# example: --log-file /dev/null --log-level warning
+# example: --log-level critical
+
+DISTCCD_OPTS="${DISTCCD_OPTS} --log-level critical"
+
+# SECURITY NOTICE:
+# It is HIGHLY recommended that you use the --listen option
+# for increased security. You can specify an IP to permit connections 
+# from or a CIDR mask
+# --listen accepts only a single IP
+# --allow is now mandatory as of distcc-2.18.
+# example:  --allow 192.168.0.0/24
+# example:  --allow 192.168.0.5 --allow 192.168.0.150
+# example:  --listen 192.168.0.2
+DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.0.0/24"
+#DISTCCD_OPTS="${DISTCCD_OPTS} --listen 192.168.0.2"
+
+# set this for niceness
+# Default is 15
+DISTCCD_OPTS="${DISTCCD_OPTS} -N 15"

diff --git a/sys-devel/distcc/files/distcc-config-3.2_rc1 
b/sys-devel/distcc/files/3.2/distcc-config
similarity index 100%
rename from sys-devel/distcc/files/distcc-config-3.2_rc1
rename to sys-devel/distcc/files/3.2/distcc-config

diff --git a/sys-devel/distcc/files/3.2/init b/sys-devel/distcc/files/3.2/init
new file mode 100644
index 000..f7009f6
--- /dev/null
+++ b/sys-devel/distcc/files/3.2/init
@@ -0,0 +1,32 @@
+#!/sbin/runscript
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+depend() {
+   need net
+   use avahi-daemon ypbind
+}
+
+start() {
+   ebegin "Starting distccd"
+
+   if [ ! -e /var/run/distccd ] ; then
+   mkdir -p /var/run/distccd
+   chown distcc:daemon /var/run/distccd
+   fi
+
+   # Load PATH and GCC_SPECS from gcc-config, bug #262773
+   eval "$(gcc-config -E)"
+
+   start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" --user 
distcc -- \
+   --daemon --pid-file "${DISTCCD_PIDFILE}" \
+   ${DISTCCD_OPTS}
+   eend $?
+}
+
+stop() {
+   ebegin "Stopping distccd"
+   start-stop-daemon --stop --quiet --pidfile "${DISTCCD_PIDFILE}"
+   eend $?
+}



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

2015-10-22 Thread Vadim A. Misbakh-Soloviov
commit: c7ad9e217b29b03077896efae546668b2f6d8ce6
Author: Vadim A. Misbakh-Soloviov  mva  name>
AuthorDate: Thu Oct 22 15:16:34 2015 +
Commit: Vadim A. Misbakh-Soloviov  mva  name>
CommitDate: Thu Oct 22 15:16:34 2015 +
URL:https://gitweb.gentoo.org/proj/lua.git/commit/?id=c7ad9e21

luasocket: fix installing

Signed-off-by: Vadim A. Misbakh-Soloviov  mva.name>

 dev-lua/luasocket/luasocket-.ebuild | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-lua/luasocket/luasocket-.ebuild 
b/dev-lua/luasocket/luasocket-.ebuild
index f42088f..6b0afaa 100644
--- a/dev-lua/luasocket/luasocket-.ebuild
+++ b/dev-lua/luasocket/luasocket-.ebuild
@@ -76,11 +76,11 @@ each_lua_configure() {
-i .lua_eclass_config
 }
 
-each_lua_install() {
-   myeinstallargs=()
-   if ! use elibc_Winnt && ! use elibc_Cygwin; then
-   myeinstallargs+=( "install-unix" )
-   fi
-
-   lua_default
-}
+#each_lua_install() {
+#  myeinstallargs=()
+#  if ! use elibc_Winnt && ! use elibc_Cygwin; then
+#  myeinstallargs+=( "install-unix" )
+#  fi
+#
+#  lua_default
+#}



[gentoo-commits] repo/gentoo:master commit in: sys-devel/distcc/

2015-10-22 Thread Sergey Popov
commit: 64efb28cf11ec7061a37890f6bbbca43a4629b0c
Author: Sergey Popov  gentoo  org>
AuthorDate: Thu Oct 22 14:47:40 2015 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Thu Oct 22 14:53:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64efb28c

sys-devel/distcc: fix path to make.conf in pkg_postinst tips section

Tips section about how to use distcc mentioned old location for make.conf
file

Gentoo-Bug: 42

Package-Manager: portage-2.2.23

 sys-devel/distcc/distcc-3.2_rc1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/distcc/distcc-3.2_rc1-r3.ebuild 
b/sys-devel/distcc/distcc-3.2_rc1-r3.ebuild
index cf5537b..29e2e0f 100644
--- a/sys-devel/distcc/distcc-3.2_rc1-r3.ebuild
+++ b/sys-devel/distcc/distcc-3.2_rc1-r3.ebuild
@@ -176,7 +176,7 @@ pkg_postinst() {
elog
elog "How to use pump mode with Gentoo:"
elog "# distcc-config --set-hosts \"foo,cpp,lzo bar,cpp,lzo 
baz,cpp,lzo\""
-   elog "# echo 'FEATURES=\"\${FEATURES} distcc distcc-pump\"' >> 
/etc/make.conf"
+   elog "# echo 'FEATURES=\"\${FEATURES} distcc distcc-pump\"' >> 
/etc/portage/make.conf"
elog "# emerge -u world"
elog
elog "To use the distccmon programs with Gentoo you should use this 
command:"



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

2015-10-22 Thread Christoph Mende
commit: c7704979123d5ab3c2f248edf7bd5828b7ab2dd1
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 14:26:35 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 14:26:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7704979

media-sound/mpdas: revbump to reliably propagate dep changes

Package-Manager: portage-2.2.23

 media-sound/mpdas/{mpdas-0.4.0.ebuild => mpdas-0.4.0-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/media-sound/mpdas/mpdas-0.4.0.ebuild 
b/media-sound/mpdas/mpdas-0.4.0-r1.ebuild
similarity index 100%
rename from media-sound/mpdas/mpdas-0.4.0.ebuild
rename to media-sound/mpdas/mpdas-0.4.0-r1.ebuild



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

2015-10-22 Thread Christoph Mende
commit: d39a50eb9f97de148256fecd2e50afe3bac553f4
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 14:00:27 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 14:00:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d39a50eb

media-sound/mpdas: mpdas-0.4.0 depends on libmpdclient instead of libmpd

Package-Manager: portage-2.2.23

 media-sound/mpdas/mpdas-0.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/mpdas/mpdas-0.4.0.ebuild 
b/media-sound/mpdas/mpdas-0.4.0.ebuild
index 1e124dd..9e4ffc4 100644
--- a/media-sound/mpdas/mpdas-0.4.0.ebuild
+++ b/media-sound/mpdas/mpdas-0.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SLOT="0"
 KEYWORDS="amd64 ~x86"
 IUSE=""
 
-RDEPEND="media-libs/libmpd
+RDEPEND="media-libs/libmpdclient
net-misc/curl"
 DEPEND="${RDEPEND}
virtual/pkgconfig"



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/contrib/

2015-10-22 Thread Jason Zaman
commit: 56782f09e37e1fbd0868f38084563d9f1aa0f8c7
Author: Luis Ressel  aixah  de>
AuthorDate: Mon Oct 19 12:04:06 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Oct 22 13:40:59 2015 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=56782f09

contrib/portage: Fix portage_ro_role interface

According to its documentation, portage_ro_role expects a role for $1
and a type for $2, just like other _role interfaces. However, the policy
directives inside the interface don't match its documentation and expect
$1 to be a type.

This interface isn't used anywhere in the policy, so no other fixes are
neccessary.

 policy/modules/contrib/portage.if | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/policy/modules/contrib/portage.if 
b/policy/modules/contrib/portage.if
index e9de28e..14c4fb6 100644
--- a/policy/modules/contrib/portage.if
+++ b/policy/modules/contrib/portage.if
@@ -406,13 +406,13 @@ interface(`portage_eselect_module',`
 ## 
 #
 interface(`portage_ro_role',`
-   portage_read_cache($1)
-   portage_read_config($1)
-   portage_read_db($1)
-   portage_read_ebuild($1)
-   portage_read_log($1)
-   portage_read_srcrepo($1)
-   portage_dontaudit_write_cache($1)
+   portage_read_cache($2)
+   portage_read_config($2)
+   portage_read_db($2)
+   portage_read_ebuild($2)
+   portage_read_log($2)
+   portage_read_srcrepo($2)
+   portage_dontaudit_write_cache($2)
 ')
 
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kipi-plugins/

2015-10-22 Thread Michael Palimaka
commit: 6df59629027490c279f1be6406357acfe9e1c10f
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Oct 16 18:40:45 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 13:18:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df59629

media-plugins/kipi-plugins: Version bump to 4.14.0

Fixes build with >=media-libs/opencv-3.0.0 - see also:
https://bugs.gentoo.org/show_bug.cgi?id=554494

Package-Manager: portage-2.2.20.1

 media-plugins/kipi-plugins/Manifest|   1 +
 .../kipi-plugins/kipi-plugins-4.14.0.ebuild| 146 +
 2 files changed, 147 insertions(+)

diff --git a/media-plugins/kipi-plugins/Manifest 
b/media-plugins/kipi-plugins/Manifest
index f4e8528..978ab34 100644
--- a/media-plugins/kipi-plugins/Manifest
+++ b/media-plugins/kipi-plugins/Manifest
@@ -1,2 +1,3 @@
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
+DIST digikam-4.14.0.tar.bz2 59805228 SHA256 
9d7bcb689d8c29be2e81976f0a043220f442a24f2071284044e7f1a799a7fdad SHA512 
3029e9b67d9d055bd9aee0d6d01e87950702e026f9f44b513155946ba087ec58b300f945a035a418afae45365ed007d8db6a1a90ed1d391e5e0e4cb679168ccf
 WHIRLPOOL 
35a3caedc9a4799f161b26b3b4df51da18a31be50a8a6da5b12a339a353755d73a47f103099087e3dc8e6926f65ae19638efea3585c86f72173a086056bf48ce
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c

diff --git a/media-plugins/kipi-plugins/kipi-plugins-4.14.0.ebuild 
b/media-plugins/kipi-plugins/kipi-plugins-4.14.0.ebuild
new file mode 100644
index 000..ced4001
--- /dev/null
+++ b/media-plugins/kipi-plugins/kipi-plugins-4.14.0.ebuild
@@ -0,0 +1,146 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+#
+# TODO: complete packaging of qtsoap and qtkoauth, see dilfridge overlay for 
work in progress
+#
+
+EAPI=5
+
+OPENGL_REQUIRED="optional"
+KDE_HANDBOOK="optional"
+KDE_LINGUAS="af ar az be bg bn br bs ca cs csb cy da de el en_GB eo es et eu fa
+fi fo fr fy ga gl ha he hi hr hsb hu id is it ja ka kk km ko ku lb lo lt lv mi
+mk mn ms mt nb nds ne nl nn nso oc pa pl pt pt_BR ro ru rw se sk sl sq sr
+sr@Latn ss sv ta te tg th tr tt uk uz uz@cyrillic ven vi wa xh zh_CN zh_HK 
zh_TW
+zu"
+inherit flag-o-matic kde4-base
+
+MY_PV=${PV/_/-}
+MY_P="digikam-${MY_PV}"
+
+DESCRIPTION="Plugins for the KDE Image Plugin Interface"
+HOMEPAGE="http://www.digikam.org/";
+SRC_URI="mirror://kde/stable/digikam/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2
+   handbook? ( FDL-1.2 )"
+KEYWORDS="~amd64 ~x86"
+SLOT="4"
+IUSE="cdr calendar crypt debug expoblending gpssync +imagemagick ipod 
mediawiki panorama redeyes scanner upnp videoslideshow vkontakte"
+
+COMMONDEPEND="
+   kde-apps/libkipi:4
+   kde-apps/libkdcraw:4=
+   kde-apps/libkexiv2:4=
+   dev-libs/expat
+   dev-libs/kqoauth
+   dev-libs/libxml2
+   dev-libs/libxslt
+   dev-libs/qjson
+   dev-qt/qtxmlpatterns:4
+   gpssync? ( kde-apps/libkgeomap:4 )
+   media-libs/libpng:0=
+   media-libs/tiff:0
+   virtual/jpeg:0
+   calendar? ( $(add_kdebase_dep kdepimlibs) )
+   crypt? ( app-crypt/qca:2[qt4(+)] )
+   ipod? (
+   media-libs/libgpod
+   x11-libs/gtk+:2
+   )
+   mediawiki? ( >=net-libs/libmediawiki-3.0.0:4 )
+   opengl? (
+   media-libs/phonon[qt4]
+   x11-libs/libXrandr
+   )
+   redeyes? ( >=media-libs/opencv-3.0.0[contrib] )
+   scanner? (
+   $(add_kdeapps_dep libksane)
+   media-gfx/sane-backends
+   )
+   upnp? ( media-libs/herqq )
+   videoslideshow? (
+   >=media-libs/qt-gstreamer-0.9.0[qt4(+)]
+   || ( media-gfx/imagemagick 
media-gfx/graphicsmagick[imagemagick] )
+   )
+   vkontakte? ( >=net-libs/libkvkontakte-4.12.0:4 )
+"
+DEPEND="${COMMONDEPEND}
+   sys-devel/gettext
+   panorama? (
+   sys-devel/bison
+   sys-devel/flex
+   )
+"
+RDEPEND="${COMMONDEPEND}
+   cdr? ( app-cdr/k3b )
+   expoblending? ( media-gfx/hugin )
+   imagemagick? ( || ( media-gfx/imagemagick 
media-gfx/graphicsmagick[imagemagick] ) )
+   panorama? (
+   media-gfx/enblend
+   >=media-gfx/hugin-2011.0.0
+   )
+"
+
+S=${WORKDIR}

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

2015-10-22 Thread Michael Palimaka
commit: 3d3f4f34805f42a008ec9348d044241b1be248c6
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Oct 16 18:49:41 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 13:18:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d3f4f34

net-libs/libmediawiki: Version bump to 4.14.0

Package-Manager: portage-2.2.20.1

 net-libs/libmediawiki/Manifest   |  1 +
 net-libs/libmediawiki/libmediawiki-4.14.0.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/net-libs/libmediawiki/Manifest b/net-libs/libmediawiki/Manifest
index f4e8528..978ab34 100644
--- a/net-libs/libmediawiki/Manifest
+++ b/net-libs/libmediawiki/Manifest
@@ -1,2 +1,3 @@
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
+DIST digikam-4.14.0.tar.bz2 59805228 SHA256 
9d7bcb689d8c29be2e81976f0a043220f442a24f2071284044e7f1a799a7fdad SHA512 
3029e9b67d9d055bd9aee0d6d01e87950702e026f9f44b513155946ba087ec58b300f945a035a418afae45365ed007d8db6a1a90ed1d391e5e0e4cb679168ccf
 WHIRLPOOL 
35a3caedc9a4799f161b26b3b4df51da18a31be50a8a6da5b12a339a353755d73a47f103099087e3dc8e6926f65ae19638efea3585c86f72173a086056bf48ce
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c

diff --git a/net-libs/libmediawiki/libmediawiki-4.14.0.ebuild 
b/net-libs/libmediawiki/libmediawiki-4.14.0.ebuild
new file mode 100644
index 000..9a42599
--- /dev/null
+++ b/net-libs/libmediawiki/libmediawiki-4.14.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_PV="${PV/_/-}"
+MY_P="digikam-${MY_PV}"
+
+inherit kde4-base
+
+DESCRIPTION="KDE C++ interface for MediaWiki based web service as 
wikipedia.org"
+HOMEPAGE="http://www.digikam.org/";
+SRC_URI="mirror://kde/stable/digikam/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+S=${WORKDIR}/${MY_P}/extra/${PN}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/

2015-10-22 Thread Michael Palimaka
commit: 9c74e7823258cab5a8b515768bff6aad85563bc4
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 13:08:28 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 13:18:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c74e782

media-gfx/digikam: restore accidentally-removed version

This partially reverts commit 4ec36b7ff9a87f3a4706dd194b2155fe64c32c14.

 media-gfx/digikam/Manifest |  2 +-
 ...digikam-4.10.0.ebuild => digikam-4.12.0.ebuild} | 30 --
 2 files changed, 11 insertions(+), 21 deletions(-)

diff --git a/media-gfx/digikam/Manifest b/media-gfx/digikam/Manifest
index 6f15b0b..978ab34 100644
--- a/media-gfx/digikam/Manifest
+++ b/media-gfx/digikam/Manifest
@@ -1,3 +1,3 @@
-DIST digikam-4.10.0.tar.bz2 69413654 SHA256 
4207e68b6221307111b66bb69485d3e88150df95dae014a99f6f161a3da0c725 SHA512 
a2f1d5f44719409ee45158106cc44541e7226e3c948b722045e104bc398f96233481d60e11dd198e96bfe3028201dac335be403ec74af1ef07e3137c3e9221a4
 WHIRLPOOL 
5d7997787c549318e5d7d677edc68ee2ebaa95c789b7d5f05e3ea5dea48d56afc23aa7bf3afa33f44353f4189644df7573683580486c0d248352ffb534215f37
+DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.14.0.tar.bz2 59805228 SHA256 
9d7bcb689d8c29be2e81976f0a043220f442a24f2071284044e7f1a799a7fdad SHA512 
3029e9b67d9d055bd9aee0d6d01e87950702e026f9f44b513155946ba087ec58b300f945a035a418afae45365ed007d8db6a1a90ed1d391e5e0e4cb679168ccf
 WHIRLPOOL 
35a3caedc9a4799f161b26b3b4df51da18a31be50a8a6da5b12a339a353755d73a47f103099087e3dc8e6926f65ae19638efea3585c86f72173a086056bf48ce
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c

diff --git a/media-gfx/digikam/digikam-4.10.0.ebuild 
b/media-gfx/digikam/digikam-4.12.0.ebuild
similarity index 91%
rename from media-gfx/digikam/digikam-4.10.0.ebuild
rename to media-gfx/digikam/digikam-4.12.0.ebuild
index adee011..bb4c04b 100644
--- a/media-gfx/digikam/digikam-4.10.0.ebuild
+++ b/media-gfx/digikam/digikam-4.12.0.ebuild
@@ -7,12 +7,8 @@ EAPI=5
 KDE_LINGUAS="af ar az be bg bn br bs ca cs csb cy da de el en_GB eo es et eu 
fa fi fo fr fy ga gl ha he hi hr hsb
 hu id is it ja ka kk km ko ku lb lo lt lv mi mk mn ms mt nb nds ne nl nn nso 
oc pa pl pt pt_BR ro ru
 rw se sk sl sq sr sr@Latn ss sv ta te tg th tr tt uk uz uz@cyrillic ven vi wa 
xh zh_CN zh_HK zh_TW zu"
-
 KDE_HANDBOOK="optional"
-KDE_MINIMAL="4.10"
-
 KDE_DOC_DIRS="doc-digikam doc-showfoto"
-
 inherit kde4-base
 
 MY_PV=${PV/_/-}
@@ -32,12 +28,13 @@ CDEPEND="
kde-apps/kdebase-kioslaves:4
kde-apps/libkdcraw:4=
kde-apps/libkexiv2:4=
-   >=kde-apps/libkface-4.6.0:4
-   >=kde-apps/libkgeomap-4.6.0:4=
+   >=kde-apps/libkface-4.12.0:4
+   >=kde-appslibkgeomap-4.12.0:4=
kde-apps/libkipi:4
kde-apps/marble:4=[plasma]
kde-apps/kcmshell:4
dev-qt/qtgui:4
+   || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] )
media-libs/jasper
media-libs/lcms:2
>=media-libs/lensfun-0.2.6
@@ -49,25 +46,18 @@ CDEPEND="
>=media-libs/tiff-3.8.2:0
virtual/jpeg:0
x11-libs/libX11
-   || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] )
addressbook? ( $(add_kdebase_dep kdepimlibs) )
gphoto2? ( media-libs/libgphoto2:= )
mysql? ( virtual/mysql )
-   semantic-desktop? (
-   $(add_kdebase_dep baloo '' 4.12.0)
-   )
+   semantic-desktop? ( $(add_kdebase_dep baloo '' 4.12.0) )
 "
 RDEPEND="${CDEPEND}
-   kde-apps/kreadconfig:4
-   media-plugins/kipi-plugins
-   video? (
-   || (
-   kde-apps/ffmpegthumbs:4
-   kde-apps/mplayerthumbs:4
-   $(add_kdeapps_dep mplayerthumbs)
-   $(add_kdeapps_dep ffmpegthumbs)
-   )
-   )
+   $(add_kdeapps_dep kreadconfig)
+   media-plugins/kipi-plugins:4
+   video? ( || (
+   $(add_kdeapps_dep ffmpegthumbs)
+   $(add_kdeapps_dep mplayerthumbs)
+   ) )
 "
 DEPEND="${CDEPEND}
dev-cpp/eigen:3



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

2015-10-22 Thread Michael Palimaka
commit: 4540c4a46caae45e941bd6140c523e81d90fe081
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Oct 16 20:27:21 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 13:18:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4540c4a4

kde-apps/libkgeomap: Version bump to 15.08.2

Package-Manager: portage-2.2.20.1

 kde-apps/libkgeomap/Manifest  |  1 +
 kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/kde-apps/libkgeomap/Manifest b/kde-apps/libkgeomap/Manifest
index f4e8528..61377cf 100644
--- a/kde-apps/libkgeomap/Manifest
+++ b/kde-apps/libkgeomap/Manifest
@@ -1,2 +1,3 @@
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
+DIST libkgeomap-15.08.2.tar.xz 124280 SHA256 
1282105f61aa285645e57c0b1de96f768aba6bc9c677d84f57e27b88b473f3e2 SHA512 
b5187010bc805f09dd723e1dabc2ddbe23b2c0a68bbd1978a74e9a76ec9d1adbf666ad97f3357fdc3903cfef9f9902b3814c496062bc6688092533b75db4a31d
 WHIRLPOOL 
ccf08a295087cb53523c52fd485a4c5b096747f706c5999b32d4bde5e4f30674a79e21fb18a0c2a05f77d1d1c111eac6a3b2e8a4adcc524b1e124ae94d8728b4

diff --git a/kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild 
b/kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild
new file mode 100644
index 000..3e4382d
--- /dev/null
+++ b/kde-apps/libkgeomap/libkgeomap-15.08.2.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+VIRTUALX_REQUIRED="test"
+inherit kde4-base
+
+DESCRIPTION="Wrapper library for world map components as marble, openstreetmap 
and googlemap"
+HOMEPAGE="https://www.digikam.org/";
+
+LICENSE="GPL-2"
+SLOT="4/2.1"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   kde-apps/libkexiv2:4=
+   kde-apps/marble:4=[kde,plasma]
+"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-gfx/kphotoalbum/, media-gfx/kphotoalbum/files/

2015-10-22 Thread Michael Palimaka
commit: 3df6fb500cb1b6120065db4a7a972ba84ef49dc1
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Oct 17 10:02:19 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 13:18:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df6fb50

media-gfx/kphotoalbum: Add upstream patch to match updated kdelibs4 policy

Package-Manager: portage-2.2.20.1

 .../files/kphotoalbum-4.6.2-bump-min-cmake.patch   | 31 ++
 media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild |  1 +
 2 files changed, 32 insertions(+)

diff --git a/media-gfx/kphotoalbum/files/kphotoalbum-4.6.2-bump-min-cmake.patch 
b/media-gfx/kphotoalbum/files/kphotoalbum-4.6.2-bump-min-cmake.patch
new file mode 100644
index 000..f23a8f8
--- /dev/null
+++ b/media-gfx/kphotoalbum/files/kphotoalbum-4.6.2-bump-min-cmake.patch
@@ -0,0 +1,31 @@
+From: David Faure 
+Date: Sun, 26 Jul 2015 16:12:24 +
+Subject: set cmake_min_req to 2.8.9 to match kdelibs4 policy; fix build 
accordingly
+X-Git-Url: 
http://quickgit.kde.org/?p=kphotoalbum.git&a=commitdiff&h=f785317ba88528760886b592aa9604b0c4ba62dd
+---
+set cmake_min_req to 2.8.9 to match kdelibs4 policy; fix build accordingly
+
+(working around the lack of ${KDE4_KMEDIAPLAYER_LIBS})
+
+CCMAIL: kde-buildsys...@kde.org
+---
+
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required(VERSION 2.8.3 FATAL_ERROR)
++cmake_minimum_required(VERSION 2.8.9)
+ project(kphotoalbum)
+ 
+ if(POLICY CMP0017)
+@@ -456,7 +456,7 @@
+ target_link_libraries(kphotoalbum Utilities)
+ 
+ # External components
+-target_link_libraries(kphotoalbum ${KDE4_KIO_LIBS} ${JPEG_LIBRARY} 
kmediaplayer ${KDE4_PHONON_LIBS})
++target_link_libraries(kphotoalbum ${KDE4_KIO_LIBS} ${JPEG_LIBRARY} 
${KDE4_TARGET_PREFIX}kmediaplayer ${KDE4_PHONON_LIBS})
+ 
+ if(KIPI_FOUND)
+ target_link_libraries(kphotoalbum ${KIPI_LIBRARIES})
+

diff --git a/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild 
b/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
index d83e74c..ad86cca 100644
--- a/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
+++ b/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
@@ -40,6 +40,7 @@ RDEPEND="${COMMON_DEPEND}
kipi? ( >=media-plugins/kipi-plugins-4.7.0 )
 "
 
+PATCHES=( "${FILESDIR}/${P}-bump-min-cmake.patch" )
 DOCS=( ChangeLog README )
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: kde-apps/libkface/files/, kde-apps/libkface/

2015-10-22 Thread Michael Palimaka
commit: ae35d2f35fb179e18cda21c9caccbd0990773e87
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Oct 16 20:23:44 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 13:18:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae35d2f3

kde-apps/libkface: Version bump to 15.08.2-r1

Fixes build with >=media-libs/opencv-3.0.0 by backporting opencv3 patches from
git master which unfortunately didn't make it into Applications/15.08 branch.
See also https://bugs.gentoo.org/show_bug.cgi?id=554490

Package-Manager: portage-2.2.20.1

 kde-apps/libkface/Manifest |   1 +
 .../libkface/files/libkface-15.08.2-opencv3.patch  | 438 +
 kde-apps/libkface/libkface-15.08.2-r1.ebuild   |  28 ++
 3 files changed, 467 insertions(+)

diff --git a/kde-apps/libkface/Manifest b/kde-apps/libkface/Manifest
index f4e8528..1ee772c 100644
--- a/kde-apps/libkface/Manifest
+++ b/kde-apps/libkface/Manifest
@@ -1,2 +1,3 @@
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
+DIST libkface-15.08.2.tar.xz 8986240 SHA256 
b10e6bee0207f5ffc739f3768ebfdc0d9f82232b33aea4d5dcffde6dcf79ceca SHA512 
d0037f34556debb6cea4662afbc512f724a6328df913425621d29ab9cffdaac6f50327af0dec857f818bf43c474896ca5589d02dac4a01a6a36a911c7a805a80
 WHIRLPOOL 
f4a16ba01dd1065203275c730df9de466bf3c40e1091c4f7f43f5ed64bef1bdbd5548fb6c725c25a6eab0d9a8998931d63c803521cb3a38816ea37a3647f71c5

diff --git a/kde-apps/libkface/files/libkface-15.08.2-opencv3.patch 
b/kde-apps/libkface/files/libkface-15.08.2-opencv3.patch
new file mode 100644
index 000..e3c73fa
--- /dev/null
+++ b/kde-apps/libkface/files/libkface-15.08.2-opencv3.patch
@@ -0,0 +1,438 @@
+This is a combination of the following upstream commits to support opencv3, in 
order:
+
+a53bcebbfc4e6c42ee73adddc41f8c2f8f8f39c8 apply patch #94414 to support OpenCV3
+b95b5ae012fecdd0a85b094728d00a69bc4b4a7c bump version about OpenCV3 support
+d61c07bf6213774fa06380c466e7dc5438c03745 add rules if not right OpenCV version 
is found
+bd69e872ea43447a11282988b1f20bdf4d4f50a7 polish
+dc62c0e0ea55d189d918501cce4d92f4198a1a0c use same OpenCV logic than digiKam 
and kipi-plugins
+
+--- a/CMakeLists.txt   2015-03-21 14:57:53.0 +0100
 b/CMakeLists.txt   2015-10-16 21:47:13.382898572 +0200
+@@ -9,6 +9,8 @@
+ message(STATUS 
"--")
+ message(STATUS "Starting CMake configuration for: libkface")
+ 
++option(ENABLE_OPENCV3 "Build libkface with OpenCV3 instead OpenCV2 
(default=OFF)" OFF)
++
+ find_package(Qt4 4.6.0 REQUIRED)
+ find_package(KDE4 REQUIRED)
+ 
+@@ -29,7 +31,26 @@
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
+ 
+ include(MacroOpenCV)
+-DETECT_OPENCV(2.4.9 core highgui objdetect contrib legacy imgproc)
++
++if(ENABLE_OPENCV3)
++
++DETECT_OPENCV(3.0.0 core face highgui objdetect imgproc)
++
++if(${OpenCV_FOUND} AND ${OpenCV_VERSION} VERSION_LESS 3.0.0)
++message(STATUS "ENABLE_OPENCV3 option is enabled and OpenCV < 3.0.0 
have been found. Disabled ENABLE_OPENCV3")
++set(OpenCV_FOUND FALSE)
++endif()
++
++else()
++
++DETECT_OPENCV(2.4.9 core highgui objdetect contrib legacy imgproc)
++
++if(${OpenCV_FOUND} AND ${OpenCV_VERSION} VERSION_GREATER 2.4.99)
++message(STATUS "ENABLE_OPENCV3 option is disabled and OpenCV >= 3.0.0 
have been found. Enabled ENABLE_OPENCV3")
++set(OpenCV_FOUND FALSE)
++endif()
++
++endif()
+ 
+ include_directories(${OpenCV_INCLUDE_DIRS})
+ 
+@@ -48,11 +69,12 @@
+ # 3.3.0 => 2.0.0 (Added a "simple" training method using image data 
directly for a single image)
+ # 3.4.0 => 2.0.0 (Added a "simple" training method using image data 
directly for an image list)
+ # 3.5.0 => 3.0.0 (Added d private internal container to reduce binary 
uncompatibility with Identity class)
++# 3.5.1 => 3.0.0 (Added OpenCV3 support)
+ 
+ # Library API version
+ set(KFACE_LIB_MAJOR_VERSION "3")
+ set(KFACE_LIB_MINOR_VERSION "5")
+-set(KFACE_LIB_PATCH_VERSION "0")
++set(KFACE_LIB_PATCH_VERSION "1")
+ 
+ # Suffix to add at end of version string. Usual values are:
+ #

[gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/

2015-10-22 Thread Michael Palimaka
commit: be1257966121c88adaa873c850359da56325627f
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Oct 16 18:27:31 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 13:18:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be125796

media-gfx/digikam: Version bump to 4.14.0

Fixes build with >=media-libs/opencv-3.0.0, see also:
https://bugs.gentoo.org/show_bug.cgi?id=554496
https://bugs.gentoo.org/show_bug.cgi?id=559762

Package-Manager: portage-2.2.20.1

 media-gfx/digikam/Manifest  |   1 +
 media-gfx/digikam/digikam-4.14.0.ebuild | 135 
 2 files changed, 136 insertions(+)

diff --git a/media-gfx/digikam/Manifest b/media-gfx/digikam/Manifest
index 3d47c60..6f15b0b 100644
--- a/media-gfx/digikam/Manifest
+++ b/media-gfx/digikam/Manifest
@@ -1,2 +1,3 @@
 DIST digikam-4.10.0.tar.bz2 69413654 SHA256 
4207e68b6221307111b66bb69485d3e88150df95dae014a99f6f161a3da0c725 SHA512 
a2f1d5f44719409ee45158106cc44541e7226e3c948b722045e104bc398f96233481d60e11dd198e96bfe3028201dac335be403ec74af1ef07e3137c3e9221a4
 WHIRLPOOL 
5d7997787c549318e5d7d677edc68ee2ebaa95c789b7d5f05e3ea5dea48d56afc23aa7bf3afa33f44353f4189644df7573683580486c0d248352ffb534215f37
+DIST digikam-4.14.0.tar.bz2 59805228 SHA256 
9d7bcb689d8c29be2e81976f0a043220f442a24f2071284044e7f1a799a7fdad SHA512 
3029e9b67d9d055bd9aee0d6d01e87950702e026f9f44b513155946ba087ec58b300f945a035a418afae45365ed007d8db6a1a90ed1d391e5e0e4cb679168ccf
 WHIRLPOOL 
35a3caedc9a4799f161b26b3b4df51da18a31be50a8a6da5b12a339a353755d73a47f103099087e3dc8e6926f65ae19638efea3585c86f72173a086056bf48ce
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c

diff --git a/media-gfx/digikam/digikam-4.14.0.ebuild 
b/media-gfx/digikam/digikam-4.14.0.ebuild
new file mode 100644
index 000..e244729
--- /dev/null
+++ b/media-gfx/digikam/digikam-4.14.0.ebuild
@@ -0,0 +1,135 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_LINGUAS="af ar az be bg bn br bs ca cs csb cy da de el en_GB eo es et eu 
fa fi fo fr fy ga gl ha he hi hr hsb
+hu id is it ja ka kk km ko ku lb lo lt lv mi mk mn ms mt nb nds ne nl nn nso 
oc pa pl pt pt_BR ro ru
+rw se sk sl sq sr sr@Latn ss sv ta te tg th tr tt uk uz uz@cyrillic ven vi wa 
xh zh_CN zh_HK zh_TW zu"
+KDE_HANDBOOK="optional"
+KDE_DOC_DIRS="doc-digikam doc-showfoto"
+inherit kde4-base
+
+MY_PV=${PV/_/-}
+MY_P=${PN}-${MY_PV}
+
+DESCRIPTION="Digital photo management application for KDE"
+HOMEPAGE="http://www.digikam.org/";
+SRC_URI="mirror://kde/stable/${PN}/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2
+   handbook? ( FDL-1.2 )"
+KEYWORDS="~amd64 ~x86"
+SLOT="4"
+IUSE="addressbook debug doc gphoto2 mysql semantic-desktop +thumbnails video"
+
+CDEPEND="
+   kde-apps/kdebase-kioslaves:4
+   kde-apps/libkdcraw:4=
+   kde-apps/libkexiv2:4=
+   >=kde-apps/libkface-15.08.2-r1:4
+   kde-apps/libkgeomap:4=
+   kde-apps/libkipi:4
+   kde-apps/marble:4=[plasma]
+   kde-apps/kcmshell:4
+   dev-qt/qtgui:4
+   || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] )
+   media-libs/jasper
+   media-libs/lcms:2
+   >=media-libs/lensfun-0.2.6
+   media-libs/liblqr
+   >=media-libs/libpgf-6.12.27
+   media-libs/libpng:0=
+   >=media-libs/opencv-3.0.0[contrib]
+   media-libs/phonon[qt4]
+   >=media-libs/tiff-3.8.2:0
+   virtual/jpeg:0
+   x11-libs/libX11
+   addressbook? ( $(add_kdebase_dep kdepimlibs) )
+   gphoto2? ( media-libs/libgphoto2:= )
+   mysql? ( virtual/mysql )
+   semantic-desktop? ( $(add_kdebase_dep baloo '' 4.12.0) )
+"
+RDEPEND="${CDEPEND}
+   $(add_kdeapps_dep kreadconfig)
+   media-plugins/kipi-plugins:4
+   video? ( || (
+   $(add_kdeapps_dep ffmpegthumbs)
+   $(add_kdeapps_dep mplayerthumbs)
+   ) )
+"
+DEPEND="${CDEPEND}
+   dev-cpp/eigen:3
+   dev-libs/boost
+   sys-devel/gettext
+   doc? ( app-doc/doxygen )
+"
+
+S="${WORKDIR}/${MY_P}/core"
+
+RESTRICT=test
+# bug 366505
+
+src_prepare() {
+   # just to make absolutely sure
+   rm -rf "${WORKDIR}/${MY_P}/extra" || die
+
+   # prepare the handbook
+   mkdir doc-digikam doc-showfoto || die
+   echo "add_subdirectory( en )" > doc-digikam/CMakeLists.txt || die
+   mv "${WORKDIR}/${MY_P}/doc/${PN}/digikam" doc-digikam/en || die
+   echo "add_subdirectory( en )" > doc-showfoto/CMakeLists.txt || die
+   mv "${WORKDIR}/${MY_P}/doc/${PN}/showfoto" doc-showfoto/en || die
+   sed -i -e 's:../digikam/:../../doc-digikam/en

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

2015-10-22 Thread Julian Ospald
commit: c9611fab7b30402b3f9cc9803324b9d3184b5d3d
Author: Julian Ospald  gentoo  org>
AuthorDate: Thu Oct 22 13:01:09 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Thu Oct 22 13:01:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9611fab

net-misc/wget: lift the REQUIRED_USE constraints for libressl

'libressl' USE flag is only for switching the openssl-provider
and shouldn't introduce additional REQUIRED_USE complexity.

 net-misc/wget/wget-1.16.3-r2.ebuild | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/net-misc/wget/wget-1.16.3-r2.ebuild 
b/net-misc/wget/wget-1.16.3-r2.ebuild
index 26d60ba..a44cd52 100644
--- a/net-misc/wget/wget-1.16.3-r2.ebuild
+++ b/net-misc/wget/wget-1.16.3-r2.ebuild
@@ -15,18 +15,16 @@ LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
-REQUIRED_USE="
-   ntlm? ( !gnutls ssl )
-   libressl? ( !gnutls ssl )
-   gnutls? ( !libressl ssl )
-"
+REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
pcre? ( dev-libs/libpcre[static-libs(+)] )
ssl? (
gnutls? ( net-libs/gnutls[static-libs(+)] )
-   libressl? ( dev-libs/libressl[static-libs(+)] )
-   !gnutls? ( !libressl? ( dev-libs/openssl:0[static-libs(+)] ) )
+   !gnutls? (
+   !libressl? ( dev-libs/openssl:0[static-libs(+)] )
+   libressl? ( dev-libs/libressl[static-libs(+)] )
+   )
)
uuid? ( sys-apps/util-linux[static-libs(+)] )
zlib? ( sys-libs/zlib[static-libs(+)] )"



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

2015-10-22 Thread Julian Ospald
commit: 231001d252cd81974b8745d07a4440d4f59bced7
Author: Julian Ospald  gentoo  org>
AuthorDate: Thu Oct 22 12:14:25 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Thu Oct 22 12:45:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=231001d2

net-dns/dnscrypt-proxy: add missing quotes to dnscrypt-proxy.initd

 net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd 
b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd
index 3ef60f9..8e231e4 100644
--- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd
+++ b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd
@@ -21,8 +21,8 @@ start() {
if [ ! -d "${rundir}" ]; then
mkdir "${rundir}"
if [ -n "${runas_user}" ]; then
-   touch  ${DNSCRYPT_LOGFILE}
-   chown ${runas_user}:${runas_group} ${DNSCRYPT_LOGFILE}
+   touch "${DNSCRYPT_LOGFILE}"
+   chown ${runas_user}:${runas_group} "${DNSCRYPT_LOGFILE}"
chown -R ${runas_user}:${runas_group} "${rundir}"
fi
fi
@@ -31,8 +31,8 @@ start() {
start-stop-daemon --start --quiet \
--exec /usr/sbin/dnscrypt-proxy \
-- \
-   --pidfile=${pidfile} \
-   --logfile=${DNSCRYPT_LOGFILE} \
+   --pidfile="${pidfile}" \
+   --logfile="${DNSCRYPT_LOGFILE}" \
--daemonize --user=${runas_user} \
--local-address=${DNSCRYPT_LOCALIP}:${DNSCRYPT_LOCALPORT} \

--resolver-address=${DNSCRYPT_RESOLVERIP}:${DNSCRYPT_RESOLVERPORT} \



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

2015-10-22 Thread Julian Ospald
commit: 8992c5f585b8ef496d16ab78266125c8a974bd68
Author: Julian Ospald  gentoo  org>
AuthorDate: Thu Oct 22 12:45:00 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Thu Oct 22 12:45:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8992c5f5

net-dns/dnscrypt-proxy: update metadata.xml

* fix formatting
* add myself as maintainer

 net-dns/dnscrypt-proxy/metadata.xml | 40 ++---
 1 file changed, 24 insertions(+), 16 deletions(-)

diff --git a/net-dns/dnscrypt-proxy/metadata.xml 
b/net-dns/dnscrypt-proxy/metadata.xml
index 03ba21e..ad41b6a 100644
--- a/net-dns/dnscrypt-proxy/metadata.xml
+++ b/net-dns/dnscrypt-proxy/metadata.xml
@@ -1,20 +1,28 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-proxy-maintainers
-
-   amesi...@gmail.com
-   Jiajun Wang
-   Primary Maintainer, Assign bugs
-
-
-dnscrypt-proxy provides local service which can be used directly as your local 
resolver
-or as a DNS forwarder, encrypting and authenticating requests using the 
DNSCrypt protocol
-and passing them to an upstream server.
-
-
-   Use net-libs/ldns for DNSSEC/SSHFP 
validation
-   Enable plugin support to inspect and modify 
queries and responses
-   Use systemd's socket activation instead of 
creating the sockets itself
-
+   
+   hasuf...@gentoo.org
+   Julian Ospald
+   Primary Maintainer, assign bugs to 
him
+   
+   
+   amesi...@gmail.com
+   Jiajun Wang
+   Proxied maintainer, CC on bugs
+   
+   
+   dnscrypt-proxy provides local service which can be used 
directly as your
+   local resolver or as a DNS forwarder, encrypting and 
authenticating
+   requests using the DNSCrypt protocol and passing them to an 
upstream
+   server.
+   
+   
+   Use net-libs/ldns for DNSSEC/SSHFP
+   validation
+   Enable plugin support to inspect and modify
+   queries and responses
+   Use systemd's socket activation instead of
+   creating the sockets itself
+   
 



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

2015-10-22 Thread Julian Ospald
commit: 0a1505c64ea80a4ed92dc7c478230233773abb93
Author: Julian Ospald  gentoo  org>
AuthorDate: Thu Oct 22 12:42:07 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Thu Oct 22 12:45:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a1505c6

net-dns/dnscrypt-proxy: version bump to 1.6.0 and various fixes

* remove unused eutils inherit
* fix dependency on sys-apps/systemd (it's not just RDEPEND)
* add missing DEPEND on virtual/pkgconfig
* remove automagic dependency on ldns to avoid dependency
  breakage and depend on it unconditionally (there is no
  build-system switch)
* don't install COPYING, it's already in LICENSE variable,
  also simplify DOCS string
* add pkg_postinst() information on usage
* minor cosmetic changes

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

diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest
index 09b1a79..c6b84c9 100644
--- a/net-dns/dnscrypt-proxy/Manifest
+++ b/net-dns/dnscrypt-proxy/Manifest
@@ -1,2 +1,3 @@
 DIST dnscrypt-proxy-1.4.2.tar.gz 1592962 SHA256 
1d519068c30868bb60a151908f0e300a1754b234f7bc2ad1d749ad9d0d977076 SHA512 
ecb81b5d20cf88a610421bb1266861a2f5dd34d0ce916c54507507ca5dbe5d9e49e95916f76fa7997b112860f2bc37793f075ed812c75b2904adf6cdf32cac17
 WHIRLPOOL 
ddfa3da3de933f6cbb8721ccd6435e97b9e893d32311e1c3badbc23b6a0547b6cb0f8d6037baaf0027ca1eb972c4be167dc9ce56194f7f6fa54fac974ca0bd24
 DIST dnscrypt-proxy-1.4.3.tar.gz 1560345 SHA256 
f10f10c18e25ced3c5ec5d0c4145d33270f9cfa991fd1b18d5d9af00e4d9b68e SHA512 
3aae9f20bc06087b0860a24488bcda117010a34218d7aef3c68a0f155f8164ce06a88865a9caf1ce5c5eaa8588518ccc2c8a61a97cc39f527f7b2b14cdf8c118
 WHIRLPOOL 
49915b0f95d340828c79febc9b7d94c4f0c444e016b9f78d134e05f43945b446ab71bbc6a230d6e15d5f1f4c0b97d9f671b6001314cc157cdcd419b01bf23550
+DIST dnscrypt-proxy-1.6.0.tar.gz 1579293 SHA256 
7703a41a1040fc30b19fdfbbaba36b411e66d998584b0e2fa5088f734f4f86be SHA512 
1937a80ab0e6e5786b0d004fef1c007d9d8a4df335542ae6f96c1eac7739920f2ff4b469d30abac774c12a41d275c2a8bf31b5514d7af446028cedeeb3efcf02
 WHIRLPOOL 
b24eb58bca1ff8fa55fec3836399a3ee5c66823d8b459e5f8ce7aa653454407dc3b80d7dc050b76e5c0595fc0e2d854478a6f949ef859b149f6b20e127c98274

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



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

2015-10-22 Thread Justin Lecher
commit: 0d0b93bdf0485abe518e34be213ddb091c1ebb81
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Oct 22 12:44:21 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Oct 22 12:44:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d0b93bd

eclass: fix missing DESCRIPTION in docstring

Signed-off-by: Justin Lecher  gentoo.org>

 eclass/java-mvn-src.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/java-mvn-src.eclass b/eclass/java-mvn-src.eclass
index a7f8e5b..fd6f880 100644
--- a/eclass/java-mvn-src.eclass
+++ b/eclass/java-mvn-src.eclass
@@ -26,8 +26,8 @@ inherit java-pkg-simple
 : ${GROUP_ID:=${PN}}
 
 # @ECLASS-VARIABLE: ARTIFACT_ID
+# @DESCRIPTION:
 # The artifactId of the artifact. Default value is ${PN}.
-
 : ${ARTIFACT_ID:=${PN}}
 
 # @ECLASS-VARIABLE: MAVEN2_REPOSITORIES



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

2015-10-22 Thread Justin Lecher
commit: 6e455028176c1ec4c470d41c827672c3ff2dad57
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Oct 22 12:43:48 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Oct 22 12:44:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e455028

eclass: Fix varaible name in docs string

Signed-off-by: Justin Lecher  gentoo.org>

 eclass/java-pkg-simple.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/java-pkg-simple.eclass b/eclass/java-pkg-simple.eclass
index db1ea66..48d0757 100644
--- a/eclass/java-pkg-simple.eclass
+++ b/eclass/java-pkg-simple.eclass
@@ -59,7 +59,7 @@ S="${WORKDIR}"
 #  JAVA_SRC_DIR="src/java/org/gentoo"
 # @CODE
 
-# @ECLASS-VARIABLE: JAVA_SRC_DIR
+# @ECLASS-VARIABLE: JAVA_ENCODING
 # @DESCRIPTION:
 # The character encoding used in the source files.
 : ${JAVA_ENCODING:=UTF-8}



[gentoo-commits] proj/betagarden:master commit in: x11-misc/accentuate/, dev-vcs/gitscene/, x11-misc/pdfpres/, ...

2015-10-22 Thread Justin Lecher
commit: 1841d1282a2fd4f19b505fef8761c02d3064f714
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Oct 22 12:27:45 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Oct 22 12:27:45 2015 +
URL:https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=1841d128

Drop deprecated parallel python eclass support

Signed-off-by: Justin Lecher  gentoo.org>

 app-text/man2tidyhtml/man2tidyhtml-1.1.ebuild | 2 +-
 dev-vcs/gitscene/gitscene-.ebuild | 2 +-
 media-gfx/gimpbox/gimpbox-.ebuild | 2 +-
 x11-misc/accentuate/accentuate-.ebuild| 2 +-
 x11-misc/pdfpres/pdfpres-0.2.3.ebuild | 4 ++--
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-text/man2tidyhtml/man2tidyhtml-1.1.ebuild 
b/app-text/man2tidyhtml/man2tidyhtml-1.1.ebuild
index 683cb01..eefc09b 100644
--- a/app-text/man2tidyhtml/man2tidyhtml-1.1.ebuild
+++ b/app-text/man2tidyhtml/man2tidyhtml-1.1.ebuild
@@ -28,5 +28,5 @@ S="${WORKDIR}/${PN}"
 
 src_install() {
dodoc AUTHORS
-   python_parallel_foreach_impl python_doscript ${PN}
+   python_foreach_impl python_doscript ${PN}
 }

diff --git a/dev-vcs/gitscene/gitscene-.ebuild 
b/dev-vcs/gitscene/gitscene-.ebuild
index 3c9919a..98c832b 100644
--- a/dev-vcs/gitscene/gitscene-.ebuild
+++ b/dev-vcs/gitscene/gitscene-.ebuild
@@ -26,6 +26,6 @@ DEPEND="
 RDEPEND="${DEPEND}"
 
 src_install() {
-   python_parallel_foreach_impl python_doscript ${PN}
+   python_foreach_impl python_doscript ${PN}
dodoc ${PN}.txt
 }

diff --git a/media-gfx/gimpbox/gimpbox-.ebuild 
b/media-gfx/gimpbox/gimpbox-.ebuild
index 4c3b7ee..1341d71 100644
--- a/media-gfx/gimpbox/gimpbox-.ebuild
+++ b/media-gfx/gimpbox/gimpbox-.ebuild
@@ -30,5 +30,5 @@ RDEPEND="${DEPEND}
 S=${WORKDIR}/hg
 
 src_install() {
-   python_parallel_foreach_impl python_newscript gimpbox.py gimpbox
+   python_foreach_impl python_newscript gimpbox.py gimpbox
 }

diff --git a/x11-misc/accentuate/accentuate-.ebuild 
b/x11-misc/accentuate/accentuate-.ebuild
index 84475ef..67ea157 100644
--- a/x11-misc/accentuate/accentuate-.ebuild
+++ b/x11-misc/accentuate/accentuate-.ebuild
@@ -25,5 +25,5 @@ DEPEND="
 RDEPEND="${DEPEND}"
 
 src_install() {
-   python_parallel_foreach_impl python_doscript ${PN}
+   python_foreach_impl python_doscript ${PN}
 }

diff --git a/x11-misc/pdfpres/pdfpres-0.2.3.ebuild 
b/x11-misc/pdfpres/pdfpres-0.2.3.ebuild
index 2dd4435..d8b87b3 100644
--- a/x11-misc/pdfpres/pdfpres-0.2.3.ebuild
+++ b/x11-misc/pdfpres/pdfpres-0.2.3.ebuild
@@ -29,8 +29,8 @@ S=${WORKDIR}/vain-${MY_PN}-e01efb1
 src_install() {
dodoc README
 
-   python_parallel_foreach_impl python_newscript legacy-notes-converter.py 
${PN}-legacy-notes-converter
+   python_foreach_impl python_newscript legacy-notes-converter.py 
${PN}-legacy-notes-converter
 
-   python_parallel_foreach_impl python_doscript ${PN}
+   python_foreach_impl python_doscript ${PN}
doman man1/${PN}.1
 }



[gentoo-commits] proj/sci:master commit in: sci-libs/nipy/, sci-chemistry/modeller/

2015-10-22 Thread Justin Lecher
commit: 31e09304ca5401a29292a36e2e582f713cf7939b
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Oct 22 12:28:31 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Oct 22 12:28:31 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=31e09304

Drop deprecated parallel python eclass support

Signed-off-by: Justin Lecher  gentoo.org>

 sci-chemistry/modeller/modeller-9.12-r3.ebuild | 1 -
 sci-libs/nipy/nipy-0.3.0.ebuild| 1 -
 sci-libs/nipy/nipy-.ebuild | 1 -
 3 files changed, 3 deletions(-)

diff --git a/sci-chemistry/modeller/modeller-9.12-r3.ebuild 
b/sci-chemistry/modeller/modeller-9.12-r3.ebuild
index 292907f..c1a5d81 100644
--- a/sci-chemistry/modeller/modeller-9.12-r3.ebuild
+++ b/sci-chemistry/modeller/modeller-9.12-r3.ebuild
@@ -27,7 +27,6 @@ INPATH="${EPREFIX}"/opt/modeller${ver}
 
 QA_PREBUILT="/opt/*"
 
-DISTUTILS_NO_PARALLEL_BUILD=true
 
 pkg_setup() {
case ${ARCH} in

diff --git a/sci-libs/nipy/nipy-0.3.0.ebuild b/sci-libs/nipy/nipy-0.3.0.ebuild
index 6a07e3c..d748c21 100644
--- a/sci-libs/nipy/nipy-0.3.0.ebuild
+++ b/sci-libs/nipy/nipy-0.3.0.ebuild
@@ -5,7 +5,6 @@
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
-DISTUTILS_NO_PARALLEL_BUILD=true
 
 inherit distutils-r1 eutils multilib flag-o-matic
 

diff --git a/sci-libs/nipy/nipy-.ebuild b/sci-libs/nipy/nipy-.ebuild
index 446065c..72f40e6 100644
--- a/sci-libs/nipy/nipy-.ebuild
+++ b/sci-libs/nipy/nipy-.ebuild
@@ -5,7 +5,6 @@
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
-DISTUTILS_NO_PARALLEL_BUILD=true
 
 inherit distutils-r1 multilib git-r3 flag-o-matic
 



[gentoo-commits] repo/gentoo:master commit in: media-gfx/kphotoalbum/, kde-apps/libkgeomap/, media-plugins/kipi-plugins/, ...

2015-10-22 Thread Michael Palimaka
commit: 3b732165b696e211f2cd088affc5a3c533d78c8b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 12:17:49 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 12:17:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b732165

media-libs/libkgeomap: move to kde-apps/libkgeomap

 {media-libs => kde-apps}/libkgeomap/Manifest | 0
 {media-libs => kde-apps}/libkgeomap/libkgeomap-4.12.0.ebuild | 0
 {media-libs => kde-apps}/libkgeomap/libkgeomap-4.4.0.ebuild  | 0
 {media-libs => kde-apps}/libkgeomap/metadata.xml | 0
 media-gfx/digikam/digikam-4.10.0.ebuild  | 2 +-
 media-gfx/digikam/digikam-4.4.0-r1.ebuild| 2 +-
 media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild   | 2 +-
 media-gfx/kphotoalbum/metadata.xml   | 2 +-
 media-plugins/kipi-plugins/kipi-plugins-4.12.0.ebuild| 2 +-
 media-plugins/kipi-plugins/kipi-plugins-4.4.0.ebuild | 2 +-
 media-plugins/kipi-plugins/metadata.xml  | 2 +-
 profiles/updates/4Q-2015 | 1 +
 12 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/media-libs/libkgeomap/Manifest b/kde-apps/libkgeomap/Manifest
similarity index 100%
rename from media-libs/libkgeomap/Manifest
rename to kde-apps/libkgeomap/Manifest

diff --git a/media-libs/libkgeomap/libkgeomap-4.12.0.ebuild 
b/kde-apps/libkgeomap/libkgeomap-4.12.0.ebuild
similarity index 100%
rename from media-libs/libkgeomap/libkgeomap-4.12.0.ebuild
rename to kde-apps/libkgeomap/libkgeomap-4.12.0.ebuild

diff --git a/media-libs/libkgeomap/libkgeomap-4.4.0.ebuild 
b/kde-apps/libkgeomap/libkgeomap-4.4.0.ebuild
similarity index 100%
rename from media-libs/libkgeomap/libkgeomap-4.4.0.ebuild
rename to kde-apps/libkgeomap/libkgeomap-4.4.0.ebuild

diff --git a/media-libs/libkgeomap/metadata.xml 
b/kde-apps/libkgeomap/metadata.xml
similarity index 100%
rename from media-libs/libkgeomap/metadata.xml
rename to kde-apps/libkgeomap/metadata.xml

diff --git a/media-gfx/digikam/digikam-4.10.0.ebuild 
b/media-gfx/digikam/digikam-4.10.0.ebuild
index f10dd1a..adee011 100644
--- a/media-gfx/digikam/digikam-4.10.0.ebuild
+++ b/media-gfx/digikam/digikam-4.10.0.ebuild
@@ -33,6 +33,7 @@ CDEPEND="
kde-apps/libkdcraw:4=
kde-apps/libkexiv2:4=
>=kde-apps/libkface-4.6.0:4
+   >=kde-apps/libkgeomap-4.6.0:4=
kde-apps/libkipi:4
kde-apps/marble:4=[plasma]
kde-apps/kcmshell:4
@@ -40,7 +41,6 @@ CDEPEND="
media-libs/jasper
media-libs/lcms:2
>=media-libs/lensfun-0.2.6
-   >=media-libs/libkgeomap-4.6.0:=
media-libs/liblqr
>=media-libs/libpgf-6.12.27
media-libs/libpng:0=

diff --git a/media-gfx/digikam/digikam-4.4.0-r1.ebuild 
b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
index 89d72ad..57376c3 100644
--- a/media-gfx/digikam/digikam-4.4.0-r1.ebuild
+++ b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
@@ -34,12 +34,12 @@ CDEPEND="
kde-apps/libkdcraw:4=
kde-apps/libkexiv2:4=
<=kde-apps/libkface-4.4.0
+   kde-apps/libkgeomap:4
kde-apps/libkipi:4
kde-apps/marble:4=[plasma]
media-libs/jasper
media-libs/lcms:2
media-libs/lensfun
-   media-libs/libkgeomap
media-libs/liblqr
>=media-libs/libpgf-6.12.27
media-libs/libpng:0=

diff --git a/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild 
b/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
index e6148bd..d83e74c 100644
--- a/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
+++ b/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
@@ -29,7 +29,7 @@ COMMON_DEPEND="
face? ( >=kde-apps/libkface-4.7.0 )
geolocation? ( $(add_kdeapps_dep marble) )
kipi? ( $(add_kdeapps_dep libkipi '' 4.9.58) )
-   map? ( >=media-libs/libkgeomap-4.7.0 )
+   map? ( >=kde-apps/libkgeomap-4.7.0:4 )
raw? ( $(add_kdeapps_dep libkdcraw '' 4.9.58) )
 "
 DEPEND="${COMMON_DEPEND}

diff --git a/media-gfx/kphotoalbum/metadata.xml 
b/media-gfx/kphotoalbum/metadata.xml
index 9c48c8d..01cc855 100644
--- a/media-gfx/kphotoalbum/metadata.xml
+++ b/media-gfx/kphotoalbum/metadata.xml
@@ -6,6 +6,6 @@
Enable face detection and recognition using 
media-libs/libkface
Add support for 
kde-apps/marble
Support for the KDE Image Plugin 
Interface
-   Enable map display support using 
media-libs/libkgeomap
+   Enable map display support using 
kde-apps/libkgeomap

 

diff --git a/media-plugins/kipi-plugins/kipi-plugins-4.12.0.ebuild 
b/media-plugins/kipi-plugins/kipi-plugins-4.12.0.ebuild
index c079988..5998747 100644
--- a/media-plugins/kipi-plugins/kipi-plugins-4.12.0.ebuild
+++ b/media-plugins/kipi-plugins/kipi-plugins-4.12.0.ebuild
@@ -40,7 +40,7 @@ COMMONDEPEND="
dev-libs/libxslt
dev-libs/qjson
dev-qt/qtxmlpatterns:4
- 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/kphotoalbum/

2015-10-22 Thread Michael Palimaka
commit: af6b2d10371684182f5d83c47ab0eefa78ac29d1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 12:18:54 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 12:18:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af6b2d10

media-gfx/kphotoalbum: update package category in local USE description

Package-Manager: portage-2.2.20.1

 media-gfx/kphotoalbum/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/kphotoalbum/metadata.xml 
b/media-gfx/kphotoalbum/metadata.xml
index 01cc855..eed8e30 100644
--- a/media-gfx/kphotoalbum/metadata.xml
+++ b/media-gfx/kphotoalbum/metadata.xml
@@ -3,7 +3,7 @@
 
kde

-   Enable face detection and recognition using 
media-libs/libkface
+   Enable face detection and recognition using 
kde-apps/libkface
Add support for 
kde-apps/marble
Support for the KDE Image Plugin 
Interface
Enable map display support using 
kde-apps/libkgeomap



[gentoo-commits] repo/gentoo:master commit in: profiles/updates/, media-gfx/kphotoalbum/, kde-apps/libkface/, ...

2015-10-22 Thread Michael Palimaka
commit: 0d913a707beaabe25045151874721dd4e36a52c4
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 12:03:31 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 12:03:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d913a70

media-libs/libkface: move to kde-apps/libkface

 {media-libs => kde-apps}/libkface/Manifest   | 0
 {media-libs => kde-apps}/libkface/libkface-4.12.0.ebuild | 0
 {media-libs => kde-apps}/libkface/libkface-4.4.0.ebuild  | 0
 {media-libs => kde-apps}/libkface/metadata.xml   | 0
 media-gfx/digikam/digikam-4.10.0.ebuild  | 2 +-
 media-gfx/digikam/digikam-4.4.0-r1.ebuild| 2 +-
 media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild   | 2 +-
 profiles/updates/4Q-2015 | 1 +
 8 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-libs/libkface/Manifest b/kde-apps/libkface/Manifest
similarity index 100%
rename from media-libs/libkface/Manifest
rename to kde-apps/libkface/Manifest

diff --git a/media-libs/libkface/libkface-4.12.0.ebuild 
b/kde-apps/libkface/libkface-4.12.0.ebuild
similarity index 100%
rename from media-libs/libkface/libkface-4.12.0.ebuild
rename to kde-apps/libkface/libkface-4.12.0.ebuild

diff --git a/media-libs/libkface/libkface-4.4.0.ebuild 
b/kde-apps/libkface/libkface-4.4.0.ebuild
similarity index 100%
rename from media-libs/libkface/libkface-4.4.0.ebuild
rename to kde-apps/libkface/libkface-4.4.0.ebuild

diff --git a/media-libs/libkface/metadata.xml b/kde-apps/libkface/metadata.xml
similarity index 100%
rename from media-libs/libkface/metadata.xml
rename to kde-apps/libkface/metadata.xml

diff --git a/media-gfx/digikam/digikam-4.10.0.ebuild 
b/media-gfx/digikam/digikam-4.10.0.ebuild
index ea51c0e..f10dd1a 100644
--- a/media-gfx/digikam/digikam-4.10.0.ebuild
+++ b/media-gfx/digikam/digikam-4.10.0.ebuild
@@ -32,6 +32,7 @@ CDEPEND="
kde-apps/kdebase-kioslaves:4
kde-apps/libkdcraw:4=
kde-apps/libkexiv2:4=
+   >=kde-apps/libkface-4.6.0:4
kde-apps/libkipi:4
kde-apps/marble:4=[plasma]
kde-apps/kcmshell:4
@@ -39,7 +40,6 @@ CDEPEND="
media-libs/jasper
media-libs/lcms:2
>=media-libs/lensfun-0.2.6
-   || ( >=kde-apps/libkface-14.12.0:4 >=media-libs/libkface-4.6.0 )
>=media-libs/libkgeomap-4.6.0:=
media-libs/liblqr
>=media-libs/libpgf-6.12.27

diff --git a/media-gfx/digikam/digikam-4.4.0-r1.ebuild 
b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
index f36ebe1..89d72ad 100644
--- a/media-gfx/digikam/digikam-4.4.0-r1.ebuild
+++ b/media-gfx/digikam/digikam-4.4.0-r1.ebuild
@@ -33,12 +33,12 @@ CDEPEND="
kde-apps/kdebase-kioslaves:4
kde-apps/libkdcraw:4=
kde-apps/libkexiv2:4=
+   <=kde-apps/libkface-4.4.0
kde-apps/libkipi:4
kde-apps/marble:4=[plasma]
media-libs/jasper
media-libs/lcms:2
media-libs/lensfun
-   || ( kde-apps/libkface:4 <=media-libs/libkface-4.4.0 )
media-libs/libkgeomap
media-libs/liblqr
>=media-libs/libpgf-6.12.27

diff --git a/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild 
b/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
index d152deb..e6148bd 100644
--- a/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
+++ b/media-gfx/kphotoalbum/kphotoalbum-4.6.2.ebuild
@@ -26,7 +26,7 @@ COMMON_DEPEND="
media-libs/phonon[qt4]
virtual/jpeg:0
exif? ( >=media-gfx/exiv2-0.17 )
-   face? ( >=media-libs/libkface-4.7.0 )
+   face? ( >=kde-apps/libkface-4.7.0 )
geolocation? ( $(add_kdeapps_dep marble) )
kipi? ( $(add_kdeapps_dep libkipi '' 4.9.58) )
map? ( >=media-libs/libkgeomap-4.7.0 )

diff --git a/profiles/updates/4Q-2015 b/profiles/updates/4Q-2015
index 9cf9e9d..395ebdf 100644
--- a/profiles/updates/4Q-2015
+++ b/profiles/updates/4Q-2015
@@ -3,3 +3,4 @@ move sys-apps/cv sys-apps/progress
 slotmove =dev-ruby/recog-2.0.6 2 2.0.6
 slotmove =dev-ruby/recog-2.0.12 2 2.0.12
 slotmove =dev-ruby/recog-2.0.14 2 2.0.14
+move media-libs/libkface kde-apps/libkface



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

2015-10-22 Thread Agostino Sarubbo
commit: 87a32f9a7eb243c4d8f9c703eeed7a14b37701c2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Oct 22 11:59:17 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Oct 22 11:59:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a32f9a

sys-kernel/vanilla-sources: Automated version bump to 3.4.110 - remove old.

Package-Manager: portage-2.2.20.1

 sys-kernel/vanilla-sources/Manifest   | 4 +---
 ...{vanilla-sources-3.4.109.ebuild => vanilla-sources-3.4.110.ebuild} | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 565a828..6f386d4 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -1,9 +1,7 @@
 DIST deblob-3.10 117299 SHA256 
d48cad04fab6a802b3a3e34955c8e35b539c2441f9a62522ec5a132c3a5ae684 SHA512 
7b30f0f97ed97bf6b096d4a321b4b1e62f4b48f07972f2511870c3eaaf4f3877b0c6af2f30f6b985edf9c9c79267d40448b504c59016acfe06374630d1fdcba9
 WHIRLPOOL 
03a5963367cc6cb4f87e3d315ab61a8b3cb1fe577b20d7e2fb6ad83464075b3ed8176f543bb4c3b4e607d78cd55ef940f446bb75be09eb7496321930413ce2b9
 DIST deblob-3.14 121249 SHA256 
980400e0db952ccdb5a507f99444330af893ed0f8a7a052916fcf0c2b2631f7e SHA512 
2cbdf4f3947c12ade0931f0b3fb8b9c0312626a3bfea9d1c7d8d1d875b4673624ed3a6369653521998bbea0cde6730b573d6be918d052f1b553e093cb42a838f
 WHIRLPOOL 
7ba1738ac829d8848104843da6237576f235c0151d53944ff3a7e0308cfb91600ffb9253402a34c2ed106c5b0bb3ce36785ead990396465341a957c58319221c
-DIST deblob-3.4 108298 SHA256 
b005dd372b8e55b19fc583fd99a3e95e44844b56305fdff7fdbd5f924a6c0308 SHA512 
ce3df3c4850f0da821286acfa1b6c94e16350578f76a4df93284d2fe201dd78ce15dfb5c56727d8f90012062db180d5e9ee81ac3372f5b46e0deabdcfc03ca19
 WHIRLPOOL 
79386c1e04ca84709fce6ec4ea5eb308876d86f04a1b28f1eda4653d4917b3b9aa9b8a6b82605da3456d29e800dd5bbfcb27c124f1a01057d25b18871bc8770d
 DIST deblob-check-3.10 612122 SHA256 
5a9552abac85cab9715a958785a3f901937fa135d85452647a16398181909c12 SHA512 
c52917e9de8211f66a1e6805282dd727f1ec86701f76cbf16d0909ec212a9429c0994e0993db95b57934b17d9d91b08b4fa29f80c501397a5acce84bf4e1aed9
 WHIRLPOOL 
d1c591fe7e229f9638945dd14f7dd16617ecff224b4cf2a6a3dd58913c23f7eb67496c26235d1d4637607bc9c9d260d990a0935b6b5bf2332f15e8ed58269856
 DIST deblob-check-3.14 613905 SHA256 
4c69ea1c225b1a84c41e75392dcaa94f77dd8e647aff3afe52f1ab16ac99c5e5 SHA512 
4dd7e785727ce29d78f5f68431fcb6ea9dfda5221dc8e699f40d13e3c85411707b13c288d23f8baa6b3c47f5a67ac58da0a7f1a51c4d9fdda82a7428ead88cf4
 WHIRLPOOL 
de1b67955662f072193f58b7e7dbd98c6680958c2d65632bfb831dc0681945a4d1c27abe978e6ee687ae8f48773eb71c2f9026f461377b28235e7f7e39832a67
-DIST deblob-check-3.4 612122 SHA256 
5a9552abac85cab9715a958785a3f901937fa135d85452647a16398181909c12 SHA512 
c52917e9de8211f66a1e6805282dd727f1ec86701f76cbf16d0909ec212a9429c0994e0993db95b57934b17d9d91b08b4fa29f80c501397a5acce84bf4e1aed9
 WHIRLPOOL 
d1c591fe7e229f9638945dd14f7dd16617ecff224b4cf2a6a3dd58913c23f7eb67496c26235d1d4637607bc9c9d260d990a0935b6b5bf2332f15e8ed58269856
 DIST linux-3.10.tar.xz 73175088 SHA256 
df27fa92d27a9c410bfe6c4a89f141638500d7eadcca5cce578954efc2ad3544 SHA512 
5fb109fcbd59bf3dffc911b853894f0a84afa75151368f783a1252c5ff60c7a1504de216c0012be446df983e2dea400ad8eeed3ce04f24dc61d0ef76c174dc35
 WHIRLPOOL 
e7c0ccc2231e430b831218fc66f1940d095d2d5447d391329c6a7373d4a1d16708f64778b32e4847802ee2dae4fcf7cb67a1238fd4eb204fd0c4bce2d8134053
 DIST linux-3.12.tar.xz 76384600 SHA256 
2e120ec7fde19fa51dc6b6cc11c81860a0775defcad5a5bf910ed9a50e845a02 SHA512 
4ba5797e0772726d05c9f2eee66dc6dc2a5033c749ef44764c805a83da739ed5d0c6443b76785e38fe1ef74cc7ade787e48144faed0cfcb6f124f05248c700ff
 WHIRLPOOL 
a40195f6b53ba3440cf90a44495f6a59670f750851d1518e2bdfe3b949f0e898d1df5d37e271c31c555087026ddb6cc2c9109b22b9639e3222735e6f650a1417
 DIST linux-3.14.tar.xz 78399152 SHA256 
61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa SHA512 
5730d83a7a81134c1e77c0bf89e42dee4f8251ad56c1ac2be20c59e26fdfaa7bea55f277e7af156b637f22e1584914a46089af85039177cb43485089c74ac26e
 WHIRLPOOL 
5ad07b78c362ba0b21c50b4abb99407cae06bd08576f3fd8f36047b01409eba096263208020da3dcad4977eefc61d66502276754097bc127635df1d7a5817d41
@@ -17,6 +15,6 @@ DIST patch-3.12.49.xz 1363484 SHA256 
f413289e803ed9511f080f9b8d6a15d2b20aee67d2f
 DIST patch-3.14.54.xz 1006852 SHA256 
cd9463f0b8d561b9fac22f6528fa20e9dd0f03ba1fa80752d6ea74feb59e1b5c SHA512 
36874d66d0a028f0c9ce8eeefdba9a9c0a09286a49a83001743505af1a9fcf21429b3dfb5a5b66ddfc98dfe6d27b780e8ddbfaa0580bd7bb7683f08cb9f95521
 WHIRLPOOL 
1dab7e6017a26d7819ba0718394d8946b328132d13ebfa32206f1a1d32eee3e9e67823d588b140b5abb9bab1dbb5d70ab77dd1f73e9c45614b3c8d27ba87
 DIST patch-3.18.22.xz 622064 SHA256 
370993a59dc24aff4e7428b9c701aaf7fc9ea05fc5f1dd55f2dc93464a7a982c SHA512 
281ae98feed012f43fc5b125c6d695ca59fc2f0472e757cfc1cbba3254c456c3312b468e7cf419e35ba9086f3be81feb54577b5ac56a3438bc6374f2c73e8be3
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: media-plugins/kipi-plugins/, media-plugins/kipi-plugins/files/

2015-10-22 Thread Michael Palimaka
commit: a05ab574b379db7d00ff0e9ccc4a65f1225eff5c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 11:49:37 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 11:55:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05ab574

media-plugins/kipi-plugins: remove old

Package-Manager: portage-2.2.20.1

 media-plugins/kipi-plugins/Manifest|   2 -
 .../files/kipi-plugins-3.4.0-staticar.patch|  18 ---
 .../kipi-plugins/kipi-plugins-4.10.0.ebuild| 149 -
 .../kipi-plugins/kipi-plugins-4.7.0.ebuild | 148 
 4 files changed, 317 deletions(-)

diff --git a/media-plugins/kipi-plugins/Manifest 
b/media-plugins/kipi-plugins/Manifest
index d9b60e0..f4e8528 100644
--- a/media-plugins/kipi-plugins/Manifest
+++ b/media-plugins/kipi-plugins/Manifest
@@ -1,4 +1,2 @@
-DIST digikam-4.10.0.tar.bz2 69413654 SHA256 
4207e68b6221307111b66bb69485d3e88150df95dae014a99f6f161a3da0c725 SHA512 
a2f1d5f44719409ee45158106cc44541e7226e3c948b722045e104bc398f96233481d60e11dd198e96bfe3028201dac335be403ec74af1ef07e3137c3e9221a4
 WHIRLPOOL 
5d7997787c549318e5d7d677edc68ee2ebaa95c789b7d5f05e3ea5dea48d56afc23aa7bf3afa33f44353f4189644df7573683580486c0d248352ffb534215f37
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
-DIST digikam-4.7.0-1.tar.bz2 70151058 SHA256 
230a5841754107d273c953ad4aeef2b57265c4623decc74a454c437175468002 SHA512 
a9e162c83d83b2183a4e8f254b971993b884677e24676b3dd58dcf8e90ca87f1046c099ea33083ee0f58eedd13aee69a242fbc3d1eab70e285956393637f3dd4
 WHIRLPOOL 
e454bd9c95b3aa9a4c9007065c8ee3e1da595b389fc868a6a21cacba761d8101d4be507c299fd7651d8ab0c0ddff5fb4038bf49f73213a8ec2b69bcdce02808b

diff --git a/media-plugins/kipi-plugins/files/kipi-plugins-3.4.0-staticar.patch 
b/media-plugins/kipi-plugins/files/kipi-plugins-3.4.0-staticar.patch
deleted file mode 100644
index 7287de7..000
--- a/media-plugins/kipi-plugins/files/kipi-plugins-3.4.0-staticar.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-commit b9c0e87c74956196cf0d5042c8c13e9a381ba4e8
-Author: Gilles Caulier 
-Date:   Thu Oct 10 16:11:18 2013 +0200
-
-apply patch #82764 to not install libPropertiesBrowser
-BUGS: 319664
-
-diff --git a/photolayoutseditor/extra/qtpropertybrowser/CMakeLists.txt 
b/photolayoutseditor/extra/qtpropertybrowser/CMakeLists.txt
-index 03cf1bd..46e158c 100644
 a/photolayoutseditor/extra/qtpropertybrowser/CMakeLists.txt
-+++ b/photolayoutseditor/extra/qtpropertybrowser/CMakeLists.txt
-@@ -119,4 +119,5 @@ ADD_DEFINITIONS(${QT_DEFINITIONS})
- ADD_DEFINITIONS(-DQT_DLL)
- ADD_DEFINITIONS(-DQT_PLUGIN)
- 
--INSTALL( TARGETS PropertyBrowser ARCHIVE DESTINATION lib 
${INSTALL_TARGETS_DEFAULT_ARGS} )
-+# Do not install (yet), see https://bugs.kde.org/show_bug.cgi?id=319664
-+# INSTALL( TARGETS PropertyBrowser ARCHIVE DESTINATION lib 
${INSTALL_TARGETS_DEFAULT_ARGS} )

diff --git a/media-plugins/kipi-plugins/kipi-plugins-4.10.0.ebuild 
b/media-plugins/kipi-plugins/kipi-plugins-4.10.0.ebuild
deleted file mode 100644
index f861747..000
--- a/media-plugins/kipi-plugins/kipi-plugins-4.10.0.ebuild
+++ /dev/null
@@ -1,149 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-#
-# TODO: complete packaging of qtsoap and qtkoauth, see dilfridge overlay for 
work in progress
-#
-
-EAPI=5
-
-OPENGL_REQUIRED="optional"
-
-KDE_MINIMAL="4.10"
-
-KDE_LINGUAS="af ar az be bg bn br bs ca cs csb cy da de el en_GB eo es et eu fa
-fi fo fr fy ga gl ha he hi hr hsb hu id is it ja ka kk km ko ku lb lo lt lv mi
-mk mn ms mt nb nds ne nl nn nso oc pa pl pt pt_BR ro ru rw se sk sl sq sr ss sv
-ta te tg th tr tt uk uz ven vi wa xh zh_CN zh_HK zh_TW zu"
-
-KDE_HANDBOOK="optional"
-
-inherit flag-o-matic kde4-base
-
-MY_PV=${PV/_/-}
-MY_P="digikam-${MY_PV}"
-
-DESCRIPTION="Plugins for the KDE Image Plugin Interface"
-HOMEPAGE="http://www.digikam.org/";
-SRC_URI="mirror://kde/stable/digikam/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2
-   handbook? ( FDL-1.2 )"
-KEYWORDS="~amd64 ~x86"
-SLOT="4"
-IUSE="cdr calendar crypt debug expoblending gpssync +imagemagick ipod 
mediawiki panorama redeyes scanner upnp videoslideshow vkontakte"
-
-COMMONDEPEND="
-   kd

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

2015-10-22 Thread Michael Palimaka
commit: 8896041183d061916488283ba222ebfa55778e30
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 11:53:45 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 11:55:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88960411

net-libs/libmediawiki: remove old

Package-Manager: portage-2.2.20.1

 net-libs/libmediawiki/Manifest   |  2 --
 net-libs/libmediawiki/libmediawiki-4.10.0.ebuild | 22 --
 net-libs/libmediawiki/libmediawiki-4.7.0.ebuild  | 22 --
 3 files changed, 46 deletions(-)

diff --git a/net-libs/libmediawiki/Manifest b/net-libs/libmediawiki/Manifest
index d9b60e0..f4e8528 100644
--- a/net-libs/libmediawiki/Manifest
+++ b/net-libs/libmediawiki/Manifest
@@ -1,4 +1,2 @@
-DIST digikam-4.10.0.tar.bz2 69413654 SHA256 
4207e68b6221307111b66bb69485d3e88150df95dae014a99f6f161a3da0c725 SHA512 
a2f1d5f44719409ee45158106cc44541e7226e3c948b722045e104bc398f96233481d60e11dd198e96bfe3028201dac335be403ec74af1ef07e3137c3e9221a4
 WHIRLPOOL 
5d7997787c549318e5d7d677edc68ee2ebaa95c789b7d5f05e3ea5dea48d56afc23aa7bf3afa33f44353f4189644df7573683580486c0d248352ffb534215f37
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
-DIST digikam-4.7.0-1.tar.bz2 70151058 SHA256 
230a5841754107d273c953ad4aeef2b57265c4623decc74a454c437175468002 SHA512 
a9e162c83d83b2183a4e8f254b971993b884677e24676b3dd58dcf8e90ca87f1046c099ea33083ee0f58eedd13aee69a242fbc3d1eab70e285956393637f3dd4
 WHIRLPOOL 
e454bd9c95b3aa9a4c9007065c8ee3e1da595b389fc868a6a21cacba761d8101d4be507c299fd7651d8ab0c0ddff5fb4038bf49f73213a8ec2b69bcdce02808b

diff --git a/net-libs/libmediawiki/libmediawiki-4.10.0.ebuild 
b/net-libs/libmediawiki/libmediawiki-4.10.0.ebuild
deleted file mode 100644
index 8102cc2..000
--- a/net-libs/libmediawiki/libmediawiki-4.10.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PV="${PV/_/-}"
-MY_P="digikam-${MY_PV}"
-
-KDE_MINIMAL="4.10"
-inherit kde4-base
-
-DESCRIPTION="KDE C++ interface for MediaWiki based web service as 
wikipedia.org"
-HOMEPAGE="http://www.digikam.org/";
-SRC_URI="mirror://kde/stable/digikam/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-S=${WORKDIR}/${MY_P}/extra/${PN}

diff --git a/net-libs/libmediawiki/libmediawiki-4.7.0.ebuild 
b/net-libs/libmediawiki/libmediawiki-4.7.0.ebuild
deleted file mode 100644
index 736eb6c..000
--- a/net-libs/libmediawiki/libmediawiki-4.7.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PV="${PV/_/-}"
-MY_P="digikam-${MY_PV}"
-
-KDE_MINIMAL="4.10"
-inherit kde4-base
-
-DESCRIPTION="KDE C++ interface for MediaWiki based web service as 
wikipedia.org"
-HOMEPAGE="http://www.digikam.org/";
-SRC_URI="mirror://kde/stable/digikam/${MY_P}-1.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-S=${WORKDIR}/${MY_P}/extra/${PN}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/

2015-10-22 Thread Michael Palimaka
commit: 4ec36b7ff9a87f3a4706dd194b2155fe64c32c14
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 11:45:07 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 11:55:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec36b7f

media-gfx/digikam: remove old

Package-Manager: portage-2.2.20.1

 media-gfx/digikam/Manifest  |   2 -
 media-gfx/digikam/digikam-4.12.0.ebuild | 145 --
 media-gfx/digikam/digikam-4.7.0.ebuild  | 154 
 3 files changed, 301 deletions(-)

diff --git a/media-gfx/digikam/Manifest b/media-gfx/digikam/Manifest
index d9b60e0..3d47c60 100644
--- a/media-gfx/digikam/Manifest
+++ b/media-gfx/digikam/Manifest
@@ -1,4 +1,2 @@
 DIST digikam-4.10.0.tar.bz2 69413654 SHA256 
4207e68b6221307111b66bb69485d3e88150df95dae014a99f6f161a3da0c725 SHA512 
a2f1d5f44719409ee45158106cc44541e7226e3c948b722045e104bc398f96233481d60e11dd198e96bfe3028201dac335be403ec74af1ef07e3137c3e9221a4
 WHIRLPOOL 
5d7997787c549318e5d7d677edc68ee2ebaa95c789b7d5f05e3ea5dea48d56afc23aa7bf3afa33f44353f4189644df7573683580486c0d248352ffb534215f37
-DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
-DIST digikam-4.7.0-1.tar.bz2 70151058 SHA256 
230a5841754107d273c953ad4aeef2b57265c4623decc74a454c437175468002 SHA512 
a9e162c83d83b2183a4e8f254b971993b884677e24676b3dd58dcf8e90ca87f1046c099ea33083ee0f58eedd13aee69a242fbc3d1eab70e285956393637f3dd4
 WHIRLPOOL 
e454bd9c95b3aa9a4c9007065c8ee3e1da595b389fc868a6a21cacba761d8101d4be507c299fd7651d8ab0c0ddff5fb4038bf49f73213a8ec2b69bcdce02808b

diff --git a/media-gfx/digikam/digikam-4.12.0.ebuild 
b/media-gfx/digikam/digikam-4.12.0.ebuild
deleted file mode 100644
index 458ca34..000
--- a/media-gfx/digikam/digikam-4.12.0.ebuild
+++ /dev/null
@@ -1,145 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_LINGUAS="af ar az be bg bn br bs ca cs csb cy da de el en_GB eo es et eu 
fa fi fo fr fy ga gl ha he hi hr hsb
-hu id is it ja ka kk km ko ku lb lo lt lv mi mk mn ms mt nb nds ne nl nn nso 
oc pa pl pt pt_BR ro ru
-rw se sk sl sq sr sr@Latn ss sv ta te tg th tr tt uk uz uz@cyrillic ven vi wa 
xh zh_CN zh_HK zh_TW zu"
-KDE_HANDBOOK="optional"
-KDE_DOC_DIRS="doc-digikam doc-showfoto"
-inherit kde4-base
-
-MY_PV=${PV/_/-}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Digital photo management application for KDE"
-HOMEPAGE="http://www.digikam.org/";
-SRC_URI="mirror://kde/stable/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2
-   handbook? ( FDL-1.2 )"
-KEYWORDS="~amd64 ~x86"
-SLOT="4"
-IUSE="addressbook debug doc gphoto2 mysql semantic-desktop +thumbnails video"
-
-CDEPEND="
-   kde-apps/kdebase-kioslaves:4
-   kde-apps/libkdcraw:4=
-   kde-apps/libkexiv2:4=
-   || ( kde-apps/libkface:4 >=media-libs/libkface-4.12.0 )
-   || ( kde-apps/libkgeomap:4= >=media-libs/libkgeomap-4.12.0:= )
-   kde-apps/libkipi:4
-   kde-apps/marble:4=[plasma]
-   kde-apps/kcmshell:4
-   dev-qt/qtgui:4
-   || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] )
-   media-libs/jasper
-   media-libs/lcms:2
-   >=media-libs/lensfun-0.2.6
-   media-libs/liblqr
-   >=media-libs/libpgf-6.12.27
-   media-libs/libpng:0=
-   >=media-libs/opencv-2.4.9
-   media-libs/phonon[qt4]
-   >=media-libs/tiff-3.8.2:0
-   virtual/jpeg:0
-   x11-libs/libX11
-   addressbook? ( $(add_kdebase_dep kdepimlibs) )
-   gphoto2? ( media-libs/libgphoto2:= )
-   mysql? ( virtual/mysql )
-   semantic-desktop? ( $(add_kdebase_dep baloo '' 4.12.0) )
-"
-RDEPEND="${CDEPEND}
-   $(add_kdeapps_dep kreadconfig)
-   media-plugins/kipi-plugins:4
-   video? ( || (
-   $(add_kdeapps_dep ffmpegthumbs)
-   $(add_kdeapps_dep mplayerthumbs)
-   ) )
-"
-DEPEND="${CDEPEND}
-   dev-cpp/eigen:3
-   dev-libs/boost
-   sys-devel/gettext
-   doc? ( app-doc/doxygen )
-"
-
-S="${WORKDIR}/${MY_P}/core"
-
-RESTRICT=test
-# bug 366505
-
-src_prepare() {
-   # just to make absolutely sure
-   rm -rf "${WORKDIR}/${MY_P}/extra" || die
-
-   # prepare the handbook
-   mkdir doc-digikam doc-sho

[gentoo-commits] repo/gentoo:master commit in: media-libs/libkgeomap/

2015-10-22 Thread Michael Palimaka
commit: f35c5bd4ec8c39f8a4c1862a22f37a03b372b355
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 11:51:29 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 11:55:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f35c5bd4

media-libs/libkgeomap: remove old

Package-Manager: portage-2.2.20.1

 media-libs/libkgeomap/Manifest |  2 --
 media-libs/libkgeomap/libkgeomap-4.10.0.ebuild | 29 --
 media-libs/libkgeomap/libkgeomap-4.7.0.ebuild  | 29 --
 3 files changed, 60 deletions(-)

diff --git a/media-libs/libkgeomap/Manifest b/media-libs/libkgeomap/Manifest
index d9b60e0..f4e8528 100644
--- a/media-libs/libkgeomap/Manifest
+++ b/media-libs/libkgeomap/Manifest
@@ -1,4 +1,2 @@
-DIST digikam-4.10.0.tar.bz2 69413654 SHA256 
4207e68b6221307111b66bb69485d3e88150df95dae014a99f6f161a3da0c725 SHA512 
a2f1d5f44719409ee45158106cc44541e7226e3c948b722045e104bc398f96233481d60e11dd198e96bfe3028201dac335be403ec74af1ef07e3137c3e9221a4
 WHIRLPOOL 
5d7997787c549318e5d7d677edc68ee2ebaa95c789b7d5f05e3ea5dea48d56afc23aa7bf3afa33f44353f4189644df7573683580486c0d248352ffb534215f37
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
-DIST digikam-4.7.0-1.tar.bz2 70151058 SHA256 
230a5841754107d273c953ad4aeef2b57265c4623decc74a454c437175468002 SHA512 
a9e162c83d83b2183a4e8f254b971993b884677e24676b3dd58dcf8e90ca87f1046c099ea33083ee0f58eedd13aee69a242fbc3d1eab70e285956393637f3dd4
 WHIRLPOOL 
e454bd9c95b3aa9a4c9007065c8ee3e1da595b389fc868a6a21cacba761d8101d4be507c299fd7651d8ab0c0ddff5fb4038bf49f73213a8ec2b69bcdce02808b

diff --git a/media-libs/libkgeomap/libkgeomap-4.10.0.ebuild 
b/media-libs/libkgeomap/libkgeomap-4.10.0.ebuild
deleted file mode 100644
index a396622..000
--- a/media-libs/libkgeomap/libkgeomap-4.10.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PV="${PV/_/-}"
-MY_P="digikam-${MY_PV}"
-
-KDE_MINIMAL="4.10"
-VIRTUALX_REQUIRED="test"
-inherit kde4-base
-
-DESCRIPTION="Wrapper library for world map components as marble, openstreetmap 
and googlemap"
-HOMEPAGE="http://www.digikam.org/";
-SRC_URI="mirror://kde/stable/digikam/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="4/2.1"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   kde-apps/libkexiv2:4=
-   kde-apps/marble:4=[kde,plasma]
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}/extra/${PN}"

diff --git a/media-libs/libkgeomap/libkgeomap-4.7.0.ebuild 
b/media-libs/libkgeomap/libkgeomap-4.7.0.ebuild
deleted file mode 100644
index ca93119..000
--- a/media-libs/libkgeomap/libkgeomap-4.7.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PV="${PV/_/-}"
-MY_P="digikam-${MY_PV}"
-
-KDE_MINIMAL="4.10"
-VIRTUALX_REQUIRED="test"
-inherit kde4-base
-
-DESCRIPTION="Wrapper library for world map components as marble, openstreetmap 
and googlemap"
-HOMEPAGE="http://www.digikam.org/";
-SRC_URI="mirror://kde/stable/digikam/${MY_P}-1.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="4/2.1"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   kde-apps/libkexiv2:4=
-   kde-apps/marble:4=[kde,plasma]
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}/extra/${PN}"



[gentoo-commits] repo/gentoo:master commit in: media-libs/libkface/files/, media-libs/libkface/

2015-10-22 Thread Michael Palimaka
commit: b43a3402c7eacd7fdbed0afaec4e1d61259a0b65
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Oct 22 11:50:21 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Oct 22 11:55:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b43a3402

media-libs/libkface: remove old

Package-Manager: portage-2.2.20.1

 media-libs/libkface/Manifest   |  2 --
 .../libkface/files/libkface-4.7.0-histogram.patch  | 30 --
 media-libs/libkface/libkface-4.10.0.ebuild | 26 ---
 media-libs/libkface/libkface-4.7.0-r1.ebuild   | 28 
 4 files changed, 86 deletions(-)

diff --git a/media-libs/libkface/Manifest b/media-libs/libkface/Manifest
index d9b60e0..f4e8528 100644
--- a/media-libs/libkface/Manifest
+++ b/media-libs/libkface/Manifest
@@ -1,4 +1,2 @@
-DIST digikam-4.10.0.tar.bz2 69413654 SHA256 
4207e68b6221307111b66bb69485d3e88150df95dae014a99f6f161a3da0c725 SHA512 
a2f1d5f44719409ee45158106cc44541e7226e3c948b722045e104bc398f96233481d60e11dd198e96bfe3028201dac335be403ec74af1ef07e3137c3e9221a4
 WHIRLPOOL 
5d7997787c549318e5d7d677edc68ee2ebaa95c789b7d5f05e3ea5dea48d56afc23aa7bf3afa33f44353f4189644df7573683580486c0d248352ffb534215f37
 DIST digikam-4.12.0.tar.bz2 69527960 SHA256 
15043afb04733e059460165bc3cdf58dc42a67d7a349fbe12c2ebbe1946e3420 SHA512 
a5ebe481ef9803475cd2d4d198b0d093753ecb71367662f0e83a151ab34a2ff071139b28c1d9600279463fed96745b025db86d24b059b0794bc4a2b50338df85
 WHIRLPOOL 
cf29c3555ce41a298c9760287996d8edee76ff8a6ec42b503f55059e40b35f91cf56afb054f641e800f6e630d851491c2f77e0bd67020feefe8d6adf36a643f5
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
-DIST digikam-4.7.0-1.tar.bz2 70151058 SHA256 
230a5841754107d273c953ad4aeef2b57265c4623decc74a454c437175468002 SHA512 
a9e162c83d83b2183a4e8f254b971993b884677e24676b3dd58dcf8e90ca87f1046c099ea33083ee0f58eedd13aee69a242fbc3d1eab70e285956393637f3dd4
 WHIRLPOOL 
e454bd9c95b3aa9a4c9007065c8ee3e1da595b389fc868a6a21cacba761d8101d4be507c299fd7651d8ab0c0ddff5fb4038bf49f73213a8ec2b69bcdce02808b

diff --git a/media-libs/libkface/files/libkface-4.7.0-histogram.patch 
b/media-libs/libkface/files/libkface-4.7.0-histogram.patch
deleted file mode 100644
index d65ac2d..000
--- a/media-libs/libkface/files/libkface-4.7.0-histogram.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 916b00af31981a0729e05a92ae212f05279e730f Mon Sep 17 00:00:00 2001
-From: Gilles Caulier 
-Date: Sat, 21 Mar 2015 14:57:53 +0100
-Subject: [PATCH] apply patch #91657 to fix libkface histogram DB table grawing
- at each registration of data. CCBUGS: 338176
-

- libkface/recognition-opencv-lbph/lbphfacemodel.cpp | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/libkface/recognition-opencv-lbph/lbphfacemodel.cpp 
b/libkface/recognition-opencv-lbph/lbphfacemodel.cpp
-index 72a3635..af8c6a5 100644
 a/libkface/recognition-opencv-lbph/lbphfacemodel.cpp
-+++ b/libkface/recognition-opencv-lbph/lbphfacemodel.cpp
-@@ -160,9 +160,12 @@ void LBPHFaceModel::setHistograms(const 
QList& histograms, const
- newHistograms.push_back(histogram.toMat());
- }
- 
-+m_histogramMetadata.clear();
-+
- foreach (const LBPHistogramMetadata& metadata, histogramMetadata)
- {
- newLabels.push_back(metadata.identity);
-+m_histogramMetadata << metadata;
- }
- 
- std::vector currentHistograms = ptr()->get 
>("histograms");
--- 
-2.3.6
-

diff --git a/media-libs/libkface/libkface-4.10.0.ebuild 
b/media-libs/libkface/libkface-4.10.0.ebuild
deleted file mode 100644
index 0b823c9..000
--- a/media-libs/libkface/libkface-4.10.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PV="${PV/_/-}"
-MY_P="digikam-${MY_PV}"
-
-KDE_LINGUAS=""
-KDE_MINIMAL="4.10"
-inherit kde4-base
-
-DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and 
detection"
-HOMEPAGE="http://www.digikam.org/";
-SRC_URI="mirror://kde/stable/digikam/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="4/3"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/opencv-2.4.9"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}/extra/${PN}

diff --git a/media-libs/libkface/libkface-4.7.0-r1.ebuild 
b/media-libs/libkface/libkface-4.7.0-r1.ebuild
deleted file mode 100644
index df6f08f..000
--- a/media-libs/libkface/libkface-4.7.0-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PV="${PV/_/-}"
-MY_P="di

[gentoo-commits] dev/angelos:master commit in: dev-util/valadoc/

2015-10-22 Thread Christoph Mende
commit: 61216188cee5ad21156de979ed1e01a98f44d816
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:37:27 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:37:27 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=61216188

dev-util/valadoc: bump to EAPI5, migrate to vala.eclass

 dev-util/valadoc/valadoc-.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-util/valadoc/valadoc-.ebuild 
b/dev-util/valadoc/valadoc-.ebuild
index 3e50c2b..3cd0d2b 100644
--- a/dev-util/valadoc/valadoc-.ebuild
+++ b/dev-util/valadoc/valadoc-.ebuild
@@ -2,8 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
-inherit autotools git-2
+EAPI=5
+VALA_MIN_API_VERSION=0.16
+inherit autotools git-2 vala
 
 DESCRIPTION="a documentation generator for Vala source code"
 HOMEPAGE="https://live.gnome.org/Valadoc";
@@ -15,7 +16,7 @@ SLOT="0"
 KEYWORDS=""
 IUSE=""
 
-RDEPEND="dev-lang/vala:0.14
+RDEPEND="$(vala_depend)
>=dev-libs/glib-2.12:2
>=dev-libs/libgee-0.5:0
>=media-gfx/graphviz-2.16
@@ -27,7 +28,7 @@ DEPEND="${RDEPEND}
 DOCS=( AUTHORS MAINTAINERS THANKS )
 
 src_configure() {
-   VALAC="$(type -p valac-0.14)" econf --disable-static
+   econf --disable-static
 }
 
 src_install() {



[gentoo-commits] dev/angelos:master commit in: scripts/

2015-10-22 Thread Christoph Mende
commit: 0a142e904dfad15121b64c90aafc67e7e9ee375a
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:07:48 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:07:48 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=0a142e90

Update sync-xfce-overlay.sh

 scripts/sync-xfce-overlay.sh | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/scripts/sync-xfce-overlay.sh b/scripts/sync-xfce-overlay.sh
index 968e51e..f83fa7d 100755
--- a/scripts/sync-xfce-overlay.sh
+++ b/scripts/sync-xfce-overlay.sh
@@ -1,10 +1,10 @@
 #!/bin/bash
 
 repo_name="xfce-dev"
-[ $# -gt 0 ] && repo_name=$1
+[[ $# -gt 0 ]] && repo_name=$1
 OVERLAY="$(portageq get_repo_path / ${repo_name})"
-[ $? -eq 0 ] || exit 1
-PORTDIR="$(portageq portdir)"
+[[ $? -eq 0 ]] || exit 1
+PORTDIR="$(portageq get_repo_path / gentoo)"
 
 # collect ebuilds
 pushd "${OVERLAY}" >/dev/null
@@ -27,9 +27,10 @@ for i in ${pkgs}; do
 
# get destination ebuild's header
dst=${OVERLAY}/${i}
+   [[ -e ${dst} ]] || continue
dstheader=$(grep "^# \$Header: " ${dst})
 
-   if [ "${srcheader}" != "${dstheader}" ]; then
+   if [[ "${srcheader}" != "${dstheader}" ]]; then
# copy new ebuild
cp -f ${src} ${dst}
 
@@ -43,7 +44,7 @@ for i in ${pkgs}; do
fi
 done
 
-if [ ${changes} -gt 0 ]; then
+if [[ ${changes} -gt 0 ]]; then
echo ${changes} ebuilds synced, please review the changes
 else
echo Everything up to date



[gentoo-commits] dev/angelos:master commit in: net-misc/chaosvpn/, net-misc/miraclecast/, x11-themes/elegance-colors/, ...

2015-10-22 Thread Christoph Mende
commit: 94b146168e81b9190260afb4f04855b86c2e94b8
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:07:16 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:07:16 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=94b14616

Replace CVS header with $

 app-arch/abgx360/abgx360-1.0.6.ebuild | 4 ++--
 dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild   | 4 ++--
 dev-libs/sqlheavy/sqlheavy-.ebuild| 4 ++--
 dev-util/valadoc/valadoc-.ebuild  | 4 ++--
 .../gmpc-dynamic-playlist/gmpc-dynamic-playlist-0.19.0.ebuild | 4 ++--
 media-plugins/gmpc-lirc/gmpc-lirc-0.20.0.ebuild   | 4 ++--
 media-plugins/gst-plugins-oss4/gst-plugins-oss4-0.10.31.ebuild| 4 ++--
 media-sound/indicator-sound/indicator-sound-12.10.0.ebuild| 4 ++--
 media-sound/oss-driver/oss-driver-4.2.2007.ebuild | 4 ++--
 media-sound/oss/oss-4.2.2007.ebuild   | 4 ++--
 media-sound/scmpc/scmpc-.ebuild   | 4 ++--
 media-tv/otrdecoder/otrdecoder-0.4.ebuild | 4 ++--
 media-tv/qotrdecoder/qotrdecoder-0.0.247.ebuild   | 4 ++--
 net-irc/foobot/foobot-.ebuild | 4 ++--
 net-libs/libwfd/libwfd-.ebuild| 4 ++--
 net-misc/chaosvpn/chaosvpn-2.12.ebuild| 4 ++--
 net-misc/chaosvpn/chaosvpn-2.15.ebuild| 4 ++--
 net-misc/chaosvpn/chaosvpn-.ebuild| 4 ++--
 net-misc/gtkvncviewer/gtkvncviewer-.ebuild| 4 ++--
 net-misc/miraclecast/miraclecast-.ebuild  | 4 ++--
 x11-libs/bamf/bamf-0.3.6-r200.ebuild  | 4 ++--
 x11-libs/bamf/bamf-0.3.6-r300.ebuild  | 4 ++--
 x11-libs/libido/libido-0.3.4.ebuild   | 4 ++--
 x11-misc/abgx360gui/abgx360gui-1.0.2.ebuild   | 4 ++--
 .../lightdm-pantheon-greeter/lightdm-pantheon-greeter-.ebuild | 4 ++--
 x11-misc/plank/plank-.ebuild  | 4 ++--
 x11-themes/elegance-colors/elegance-colors-.ebuild| 4 ++--
 x11-themes/flattr-icons/flattr-icons-.ebuild  | 4 ++--
 x11-themes/iris-light/iris-light-.ebuild  | 4 ++--
 x11-themes/iris/iris-.ebuild  | 4 ++--
 xfce-extra/thunar-dropbox/thunar-dropbox-0.2.0.ebuild | 4 ++--
 31 files changed, 62 insertions(+), 62 deletions(-)

diff --git a/app-arch/abgx360/abgx360-1.0.6.ebuild 
b/app-arch/abgx360/abgx360-1.0.6.ebuild
index 8a08031..d27eb60 100644
--- a/app-arch/abgx360/abgx360-1.0.6.ebuild
+++ b/app-arch/abgx360/abgx360-1.0.6.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=4
 

diff --git a/dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild 
b/dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild
index 0c6ce0b..6cd9ea8 100644
--- a/dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild
+++ b/dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=4
 inherit autotools

diff --git a/dev-libs/sqlheavy/sqlheavy-.ebuild 
b/dev-libs/sqlheavy/sqlheavy-.ebuild
index a4775f4..e1351da 100644
--- a/dev-libs/sqlheavy/sqlheavy-.ebuild
+++ b/dev-libs/sqlheavy/sqlheavy-.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=4
 inherit autotools git-2

diff --git a/dev-util/valadoc/valadoc-.ebuild 
b/dev-util/valadoc/valadoc-.ebuild
index 8955e7f..3e50c2b 100644
--- a/dev-util/valadoc/valadoc-.ebuild
+++ b/dev-util/valadoc/valadoc-.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=4
 inherit autotools git-2

diff --git 
a/media-plugins/gmpc-dynamic-playlist/gmpc-dynamic-playlist-0.19.0.ebuild 
b/media-plugins/gmpc-dynamic-playlist/gmpc-dynamic-playlist-0.19.0.ebuild
index 626c3c3..43b7344 100644
--- a/media-plugins/gmpc-dynamic-playlist/gmpc-dynamic-playlist-0.19.0.ebuild
+++ b/media-plugins/gmpc-dynamic-playlist/gmpc-dynamic-playlist-0.19.0.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-201

[gentoo-commits] dev/angelos:master commit in: xfce-extra/thunar-dropbox/

2015-10-22 Thread Christoph Mende
commit: 54cbddc6fd846cd96c53b183759f9ba2833dfce9
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:11:56 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:11:56 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=54cbddc6

xfce-extra/thunar-dropbox: version bump to 0.2.1, migrate to python-r1

Package-Manager: portage-2.2.23

 xfce-extra/thunar-dropbox/Manifest |   2 +-
 xfce-extra/thunar-dropbox/core | Bin 0 -> 348160 bytes
 ...ropbox-0.2.0.ebuild => thunar-dropbox-0.2.1.ebuild} |   9 ++---
 3 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/xfce-extra/thunar-dropbox/Manifest 
b/xfce-extra/thunar-dropbox/Manifest
index 6cfd1bb..5f9483e 100644
--- a/xfce-extra/thunar-dropbox/Manifest
+++ b/xfce-extra/thunar-dropbox/Manifest
@@ -1 +1 @@
-DIST thunar-dropbox-0.2.0.tar.bz2 109292 SHA256 
1f3419bb50906874d6db1dfcfd002bc9d1edb91e7641de6826ac9f2ed9196700 SHA512 
774f78f2afdd983f5cb81ee8cc425579b186d2ede81f26b94a6974e6f66d0c9831c6a9f8aeed3cc7b1e2587a4cb490786c1426bc90dfeeacfead693778d47a6e
 WHIRLPOOL 
277f89c356ef8d0b52a12a47676d2cc36a3f3ecc61eee54ac505a06194d379142ab81c6e39cbc325918ae7c2fa11a9cf01d5064cdffb5f27200b172c34392b38
+DIST thunar-dropbox-0.2.1.tar.bz2 109878 SHA256 
6eda9b3794696ca2761bb4cea2c786906d58a977df1deac319df43cd7023 SHA512 
38bcb28a31439d1fad4b8515dd5719b3475652d9586186a056757c66e70d59acad994a5d6f7ab4adf1c11291415bd128f5a633de187e86dc7b552be9f4950dbe
 WHIRLPOOL 
3005ebe52a2ae454bf23839419fe6866b93bdcdc32597d2f18c65d96bd4a7048bae930ac76700f9529d17f0ee2b7a25b4e4d34546705b81a5da004e3559dafdd

diff --git a/xfce-extra/thunar-dropbox/core b/xfce-extra/thunar-dropbox/core
new file mode 100644
index 000..b1e31e7
Binary files /dev/null and b/xfce-extra/thunar-dropbox/core differ

diff --git a/xfce-extra/thunar-dropbox/thunar-dropbox-0.2.0.ebuild 
b/xfce-extra/thunar-dropbox/thunar-dropbox-0.2.1.ebuild
similarity index 86%
rename from xfce-extra/thunar-dropbox/thunar-dropbox-0.2.0.ebuild
rename to xfce-extra/thunar-dropbox/thunar-dropbox-0.2.1.ebuild
index b2c4cc4..be81c98 100644
--- a/xfce-extra/thunar-dropbox/thunar-dropbox-0.2.0.ebuild
+++ b/xfce-extra/thunar-dropbox/thunar-dropbox-0.2.1.ebuild
@@ -3,9 +3,9 @@
 # $Id$
 
 EAPI=4
-PYTHON_DEPEND="2:2.6"
+PYTHON_COMPAT=( python2_7 )
 
-inherit gnome2-utils multilib python waf-utils
+inherit gnome2-utils multilib python-any-r1 waf-utils
 
 DESCRIPTION="Plugin for thunar that adds context-menu items for dropbox."
 HOMEPAGE="http://www.softwarebakery.com/maato/thunar-dropbox.html";
@@ -23,11 +23,6 @@ DEPEND="${RDEPEND}
 
 DOCS=( AUTHORS ChangeLog )
 
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}
-
 src_prepare() {
sed -e "s:gtk-update-icon-cache.*:/bin/true':" \
-e "s:/lib/:/$(get_libdir)/:" -i wscript || die "sed failed"



[gentoo-commits] dev/angelos:master commit in: media-sound/indicator-sound/

2015-10-22 Thread Christoph Mende
commit: 2271f66d98dc4ff3f594746eb6b993a3b07cd3e9
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:34:57 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:34:57 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=2271f66d

media-sound/indicator-sound: version bump to 12.10.1, migrate to vala.eclass

 media-sound/indicator-sound/Manifest   |  2 +-
 ...tor-sound-12.10.0.ebuild => indicator-sound-12.10.1.ebuild} | 10 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-sound/indicator-sound/Manifest 
b/media-sound/indicator-sound/Manifest
index f20e3ba..bcab6db 100644
--- a/media-sound/indicator-sound/Manifest
+++ b/media-sound/indicator-sound/Manifest
@@ -1 +1 @@
-DIST indicator-sound-12.10.0.tar.gz 532856 SHA256 
ecac33b74396f955db0a0998d7b5d2a2a496882c5ef2077ce67be4361a624dd1 SHA512 
4a344139af92324858539dd5e3189bf6d212f3d940d1e53555c6ac181856a92bfa1584b625d23e25928f32a730c5588d45668c84836ccebb3137d86a4967a5e9
 WHIRLPOOL 
b719f5dfbf5949bf393ca61fdbc9623d1366a630e1881dfaaf400dbeef2c07e882145f4e8acba5233b1a5f69bf5307b8cbdc02ed7f930b0e49021d1d8ad75f60
+DIST indicator-sound-12.10.1.tar.gz 531957 SHA256 
d3ae4e8a9e2bac6f9098e617364aba1ddca15ee118d5aa89ae85d0a1f3371af6 SHA512 
58563f2b269a6b6e236a5e1dca0c406a0ee35686a3e66980c4611e6f864b6855b6d13016cc9ec10f6fc38896e0d65cb9a946d799f01517d0612a8422572f1b78
 WHIRLPOOL 
48ecb3b61f4994ee7fdd3afeb311a5c92348fdac382ff261761c940f5ead65b7d47caeb7ff805adfb64a1257d18ede56b857405c4aa51a43b55263d3c32124c8

diff --git a/media-sound/indicator-sound/indicator-sound-12.10.0.ebuild 
b/media-sound/indicator-sound/indicator-sound-12.10.1.ebuild
similarity index 87%
rename from media-sound/indicator-sound/indicator-sound-12.10.0.ebuild
rename to media-sound/indicator-sound/indicator-sound-12.10.1.ebuild
index ee6c904..1d6b85b 100644
--- a/media-sound/indicator-sound/indicator-sound-12.10.0.ebuild
+++ b/media-sound/indicator-sound/indicator-sound-12.10.1.ebuild
@@ -3,7 +3,8 @@
 # $Id$
 
 EAPI=4
-inherit gnome2-utils
+VALA_MIN_API_VERSION=0.14
+inherit gnome2-utils vala
 
 DESCRIPTION="A unified sound menu"
 HOMEPAGE="https://launchpad.net/indicator-sound";
@@ -15,7 +16,7 @@ KEYWORDS="~amd64"
 IUSE=""
 
 RDEPEND=">=dev-libs/glib-2.26:2
-   >=dev-libs/libdbusmenu-0.5.90:3[gtk]
+   >=dev-libs/libdbusmenu-0.5.90[gtk]
dev-libs/libgee
dev-libs/libindicator:3
dev-libs/libxml2:2
@@ -24,14 +25,13 @@ RDEPEND=">=dev-libs/glib-2.26:2
x11-libs/libido
>=x11-libs/libnotify-0.7"
 DEPEND="${RDEPEND}
-   dev-lang/vala:0.14
+   $(vala_depend)
virtual/pkgconfig"
 
 DOCS=( AUTHORS NEWS )
 
 src_configure() {
-   VALAC=$(type -p valac-0.14) \
-   econf \
+   econf \
--disable-static \
--disable-schemas-compile
 }



[gentoo-commits] dev/angelos:master commit in: net-irc/foobot/

2015-10-22 Thread Christoph Mende
commit: 8c79de5fcd30f1ccf9acf846d582b88a1356d1f4
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:39:53 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:39:53 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=8c79de5f

net-irc/foobot: bump to EAPI5, migrate to vala.eclass

 net-irc/foobot/foobot-.ebuild | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/net-irc/foobot/foobot-.ebuild 
b/net-irc/foobot/foobot-.ebuild
index 167016f..748a9c7 100644
--- a/net-irc/foobot/foobot-.ebuild
+++ b/net-irc/foobot/foobot-.ebuild
@@ -2,8 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
-inherit autotools git-2
+EAPI=5
+VALA_MIN_API_VERSION=0.16
+inherit autotools git-2 vala
 
 DESCRIPTION="an IRC bot written in Vala with support for dynamic plugins and a 
sqlite3-based database"
 HOMEPAGE="https://github.com/cmende/foobot-vala";
@@ -19,13 +20,9 @@ RDEPEND="dev-libs/glib:2
dev-libs/libpeas
dev-libs/sqlheavy"
 DEPEND="${RDEPEND}
-   dev-lang/vala:0.16
+   $(vala_depend)
virtual/pkgconfig"
 
-src_configure() {
-   VALAC="$(type -p valac-0.16)" econf
-}
-
 src_install() {
default
find "${ED}" -name "*.la" -delete || die



[gentoo-commits] dev/angelos:master commit in: dev-libs/sqlheavy/

2015-10-22 Thread Christoph Mende
commit: 21d795a031d27e91609608ce597adcce83bdd2dd
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:21:18 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:21:18 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=21d795a0

dev-libs/sqlheavy: remove 0.1.1

 dev-libs/sqlheavy/Manifest  |  1 -
 dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/dev-libs/sqlheavy/Manifest b/dev-libs/sqlheavy/Manifest
deleted file mode 100644
index 8064f17..000
--- a/dev-libs/sqlheavy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sqlheavy-0.1.1.tar.xz 372776 SHA256 
e8689f5fd4e0baf98eada2b3811262bb99877c2e8586fd21ad2a7ad3acc59031 SHA512 
be455450360589c2efcf60a34829c925d7f98a569a34913e572baabc5601c86dca3b734bcd2369fe7f0819a166364bcdc893896462a8048bd02668402d63485c
 WHIRLPOOL 
e08fa0b648f9dd94e80847533477090502f538121d555d6682ec58f8fcefd4659269092b204e9634e9c1787d8ee6d618b18c6d1d8ce8b3cb24b2e1f3cef8ef22

diff --git a/dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild 
b/dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild
deleted file mode 100644
index 6cd9ea8..000
--- a/dev-libs/sqlheavy/sqlheavy-0.1.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit autotools
-
-DESCRIPTION="GObject SQLite wrapper"
-HOMEPAGE="http://code.google.com/p/sqlheavy/";
-SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.xz";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-RDEPEND=">=dev-db/sqlite-3.6.20:3
-   dev-lang/vala:0.16
-   >=dev-libs/glib-2.22:2
-   >=x11-libs/gtk+-2.24:2"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS NEWS README )
-
-src_prepare() {
-   sed -i -e "/examples/d" Makefile.am # don't compile examples
-   eautoreconf
-}
-
-src_configure() {
-   econf --disable-static
-}
-
-src_install() {
-   default
-   find "${ED}" -name "*.la" -delete || die
-   docinto examples
-   use examples && dodoc examples/*.vala
-}



[gentoo-commits] dev/angelos:master commit in: media-tv/otrdecoder/, x11-themes/flattr-icons/, dev-libs/sqlheavy/, ...

2015-10-22 Thread Christoph Mende
commit: 237888c2bdc2a72bc713ae2e77b7b4e53a2e43f5
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 10:55:38 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 10:55:38 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=237888c2

Migrate to thin manifests

 app-arch/abgx360/Manifest| 12 
 dev-libs/sqlheavy/Manifest   | 13 -
 dev-util/valadoc/Manifest| 12 
 media-plugins/gmpc-dynamic-playlist/Manifest | 13 -
 media-plugins/gmpc-lirc/Manifest | 12 
 media-plugins/gst-plugins-oss4/Manifest  | 12 
 media-sound/indicator-sound/Manifest | 12 
 media-sound/oss-driver/Manifest  | 12 
 media-sound/oss/Manifest | 17 -
 media-sound/scmpc/Manifest   | 13 -
 media-tv/otrdecoder/Manifest |  6 ++
 media-tv/qotrdecoder/Manifest|  4 +---
 metadata/layout.conf |  7 +++
 net-irc/foobot/Manifest  | 12 
 net-libs/libwfd/Manifest |  2 --
 net-misc/chaosvpn/Manifest   | 15 ---
 net-misc/gtkvncviewer/Manifest   | 12 
 net-misc/miraclecast/Manifest|  2 --
 x11-libs/bamf/Manifest   | 13 -
 x11-libs/libido/Manifest | 12 
 x11-misc/abgx360gui/Manifest | 12 
 x11-misc/lightdm-pantheon-greeter/Manifest   | 12 
 x11-misc/plank/Manifest  | 12 
 x11-themes/elegance-colors/Manifest  | 12 
 x11-themes/flattr-icons/Manifest | 12 
 x11-themes/iris-light/Manifest   | 12 
 x11-themes/iris/Manifest | 12 
 xfce-extra/thunar-dropbox/Manifest   | 12 
 28 files changed, 10 insertions(+), 299 deletions(-)

diff --git a/app-arch/abgx360/Manifest b/app-arch/abgx360/Manifest
index 4686285..04d74ab 100644
--- a/app-arch/abgx360/Manifest
+++ b/app-arch/abgx360/Manifest
@@ -1,13 +1 @@
--BEGIN PGP SIGNED MESSAGE-
-Hash: SHA256
-
 DIST abgx360-1.0.6.tar.gz 308959 SHA256 
d73e0270383ff9c150224e1f687d1d5643b4c23752cfaec2dcfde8a12db5a8f7 SHA512 
cc214a96ce9be9deedcf3c70d7b47680d7e43a237df3f5d08801a5828255eb75e0079258e3dfafd2f0d8838ab85530a638562a86aad270e3bf3a8ec2565e4fff
 WHIRLPOOL 
3c83c704e18c0da178bc19ede4fd70b7ba374d49732100ffce67482cc55c9a5943c58b3841713774200e065ebb11b7b5805bb79b4abe9ef889e7e3bdd6ddbef2
-EBUILD abgx360-1.0.6.ebuild 363 SHA256 
516966c1260f7b73aa9060fd00946c2883b5b7b2fe5edfaa293bf61dc6f72ea7 SHA512 
c9fd39c5e05d29ce925142b5de334632fd9aded0ee25afcccee72bdbbb337218ea07275aba10c57279eec7d1e9c267808676005a8e935cf372c041ab280a0c56
 WHIRLPOOL 
2cc39f7c5f1865d901fc1e9244a8e3bde76e3995d29393e7e0e0564cf75a519f6d4046dc383323c8e8d00f029f58de7409c4e8e18f59e958c16200a26bed3e86
-MISC metadata.xml 236 SHA256 
3d0f545d018f4339358833ccd9c96f191d49a0ec57538a6555b1e8309950ffc4 SHA512 
1b0218005e78814a9faddb69385f8c52c70735859380dd678148021c65ae7010fd045e14ce87945a01e6ec3a5114f060a6be64cde6ecc5d6e142179bcfffbd7b
 WHIRLPOOL 
17efdd67f82ebefdaef81327ecff218d23085003b7c1eea0eef873ade2c2ea2a3de078e44a46290cb359212a1b62b48cc795c84219bb8fb05d71039996e3eeef
--BEGIN PGP SIGNATURE-
-Version: GnuPG v2.0.19 (GNU/Linux)
-
-iF4EAREIAAYFAk/9P18ACgkQmWq1bYTyC0OTrwD+La9bgEcuVKLgrZv9YesGH84A
-u9Cas49SAVBWFzs5xjIA/ikUx5AZhVw0ZYqk0WnOC0HBTtInm3CxV0kPf/w/unzc
-=tMIK
--END PGP SIGNATURE-

diff --git a/dev-libs/sqlheavy/Manifest b/dev-libs/sqlheavy/Manifest
index 792f73a..8064f17 100644
--- a/dev-libs/sqlheavy/Manifest
+++ b/dev-libs/sqlheavy/Manifest
@@ -1,14 +1 @@
--BEGIN PGP SIGNED MESSAGE-
-Hash: SHA256
-
 DIST sqlheavy-0.1.1.tar.xz 372776 SHA256 
e8689f5fd4e0baf98eada2b3811262bb99877c2e8586fd21ad2a7ad3acc59031 SHA512 
be455450360589c2efcf60a34829c925d7f98a569a34913e572baabc5601c86dca3b734bcd2369fe7f0819a166364bcdc893896462a8048bd02668402d63485c
 WHIRLPOOL 
e08fa0b648f9dd94e80847533477090502f538121d555d6682ec58f8fcefd4659269092b204e9634e9c1787d8ee6d618b18c6d1d8ce8b3cb24b2e1f3cef8ef22
-EBUILD sqlheavy-0.1.1.ebuild 797 SHA256 
a2ef5d30c926992c1c3fc8f0573b36c9650af33dc2632231a254f73012f8a4bd SHA512 
b1da620e6b29a53e4575b186b5a587ddbb57e5534599be27a3499c6e2fb9e542c2f92d6537e83e6b4b3f94fb5df137f91a1cf81abca6dbe2feb3e9993a709f2f
 WHIRLPOOL 
b968b0b5951a06a97f2b76ae6367e898563f24f7542f98475cbbac9db15432389bd36459a4a9f840029790cf6db6a8be5509d5f6fd7e956b6d19d3f0fa330409
-EBUILD sqlheavy-.ebuild 880 SHA256 
9c2d6df947f23d6beb91e8641b72da1996d7a7e0f2ff477934ace4201d4c8b43 SHA512 
d27e4e80e795cd91b4eea318f3e908ff8e4d5801eeec75a413fcd22146cecefdbc9e181451068b0d70c9243d23782ca049dfa358960320df946b686562b5ff47

[gentoo-commits] dev/angelos:master commit in: media-tv/qotrdecoder/

2015-10-22 Thread Christoph Mende
commit: 7e302274e7ba066c2853dfa1937ac9399a77d1d3
Author: Christoph Mende  gentoo  org>
AuthorDate: Thu Oct 22 11:30:32 2015 +
Commit: Christoph Mende  gentoo  org>
CommitDate: Thu Oct 22 11:30:32 2015 +
URL:https://gitweb.gentoo.org/dev/angelos.git/commit/?id=7e302274

media-tv/qotrdecoder: migrate to EAPI5, multilib

 media-tv/qotrdecoder/Manifest   |  2 +-
 media-tv/qotrdecoder/qotrdecoder-0.0.247.ebuild | 11 +--
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/media-tv/qotrdecoder/Manifest b/media-tv/qotrdecoder/Manifest
index abf68dc..5730655 100644
--- a/media-tv/qotrdecoder/Manifest
+++ b/media-tv/qotrdecoder/Manifest
@@ -1 +1 @@
-DIST qotrdecoder-linux-Ubuntu_8.04-i686-0.0.247-r1132.tar.bz2 1354967 SHA256 
c2e6d0f73da8a36ad9e58a4305da22cec890ad9c9bde1838ace2e51740d92882
+DIST qotrdecoder-linux-Ubuntu_8.04-i686-0.0.247-r1132.tar.bz2 1354967 SHA256 
c2e6d0f73da8a36ad9e58a4305da22cec890ad9c9bde1838ace2e51740d92882 SHA512 
e03322b6b906aac4eab47bb5c8c2c5661a76104c548c53f1ea34e072d21ad6dee763300499f90234ff8e0c81eb33e72a66222714e48fc4e4e17b33a05bc59699
 WHIRLPOOL 
1b893d669fd3bdef31c0150a897b4793610196a513aada4a967e3a86d74291d2525ff8e6f9194b751b199f751e652c38ab87309037fab56774e297a03422e1fc

diff --git a/media-tv/qotrdecoder/qotrdecoder-0.0.247.ebuild 
b/media-tv/qotrdecoder/qotrdecoder-0.0.247.ebuild
index 03bb0f7..1245d51 100644
--- a/media-tv/qotrdecoder/qotrdecoder-0.0.247.ebuild
+++ b/media-tv/qotrdecoder/qotrdecoder-0.0.247.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=3
+EAPI=5
 
 DESCRIPTION="OnlineTVRecorder decoder (QT)"
 HOMEPAGE="http://www.onlinetvrecorder.com";
@@ -13,10 +13,9 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-RDEPEND="x86? ( media-video/ffmpeg
-   x11-libs/qt-gui
-   x11-libs/qt-core )
-   amd64? ( app-emulation/emul-linux-x86-qtlibs )"
+RDEPEND="virtual/ffmpeg
+   dev-qt/qtgui:4[abi_x86_32(-)]
+   dev-qt/qtcore:4[abi_x86_32(-)]"
 DEPEND=""
 
 S=${WORKDIR}/${PN}-linux-Ubuntu_8.04-i686-${PV}-r1132
@@ -26,5 +25,5 @@ QA_DT_HASH="usr/bin/qotr"
 
 src_install() {
# TODO locales
-   dobin qotr || die "dobin failed"
+   dobin qotr
 }



  1   2   3   >