[gentoo-commits] gentoo-x86 commit in dev-ruby/locale: ChangeLog locale-2.0.5-r4.ebuild

2014-05-27 Thread Hans de Graaff (graaff)
graaff  14/05/27 06:01:51

  Modified: ChangeLog
  Added:locale-2.0.5-r4.ebuild
  Log:
  Add revision bump compatible with rake 10 and ruby20.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.60 dev-ruby/locale/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/ChangeLog?rev=1.60view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/ChangeLog?rev=1.60content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/ChangeLog?r1=1.59r2=1.60

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog   16 May 2014 18:14:39 -  1.59
+++ ChangeLog   27 May 2014 06:01:51 -  1.60
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/locale
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.59 2014/05/16 
18:14:39 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.60 2014/05/27 
06:01:51 graaff Exp $
+
+*locale-2.0.5-r4 (27 May 2014)
+
+  27 May 2014; Hans de Graaff gra...@gentoo.org +locale-2.0.5-r4.ebuild:
+  Add revision bump compatible with rake 10 and ruby20.
 
   16 May 2014; Hans de Graaff gra...@gentoo.org locale-2.1.0-r1.ebuild:
   Add ruby21.



1.1  dev-ruby/locale/locale-2.0.5-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/locale-2.0.5-r4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/locale-2.0.5-r4.ebuild?rev=1.1content-type=text/plain

Index: locale-2.0.5-r4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/locale-2.0.5-r4.ebuild,v 1.1 
2014/05/27 06:01:51 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 jruby

RUBY_FAKEGEM_TASK_DOC=rerdoc
RUBY_FAKEGEM_DOCDIR=doc
RUBY_FAKEGEM_EXTRADOC=ChangeLog README.rdoc

RUBY_FAKEGEM_TASK_TEST=test

inherit ruby-fakegem

DESCRIPTION=A pure ruby library which provides basic APIs for localization.
HOMEPAGE=http://locale.rubyforge.org/;
LICENSE=|| ( Ruby GPL-2 )

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos
SLOT=0
IUSE=

ruby_add_bdepend test? ( dev-ruby/test-unit:2 )

RUBY_PATCHES=( ${FILESDIR}/${PN}-language-fixes.patch )

all_ruby_prepare() {
# Avoid automagic dependency on allison, bug 334937
sed -i -e '/allison/ s:^:#:' Rakefile || die

sed -i -e 's:rake/rdoctask:rdoc/task:' \
-e '/gempackagetask/d' \
-e '/GemPackageTask/,/end/ d' Rakefile || die
}

each_ruby_prepare() {
case ${RUBY} in
*jruby)
# Remove broken test. It's not clear if the test or 
code is
# broken... https://github.com/mutoh/locale/issues/2
rm test/test_detect_general.rb || die
;;
*)
;;
esac
}

all_ruby_install() {
all_fakegem_install

insinto /usr/share/doc/${PF}
doins -r samples || die
}






[gentoo-commits] proj/portage:repoman commit in: pym/repoman/

2014-05-27 Thread Brian Dolbec
commit: 9b19b5835abf159a95a242719400c47fd96f4aa3
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue May 27 03:54:32 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Tue May 27 06:04:24 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9b19b583

repoman/main/py: Create new scan.py and scan()

This moves the main scan code out to a function.
Comment out some unused variables.

---
 pym/repoman/main.py | 45 +
 pym/repoman/scan.py | 50 ++
 2 files changed, 55 insertions(+), 40 deletions(-)

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index 8e15e76..2697b1b 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -66,15 +66,16 @@ from portage.eapi import eapi_has_iuse_defaults, 
eapi_has_required_use
 from repoman.argparser import parse_args
 from repoman.checks.ebuilds.checks import run_checks, checks_init
 from repoman.checks.herds.herdbase import make_herd_base
-from repoman.errors import caterror, err
 from repoman.metadata import (fetch_metadata_dtd, metadata_xml_encoding,
metadata_doctype_name, metadata_dtd_uri, metadata_xml_declaration)
+from repoman.errors import err
 from repoman.modules import commit
 from repoman.profile import check_profiles, dev_keywords, setup_profile
 from repoman.qa_data import (format_qa_output, format_qa_output_column, qahelp,
qawarnings, qacats, no_exec, allvars, max_desc_len, missingvars,
ruby_deprecated, suspect_virtual, suspect_rdepend, valid_restrict)
 from repoman.repos import has_global_mask, RepoSettings, repo_metadata
+from repoman.scan import scan
 from repoman._subprocess import repoman_popen, repoman_getstatusoutput
 from repoman import utilities
 from repoman.vcs.vcs import (git_supports_gpg_sign, vcs_files_to_cps,
@@ -264,47 +265,11 @@ if not uselist:
logging.fatal(Couldn't find use.desc?)
sys.exit(1)
 
-scanlist = []
-if repolevel == 2:
-   # we are inside a category directory
-   catdir = reposplit[-1]
-   if catdir not in categories:
-   caterror(catdir, repo_settings.repodir)
-   mydirlist = os.listdir(startdir)
-   for x in mydirlist:
-   if x == CVS or x.startswith(.):
-   continue
-   if os.path.isdir(startdir + / + x):
-   scanlist.append(catdir + / + x)
-   repo_subdir = catdir + os.sep
-elif repolevel == 1:
-   for x in categories:
-   if not os.path.isdir(startdir + / + x):
-   continue
-   for y in os.listdir(startdir + / + x):
-   if y == CVS or y.startswith(.):
-   continue
-   if os.path.isdir(startdir + / + x + / + y):
-   scanlist.append(x + / + y)
-   repo_subdir = 
-elif repolevel == 3:
-   catdir = reposplit[-2]
-   if catdir not in categories:
-   caterror(catdir,repo_settings.repodir)
-   scanlist.append(catdir + / + reposplit[-1])
-   repo_subdir = scanlist[-1] + os.sep
-else:
-   msg = 'Repoman is unable to determine PORTDIR or PORTDIR_OVERLAY' + \
-   ' from the current working directory'
-   logging.critical(msg)
-   sys.exit(1)
-
-repo_subdir_len = len(repo_subdir)
-scanlist.sort()
+
 
-logging.debug(
-   Found the following packages to scan:\n%s % '\n'.join(scanlist))
+scanlist = scan(repolevel, reposplit, startdir, categories, repo_settings)
 
+
 
 dev_keywords = dev_keywords(profiles)
 

diff --git a/pym/repoman/scan.py b/pym/repoman/scan.py
new file mode 100644
index 000..575069f
--- /dev/null
+++ b/pym/repoman/scan.py
@@ -0,0 +1,50 @@
+
+import logging
+import os
+import sys
+
+from repoman.errors import caterror
+
+def scan(repolevel, reposplit, startdir, categories, repo_settings):
+   scanlist = []
+   if repolevel == 2:
+   # we are inside a category directory
+   catdir = reposplit[-1]
+   if catdir not in categories:
+   caterror(catdir, repo_settings.repodir)
+   mydirlist = os.listdir(startdir)
+   for x in mydirlist:
+   if x == CVS or x.startswith(.):
+   continue
+   if os.path.isdir(startdir + / + x):
+   scanlist.append(catdir + / + x)
+   #repo_subdir = catdir + os.sep
+   elif repolevel == 1:
+   for x in categories:
+   if not os.path.isdir(startdir + / + x):
+   continue
+   for y in os.listdir(startdir + / + x):
+   if y == CVS or y.startswith(.):
+   continue
+   if 

[gentoo-commits] proj/portage:repoman commit in: pym/repoman/

2014-05-27 Thread Brian Dolbec
commit: d9feded23ad346756be0d6e55568a1a9ff1dfbe5
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue May 27 04:09:27 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Tue May 27 06:04:40 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d9feded2

repoman/main.pt: Move some additional code to repos.py

---
 pym/repoman/main.py  | 23 ++-
 pym/repoman/repos.py | 24 ++--
 2 files changed, 24 insertions(+), 23 deletions(-)

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index 2697b1b..836ca1e 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -232,8 +232,8 @@ else:
 ###
 
 # get lists of valid keywords, licenses, and use
-new_data = repo_metadata(repo_settings.portdb)
-kwlist, liclist, uselist, profile_list, global_pmaskdict = new_data
+new_data = repo_metadata(repo_settings.portdb, repoman_settings)
+kwlist, liclist, uselist, profile_list, global_pmaskdict, liclist_deprecated = 
new_data
 
 repoman_settings['PORTAGE_ARCHLIST'] = ' '.join(sorted(kwlist))
 repoman_settings.backup_changes('PORTAGE_ARCHLIST')
@@ -248,25 +248,6 @@ check_profiles(profiles, repoman_settings.archlist())
 
 
 
-liclist_deprecated = set()
-if DEPRECATED in repoman_settings._license_manager._license_groups:
-   liclist_deprecated.update(
-   
repoman_settings._license_manager.expandLicenseTokens([@DEPRECATED]))
-
-if not liclist:
-   logging.fatal(Couldn't find licenses?)
-   sys.exit(1)
-
-if not kwlist:
-   logging.fatal(Couldn't read KEYWORDS from arch.list)
-   sys.exit(1)
-
-if not uselist:
-   logging.fatal(Couldn't find use.desc?)
-   sys.exit(1)
-
-
-
 scanlist = scan(repolevel, reposplit, startdir, categories, repo_settings)
 
 

diff --git a/pym/repoman/repos.py b/pym/repoman/repos.py
index d5eaf60..16de8bf 100644
--- a/pym/repoman/repos.py
+++ b/pym/repoman/repos.py
@@ -148,8 +148,27 @@ class RepoSettings(object):
logging.error(line)
sys.exit(1)
 
+def list_checks(kwlist, liclist, uselist, repoman_settings):
+   liclist_deprecated = set()
+   if DEPRECATED in repoman_settings._license_manager._license_groups:
+   liclist_deprecated.update(
+   
repoman_settings._license_manager.expandLicenseTokens([@DEPRECATED]))
 
-def repo_metadata(portdb):
+   if not liclist:
+   logging.fatal(Couldn't find licenses?)
+   sys.exit(1)
+
+   if not kwlist:
+   logging.fatal(Couldn't read KEYWORDS from arch.list)
+   sys.exit(1)
+
+   if not uselist:
+   logging.fatal(Couldn't find use.desc?)
+   sys.exit(1)
+   return liclist_deprecated
+
+
+def repo_metadata(portdb, repoman_settings):
# get lists of valid keywords, licenses, and use
kwlist = set()
liclist = set()
@@ -236,7 +255,8 @@ def repo_metadata(portdb):
global_pmaskdict.setdefault(x.cp, []).append(x)
del global_pmasklines
 
-   return (kwlist, liclist, uselist, profile_list, global_pmaskdict)
+   return (kwlist, liclist, uselist, profile_list, global_pmaskdict,
+   list_checks(kwlist, liclist, uselist, repoman_settings))
 
 
 def has_global_mask(pkg, global_pmaskdict):



[gentoo-commits] proj/portage:repoman commit in: pym/repoman/

2014-05-27 Thread Brian Dolbec
commit: d82b7a95d697435dffd80028df21517e8c5fda7d
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue May 27 06:03:33 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Tue May 27 06:04:40 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d82b7a95

repoman/main.py: Create a new Changes class

This new class is to scan for and hold the changes in the repo.
Later it will act as a manager class to run the individual VCS plugin modules 
scan function.

---
 pym/repoman/main.py | 103 +-
 pym/repoman/scan.py | 127 
 2 files changed, 139 insertions(+), 91 deletions(-)

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index e03788f..49ad79d 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -75,7 +75,7 @@ from repoman.qa_data import (format_qa_output, 
format_qa_output_column, qahelp,
qawarnings, qacats, no_exec, allvars, max_desc_len, missingvars,
ruby_deprecated, suspect_virtual, suspect_rdepend, valid_restrict)
 from repoman.repos import has_global_mask, RepoSettings, repo_metadata
-from repoman.scan import scan
+from repoman.scan import Changes, scan
 from repoman._subprocess import repoman_popen, repoman_getstatusoutput
 from repoman import utilities
 from repoman.vcs.vcs import (git_supports_gpg_sign, vcs_files_to_cps,
@@ -275,91 +275,12 @@ elif options.pretend:
 else:
print(green(\nRepoMan scours the neighborhood...))
 
-new_ebuilds = set()
-modified_ebuilds = set()
-modified_changelogs = set()
-mychanged = []
-mynew = []
-myremoved = []
-
-if vcs_settings.vcs == cvs:
-   mycvstree = cvstree.getentries(./, recursive=1)
-   mychanged = cvstree.findchanged(mycvstree, recursive=1, basedir=./)
-   mynew = cvstree.findnew(mycvstree, recursive=1, basedir=./)
-   if options.if_modified == y:
-   myremoved = cvstree.findremoved(mycvstree, recursive=1, 
basedir=./)
-
-elif vcs_settings.vcs == svn:
-   with repoman_popen(svn status) as f:
-   svnstatus = f.readlines()
-   mychanged = [
-   ./ + elem.split()[-1:][0]
-   for elem in svnstatus
-   if elem and elem[:1] in MR]
-   mynew = [
-   ./ + elem.split()[-1:][0]
-   for elem in svnstatus
-   if elem.startswith(A)]
-   if options.if_modified == y:
-   myremoved = [
-   ./ + elem.split()[-1:][0]
-   for elem in svnstatus
-   if elem.startswith(D)]
-
-elif vcs_settings.vcs == git:
-   with repoman_popen(
-   git diff-index --name-only 
-   --relative --diff-filter=M HEAD) as f:
-   mychanged = f.readlines()
-   mychanged = [./ + elem[:-1] for elem in mychanged]
-
-   with repoman_popen(
-   git diff-index --name-only 
-   --relative --diff-filter=A HEAD) as f:
-   mynew = f.readlines()
-   mynew = [./ + elem[:-1] for elem in mynew]
-   if options.if_modified == y:
-   with repoman_popen(
-   git diff-index --name-only 
-   --relative --diff-filter=D HEAD) as f:
-   myremoved = f.readlines()
-   myremoved = [./ + elem[:-1] for elem in myremoved]
-
-elif vcs_settings.vcs == bzr:
-   with repoman_popen(bzr status -S .) as f:
-   bzrstatus = f.readlines()
-   mychanged = [
-   ./ + elem.split()[-1:][0].split('/')[-1:][0]
-   for elem in bzrstatus
-   if elem and elem[1:2] == M]
-   mynew = [
-   ./ + elem.split()[-1:][0].split('/')[-1:][0]
-   for elem in bzrstatus
-   if elem and (elem[1:2] == NK or elem[0:1] == R)]
-   if options.if_modified == y:
-   myremoved = [
-   ./ + elem.split()[-3:-2][0].split('/')[-1:][0]
-   for elem in bzrstatus
-   if elem and (elem[1:2] == K or elem[0:1] == R)]
+#
 
-elif vcs_settings.vcs == hg:
-   with repoman_popen(hg status --no-status --modified .) as f:
-   mychanged = f.readlines()
-   mychanged = [./ + elem.rstrip() for elem in mychanged]
-   with repoman_popen(hg status --no-status --added .) as f:
-   mynew = f.readlines()
-   mynew = [./ + elem.rstrip() for elem in mynew]
-   if options.if_modified == y:
-   with repoman_popen(hg status --no-status --removed .) as f:
-   myremoved = f.readlines()
-   myremoved = [./ + elem.rstrip() for elem in myremoved]
+changed = Changes(options)
+changed.scan(vcs_settings)
 
-if vcs_settings.vcs:
-   new_ebuilds.update(x for x in mynew if x.endswith(.ebuild))
-   modified_ebuilds.update(x for x in mychanged if 

[gentoo-commits] gentoo-x86 commit in dev-ruby/locale: locale-2.1.0-r1.ebuild locale-2.1.0-r2.ebuild ChangeLog

2014-05-27 Thread Hans de Graaff (graaff)
graaff  14/05/27 06:13:43

  Modified: locale-2.1.0-r1.ebuild ChangeLog
  Added:locale-2.1.0-r2.ebuild
  Log:
  Add revision bump to create a stable candidate.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.5  dev-ruby/locale/locale-2.1.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/locale-2.1.0-r1.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/locale-2.1.0-r1.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/locale-2.1.0-r1.ebuild?r1=1.4r2=1.5

Index: locale-2.1.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/locale/locale-2.1.0-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- locale-2.1.0-r1.ebuild  16 May 2014 18:14:39 -  1.4
+++ locale-2.1.0-r1.ebuild  27 May 2014 06:13:43 -  1.5
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/locale-2.1.0-r1.ebuild,v 
1.4 2014/05/16 18:14:39 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/locale-2.1.0-r1.ebuild,v 
1.5 2014/05/27 06:13:43 graaff Exp $
 
 EAPI=5
 
-USE_RUBY=ruby19 ruby20 ruby21 jruby
+USE_RUBY=ruby19 ruby20 jruby
 
 RUBY_FAKEGEM_TASK_DOC=
 RUBY_FAKEGEM_DOCDIR=doc/reference



1.61 dev-ruby/locale/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/ChangeLog?rev=1.61view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/ChangeLog?rev=1.61content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/ChangeLog?r1=1.60r2=1.61

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog   27 May 2014 06:01:51 -  1.60
+++ ChangeLog   27 May 2014 06:13:43 -  1.61
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/locale
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.60 2014/05/27 
06:01:51 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.61 2014/05/27 
06:13:43 graaff Exp $
+
+*locale-2.1.0-r2 (27 May 2014)
+
+  27 May 2014; Hans de Graaff gra...@gentoo.org locale-2.1.0-r1.ebuild,
+  +locale-2.1.0-r2.ebuild:
+  Add revision bump to create a stable candidate.
 
 *locale-2.0.5-r4 (27 May 2014)
 



1.1  dev-ruby/locale/locale-2.1.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/locale-2.1.0-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/locale/locale-2.1.0-r2.ebuild?rev=1.1content-type=text/plain

Index: locale-2.1.0-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/locale-2.1.0-r2.ebuild,v 1.1 
2014/05/27 06:13:43 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21 jruby

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_DOCDIR=doc/reference
RUBY_FAKEGEM_EXTRADOC=ChangeLog README.rdoc doc/text/news.md

RUBY_FAKEGEM_TASK_TEST=test

inherit ruby-fakegem

DESCRIPTION=A pure ruby library which provides basic APIs for localization.
HOMEPAGE=https://github.com/ruby-gettext/locale;
LICENSE=|| ( Ruby GPL-2 )
SRC_URI=https://github.com/ruby-gettext/locale/archive/${PV}.tar.gz - 
${P}-git.tgz

KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-macos
SLOT=0
IUSE=

ruby_add_bdepend doc? ( dev-ruby/yard )

ruby_add_bdepend test? ( dev-ruby/test-unit:2 dev-ruby/test-unit-rr )

all_ruby_prepare() {
sed -i -e '/notify/ s:^:#:' test/run-test.rb || die
}

each_ruby_prepare() {
case ${RUBY} in
*jruby)
# Avoid failing tests in the partial jruby
# implementation. This may be dependeny on the specific
# locales available or it may be an issue with Gentoo 
still
# using jruby 1.6.
sed -i -e '/test_locales/,/end/ s:^:#:' 
test/test_driver_jruby.rb || die
;;
esac
}

all_ruby_compile() {
all_fakegem_compile

if use doc ; then
yard || die
fi
}

each_ruby_test() {
${RUBY} test/run-test.rb || die
}

all_ruby_install() {
all_fakegem_install

insinto /usr/share/doc/${PF}
doins -r samples || die
}






[gentoo-commits] gentoo-x86 commit in dev-python/shortuuid: - New directory

2014-05-27 Thread Johann Schmitz (ercpe)
ercpe   14/05/27 06:16:25

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-python/shortuuid added to the repository



[gentoo-commits] gentoo-x86 commit in dev-python/shortuuid: metadata.xml shortuuid-0.4.2.ebuild ChangeLog

2014-05-27 Thread Johann Schmitz (ercpe)
ercpe   14/05/27 06:17:52

  Added:metadata.xml shortuuid-0.4.2.ebuild ChangeLog
  Log:
  Added dev-python/shortuuid-0.4.2 as a test dependency for newer (?) 
dev-python/django-extensions
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.1  dev-python/shortuuid/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shortuuid/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shortuuid/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailer...@gentoo.org/email
nameJohann Schmitz (ercpe)/name
/maintainer
longdescriptionA library that generates short, pretty, unambiguous 
unique IDs by using an extensive, case-sensitive alphabet and omitting 
similar-looking letters and numbers./longdescription
/pkgmetadata



1.1  dev-python/shortuuid/shortuuid-0.4.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shortuuid/shortuuid-0.4.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shortuuid/shortuuid-0.4.2.ebuild?rev=1.1content-type=text/plain

Index: shortuuid-0.4.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/shortuuid/shortuuid-0.4.2.ebuild,v 1.1 
2014/05/27 06:17:52 ercpe Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_2,3_3} )

inherit distutils-r1

DESCRIPTION=A generator library for concise, unambiguous and URL-safe UUIDs
HOMEPAGE=https://pypi.python.org/pypi/shortuuid;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~x86

IUSE=

RDEPEND=${DEPEND}

S=${WORKDIR}/${P}



1.1  dev-python/shortuuid/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shortuuid/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shortuuid/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-python/shortuuid
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/shortuuid/ChangeLog,v 1.1 
2014/05/27 06:17:52 ercpe Exp $

*shortuuid-0.4.2 (27 May 2014)

  27 May 2014; Johann Schmitz er...@gentoo.org +metadata.xml,
  +shortuuid-0.4.2.ebuild:
  Added dev-python/shortuuid-0.4.2 as a test dependency for newer (?) dev-python
  /django-extensions






[gentoo-commits] gentoo-x86 commit in dev-ruby/session: ChangeLog session-3.1.2.ebuild

2014-05-27 Thread Hans de Graaff (graaff)
graaff  14/05/27 06:19:35

  Modified: ChangeLog session-3.1.2.ebuild
  Log:
  Drop ruby21 to create a stable candidate.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.39 dev-ruby/session/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/session/ChangeLog?rev=1.39view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/session/ChangeLog?rev=1.39content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/session/ChangeLog?r1=1.38r2=1.39

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/session/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   17 Apr 2014 05:41:06 -  1.38
+++ ChangeLog   27 May 2014 06:19:35 -  1.39
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/session
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/session/ChangeLog,v 1.38 
2014/04/17 05:41:06 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/session/ChangeLog,v 1.39 
2014/05/27 06:19:35 graaff Exp $
+
+  27 May 2014; Hans de Graaff gra...@gentoo.org session-3.1.2.ebuild:
+  Drop ruby21 to create a stable candidate.
 
 *session-3.2.0 (17 Apr 2014)
 



1.3  dev-ruby/session/session-3.1.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/session/session-3.1.2.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/session/session-3.1.2.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/session/session-3.1.2.ebuild?r1=1.2r2=1.3

Index: session-3.1.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/session/session-3.1.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- session-3.1.2.ebuild5 Apr 2014 14:24:39 -   1.2
+++ session-3.1.2.ebuild27 May 2014 06:19:35 -  1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/session/session-3.1.2.ebuild,v 1.2 
2014/04/05 14:24:39 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/session/session-3.1.2.ebuild,v 1.3 
2014/05/27 06:19:35 graaff Exp $
 
 EAPI=5
 
-USE_RUBY=ruby19 ruby20 ruby21 jruby
+USE_RUBY=ruby19 ruby20 jruby
 
 RUBY_FAKEGEM_TASK_TEST=
 RUBY_FAKEGEM_TASK_DOC=






[gentoo-commits] gentoo-x86 commit in dev-python/django-extensions: django-extensions-1.3.7.ebuild ChangeLog

2014-05-27 Thread Johann Schmitz (ercpe)
ercpe   14/05/27 06:21:23

  Modified: ChangeLog
  Added:django-extensions-1.3.7.ebuild
  Log:
  Version bump of django-extensions to get rid of django warnings about 
json/simplejson imports
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.8  dev-python/django-extensions/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   26 Mar 2014 03:38:36 -  1.7
+++ ChangeLog   27 May 2014 06:21:23 -  1.8
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/django-extensions
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v 
1.7 2014/03/26 03:38:36 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v 
1.8 2014/05/27 06:21:23 ercpe Exp $
+
+*django-extensions-1.3.7 (27 May 2014)
+
+  27 May 2014; Johann Schmitz er...@gentoo.org
+  +django-extensions-1.3.7.ebuild:
+  Version bump of django-extensions to get rid of django warnings about
+  json/simplejson imports
 
 *django-extensions-1.3.3 (26 Mar 2014)
 



1.1  dev-python/django-extensions/django-extensions-1.3.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/django-extensions-1.3.7.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/django-extensions-1.3.7.ebuild?rev=1.1content-type=text/plain

Index: django-extensions-1.3.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/django-extensions/django-extensions-1.3.7.ebuild,v
 1.1 2014/05/27 06:21:23 ercpe Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7,3_3} )

inherit distutils-r1

GIT_HASH_TAG=8059f05

DESCRIPTION=Django Command Extensions
HOMEPAGE=http://github.com/django-extensions/django-extensions 
http://code.google.com/p/django-command-extensions/;
SRC_URI=http://github.com/django-extensions/django-extensions/tarball/${PV}/${P}.tgz;

LICENSE=BSD || ( MIT GPL-2 )
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=doc graphviz mysql postgres s3 sqlite test vcard
# Req'd for tests
DISTUTILS_IN_SOURCE_BUILD=1

PY2_USEDEP=$(python_gen_usedep 'python2*')
RDEPEND==dev-python/django-1.5.4[${PYTHON_USEDEP},mysql?,postgres?,sqlite?]
dev-python/six[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
dev-python/werkzeug[${PYTHON_USEDEP}]
graphviz? ( dev-python/pygraphviz[${PY2_USEDEP}] )
s3? ( dev-python/boto[${PY2_USEDEP}] )
vcard? ( dev-python/vobject[${PY2_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}] )
test? ( ${RDEPEND}
dev-python/shortuuid[${PYTHON_USEDEP}] )

S=${WORKDIR}/${PN}-${PN}-${GIT_HASH_TAG}

PY2_REQUSE=|| ( $(python_gen_useflags python2* ) )
REQUIRED_USE=
graphviz? ( ${PY2_REQUSE} )
s3? ( ${PY2_REQUSE} )
vcard? ( ${PY2_REQUSE} )

python_compile_all() {
use doc  emake -C docs html
}

python_test() {
${PYTHON} run_tests.py || die
}

python_install_all() {
use doc  local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/text: text-1.2.3-r1.ebuild text-1.2.3-r2.ebuild ChangeLog

2014-05-27 Thread Hans de Graaff (graaff)
graaff  14/05/27 06:22:24

  Modified: text-1.2.3-r1.ebuild ChangeLog
  Added:text-1.2.3-r2.ebuild
  Log:
  Drop ruby21 to create a stable candidate.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.6  dev-ruby/text/text-1.2.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/text-1.2.3-r1.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/text-1.2.3-r1.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/text-1.2.3-r1.ebuild?r1=1.5r2=1.6

Index: text-1.2.3-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/text/text-1.2.3-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- text-1.2.3-r1.ebuild24 Apr 2014 17:41:36 -  1.5
+++ text-1.2.3-r1.ebuild27 May 2014 06:22:24 -  1.6
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text/text-1.2.3-r1.ebuild,v 1.5 
2014/04/24 17:41:36 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text/text-1.2.3-r1.ebuild,v 1.6 
2014/05/27 06:22:24 graaff Exp $
 
 EAPI=5
-USE_RUBY=ruby19 ruby20 ruby21 jruby
+USE_RUBY=ruby19 ruby20 jruby
 
 RUBY_FAKEGEM_RECIPE_DOC=rdoc
 RUBY_FAKEGEM_EXTRADOC=README.rdoc



1.8  dev-ruby/text/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/text/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   24 Apr 2014 17:41:36 -  1.7
+++ ChangeLog   27 May 2014 06:22:24 -  1.8
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/text
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text/ChangeLog,v 1.7 2014/04/24 
17:41:36 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text/ChangeLog,v 1.8 2014/05/27 
06:22:24 graaff Exp $
+
+*text-1.2.3-r2 (27 May 2014)
+
+  27 May 2014; Hans de Graaff gra...@gentoo.org text-1.2.3-r1.ebuild,
+  +text-1.2.3-r2.ebuild:
+  Drop ruby21 to create a stable candidate.
 
   24 Apr 2014; Manuel Rüger mr...@gentoo.org -text-1.2.3.ebuild,
   text-1.2.3-r1.ebuild:



1.1  dev-ruby/text/text-1.2.3-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/text-1.2.3-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/text/text-1.2.3-r2.ebuild?rev=1.1content-type=text/plain

Index: text-1.2.3-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text/text-1.2.3-r2.ebuild,v 1.1 
2014/05/27 06:22:24 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21 jruby

RUBY_FAKEGEM_RECIPE_DOC=rdoc
RUBY_FAKEGEM_EXTRADOC=README.rdoc

inherit ruby-fakegem

DESCRIPTION=A collection of text algorithms
HOMEPAGE=https://github.com/threedaymonk/text;

LICENSE=MIT

SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~ia64
IUSE=






[gentoo-commits] gentoo-x86 commit in dev-python/cfgio: - New directory

2014-05-27 Thread Johann Schmitz (ercpe)
ercpe   14/05/27 06:29:11

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-python/cfgio added to the repository



[gentoo-commits] gentoo-x86 commit in dev-python/autopep8: autopep8-1.0.1.ebuild ChangeLog

2014-05-27 Thread Ian Delaney (idella4)
idella4 14/05/27 06:29:44

  Modified: autopep8-1.0.1.ebuild ChangeLog
  Log:
  revert setting of RDEPEND, pointed out by Arfrever
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/autopep8/autopep8-1.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-1.0.1.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-1.0.1.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-1.0.1.ebuild?r1=1.2r2=1.3

Index: autopep8-1.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-1.0.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- autopep8-1.0.1.ebuild   4 May 2014 08:47:35 -   1.2
+++ autopep8-1.0.1.ebuild   27 May 2014 06:29:44 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-1.0.1.ebuild,v 
1.2 2014/05/04 08:47:35 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-1.0.1.ebuild,v 
1.3 2014/05/27 06:29:44 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -18,7 +18,7 @@
 
 DEPEND==dev-python/pep8-1.5.6[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
-RDEPEND==dev-python/pep8-1.5.6[${PYTHON_USEDEP}]
+RDEPEND=${DEPEND}
 
 python_test() {
esetup.py test



1.46 dev-python/autopep8/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.46view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.46content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?r1=1.45r2=1.46

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   4 May 2014 08:47:35 -   1.45
+++ ChangeLog   27 May 2014 06:29:44 -  1.46
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/autopep8
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.45 
2014/05/04 08:47:35 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.46 
2014/05/27 06:29:44 idella4 Exp $
+
+  27 May 2014; Ian Delaney idel...@gentoo.org autopep8-1.0.1.ebuild:
+  revert setting of RDEPEND, pointed out by Arfrever
 
   04 May 2014; Ian Delaney idel...@gentoo.org autopep8-1.0.1.ebuild:
   drop py2.6 add py3.4 pypy support tidy deps






[gentoo-commits] gentoo-x86 commit in dev-python/cfgio: metadata.xml cfgio-0.1.2.ebuild Manifest ChangeLog

2014-05-27 Thread Johann Schmitz (ercpe)
ercpe   14/05/27 06:31:20

  Added:metadata.xml cfgio-0.1.2.ebuild Manifest ChangeLog
  Log:
  Added ebuild for cfgio
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.1  dev-python/cfgio/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailer...@gentoo.org/email
nameJohann Schmitz (ercpe)/name
/maintainer
/pkgmetadata



1.1  dev-python/cfgio/cfgio-0.1.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/cfgio-0.1.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/cfgio-0.1.2.ebuild?rev=1.1content-type=text/plain

Index: cfgio-0.1.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cfgio/cfgio-0.1.2.ebuild,v 1.1 
2014/05/27 06:31:20 ercpe Exp $

EAPI=5

PYTHON_COMPAT=( python3_3 )

inherit distutils-r1

DESCRIPTION=Python library for reading and writing configuration file formats 
found on a *nix systems
HOMEPAGE=https://github.com/ercpe/cfgio;
SRC_URI=https://github.com/ercpe/${PN}/archive/${PV}.tar.gz - ${P}.tar.gz
LICENSE=GPL-2

SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test

DEPEND=test? ( dev-python/pytest[${PYTHON_USEDEP}] )

python_test() {
py.test || die Testing failed with ${EPYTHON}
}



1.1  dev-python/cfgio/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST cfgio-0.1.2.tar.gz 17221 SHA256 
4247ccbb38fce0de7601ab04d05e39789c661efaed7e891e0cc76ea12529377e SHA512 
62b3d93097e088ca6a54efbeedfc42f2b565ec0692b2ed7b1f2ea028b087e3fea1d109ca4d268aa8d9cb499eecbd4c0b10c3092c8754809bf74ee62c03b947cc
 WHIRLPOOL 
7e3b98da25d37439030966e3fc59e50040dff98bdf54925af54594aac5eaba87e2002354a26a836ce32af9ad9961e20a2a113f0c4f493e3e67ad96bd1104fa79
EBUILD cfgio-0.1.2.ebuild 588 SHA256 
203d01434581895765d21ee594829e9e055e33fbec30b588da6b27558f22b3bd SHA512 
f25a7b8b9e4fed6e6dc46e2e335b8fc30e9b865e554dd36c2a42ee31d79151d67374f069c3d15a599f134d1c69b182ae49437316f1aa131313acdb0b12d4c813
 WHIRLPOOL 
49206ddf5c412e495b27aec33d708f0d996f14e7b089b1f68b5b40066c0311c61ecb0791b88b4fb559bd11446a813e87d253bcc1f45fa0ad415cadc95cf27569
MISC metadata.xml 240 SHA256 
9d9ea316e66a41d5fa0da98ffd2bb59c68d9bafb3d99b83e8a7b66eb0c71d511 SHA512 
ef8985d2f52ae6e5b5edff7a28455b9c1bf91217d43a4374b79606960b3045a94425016d5f07150b18c195c51261e0b8bcc1d220387559e80e987677299bd4d8
 WHIRLPOOL 
d4995df6148a030974b72d8c684d33277db6c183cdd60822fbc7f2e23e394489ba9e9009464df2633888da7dd3d7cab5ec27b5bf3d87e707dc2c337d1c8e0035



1.1  dev-python/cfgio/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cfgio/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-python/cfgio
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cfgio/ChangeLog,v 1.1 2014/05/27 
06:31:20 ercpe Exp $

*cfgio-0.1.2 (27 May 2014)

  27 May 2014; Johann Schmitz er...@gentoo.org +cfgio-0.1.2.ebuild,
  +metadata.xml:
  Added ebuild for cfgio






[gentoo-commits] gentoo-x86 commit in sys-auth/sssd: sssd-1.9.6-r3.ebuild ChangeLog

2014-05-27 Thread Michal Gorny (mgorny)
mgorny  14/05/27 06:32:32

  Modified: sssd-1.9.6-r3.ebuild ChangeLog
  Log:
  Convert to python-single-r1.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  sys-auth/sssd/sssd-1.9.6-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/sssd-1.9.6-r3.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/sssd-1.9.6-r3.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/sssd-1.9.6-r3.ebuild?r1=1.1r2=1.2

Index: sssd-1.9.6-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/sssd/sssd-1.9.6-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sssd-1.9.6-r3.ebuild26 May 2014 18:15:55 -  1.1
+++ sssd-1.9.6-r3.ebuild27 May 2014 06:32:32 -  1.2
@@ -1,16 +1,16 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/sssd/sssd-1.9.6-r3.ebuild,v 1.1 
2014/05/26 18:15:55 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/sssd/sssd-1.9.6-r3.ebuild,v 1.2 
2014/05/27 06:32:32 mgorny Exp $
 
 EAPI=5
 
-PYTHON_DEPEND=python? 2:2.6
+PYTHON_COMPAT=( python2_7 )
 
 AUTOTOOLS_IN_SOURCE_BUILD=1
 AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
 
-inherit python multilib pam linux-info autotools-utils systemd
+inherit python-single-r1 multilib pam linux-info autotools-utils systemd
 
 DESCRIPTION=System Security Services Daemon provides access to identity and 
authentication
 HOMEPAGE=http://fedorahosted.org/sssd/;
@@ -67,11 +67,7 @@
 )
 
 pkg_setup(){
-   if use python; then
-   python_set_active_version 2
-   python_pkg_setup
-   python_need_rebuild
-   fi
+   use python  python-single-r1_pkg_setup
linux-info_pkg_setup
 }
 
@@ -110,6 +106,7 @@
 
 src_install(){
autotools-utils_src_install
+   use python  python_optimize
 
insinto /etc/sssd
insopts -m600
@@ -119,8 +116,6 @@
insopts -m644
newins ${S}/src/examples/logrotate sssd
 
-   use python  python_clean_installation_image
-
newconfd ${FILESDIR}/sssd.conf sssd
 
systemd_dounit ${FILESDIR}/${PN}.service
@@ -135,12 +130,4 @@
elog You must set up sssd.conf (default installed into /etc/sssd)
elog and (optionally) configuration in /etc/pam.d in order to use SSSD
elog features. Please see howto in 
http://fedorahosted.org/sssd/wiki/HOWTO_Configure_1_0_2;
-
-   use python  \
-   python_mod_optimize 
SSSDConfig/{ipachangeconf,sssd_upgrade_config}.py
-}
-
-pkg_postrm() {
-   use python  \
-   python_mod_cleanup 
SSSDConfig/{ipachangeconf,sssd_upgrade_config}.py
 }



1.54 sys-auth/sssd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/ChangeLog?rev=1.54view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/ChangeLog?rev=1.54content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/ChangeLog?r1=1.53r2=1.54

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/sssd/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog   26 May 2014 18:15:55 -  1.53
+++ ChangeLog   27 May 2014 06:32:32 -  1.54
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/sssd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/sssd/ChangeLog,v 1.53 2014/05/26 
18:15:55 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/sssd/ChangeLog,v 1.54 2014/05/27 
06:32:32 mgorny Exp $
+
+  27 May 2014; Michał Górny mgo...@gentoo.org sssd-1.9.6-r3.ebuild:
+  Convert to python-single-r1.
 
 *sssd-1.9.6-r3 (26 May 2014)
 






[gentoo-commits] gentoo-x86 commit in gnome-extra/evolution-data-server: evolution-data-server-3.12.1.ebuild ChangeLog

2014-05-27 Thread Pacho Ramos (pacho)
pacho   14/05/27 06:49:44

  Modified: evolution-data-server-3.12.1.ebuild ChangeLog
  Log:
  Needs to be rebuilt with icu updates
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.2  
gnome-extra/evolution-data-server/evolution-data-server-3.12.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-3.12.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-3.12.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-3.12.1.ebuild?r1=1.1r2=1.2

Index: evolution-data-server-3.12.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-3.12.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- evolution-data-server-3.12.1.ebuild 27 Apr 2014 17:08:27 -  1.1
+++ evolution-data-server-3.12.1.ebuild 27 May 2014 06:49:44 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-3.12.1.ebuild,v
 1.1 2014/04/27 17:08:27 eva Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-3.12.1.ebuild,v
 1.2 2014/05/27 06:49:44 pacho Exp $
 
 EAPI=5
 GCONF_DEBUG=no
@@ -35,7 +35,7 @@
=dev-libs/nss-3.9:=
=sys-libs/db-4:=
 
-   dev-libs/icu
+   dev-libs/icu:=
sys-libs/zlib:=
virtual/libiconv
 



1.393gnome-extra/evolution-data-server/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog?rev=1.393view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog?rev=1.393content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog?r1=1.392r2=1.393

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog,v
retrieving revision 1.392
retrieving revision 1.393
diff -u -r1.392 -r1.393
--- ChangeLog   27 Apr 2014 17:08:27 -  1.392
+++ ChangeLog   27 May 2014 06:49:44 -  1.393
@@ -1,6 +1,10 @@
 # ChangeLog for gnome-extra/evolution-data-server
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog,v 1.392 
2014/04/27 17:08:27 eva Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog,v 1.393 
2014/05/27 06:49:44 pacho Exp $
+
+  27 May 2014; Pacho Ramos pa...@gentoo.org
+  evolution-data-server-3.12.1.ebuild:
+  Needs to be rebuilt with icu updates
 
 *evolution-data-server-3.12.1 (27 Apr 2014)
 






[gentoo-commits] gentoo-x86 commit in gnome-extra/gnome-user-share: gnome-user-share-3.10.2.ebuild ChangeLog gnome-user-share-3.10.1.ebuild

2014-05-27 Thread Pacho Ramos (pacho)
pacho   14/05/27 06:51:19

  Modified: gnome-user-share-3.10.2.ebuild ChangeLog
  Removed:  gnome-user-share-3.10.1.ebuild
  Log:
  Needs to be rebuilt with gnome-bluetooth updates, drop old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.5  gnome-extra/gnome-user-share/gnome-user-share-3.10.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.10.2.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.10.2.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.10.2.ebuild?r1=1.4r2=1.5

Index: gnome-user-share-3.10.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.10.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnome-user-share-3.10.2.ebuild  4 May 2014 12:10:44 -   1.4
+++ gnome-user-share-3.10.2.ebuild  27 May 2014 06:51:19 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.10.2.ebuild,v
 1.4 2014/05/04 12:10:44 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/gnome-user-share-3.10.2.ebuild,v
 1.5 2014/05/27 06:51:19 pacho Exp $
 
 EAPI=5
 GCONF_DEBUG=no
@@ -27,7 +27,7 @@

=www-servers/apache-2.2[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile]
=x11-libs/libnotify-0.7:=
bluetooth? (
-   =net-wireless/gnome-bluetooth-3.9.3:2
+   =net-wireless/gnome-bluetooth-3.9.3:2=
=net-wireless/bluez-5 )
 
 DEPEND=${RDEPEND}



1.37 gnome-extra/gnome-user-share/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog?rev=1.37view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog?rev=1.37content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog?r1=1.36r2=1.37

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   4 May 2014 12:10:44 -   1.36
+++ ChangeLog   27 May 2014 06:51:19 -  1.37
@@ -1,6 +1,10 @@
 # ChangeLog for gnome-extra/gnome-user-share
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog,v 
1.36 2014/05/04 12:10:44 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-share/ChangeLog,v 
1.37 2014/05/27 06:51:19 pacho Exp $
+
+  27 May 2014; Pacho Ramos pa...@gentoo.org -gnome-user-share-3.10.1.ebuild,
+  gnome-user-share-3.10.2.ebuild:
+  Needs to be rebuilt with gnome-bluetooth updates, drop old
 
   04 May 2014; Pacho Ramos pa...@gentoo.org gnome-user-share-3.10.2.ebuild:
   x86 stable, bug 508862






[gentoo-commits] gentoo-x86 commit in net-misc/rsync: ChangeLog rsync-3.1.1_pre2.ebuild rsync-3.0.9.ebuild rsync-3.0.8.ebuild rsync-3.0.9-r2.ebuild

2014-05-27 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/27 07:25:22

  Modified: ChangeLog
  Added:rsync-3.1.1_pre2.ebuild
  Removed:  rsync-3.0.9.ebuild rsync-3.0.8.ebuild
rsync-3.0.9-r2.ebuild
  Log:
  Added pre-version without KEYWORDS. Removed old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.252net-misc/rsync/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?rev=1.252view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?rev=1.252content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?r1=1.251r2=1.252

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v
retrieving revision 1.251
retrieving revision 1.252
diff -u -r1.251 -r1.252
--- ChangeLog   15 Apr 2014 11:48:56 -  1.251
+++ ChangeLog   27 May 2014 07:25:22 -  1.252
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/rsync
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.251 2014/04/15 
11:48:56 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.252 2014/05/27 
07:25:22 polynomial-c Exp $
+
+*rsync-3.1.1_pre2 (27 May 2014)
+
+  27 May 2014; Lars Wendler polynomia...@gentoo.org -rsync-3.0.8.ebuild,
+  -rsync-3.0.9.ebuild, -rsync-3.0.9-r2.ebuild, +rsync-3.1.1_pre2.ebuild:
+  Added pre-version without KEYWORDS. Removed old.
 
 *rsync-3.1.0-r1 (15 Apr 2014)
 



1.1  net-misc/rsync/rsync-3.1.1_pre2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild?rev=1.1content-type=text/plain

Index: rsync-3.1.1_pre2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild,v 1.1 
2014/05/27 07:25:22 polynomial-c Exp $

EAPI=5

inherit eutils flag-o-matic prefix systemd

DESCRIPTION=File transfer program to keep remote files into sync
HOMEPAGE=http://rsync.samba.org/;
SRC_URI=http://rsync.samba.org/ftp/rsync/src/${P/_/}.tar.gz;

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=acl iconv ipv6 static xattr

if [[ ${PV} = *pre* ]] ; then
SRC_URI=http://rsync.samba.org/ftp/rsync/src-previews/${P/_/}.tar.gz;
KEYWORDS=
fi

LIB_DEPEND=acl? ( virtual/acl[static-libs(+)] )
xattr? ( kernel_linux? ( sys-apps/attr[static-libs(+)] ) )
=dev-libs/popt-1.5[static-libs(+)]
RDEPEND=!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
iconv? ( virtual/libiconv )
DEPEND=${RDEPEND}
static? ( ${LIB_DEPEND} )

S=${WORKDIR}/${P/_/}

src_prepare() {
epatch 
${FILESDIR}/${PN}-3.1.1_pre1-avoid_infinite_wait_reading_secrets_file.patch
epatch_user
}

src_configure() {
use static  append-ldflags -static
econf \
--without-included-popt \
$(use_enable acl acl-support) \
$(use_enable xattr xattr-support) \
$(use_enable ipv6) \
$(use_enable iconv) \
--with-rsyncd-conf=${EPREFIX}/etc/rsyncd.conf
touch proto.h-tstamp #421625
}

src_install() {
emake DESTDIR=${D} install
newconfd ${FILESDIR}/rsyncd.conf.d rsyncd
newinitd ${FILESDIR}/rsyncd.init.d-r1 rsyncd
dodoc NEWS OLDNEWS README TODO tech_report.tex
insinto /etc
newins ${FILESDIR}/rsyncd.conf-3.0.9-r1 rsyncd.conf

insinto /etc/logrotate.d
newins ${FILESDIR}/rsyncd.logrotate rsyncd

insinto /etc/xinetd.d
newins ${FILESDIR}/rsyncd.xinetd-3.0.9-r1 rsyncd

# Install the useful contrib scripts
exeinto /usr/share/rsync
doexe support/*
rm -f ${ED}/usr/share/rsync/{Makefile*,*.c}

eprefixify ${ED}/etc/{,xinetd.d}/rsyncd*

systemd_dounit ${FILESDIR}/rsyncd.service
}

pkg_postinst() {
if egrep -qis '^[[:space:]]use 
chroot[[:space:]]*=[[:space:]]*(no|0|false)' \
${EROOT}/etc/rsyncd.conf ${EROOT}/etc/rsync/rsyncd.conf ; 
then
ewarn You have disabled chroot support in your rsyncd.conf.  
This
ewarn is a security risk which you should fix.  Please 

[gentoo-commits] gentoo-x86 commit in app-doc/doxygen: metadata.xml ChangeLog

2014-05-27 Thread Kacper Kowalik (xarthisius)
xarthisius14/05/27 07:28:07

  Modified: metadata.xml ChangeLog
  Log:
  Drop maintainership (http://article.gmane.org/gmane.linux.gentoo.devel/90674)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x5D21B852895192F9)

Revision  ChangesPath
1.11 app-doc/doxygen/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/metadata.xml?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/metadata.xml?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/metadata.xml?r1=1.10r2=1.11

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-doc/doxygen/metadata.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- metadata.xml7 Oct 2012 08:54:33 -   1.10
+++ metadata.xml27 May 2014 07:28:07 -  1.11
@@ -2,10 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
 herddev-tools/herd
-maintainer
-emailxarthis...@gentoo.org/email
-nameKacper Kowalik/name
-/maintainer
 longdescriptionDoxygen is a tool for analyzing, documenting, and 
reverse-engineering 
 source code of various languages using a variety of output formats 
 (try it and see).  Doxygen supports C++, C, Java, Objective-C, Python, 



1.260app-doc/doxygen/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/ChangeLog?rev=1.260view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/ChangeLog?rev=1.260content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/ChangeLog?r1=1.259r2=1.260

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-doc/doxygen/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- ChangeLog   21 Jan 2014 06:41:28 -  1.259
+++ ChangeLog   27 May 2014 07:28:07 -  1.260
@@ -1,6 +1,9 @@
 # ChangeLog for app-doc/doxygen
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/ChangeLog,v 1.259 
2014/01/21 06:41:28 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/ChangeLog,v 1.260 
2014/05/27 07:28:07 xarthisius Exp $
+
+  27 May 2014; Kacper Kowalik xarthis...@gentoo.org metadata.xml:
+  Drop maintainership (http://article.gmane.org/gmane.linux.gentoo.devel/90674)
 
   21 Jan 2014; Patrick Lauer patr...@gentoo.org -doxygen-1.4.7.ebuild,
   -doxygen-1.5.4.ebuild:






[gentoo-commits] gentoo-x86 commit in net-misc/rsync/files: rsyncd.xinetd rsyncd.init.d rsyncd.conf

2014-05-27 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/27 07:28:56

  Removed:  rsyncd.xinetd rsyncd.init.d rsyncd.conf
  Log:
  Removed old files from FILESDIR as well
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)



[gentoo-commits] gentoo-x86 commit in net-misc/rsync: ChangeLog

2014-05-27 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/27 07:28:55

  Modified: ChangeLog
  Log:
  Removed old files from FILESDIR as well
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.253net-misc/rsync/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?rev=1.253view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?rev=1.253content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?r1=1.252r2=1.253

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v
retrieving revision 1.252
retrieving revision 1.253
diff -u -r1.252 -r1.253
--- ChangeLog   27 May 2014 07:25:22 -  1.252
+++ ChangeLog   27 May 2014 07:28:55 -  1.253
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/rsync
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.252 2014/05/27 
07:25:22 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.253 2014/05/27 
07:28:55 polynomial-c Exp $
+
+  27 May 2014; Lars Wendler polynomia...@gentoo.org -files/rsyncd.conf,
+  -files/rsyncd.init.d, -files/rsyncd.xinetd:
+  Removed old files from FILESDIR as well.
 
 *rsync-3.1.1_pre2 (27 May 2014)
 






[gentoo-commits] gentoo-x86 commit in net-misc/rsync: ChangeLog rsync-3.1.1_pre2.ebuild

2014-05-27 Thread Lars Wendler (polynomial-c)
polynomial-c14/05/27 07:32:45

  Modified: ChangeLog rsync-3.1.1_pre2.ebuild
  Log:
  rsync-3.1.1_pre2 no longer needs the patch from 3.1.0
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.254net-misc/rsync/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?rev=1.254view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?rev=1.254content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/ChangeLog?r1=1.253r2=1.254

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -r1.253 -r1.254
--- ChangeLog   27 May 2014 07:28:55 -  1.253
+++ ChangeLog   27 May 2014 07:32:45 -  1.254
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/rsync
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.253 2014/05/27 
07:28:55 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.254 2014/05/27 
07:32:45 polynomial-c Exp $
+
+  27 May 2014; Lars Wendler polynomia...@gentoo.org rsync-3.1.1_pre2.ebuild:
+  rsync-3.1.1_pre2 no longer needs the patch from 3.1.0.
 
   27 May 2014; Lars Wendler polynomia...@gentoo.org -files/rsyncd.conf,
   -files/rsyncd.init.d, -files/rsyncd.xinetd:



1.2  net-misc/rsync/rsync-3.1.1_pre2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild?r1=1.1r2=1.2

Index: rsync-3.1.1_pre2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rsync-3.1.1_pre2.ebuild 27 May 2014 07:25:22 -  1.1
+++ rsync-3.1.1_pre2.ebuild 27 May 2014 07:32:45 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild,v 
1.1 2014/05/27 07:25:22 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-3.1.1_pre2.ebuild,v 
1.2 2014/05/27 07:32:45 polynomial-c Exp $
 
 EAPI=5
 
@@ -31,7 +31,6 @@
 S=${WORKDIR}/${P/_/}
 
 src_prepare() {
-   epatch 
${FILESDIR}/${PN}-3.1.1_pre1-avoid_infinite_wait_reading_secrets_file.patch
epatch_user
 }
 






[gentoo-commits] gentoo-x86 commit in profiles: package.mask

2014-05-27 Thread Vladimir Smirnov (civil)
civil   14/05/27 08:40:58

  Modified: package.mask
  Log:
  Add perl-5.20 to global package.mask, cause it will cause a lot of troubles
  for first several weeks at least.

Revision  ChangesPath
1.15732  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15732view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15732content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.15731r2=1.15732

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15731
retrieving revision 1.15732
diff -u -r1.15731 -r1.15732
--- package.mask27 May 2014 02:26:42 -  1.15731
+++ package.mask27 May 2014 08:40:58 -  1.15732
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15731 2014/05/27 
02:26:42 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15732 2014/05/27 
08:40:58 civil Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -30,6 +30,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Vladimir Smirnov ci...@gentoo.org (27 May 2014)
+# Masked for testing, will defenitely cause major breakage
+=dev-lang/perl-5.20*
+
 # Jauhien Piatlicki jauh...@gentoo.org (26 May 2014)
 # Masked for testing as there are issues with powermanagement
 # (not working reboot/halt)






[gentoo-commits] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml

2014-05-27 Thread Sven Vermeulen (swift)
swift   14/05/27 10:05:48

  Modified: hb-install-config.xml
  Log:
  Fix bug #510274 - Typo in /dev/disk/by-id path

Revision  ChangesPath
1.131xml/htdocs/doc/en/handbook/hb-install-config.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.131view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.131content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.130r2=1.131

Index: hb-install-config.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- hb-install-config.xml   11 Apr 2014 16:03:58 -  1.130
+++ hb-install-config.xml   27 May 2014 10:05:48 -  1.131
@@ -4,7 +4,7 @@
 !-- The content of this document is licensed under the CC-BY-SA license --
 !-- See http://creativecommons.org/licenses/by-sa/2.5 --
 
-!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.130 
2014/04/11 16:03:58 swift Exp $ --
+!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.131 
2014/05/27 10:05:48 swift Exp $ --
 
 sections
 
@@ -14,8 +14,8 @@
 proceed.
 /abstract
 
-version36/version
-date2014-04-11/date
+version37/version
+date2014-05-27/date
 
 section
 titleFilesystem Information/title
@@ -85,7 +85,7 @@
 p
 In the remainder of the text, we use the default path/dev/sd*/path block
 device files as partition. You can also opt to use the symbolic links in the
-path/dev/disk/byid/path or path/dev/disk/by-uuid/path. These names are
+path/dev/disk/by-id/path or path/dev/disk/by-uuid/path. These names are
 not likely to change, whereas the default block device files naming depends on
 a number of factors (such as how and in what order the disks are attached to
 your system). However, if you do not intend to fiddle with the disk ordering,






[gentoo-commits] gentoo-x86 commit in media-video/transcode: transcode-1.1.7-r3.ebuild ChangeLog

2014-05-27 Thread Mikle Kolyada (zlogene)
zlogene 14/05/27 10:09:17

  Modified: transcode-1.1.7-r3.ebuild ChangeLog
  Log:
  ppc stable wrt bug #504790
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.8  media-video/transcode/transcode-1.1.7-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild?r1=1.7r2=1.8

Index: transcode-1.1.7-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- transcode-1.1.7-r3.ebuild   17 May 2014 13:57:29 -  1.7
+++ transcode-1.1.7-r3.ebuild   27 May 2014 10:09:17 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild,v 1.7 
2014/05/17 13:57:29 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.7-r3.ebuild,v 1.8 
2014/05/27 10:09:17 zlogene Exp $
 
 EAPI=5
 inherit eutils libtool multilib
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 ~ppc ppc64 sparc x86
+KEYWORDS=alpha amd64 ppc ppc64 sparc x86
 IUSE=3dnow a52 aac alsa altivec dv dvd +iconv imagemagick jpeg lzo mjpeg mmx 
mp3 mpeg nuv ogg oss pic postproc quicktime sdl sse sse2 theora truetype v4l 
vorbis X x264 xml xvid
 
 RDEPEND=



1.321media-video/transcode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/ChangeLog?rev=1.321view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/ChangeLog?rev=1.321content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/transcode/ChangeLog?r1=1.320r2=1.321

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v
retrieving revision 1.320
retrieving revision 1.321
diff -u -r1.320 -r1.321
--- ChangeLog   17 May 2014 13:57:29 -  1.320
+++ ChangeLog   27 May 2014 10:09:17 -  1.321
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/transcode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.320 
2014/05/17 13:57:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.321 
2014/05/27 10:09:17 zlogene Exp $
+
+  27 May 2014; Mikle Kolyada zlog...@gentoo.org transcode-1.1.7-r3.ebuild:
+  ppc stable wrt bug #504790
 
   17 May 2014; Agostino Sarubbo a...@gentoo.org transcode-1.1.7-r3.ebuild:
   Stable for alpha, wrt bug #504790






[gentoo-commits] gentoo-x86 commit in sys-libs/libcap: libcap-2.22-r2.ebuild ChangeLog

2014-05-27 Thread Mikle Kolyada (zlogene)
zlogene 14/05/27 10:13:36

  Modified: libcap-2.22-r2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #507144
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.9  sys-libs/libcap/libcap-2.22-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcap/libcap-2.22-r2.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcap/libcap-2.22-r2.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcap/libcap-2.22-r2.ebuild?r1=1.8r2=1.9

Index: libcap-2.22-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libcap/libcap-2.22-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libcap-2.22-r2.ebuild   24 May 2014 10:49:25 -  1.8
+++ libcap-2.22-r2.ebuild   27 May 2014 10:13:36 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcap/libcap-2.22-r2.ebuild,v 1.8 
2014/05/24 10:49:25 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcap/libcap-2.22-r2.ebuild,v 1.9 
2014/05/27 10:13:36 zlogene Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 # it's available under either of the licenses
 LICENSE=|| ( GPL-2 BSD )
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux
 IUSE=pam
 
 RDEPEND=sys-apps/attr[${MULTILIB_USEDEP}]



1.131sys-libs/libcap/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcap/ChangeLog?rev=1.131view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcap/ChangeLog?rev=1.131content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libcap/ChangeLog?r1=1.130r2=1.131

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libcap/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   24 May 2014 10:49:25 -  1.130
+++ ChangeLog   27 May 2014 10:13:36 -  1.131
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libcap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcap/ChangeLog,v 1.130 
2014/05/24 10:49:25 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcap/ChangeLog,v 1.131 
2014/05/27 10:13:36 zlogene Exp $
+
+  27 May 2014; Mikle Kolyada zlog...@gentoo.org libcap-2.22-r2.ebuild:
+  x86 stable wrt bug #507144
 
   24 May 2014; Markos Chandras hwoar...@gentoo.org libcap-2.22-r2.ebuild:
   Stable on amd64 wrt bug #507144






[gentoo-commits] proj/kde:master commit in: kde-frameworks/kactivities/

2014-05-27 Thread Michael Palimaka
commit: 2d1aa5ebeb7a384f57a6e9fad2713c21d2181a8d
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Tue May 27 10:18:40 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Tue May 27 10:18:40 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2d1aa5eb

[kde-frameworks/kactivities] Improve blocker to handle case where minimal USE 
flag does not exist.

Package-Manager: portage-2.2.10

---
 kde-frameworks/kactivities/kactivities-4.99.0.ebuild | 2 +-
 kde-frameworks/kactivities/kactivities-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kactivities/kactivities-4.99.0.ebuild 
b/kde-frameworks/kactivities/kactivities-4.99.0.ebuild
index 71383b8..6d04974 100644
--- a/kde-frameworks/kactivities/kactivities-4.99.0.ebuild
+++ b/kde-frameworks/kactivities/kactivities-4.99.0.ebuild
@@ -25,5 +25,5 @@ DEPEND=
dev-qt/qtwidgets:5
 
 RDEPEND=${DEPEND}
-   !kde-base/kactivities:4[-minimal]
+   !kde-base/kactivities:4[-minimal(-)]
 

diff --git a/kde-frameworks/kactivities/kactivities-.ebuild 
b/kde-frameworks/kactivities/kactivities-.ebuild
index 6e4433c..58e5f3d 100644
--- a/kde-frameworks/kactivities/kactivities-.ebuild
+++ b/kde-frameworks/kactivities/kactivities-.ebuild
@@ -25,5 +25,5 @@ DEPEND=
dev-qt/qtwidgets:5
 
 RDEPEND=${DEPEND}
-   !kde-base/kactivities:4[-minimal]
+   !kde-base/kactivities:4[-minimal(-)]
 



[gentoo-commits] dev/ultrabug:master commit in: dev-python/i3-py/

2014-05-27 Thread Alexys Jacob
commit: 077479c1dd5336e04ef623c923c3f5af3334562e
Author: Ultrabug ultrabug AT gentoo DOT org
AuthorDate: Tue May 27 10:23:21 2014 +
Commit: Alexys Jacob ultrabug AT gentoo DOT org
CommitDate: Tue May 27 10:23:21 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/ultrabug.git;a=commit;h=077479c1

i3-py is python3 compatible

---
 dev-python/i3-py/Manifest   | 2 +-
 dev-python/i3-py/i3-py-0.6.4.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/i3-py/Manifest b/dev-python/i3-py/Manifest
index f24108d..8d2c2f4 100644
--- a/dev-python/i3-py/Manifest
+++ b/dev-python/i3-py/Manifest
@@ -1,2 +1,2 @@
 DIST i3-py-0.6.4.tar.gz 8727 SHA256 
1e3179c6a5f4761aad3ff0859780ffc31fa779f5832d78a86f8cac2cd120f4e9 SHA512 
f86f9d51ea2fe3f384ecc7db87c06f266d49a48d29d09194bccc13de2b1f94e2174be19ef5f5ffa74d9c86d779ea68aa33e12516330fc92625da241d4aecb09c
 WHIRLPOOL 
fd5e6391bf28f0db0469b42586176da3b6257e8d2caaad723ce878bf5442d70b00226383201a599e468d43c51d20a4654dd85e56b393dfba13372a3edf63c028
-EBUILD i3-py-0.6.4.ebuild 481 SHA256 
773716a8cd5f42f97e1cd8c76ff578e069ffbc01eb18d969cc929facf552e6dd SHA512 
aacfde4e741ffd90c3a093877eea15791c692130d7ba5f860f6361df5935ebabf50dae64076751e179e8d698484508eedc599b5f411d8c93f654f39cf0773aba
 WHIRLPOOL 
b464086c0c177bc798c94015e24f911c322b8efd2f9d6ff40cb269b8958cd1dde89a244917d8c04c70d5e153a10f750659e5ecd41f392ed83e4a8a4a8a70fa65
+EBUILD i3-py-0.6.4.ebuild 495 SHA256 
99116e785eda06e91ca0e45f6438de9a4ccc2114038c81185e6247f7a67c50af SHA512 
650e01b030a814c5a727740bf39424516842f99738e8937788e62dd84ef5c4c88070c63f2da2e983d611c1709865054fb8c3bf61ed5ca4ca59d4e649e1ba9e57
 WHIRLPOOL 
0250a5827370b6fabc5b1bae3f8c95bb7b810eba8a929fde33d7d83464faf62e5386450249c4e4b481f390e58ece0db606fef4e40fff07c04e4b5159fd26cafe

diff --git a/dev-python/i3-py/i3-py-0.6.4.ebuild 
b/dev-python/i3-py/i3-py-0.6.4.ebuild
index 645fb0b..afcd7f7 100644
--- a/dev-python/i3-py/i3-py-0.6.4.ebuild
+++ b/dev-python/i3-py/i3-py-0.6.4.ebuild
@@ -3,7 +3,7 @@
 # $Header:
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
 
 inherit distutils-r1
 



[gentoo-commits] gentoo-x86 commit in dev-lang/perl: perl-5.20.0.ebuild ChangeLog

2014-05-27 Thread Vladimir Smirnov (civil)
civil   14/05/27 10:28:05

  Modified: ChangeLog
  Added:perl-5.20.0.ebuild
  Log:
  Version bump. Should not be used until unmasked.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xA832680F)

Revision  ChangesPath
1.420dev-lang/perl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/ChangeLog?rev=1.420view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/ChangeLog?rev=1.420content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/ChangeLog?r1=1.419r2=1.420

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v
retrieving revision 1.419
retrieving revision 1.420
diff -u -r1.419 -r1.420
--- ChangeLog   30 Apr 2014 14:47:53 -  1.419
+++ ChangeLog   27 May 2014 10:28:05 -  1.420
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/perl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v 1.419 2014/04/30 
14:47:53 civil Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/ChangeLog,v 1.420 2014/05/27 
10:28:05 civil Exp $
+
+*perl-5.20.0 (27 May 2014)
+
+  27 May 2014; Vladimir Smirnov +perl-5.20.0.ebuild:
+  Version bump. Should not be used until unmasked.
 
   30 Apr 2014; Vladimir Smirnov +files/eblits/src_prepare-v50180002.eblit,
   perl-5.18.2.ebuild:



1.1  dev-lang/perl/perl-5.20.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/perl-5.20.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/perl-5.20.0.ebuild?rev=1.1content-type=text/plain

Index: perl-5.20.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/perl-5.20.0.ebuild,v 1.1 
2014/05/27 10:28:05 civil Exp $

EAPI=5

inherit eutils alternatives flag-o-matic toolchain-funcs multilib 
multiprocessing

PATCH_VER=1

PERL_OLDVERSEN=
MODULE_AUTHOR=RJBS

SHORT_PV=${PV%.*}
MY_P=perl-${PV/_rc/-RC}
MY_PV=${PV%_rc*}

DESCRIPTION=Larry Wall's Practical Extraction and Report Language

SRC_URI=
mirror://cpan/src/5.0/${MY_P}.tar.bz2

mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MY_P}.tar.bz2
mirror://gentoo/${MY_P}-patches-${PATCH_VER}.tar.bz2

http://dev.gentoo.org/~civil/distfiles/${CATEGORY}/${PN}/${MY_P}-patches-${PATCH_VER}.tar.bz2

HOMEPAGE=http://www.perl.org/;

LICENSE=|| ( Artistic GPL-1+ )
SLOT=0/${SHORT_PV}
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris
IUSE=berkdb debug doc gdbm ithreads

RDEPEND=
berkdb? ( sys-libs/db )
gdbm? ( =sys-libs/gdbm-1.8.3 )
app-arch/bzip2
sys-libs/zlib

DEPEND=${RDEPEND}
!prefix? ( elibc_FreeBSD? ( sys-freebsd/freebsd-mk-defs ) )

PDEPEND==app-admin/perl-cleaner-2.5

S=${WORKDIR}/${MY_P}

dual_scripts() {
src_remove_dual  perl-core/Archive-Tar1.820.0  ptar 
ptardiff ptargrep
src_remove_dual  perl-core/Digest-SHA 5.710.0  shasum
src_remove_dual  perl-core/CPAN   1.980.0  cpan
src_remove_dual  perl-core/CPANPLUS   0.912.100cpanp 
cpan2dist
src_remove_dual_file perl-core/CPANPLUS   0.912.100
/usr/bin/cpanp-run-perl
src_remove_dual  perl-core/Encode 2.440.0  enc2xs 
piconv
src_remove_dual  perl-core/ExtUtils-MakeMaker 6.630.200_rc instmodsh
src_remove_dual  perl-core/ExtUtils-ParseXS   3.160.0  xsubpp
src_remove_dual  perl-core/IO-Compress2.48.0   
zipdetails
src_remove_dual  perl-core/JSON-PP2.272.0  json_pp
src_remove_dual  perl-core/Module-Build   0.390.100_rc 
config_data
src_remove_dual  perl-core/Module-CoreList2.840.0  corelist
src_remove_dual  perl-core/PodParser  1.510.0  
pod2usage podchecker podselect
src_remove_dual  perl-core/Pod-Perldoc1.170.0  perldoc
src_remove_dual  perl-core/Test-Harness   3.230.0  prove
src_remove_dual  perl-core/podlators  2.4.0pod2man 
pod2text
src_remove_dual_man  perl-core/podlators  2.4.0
/usr/share/man/man1/perlpodstyle.1
}

# eblit-include [--skip] function [version]
eblit-include() {
local 

[gentoo-commits] proj/qt:master commit in: eclass/

2014-05-27 Thread Davide Pesavento
commit: a5943eeb2515e08a9fb4b3b21315ba57980458ba
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Tue May 27 02:43:14 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Tue May 27 02:43:14 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=a5943eeb

[qt4-build-multilib.eclass] No need to define PLATFORM.

We already pass the mkspec to configure via -platform foo,
which should have the same effect.

---
 eclass/qt4-build-multilib.eclass | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index fb290ae..15799c7 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -503,9 +503,6 @@ qt4_prepare_env() {
QT4_SYSCONFDIR=${EPREFIX}/etc/qt4
QMAKE_LIBDIR_QT=${QT4_LIBDIR}
 
-   PLATFORM=$(qt4_get_mkspec)
-   unset QMAKESPEC
-
export XDG_CONFIG_HOME=${T}
 }
 



[gentoo-commits] proj/qt:master commit in: dev-qt/qtgui/, dev-qt/qtcore/, dev-qt/qtscript/, eclass/, dev-qt/qtdeclarative/

2014-05-27 Thread Davide Pesavento
commit: 108588c553f5cf84809626d8f104a1846e379059
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Tue May 27 00:24:24 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Tue May 27 00:24:24 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=108588c5

[Qt4] Handle installation of private headers in qt4-build-multilib.eclass

---
 dev-qt/qtcore/qtcore-4.8..ebuild   |  8 ++--
 dev-qt/qtdeclarative/qtdeclarative-4.8..ebuild | 14 --
 dev-qt/qtgui/qtgui-4.8..ebuild | 13 -
 dev-qt/qtscript/qtscript-4.8..ebuild   | 12 +---
 eclass/qt4-build-multilib.eclass   | 12 +++-
 5 files changed, 14 insertions(+), 45 deletions(-)

diff --git a/dev-qt/qtcore/qtcore-4.8..ebuild 
b/dev-qt/qtcore/qtcore-4.8..ebuild
index cbb48a3..5353b1a 100644
--- a/dev-qt/qtcore/qtcore-4.8..ebuild
+++ b/dev-qt/qtcore/qtcore-4.8..ebuild
@@ -99,14 +99,10 @@ src_configure() {
 }
 
 src_install() {
-   emake INSTALL_ROOT=${D} install_{mkspecs,qmake}
-
-   # install private headers
-   insinto ${QT4_HEADERDIR#${EPREFIX}}/QtCore/private
-   find ${S}/src/corelib -type f -name *_p.h -exec doins '{}' +
-
qt4-build-multilib_src_install
 
+   emake INSTALL_ROOT=${D} install_{mkspecs,qmake}
+
# List all the multilib libdirs
local libdirs=
for libdir in $(get_all_libdirs); do

diff --git a/dev-qt/qtdeclarative/qtdeclarative-4.8..ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-4.8..ebuild
index 8b1c7b1..38e3027 100644
--- a/dev-qt/qtdeclarative/qtdeclarative-4.8..ebuild
+++ b/dev-qt/qtdeclarative/qtdeclarative-4.8..ebuild
@@ -60,17 +60,3 @@ src_configure() {
$(qt_use webkit)
qt4-build-multilib_src_configure
 }
-
-src_install() {
-   qt4-build-multilib_src_install
-
-   # install private headers
-   if use aqua  [[ ${CHOST##*-darwin} -ge 9 ]]; then
-   insinto 
${QT4_LIBDIR#${EPREFIX}}/QtDeclarative.framework/Headers/private
-   # ran for the 2nd time, need it for the updated headers
-   fix_includes
-   else
-   insinto ${QT4_HEADERDIR#${EPREFIX}}/QtDeclarative/private
-   fi
-   find ${S}/src/declarative/ -type f -name *_p.h -exec doins '{}' +
-}

diff --git a/dev-qt/qtgui/qtgui-4.8..ebuild 
b/dev-qt/qtgui/qtgui-4.8..ebuild
index 2f90936..2f8209c 100644
--- a/dev-qt/qtgui/qtgui-4.8..ebuild
+++ b/dev-qt/qtgui/qtgui-4.8..ebuild
@@ -163,19 +163,6 @@ src_install() {
 
qt4-build-multilib_src_install
 
-   # install private headers
-   if use aqua  [[ ${CHOST##*-darwin} -ge 9 ]]; then
-   insinto 
${QT4_LIBDIR#${EPREFIX}}/QtGui.framework/Headers/private/
-   else
-   insinto ${QT4_HEADERDIR#${EPREFIX}}/QtGui/private
-   fi
-   find ${S}/src/gui -type f -name '*_p.h' -exec doins '{}' +
-
-   if use aqua  [[ ${CHOST##*-darwin} -ge 9 ]]; then
-   # rerun to get links to headers right
-   fix_includes
-   fi
-
# touch the available graphics systems
dodir /usr/share/qt4/graphicssystems
echo default  ${ED}/usr/share/qt4/graphicssystems/raster || die

diff --git a/dev-qt/qtscript/qtscript-4.8..ebuild 
b/dev-qt/qtscript/qtscript-4.8..ebuild
index f6796ce..33ef722 100644
--- a/dev-qt/qtscript/qtscript-4.8..ebuild
+++ b/dev-qt/qtscript/qtscript-4.8..ebuild
@@ -21,9 +21,7 @@ DEPEND=
 
 RDEPEND=${DEPEND}
 
-QT4_TARGET_DIRECTORIES=
-   src/script
-
+QT4_TARGET_DIRECTORIES=src/script
 QT4_EXTRACT_DIRECTORIES=${QT4_TARGET_DIRECTORIES}
include/Qt
include/QtCore
@@ -47,11 +45,3 @@ src_configure() {
 
qt4-build-multilib_src_configure
 }
-
-src_install() {
-   qt4-build-multilib_src_install
-
-   # install private headers
-   insinto ${QT4_HEADERDIR#${EPREFIX}}/QtScript/private
-   find ${S}/src/script -type f -name *_p.h -exec doins '{}' +
-}

diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index dd919f9..659b369 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -313,7 +313,7 @@ qt4-build-multilib_src_configure() {
-shared -fast -largefile -stl -verbose
-nomake examples -nomake demos
 
-   # Convert tc-arch to the values supported by Qt
+   # convert tc-arch to the values supported by Qt
case $(tc-arch) in
amd64|x64-*)  conf+= -arch x86_64 ;;
ppc*-macos)   conf+= -arch ppc ;;
@@ -438,6 +438,16 @@ qt4-build-multilib_src_install() {
popd /dev/null || die
done
 
+   # install private headers of a few modules
+   if has ${PN} qtcore qtdeclarative qtgui qtscript; then
+   local moduledir=${PN#qt}
+   local 

[gentoo-commits] proj/qt:master commit in: dev-qt/qtcore/, dev-qt/qttranslations/, eclass/

2014-05-27 Thread Davide Pesavento
commit: b909c2828fc465fa6951eed7bbca970cb16d3420
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Mon May 26 20:02:06 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon May 26 20:02:06 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=b909c282

[dev-qt/qtcore:4] Split translations into dev-qt/qttranslations.

---
 dev-qt/qtcore/qtcore-4.8..ebuild   | 19 ++
 .../qttranslations/qttranslations-4.8..ebuild  | 36 ++
 eclass/qt4-build-multilib.eclass   | 43 --
 3 files changed, 63 insertions(+), 35 deletions(-)

diff --git a/dev-qt/qtcore/qtcore-4.8..ebuild 
b/dev-qt/qtcore/qtcore-4.8..ebuild
index 12b17dd..cbb48a3 100644
--- a/dev-qt/qtcore/qtcore-4.8..ebuild
+++ b/dev-qt/qtcore/qtcore-4.8..ebuild
@@ -24,6 +24,7 @@ DEPEND=
 
 RDEPEND=${DEPEND}
 PDEPEND=
+   ~dev-qt/qttranslations-${PV}
qt3support? ( ~dev-qt/qtgui-${PV}[aqua=,debug=,glib=,qt3support] )
 
 
@@ -48,7 +49,6 @@ QT4_EXTRACT_DIRECTORIES=${QT4_TARGET_DIRECTORIES}
include
src/plugins/plugins.pro
src/plugins/qpluginbase.pri
-   src/src.pro
src/3rdparty/des
src/3rdparty/harfbuzz
src/3rdparty/md4
@@ -59,9 +59,8 @@ QT4_EXTRACT_DIRECTORIES=${QT4_TARGET_DIRECTORIES}
src/declarative
src/gui
src/script
-   tools/shared
-   tools/linguist/shared
-   translations
+   tools/linguist
+   tools/shared
 
 QCONFIG_DEFINE=QT_ZLIB
 
@@ -136,17 +135,5 @@ src_install() {
|| die sed for qconfig.h failed
fi
 
-   # use freshly built libraries
-   local DYLD_FPATH=
-   [[ -d ${S}/lib/QtCore.framework ]] \
-DYLD_FPATH=$(for x in ${S}/lib/*.framework; do echo -n 
:$x; done)
-   DYLD_LIBRARY_PATH=${S}/lib${DYLD_FPATH} \
-   LD_LIBRARY_PATH=${S}/lib \
-   ${S}/bin/lrelease translations/*.ts \
-   || die generating translations failed
-
-   insinto ${QT4_TRANSLATIONDIR#${EPREFIX}}
-   doins translations/*.qm
-
keepdir ${QT4_SYSCONFDIR#${EPREFIX}}
 }

diff --git a/dev-qt/qttranslations/qttranslations-4.8..ebuild 
b/dev-qt/qttranslations/qttranslations-4.8..ebuild
new file mode 100644
index 000..77e8103
--- /dev/null
+++ b/dev-qt/qttranslations/qttranslations-4.8..ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit qt4-build-multilib
+
+DESCRIPTION=Translation files for the Qt toolkit
+
+if [[ ${QT4_BUILD_TYPE} == live ]]; then
+   KEYWORDS=
+else
+   KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
+fi
+
+IUSE=
+
+DEPEND=
+   ~dev-qt/qtcore-${PV}
+
+RDEPEND=${DEPEND}
+
+QT4_TARGET_DIRECTORIES=translations
+QT4_EXTRACT_DIRECTORIES=${QT4_TARGET_DIRECTORIES}
+   src
+   tools
+
+src_configure() {
+   cd translations || die
+   ${QT4_BINDIR}/qmake || die
+}
+
+src_compile() {
+   emake -C translations
+}

diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index b35f334..acf3166 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -41,8 +41,10 @@ case ${PV} in
;;
 esac
 
-IUSE=aqua debug pch
-[[ ${CATEGORY}/${PN} != dev-qt/qtxmlpatterns ]]  IUSE+= +exceptions
+if [[ ${PN} != qttranslations ]]; then
+   IUSE=aqua debug pch
+   [[ ${PN} != qtxmlpatterns ]]  IUSE+= +exceptions
+fi
 
 DEPEND=virtual/pkgconfig
 if [[ ${QT4_BUILD_TYPE} == live ]]; then
@@ -93,7 +95,7 @@ qt4-build-multilib_src_unpack() {
ewarn
fi
 
-   if [[ ${CATEGORY}/${PN} == dev-qt/qtwebkit ]]; then
+   if [[ ${PN} == qtwebkit ]]; then
eshopts_push -s extglob
if is-flagq '-g?(gdb)?([1-9])'; then
ewarn
@@ -153,18 +155,18 @@ qt4-build-multilib_src_prepare() {
QTDIR=. ./bin/syncqt || die syncqt failed
fi
 
-   if [[ ${CATEGORY}/${PN} != dev-qt/qtcore ]]; then
+   if [[ ${PN} != qtcore ]]; then
skip_qmake_build
skip_project_generation
-   symlink_binaries_to_buildtree
+   symlink_tools_to_buildtree
fi
 
# skip X11 tests in non-gui packages to avoid spurious dependencies
-   if has ${PN} qtbearer qtcore qtdbus qtscript qtsql qttest 
qtxmlpatterns; then
+   if has ${PN} qtbearer qtcore qtdbus qtscript qtsql qttest 
qttranslations qtxmlpatterns; then
sed -i -e '/^if.*PLATFORM_X11.*CFG_GUI/,/^fi$/d' configure || 
die
fi
 
-   if use aqua; then
+   if use_if_iuse aqua; then
# provide a proper 

[gentoo-commits] proj/qt:master commit in: eclass/

2014-05-27 Thread Davide Pesavento
commit: 1586bcba38ebe9f6a8922bb735b3d0eeaa534bb5
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Tue May 27 02:41:25 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Tue May 27 02:41:25 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=1586bcba

[qt4-build-multilib.eclass] Improve and rename qt_mkspecs_dir().

---
 eclass/qt4-build-multilib.eclass | 84 ++--
 1 file changed, 46 insertions(+), 38 deletions(-)

diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index 659b369..fb290ae 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -167,12 +167,9 @@ qt4-build-multilib_src_prepare() {
fi
 
if use_if_iuse aqua; then
-   # provide a proper macx-g++-64
-   use x64-macos  ln -s macx-g++ mkspecs/$(qt_mkspecs_dir)
-
sed -e '/^CONFIG/s:app_bundle::' \
-e '/^CONFIG/s:plugin_no_soname:plugin_with_soname 
absolute_library_soname:' \
-   -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die
+   -i mkspecs/$(qt4_get_mkspec)/qmake.conf || die
fi
 
# Bug 261632
@@ -216,7 +213,7 @@ qt4-build-multilib_src_prepare() {
|| die sed config.tests failed
 
# Bug 172219
-   sed -e 's:/X11R6/:/:' -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die
+   sed -e 's:/X11R6/:/:' -i mkspecs/$(qt4_get_mkspec)/qmake.conf || die
 
if [[ ${CHOST} == *-darwin* ]]; then
# Set FLAGS *and* remove -arch, since our gcc-apple is multilib
@@ -278,12 +275,12 @@ qt4-build-multilib_src_prepare() {
 
# we need some patches for Solaris
sed -i -e '/^QMAKE_LFLAGS_THREAD/a\QMAKE_LFLAGS_DYNAMIC_LIST = 
-Wl,--dynamic-list,' \
-   mkspecs/$(qt_mkspecs_dir)/qmake.conf || die
+   mkspecs/$(qt4_get_mkspec)/qmake.conf || die
# use GCC over SunStudio
sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die
# do not flirt with non-Prefix stuff, we're quite possessive
sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \
-   mkspecs/$(qt_mkspecs_dir)/qmake.conf || die
+   mkspecs/$(qt4_get_mkspec)/qmake.conf || die
 
# apply patches
[[ ${PATCHES[@]} ]]  epatch ${PATCHES[@]}
@@ -326,7 +323,7 @@ qt4-build-multilib_src_configure() {
*) die $(tc-arch) is unsupported by this eclass. Please file a 
bug. ;;
esac
 
-   conf+= -platform $(qt_mkspecs_dir)
+   conf+= -platform $(qt4_get_mkspec)
 
# debug/release
if use_if_iuse debug; then
@@ -506,7 +503,7 @@ qt4_prepare_env() {
QT4_SYSCONFDIR=${EPREFIX}/etc/qt4
QMAKE_LIBDIR_QT=${QT4_LIBDIR}
 
-   PLATFORM=$(qt_mkspecs_dir)
+   PLATFORM=$(qt4_get_mkspec)
unset QMAKESPEC
 
export XDG_CONFIG_HOME=${T}
@@ -710,58 +707,69 @@ fix_includes() {
fi
 }
 
-# @FUNCTION: qt_mkspecs_dir
+# @FUNCTION: qt4_get_mkspec
 # @RETURN: the specs-directory w/o path
 # @INTERNAL
 # @DESCRIPTION:
 # Allows us to define which mkspecs dir we want to use.
-qt_mkspecs_dir() {
+qt4_get_mkspec() {
local spec=
 
-   case ${CHOST} in
+   case ${CHOST} in
+   *-linux*)
+   spec=linux ;;
+   *-darwin*)
+   use_if_iuse aqua 
+   spec=macx ||   # mac with carbon/cocoa
+   spec=darwin ;; # darwin/mac with X11
*-freebsd*|*-dragonfly*)
spec=freebsd ;;
-   *-openbsd*)
-   spec=openbsd ;;
*-netbsd*)
spec=netbsd ;;
-   *-darwin*)
-   if use_if_iuse aqua; then
-   # mac with carbon/cocoa
-   spec=macx
-   else
-   # darwin/mac with x11
-   spec=darwin
-   fi
-   ;;
+   *-openbsd*)
+   spec=openbsd ;;
+   *-aix*)
+   spec=aix ;;
+   hppa*-hpux*)
+   spec=hpux ;;
+   ia64*-hpux*)
+   spec=hpuxi ;;
*-solaris*)
spec=solaris ;;
-   *-linux-*|*-linux)
-   spec=linux ;;
*)
-   die ${FUNCNAME}(): Unknown CHOST '${CHOST}' ;;
+   die ${FUNCNAME}(): Unsupported CHOST '${CHOST}' ;;
esac
 
-   case $(tc-getCXX) in
+   case $(tc-getCXX) in
*g++*)
spec+=-g++ ;;
-   *icpc*)
-   spec+=-icc ;;
*clang*)
-  

[gentoo-commits] proj/qt:master commit in: eclass/

2014-05-27 Thread Davide Pesavento
commit: 1c01ff4e90283b0f9e286d2953a0e12a13840026
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Mon May 26 23:44:55 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon May 26 23:44:55 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=1c01ff4e

[qt4-build-multilib.eclass] Get rid of install_directories().

---
 eclass/qt4-build-multilib.eclass | 26 ++
 1 file changed, 10 insertions(+), 16 deletions(-)

diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index acf3166..dd919f9 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -415,7 +415,7 @@ qt4-build-multilib_src_compile() {
 
 # @FUNCTION: qt4-build-multilib_src_test
 # @DESCRIPTION:
-# Runs tests only in target directories.
+# Runs unit tests in all QT4_TARGET_DIRECTORIES.
 qt4-build-multilib_src_test() {
# QtMultimedia does not have any test suite (bug #332299)
[[ ${PN} == qtmultimedia ]]  return
@@ -428,9 +428,16 @@ qt4-build-multilib_src_test() {
 
 # @FUNCTION: qt4-build-multilib_src_install
 # @DESCRIPTION:
-# Perform the actual installation including some library fixes.
+# Performs the actual installation, running 'emake install'
+# inside all QT4_TARGET_DIRECTORIES, and installing qconfigs.
 qt4-build-multilib_src_install() {
-   install_directories ${QT4_TARGET_DIRECTORIES}
+   local dir
+   for dir in ${QT4_TARGET_DIRECTORIES}; do
+   pushd ${dir} /dev/null || die
+   emake INSTALL_ROOT=${D} install
+   popd /dev/null || die
+   done
+
install_qconfigs
fix_library_files
fix_includes
@@ -495,19 +502,6 @@ qt4_prepare_env() {
export XDG_CONFIG_HOME=${T}
 }
 
-# @FUNCTION: install_directories
-# @USAGE:  directories 
-# @INTERNAL
-# @DESCRIPTION:
-# Runs emake install in the given directories, which are separated by spaces.
-install_directories() {
-   for x in $@; do
-   pushd ${S}/${x} /dev/null || die
-   emake INSTALL_ROOT=${D} install
-   popd /dev/null || die
-   done
-}
-
 # @ECLASS-VARIABLE: QCONFIG_ADD
 # @DESCRIPTION:
 # List options that need to be added to QT_CONFIG in qconfig.pri



[gentoo-commits] proj/qt:master commit in: dev-qt/qtcore/

2014-05-27 Thread Davide Pesavento
commit: 52bcb4af3258474d1be5bd6c24c1126d2b915b86
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Mon May 26 18:16:17 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon May 26 18:16:17 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=52bcb4af

[dev-qt/qtcore:4] Remove redundant code.

We always run qmake with CONFIG+=nostrip, so these lines are unnecessary.

Package-Manager: portage-2.2.10

---
 dev-qt/qtcore/qtcore-4.8..ebuild | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/dev-qt/qtcore/qtcore-4.8..ebuild 
b/dev-qt/qtcore/qtcore-4.8..ebuild
index 85a3a37..12b17dd 100644
--- a/dev-qt/qtcore/qtcore-4.8..ebuild
+++ b/dev-qt/qtcore/qtcore-4.8..ebuild
@@ -19,7 +19,7 @@ IUSE=+glib iconv icu qt3support ssl
 DEPEND=
sys-libs/zlib
glib? ( dev-libs/glib:2 )
-   icu? ( =dev-libs/icu-49:= )
+   icu? ( dev-libs/icu:= )
ssl? ( dev-libs/openssl:0 )
 
 RDEPEND=${DEPEND}
@@ -66,11 +66,6 @@ QT4_EXTRACT_DIRECTORIES=${QT4_TARGET_DIRECTORIES}
 QCONFIG_DEFINE=QT_ZLIB
 
 src_prepare() {
-   # Don't pre-strip, bug 235026
-   for i in kr jp cn tw; do
-   echo CONFIG+=nostrip  
${S}/src/plugins/codecs/${i}/${i}.pro
-   done
-
qt4-build-multilib_src_prepare
 
# bug 172219



[gentoo-commits] proj/qt:master commit in: eclass/

2014-05-27 Thread Davide Pesavento
commit: b9745751e2d1fe089a68ba54849c73037575d8a6
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Tue May 27 10:55:19 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Tue May 27 10:55:19 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=b9745751

[qt4-build-multilib.eclass] Improve description of qt4_get_mkspec().

---
 eclass/qt4-build-multilib.eclass | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index 15799c7..abfad52 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -705,10 +705,9 @@ fix_includes() {
 }
 
 # @FUNCTION: qt4_get_mkspec
-# @RETURN: the specs-directory w/o path
 # @INTERNAL
 # @DESCRIPTION:
-# Allows us to define which mkspecs dir we want to use.
+# Returns the right mkspec for the current CHOST/CXX combination.
 qt4_get_mkspec() {
local spec=
 



[gentoo-commits] gentoo-x86 commit in media-libs/phonon: phonon-4.7.1-r1.ebuild phonon-9999.ebuild ChangeLog phonon-4.7.1.ebuild

2014-05-27 Thread Johannes Huber (johu)
johu14/05/27 11:21:03

  Modified: phonon-.ebuild ChangeLog
  Added:phonon-4.7.1-r1.ebuild
  Removed:  phonon-4.7.1.ebuild
  Log:
  Revision bump fixes automagic dependency on dev-libs/libqzeitgeist.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
F3CFD2BD)

Revision  ChangesPath
1.22 media-libs/phonon/phonon-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-.ebuild?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-.ebuild?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-.ebuild?r1=1.21r2=1.22

Index: phonon-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-.ebuild,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- phonon-.ebuild  13 Mar 2014 10:52:48 -  1.21
+++ phonon-.ebuild  27 May 2014 11:21:03 -  1.22
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-.ebuild,v 1.21 
2014/03/13 10:52:48 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-.ebuild,v 1.22 
2014/05/27 11:21:03 johu Exp $
 
 EAPI=5
 
@@ -81,6 +81,7 @@
$(cmake-utils_use designer PHONON_BUILD_DESIGNER_PLUGIN)
$(cmake-utils_use_with pulseaudio GLIB2)
$(cmake-utils_use_with pulseaudio PulseAudio)
+   $(cmake-utils_use_with zeitgeist QZeitgeist)
)
if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
mycmakeargs+=(-DPHONON_BUILD_PHONON4QT5=OFF)



1.56 media-libs/phonon/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/ChangeLog?rev=1.56view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/ChangeLog?rev=1.56content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/ChangeLog?r1=1.55r2=1.56

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   13 Mar 2014 10:52:48 -  1.55
+++ ChangeLog   27 May 2014 11:21:03 -  1.56
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/phonon
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/ChangeLog,v 1.55 
2014/03/13 10:52:48 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/ChangeLog,v 1.56 
2014/05/27 11:21:03 johu Exp $
+
+*phonon-4.7.1-r1 (27 May 2014)
+
+  27 May 2014; Johannes Huber j...@gentoo.org +phonon-4.7.1-r1.ebuild,
+  -phonon-4.7.1.ebuild, phonon-.ebuild:
+  Revision bump fixes automagic dependency on dev-libs/libqzeitgeist.
 
   13 Mar 2014; Michael Palimaka kensing...@gentoo.org metadata.xml,
   phonon-4.7.1.ebuild, phonon-.ebuild:



1.1  media-libs/phonon/phonon-4.7.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-4.7.1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-4.7.1-r1.ebuild?rev=1.1content-type=text/plain

Index: phonon-4.7.1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-4.7.1-r1.ebuild,v 
1.1 2014/05/27 11:21:03 johu Exp $

EAPI=5

if [[ ${PV} != ** ]]; then
SRC_URI=mirror://kde/stable/phonon/${PV}/${P}.tar.xz
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
else
SCM_ECLASS=git-r3
EGIT_REPO_URI=( git://anongit.kde.org/${PN} )
KEYWORDS=
fi

inherit cmake-utils multibuild ${SCM_ECLASS}

DESCRIPTION=KDE multimedia API
HOMEPAGE=https://projects.kde.org/projects/kdesupport/phonon;

LICENSE=LGPL-2.1
SLOT=0
IUSE=aqua debug designer +gstreamer pulseaudio +qt4 qt5 vlc zeitgeist

COMMON_DEPEND=
!!dev-qt/qtphonon:4
qt4? (
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
designer? ( dev-qt/designer:4 )
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5
dev-qt/qtopengl:5
dev-qt/qtwidgets:5

[gentoo-commits] gentoo-x86 commit in sys-power/upower: upower-0.9.23-r2.ebuild ChangeLog

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 11:21:17

  Modified: upower-0.9.23-r2.ebuild ChangeLog
  Log:
  Stabilize for everyone (only non-arch specific minor bugfixes when comparing 
to current stable, which is -r0)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.4  sys-power/upower/upower-0.9.23-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild?r1=1.3r2=1.4

Index: upower-0.9.23-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- upower-0.9.23-r2.ebuild 28 Mar 2014 21:23:58 -  1.3
+++ upower-0.9.23-r2.ebuild 27 May 2014 11:21:17 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild,v 
1.3 2014/03/28 21:23:58 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild,v 
1.4 2014/05/27 11:21:17 ssuominen Exp $
 
 EAPI=5
 inherit eutils systemd
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
+KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd
 IUSE=doc +introspection ios kernel_FreeBSD kernel_linux systemd
 
 COMMON_DEPEND==dev-libs/dbus-glib-0.100



1.147sys-power/upower/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.147view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.147content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?r1=1.146r2=1.147

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog   26 May 2014 19:22:34 -  1.146
+++ ChangeLog   27 May 2014 11:21:17 -  1.147
@@ -1,6 +1,10 @@
 # ChangeLog for sys-power/upower
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.146 
2014/05/26 19:22:34 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.147 
2014/05/27 11:21:17 ssuominen Exp $
+
+  27 May 2014; Samuli Suominen ssuomi...@gentoo.org upower-0.9.23-r2.ebuild:
+  Stabilize for everyone (only non-arch specific minor bugfixes when comparing
+  to current stable, which is -r0)
 
   26 May 2014; Samuli Suominen ssuomi...@gentoo.org upower-0.99.0.ebuild:
   This release is mainly for use with sys-apps/systemd because upstream removed






[gentoo-commits] gentoo-x86 commit in sys-power/upower: ChangeLog upower-0.9.23.ebuild

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 11:22:28

  Modified: ChangeLog
  Removed:  upower-0.9.23.ebuild
  Log:
  punt old, to futher clarify the upower situation. 0.9.23-r2 is same as 
sys-power/upower-pm-utils
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.148sys-power/upower/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.148view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.148content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?r1=1.147r2=1.148

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog   27 May 2014 11:21:17 -  1.147
+++ ChangeLog   27 May 2014 11:22:28 -  1.148
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/upower
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.147 
2014/05/27 11:21:17 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.148 
2014/05/27 11:22:28 ssuominen Exp $
+
+  27 May 2014; Samuli Suominen ssuomi...@gentoo.org -upower-0.9.23.ebuild:
+  old
 
   27 May 2014; Samuli Suominen ssuomi...@gentoo.org upower-0.9.23-r2.ebuild:
   Stabilize for everyone (only non-arch specific minor bugfixes when comparing






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-power-manager: xfce4-power-manager-1.2.0_p20140527.ebuild ChangeLog

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 11:31:00

  Modified: ChangeLog
  Added:xfce4-power-manager-1.2.0_p20140527.ebuild
  Log:
  New snapshot to fix compability issues with UPower versions 0.9.x and 0.99.x, 
and UPower with no pm-utils support on a non-systemd systems wrt #510096. 
Thanks to Coacher for reporting and Eric Koegel for addressing the issues.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.73 xfce-extra/xfce4-power-manager/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog?rev=1.73view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog?rev=1.73content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog?r1=1.72r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   26 May 2014 19:40:50 -  1.72
+++ ChangeLog   27 May 2014 11:31:00 -  1.73
@@ -1,6 +1,14 @@
 # ChangeLog for xfce-extra/xfce4-power-manager
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog,v 
1.72 2014/05/26 19:40:50 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/ChangeLog,v 
1.73 2014/05/27 11:31:00 ssuominen Exp $
+
+*xfce4-power-manager-1.2.0_p20140527 (27 May 2014)
+
+  27 May 2014; Samuli Suominen ssuomi...@gentoo.org
+  +xfce4-power-manager-1.2.0_p20140527.ebuild:
+  New snapshot to fix compability issues with UPower versions 0.9.x and 0.99.x,
+  and UPower with no pm-utils support on a non-systemd systems wrt #510096.
+  Thanks to Coacher for reporting and Eric Koegel for addressing the issues.
 
   26 May 2014; Samuli Suominen ssuomi...@gentoo.org
   xfce4-power-manager-1.2.0-r2.ebuild,



1.1  
xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140527.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140527.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140527.ebuild?rev=1.1content-type=text/plain

Index: xfce4-power-manager-1.2.0_p20140527.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.2.0_p20140527.ebuild,v
 1.1 2014/05/27 11:31:00 ssuominen Exp $

EAPI=5
[[ ${PV} == *_p* ]]  EAUTORECONF=1
inherit flag-o-matic linux-info xfconf

DESCRIPTION=Power manager for the Xfce desktop environment
HOMEPAGE=http://goodies.xfce.org/projects/applications/xfce4-power-manager;
#SRC_URI=mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2
SRC_URI=http://dev.gentoo.org/~ssuominen/${P}.tar.xz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
KEYWORDS=
IUSE=debug kernel_linux networkmanager policykit +udisks 
+xfce_plugins_brightness

COMMON_DEPEND==dev-libs/dbus-glib-0.100.2
=dev-libs/glib-2.30
=sys-apps/dbus-1.6.18
|| ( =sys-power/upower-0.9.23 sys-power/upower-pm-utils )
=x11-libs/gtk+-2.24:2
=x11-libs/libnotify-0.7
x11-libs/libX11
=x11-libs/libXrandr-1.2
x11-libs/libXext
=xfce-base/xfconf-4.10
=xfce-base/libxfce4ui-4.10
=xfce-base/libxfce4util-4.10
policykit? ( =sys-auth/polkit-0.112 )
xfce_plugins_brightness? ( =xfce-base/xfce4-panel-4.10 )
RDEPEND=${COMMON_DEPEND}
networkmanager? ( net-misc/networkmanager )
udisks? ( sys-fs/udisks:0 )
DEPEND=${COMMON_DEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig
x11-proto/xproto

pkg_setup() {
if use kernel_linux; then
CONFIG_CHECK=~TIMER_STATS
linux-info_pkg_setup
fi

XFCONF=(
$(use_enable policykit polkit)
--enable-dpms
$(use_enable networkmanager network-manager)
$(use_enable xfce_plugins_brightness panel-plugins)
$(xfconf_use_debug)
)

[[ ${PV} == *_p* ]]  XFCONF+=( --enable-maintainer-mode )

DOCS=( AUTHORS NEWS README TODO )
}

src_prepare() {
if [[ ${PV} == *_p* ]]; then
# run xdt-autogen from xfce4-dev-tools added as dependency by 
EAUTORECONF=1 to
# rename configure.ac.in to configure.ac while grabbing 
$LINGUAS and $REVISION values
NOCONFIGURE=1 xdt-autogen
fi


[gentoo-commits] gentoo-x86 commit in media-gfx/fim: ChangeLog fim-0.4_rc1-r1.ebuild

2014-05-27 Thread Michael Weber (xmw)
xmw 14/05/27 11:51:16

  Modified: ChangeLog
  Added:fim-0.4_rc1-r1.ebuild
  Log:
  Fix compilation against giflib-4.2 (bug 504772)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
62EEF090)

Revision  ChangesPath
1.5  media-gfx/fim/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fim/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fim/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fim/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/fim/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   11 Jan 2014 02:06:24 -  1.4
+++ ChangeLog   27 May 2014 11:51:16 -  1.5
@@ -1,6 +1,14 @@
 # ChangeLog for media-gfx/fim
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/fim/ChangeLog,v 1.4 2014/01/11 
02:06:24 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/fim/ChangeLog,v 1.5 2014/05/27 
11:51:16 xmw Exp $
+
+*fim-0.4_rc1-r1 (27 May 2014)
+*fim-0.4_rc1_p1 (27 May 2014)
+
+  27 May 2014; Michael Weber x...@gentoo.org
+  +files/fim-0.4_rc1-giflib-4.2.patch, +fim-0.4_rc1-r1.ebuild,
+  +fim-0.4_rc1_p1.ebuild:
+  Fix compilation against giflib-4.2 (bug 504772)
 
 *fim-0.4_rc1 (11 Jan 2014)
 



1.1  media-gfx/fim/fim-0.4_rc1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fim/fim-0.4_rc1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fim/fim-0.4_rc1-r1.ebuild?rev=1.1content-type=text/plain

Index: fim-0.4_rc1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fim/fim-0.4_rc1-r1.ebuild,v 1.1 
2014/05/27 11:51:16 xmw Exp $

EAPI=5

inherit autotools eutils

DESCRIPTION=Fbi-IMproved is a framebuffer image viewer based on Fbi and 
inspired from Vim
HOMEPAGE=http://savannah.nongnu.org/projects/fbi-improved;
SRC_URI=http://download.savannah.gnu.org/releases/fbi-improved/${P/_rc/-rc}.tar.bz2;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~x86
IUSE=aalib dia djvu exif fbcon gif graphicsmagick imagemagick jpeg pdf png 
postscript readline sdl static svg tiff xfig

RDEPEND=media-fonts/terminus-font
aalib? ( media-libs/aalib[slang] )
dia? ( app-office/dia )
djvu? ( app-text/djvu )
exif? ( media-libs/libexif )
gif? ( media-libs/giflib )
graphicsmagick? ( media-gfx/graphicsmagick )
imagemagick? ( || ( media-gfx/graphicsmagick[imagemagick] 
media-gfx/imagemagick ) )
jpeg? ( virtual/jpeg )
pdf? ( app-text/poppler )
png? ( media-libs/libpng )
postscript? ( app-text/libspectre )
readline? ( sys-libs/readline )
sdl? ( media-libs/libsdl )
svg? ( media-gfx/inkscape )
tiff? ( media-libs/tiff )
xfig? ( media-gfx/xfig )
DEPEND=${RDEPEND}
sys-devel/bison
sys-devel/flex

S=${WORKDIR}/${P/_rc/-rc}

src_prepare() {
epatch \
${FILESDIR}/${P}-nosvn.patch \
${FILESDIR}/${P}-giflib-4.2.patch
if use graphicsmagick ; then
epatch ${FILESDIR}/${PN}-0.4_pre-graphicsmagick.patch
fi
eautoreconf
}

src_configure() {
econf \
$(use_enable aalib aa) \
$(use_enable dia) \
$(use_enable djvu) \
$(use_enable exif) \
$(use_enable fbcon framebuffer) \
$(use_enable gif) \
$(use_enable graphicsmagick) \
$(use_enable imagemagick convert) \
$(use_enable pdf poppler) \
$(use_enable png) \
$(use_enable postscript ps) \
$(use_enable readline) \
$(use_enable sdl) \
$(use_enable static) \
$(use_enable svg inkscape) \
$(use_enable tiff) \
$(use_enable xfig) \
--disable-hardcoded-font \
--disable-imlib2 \
--disable-matrices-rendering \
--disable-xcftopnm \
--enable-fimrc \
--enable-history \
--enable-loader-string-specification \
--enable-mark-and-dump \
--enable-output-console \
--enable-raw-bits-rendering \
--enable-read-dirs \
--enable-recursive-dirs \
--enable-resize-optimizations \
--enable-scan-consolefonts \
--enable-screen \
   

[gentoo-commits] gentoo-x86 commit in media-gfx/fim/files: fim-0.4_rc1-giflib-4.2.patch

2014-05-27 Thread Michael Weber (xmw)
xmw 14/05/27 11:51:16

  Added:fim-0.4_rc1-giflib-4.2.patch
  Log:
  Fix compilation against giflib-4.2 (bug 504772)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
62EEF090)

Revision  ChangesPath
1.1  media-gfx/fim/files/fim-0.4_rc1-giflib-4.2.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fim/files/fim-0.4_rc1-giflib-4.2.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fim/files/fim-0.4_rc1-giflib-4.2.patch?rev=1.1content-type=text/plain

Index: fim-0.4_rc1-giflib-4.2.patch
===
--- fim-0.4-rc1/src/FbiStuffGif.cpp.orig2014-05-27 13:06:10.521394320 
+0200
+++ fim-0.4-rc1/src/FbiStuffGif.cpp 2014-05-27 13:13:48.754866607 +0200
@@ -58,14 +58,14 @@
 #if FIM_GIFLIB_RETIRED_PrintGifError  
 void
 FimPrintGifError(struct gif_state * gs) {
-int ErrorCode = gs-gif-Error;
+int ErrorCode = GifError();
 /* On the basis of giflib-5.0.5/util/qprintf.c suggestion, after 
retirement of PrintGifError  */
 char *Err = NULL;
 
 if(ErrorCode == 0)   
return;
 
-Err = GifErrorString(ErrorCode);
+Err = GifErrorString();

   
 if (Err != NULL)
 fprintf(stderr, GIF-LIB error: %s.\n, Err);






[gentoo-commits] gentoo-x86 commit in dev-util/xxdiff/files: xxdiff-4.0_beta1_p20110426-bison3.patch

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 12:36:00

  Added:xxdiff-4.0_beta1_p20110426-bison3.patch
  Log:
  Restrict -r0 to sys-devel/bison-3 and fix building in -r1 wrt #511560 by 
zimous
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.1  
dev-util/xxdiff/files/xxdiff-4.0_beta1_p20110426-bison3.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/xxdiff/files/xxdiff-4.0_beta1_p20110426-bison3.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/xxdiff/files/xxdiff-4.0_beta1_p20110426-bison3.patch?rev=1.1content-type=text/plain

Index: xxdiff-4.0_beta1_p20110426-bison3.patch
===
http://bugs.gentoo.org/511560

Description: Fix compilation with Bison 3
YYPARSE_PARAM was deprecated in Bison 1.875 and removed in Bison 3;
%parse-param can be used instead. Also fix a warning about %pure_parser
Author: Florian Schlichting f...@debian.org

--- a/src/resParser.y
+++ b/src/resParser.y
@@ -39,12 +39,11 @@
 
 // The parser input is the resources object to fill in.
 #define RESOURCES  ( static_castXxResources*(resources) )
-#define YYPARSE_PARAM resources
 
 // Declare lexer from other compilation unit.
 int resParserlex( YYSTYPE* yylval );
 
-void resParsererror( const char* msg );
+void resParsererror( void *resources, const char* msg );
 
 // Declare some parser functions and data defined in resParser.cpp
 namespace XxResParserNS {
@@ -58,6 +57,9 @@
 
 %}
 
+/* The parser input is the resources object to fill in. */
+%parse-param { void *resources }
+
 /* generate header file */
 %defines
 
@@ -144,7 +146,7 @@
 %type num boolkwd
 
 %start xxdiffrc
-%pure_parser
+%pure-parser
 
 %%
 xxdiffrc   : stmts
@@ -188,7 +190,7 @@
   RESOURCES-setPreferredGeometry( geometry );
}
else {
-  yyerror( Bad geometry specification. );
+  yyerror( resources, Bad geometry specification. );
   // Should never happen, the lexer regexp should be tough
   // enough.
}
@@ -212,7 +214,7 @@
   QString err = QString( Requested style key does not 
exist. );
   err += QString( \nValid styles are:  );
   err += styles.join( ,  );
-  yyerror( err.toLatin1().constData() );
+  yyerror( resources, err.toLatin1().constData() );
}
 }
 ;
@@ -224,7 +226,7 @@
   char buf[2048];
   ::snprintf( buf, 2048,
   Unrecognized accelerator: %s\n, $5 );
-  yyerror( buf );
+  yyerror( resources, buf );
}
 }
;
--- a/src/resParser.l
+++ b/src/resParser.l
@@ -298,7 +298,7 @@
  QString os;
  QTextOStream oss( os );
  oss  ignoring char:   yytext  flush;
- yyerror( os.latin1() );
+ yyerror( resources, os.latin1() );
  */
   }
 }
--- a/src/resParser.cpp
+++ b/src/resParser.cpp
@@ -73,7 +73,7 @@
 
 
//--
 //
-void resParsererror( const char* msg )
+void resParsererror( void* resources __attribute__((__unused__)), const char* 
msg )
 {
// Send errors to stdout so we can filter out the debug info shmeglu while
// debugging parser.
@@ -794,7 +794,7 @@
   QString os;
   QTextStream oss( os );
   oss  Unknown   errmsg  :   name  flush;
-  resParsererror( os.toLatin1().constData() );
+  resParsererror( NULL, os.toLatin1().constData() );
}
num = ERROR_TOKEN;
return ERROR_TOKEN;






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-s3: xf86-video-s3-0.6.5-r1.ebuild xf86-video-s3-0.6.5.ebuild ChangeLog xf86-video-s3-0.6.4.ebuild xf86-video-s3-0.6.3.ebuild

2014-05-27 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/05/27 12:41:15

  Modified: xf86-video-s3-0.6.5.ebuild ChangeLog
  Added:xf86-video-s3-0.6.5-r1.ebuild
  Removed:  xf86-video-s3-0.6.4.ebuild
xf86-video-s3-0.6.3.ebuild
  Log:
  Fix build with newer xorg-server. Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.7  x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5.ebuild?r1=1.6r2=1.7

Index: xf86-video-s3-0.6.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xf86-video-s3-0.6.5.ebuild  30 Dec 2012 14:49:59 -  1.6
+++ xf86-video-s3-0.6.5.ebuild  27 May 2014 12:41:15 -  1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5.ebuild,v 
1.6 2012/12/30 14:49:59 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5.ebuild,v 
1.7 2014/05/27 12:41:15 chithanh Exp $
 
 EAPI=4
 inherit xorg-2



1.59 x11-drivers/xf86-video-s3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/ChangeLog?rev=1.59view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/ChangeLog?rev=1.59content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/ChangeLog?r1=1.58r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-s3/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   30 Dec 2012 14:49:59 -  1.58
+++ ChangeLog   27 May 2014 12:41:15 -  1.59
@@ -1,6 +1,14 @@
 # ChangeLog for x11-drivers/xf86-video-s3
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-s3/ChangeLog,v 1.58 
2012/12/30 14:49:59 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-s3/ChangeLog,v 1.59 
2014/05/27 12:41:15 chithanh Exp $
+
+*xf86-video-s3-0.6.5-r1 (27 May 2014)
+
+  27 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  +files/xf86-video-s3-0.6.5-mibstore_h.patch, +xf86-video-s3-0.6.5-r1.ebuild,
+  -xf86-video-s3-0.6.3.ebuild, -xf86-video-s3-0.6.4.ebuild,
+  xf86-video-s3-0.6.5.ebuild:
+  Fix build with newer xorg-server. Remove old.
 
   30 Dec 2012; Agostino Sarubbo a...@gentoo.org xf86-video-s3-0.6.5.ebuild:
   Stable for alpha, wrt bug #440872



1.1  x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5-r1.ebuild?rev=1.1content-type=text/plain

Index: xf86-video-s3-0.6.5-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-s3/xf86-video-s3-0.6.5-r1.ebuild,v
 1.1 2014/05/27 12:41:15 chithanh Exp $

EAPI=5
inherit xorg-2

DESCRIPTION=X.Org driver for s3 cards

KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd
IUSE=

RDEPEND==x11-base/xorg-server-1.0.99
DEPEND=${RDEPEND}

PATCHES=(
${FILESDIR}/${P}-mibstore_h.patch
)






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-siliconmotion: xf86-video-siliconmotion-1.7.7-r1.ebuild ChangeLog xf86-video-siliconmotion-1.7.5.ebuild xf86-video-siliconmotion-1.7.6.ebui

2014-05-27 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/05/27 12:41:33

  Modified: ChangeLog
  Added:xf86-video-siliconmotion-1.7.7-r1.ebuild
  Removed:  xf86-video-siliconmotion-1.7.5.ebuild
xf86-video-siliconmotion-1.7.6.ebuild
  Log:
  Fix build with newer xorg-server. Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.66 x11-drivers/xf86-video-siliconmotion/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?rev=1.66view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?rev=1.66content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?r1=1.65r2=1.66

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   18 Nov 2012 12:20:35 -  1.65
+++ ChangeLog   27 May 2014 12:41:33 -  1.66
@@ -1,6 +1,18 @@
 # ChangeLog for x11-drivers/xf86-video-siliconmotion
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v 1.65 
2012/11/18 12:20:35 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v 1.66 
2014/05/27 12:41:33 chithanh Exp $
+
+*xf86-video-siliconmotion-1.7.7-r1 (27 May 2014)
+
+  27 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  +files/xf86-video-siliconmotion-1.7.7-mibstore_h.patch,
+  +xf86-video-siliconmotion-1.7.7-r1.ebuild,
+  -files/xf86-video-siliconmotion-1.7.5-abi-check.patch,
+  -files/xf86-video-siliconmotion-1.7.5-new-vgahw.patch,
+  -files/xf86-video-siliconmotion-1.7.5-xorg-server-1.12.patch,
+  -xf86-video-siliconmotion-1.7.5.ebuild,
+  -xf86-video-siliconmotion-1.7.6.ebuild:
+  Fix build with newer xorg-server. Remove old.
 
   18 Nov 2012; Agostino Sarubbo a...@gentoo.org
   xf86-video-siliconmotion-1.7.7.ebuild:



1.1  
x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.7-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.7-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.7-r1.ebuild?rev=1.1content-type=text/plain

Index: xf86-video-siliconmotion-1.7.7-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.7-r1.ebuild,v
 1.1 2014/05/27 12:41:33 chithanh Exp $

EAPI=5
inherit xorg-2

DESCRIPTION=Silicon Motion video driver

KEYWORDS=~amd64 ~mips ~x86 ~amd64-fbsd ~x86-fbsd
IUSE=

RDEPEND==x11-base/xorg-server-1.0.99
DEPEND=${RDEPEND}

PATCHES=(
${FILESDIR}/${P}-mibstore_h.patch
)






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-siliconmotion/files: xf86-video-siliconmotion-1.7.7-mibstore_h.patch xf86-video-siliconmotion-1.7.5-abi-check.patch xf86-video-siliconmotio

2014-05-27 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/05/27 12:41:34

  Added:xf86-video-siliconmotion-1.7.7-mibstore_h.patch
  Removed:  xf86-video-siliconmotion-1.7.5-abi-check.patch
xf86-video-siliconmotion-1.7.5-new-vgahw.patch
xf86-video-siliconmotion-1.7.5-xorg-server-1.12.patch
  Log:
  Fix build with newer xorg-server. Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  
x11-drivers/xf86-video-siliconmotion/files/xf86-video-siliconmotion-1.7.7-mibstore_h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/files/xf86-video-siliconmotion-1.7.7-mibstore_h.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/files/xf86-video-siliconmotion-1.7.7-mibstore_h.patch?rev=1.1content-type=text/plain

Index: xf86-video-siliconmotion-1.7.7-mibstore_h.patch
===
From f19d7e463c30f1364e82e8c9f87b8a8407d53680 Mon Sep 17 00:00:00 2001
From: Adam Jackson a...@redhat.com
Date: Thu, 10 Jan 2013 03:59:39 +
Subject: Remove miInitializeBackingStore()

Signed-off-by: Adam Jackson a...@redhat.com
---
diff --git a/src/smi_driver.c b/src/smi_driver.c
index 4794571..134db79 100644
--- a/src/smi_driver.c
+++ b/src/smi_driver.c
@@ -1750,8 +1750,6 @@ SMI_ScreenInit(SCREEN_INIT_ARGS_DECL)
   Done writing mode.  Register dump:\n);
 SMI_PrintRegs(pScrn);
 
-miInitializeBackingStore(pScreen);
-
 #ifdef HAVE_XMODES
 xf86DiDGAInit(pScreen, (unsigned long)(pSmi-FBBase + pScrn-fbOffset));
 #endif
--
cgit v0.9.0.2-2-gbebe






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog package.mask

2014-05-27 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/05/27 12:53:51

  Modified: ChangeLog package.mask
  Log:
  Remove mask for xorg-server prerelease, fontsproto/libXfont and 
wayland/weston.

Revision  ChangesPath
1.9007   profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9007view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9007content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.9006r2=1.9007

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9006
retrieving revision 1.9007
diff -u -r1.9006 -r1.9007
--- ChangeLog   27 May 2014 02:26:42 -  1.9006
+++ ChangeLog   27 May 2014 12:53:51 -  1.9007
@@ -1,11 +1,16 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9006 2014/05/27 
02:26:42 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9007 2014/05/27 
12:53:51 chithanh Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  27 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  package.mask:
+  Remove mask for xorg-server prerelease, fontsproto/libXfont and
+  wayland/weston.
+
   27 May 2014; Patrick Lauer patr...@gentoo.org package.mask:
   Add vdr-1.6 reverse deps
 



1.15733  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15733view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15733content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.15732r2=1.15733

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15732
retrieving revision 1.15733
diff -u -r1.15732 -r1.15733
--- package.mask27 May 2014 08:40:58 -  1.15732
+++ package.mask27 May 2014 12:53:51 -  1.15733
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15732 2014/05/27 
08:40:58 civil Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15733 2014/05/27 
12:53:51 chithanh Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -86,17 +86,6 @@
 # Masked until py3.4 support is added to media-gfx/cairosvg
 =dev-python/weasyprint-0.22
 
-# Chí-Thanh Christopher Nguyễn chith...@gentoo.org (21 May 2014)
-# Mask until the necessary keywording for Xwayland is done, bug #510940
-# fontsproto has new function prototypes that make it incompatible
-# with older libXfont. All these packages should probably be unmasked
-# together.
-=dev-libs/wayland-1.5.0
-=dev-libs/weston-1.5.0
-=x11-base/xorg-server-1.15.99
-=x11-proto/fontsproto-2.1.3
-=x11-libs/libXfont-1.4.8-r1
-
 # Alexandre Rostovtsev tetrom...@gentoo.org (19 May 2014)
 # Masked until dev-libs/glib supports the new timezone format, bug #510422
 =sys-libs/timezone-data-2014c






[gentoo-commits] proj/x11:master commit in: x11-base/xorg-drivers/

2014-05-27 Thread Chi-Thanh Christopher Nguyen
commit: 9ffab6404d8914950cfa5799bbd42a43c850b6ef
Author: Chi-Thanh Christopher Nguyen chithanh AT gentoo DOT org
AuthorDate: Tue May 27 12:55:28 2014 +
Commit: Chi-Thanh Christopher Nguyen chithanh AT cs DOT tu-berlin 
DOT de
CommitDate: Tue May 27 12:55:28 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=9ffab640

x11-base/xorg-drivers: allow xf86-video-s3 back in

---
 x11-base/xorg-drivers/xorg-drivers-.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x11-base/xorg-drivers/xorg-drivers-.ebuild 
b/x11-base/xorg-drivers/xorg-drivers-.ebuild
index 35fa439..2a3552b 100644
--- a/x11-base/xorg-drivers/xorg-drivers-.ebuild
+++ b/x11-base/xorg-drivers/xorg-drivers-.ebuild
@@ -57,6 +57,7 @@ IUSE_VIDEO_CARDS=
video_cards_radeon
video_cards_radeonsi
video_cards_rendition
+   video_cards_s3
video_cards_s3virge
video_cards_savage
video_cards_siliconmotion
@@ -129,6 +130,7 @@ PDEPEND=
video_cards_radeon?( x11-drivers/xf86-video-ati )
video_cards_radeonsi?  ( x11-drivers/xf86-video-ati[glamor] )
video_cards_rendition? ( x11-drivers/xf86-video-rendition )
+   video_cards_s3?( x11-drivers/xf86-video-s3 )
video_cards_s3virge?   ( x11-drivers/xf86-video-s3virge )
video_cards_savage?( x11-drivers/xf86-video-savage )
video_cards_siliconmotion? ( x11-drivers/xf86-video-siliconmotion )
@@ -157,6 +159,5 @@ PDEPEND=
!x11-drivers/xf86-video-sunbw2
!=x11-drivers/xf86-video-ark-0.7.5
!=x11-drivers/xf86-video-newport-0.2.4
-   !=x11-drivers/xf86-video-s3-0.6.5
!=x11-drivers/xf86-video-sis-0.10.7
 



[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog package.mask

2014-05-27 Thread Michal Gorny (mgorny)
mgorny  14/05/27 12:59:43

  Modified: ChangeLog package.mask
  Log:
  Uncomment the python:2.6 mask.

Revision  ChangesPath
1.9008   profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9008view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9008content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.9007r2=1.9008

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9007
retrieving revision 1.9008
diff -u -r1.9007 -r1.9008
--- ChangeLog   27 May 2014 12:53:51 -  1.9007
+++ ChangeLog   27 May 2014 12:59:42 -  1.9008
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9007 2014/05/27 
12:53:51 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9008 2014/05/27 
12:59:42 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  27 May 2014; Michał Górny mgo...@gentoo.org package.mask:
+  Uncomment the python:2.6 mask.
+
   27 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
   package.mask:
   Remove mask for xorg-server prerelease, fontsproto/libXfont and



1.15734  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15734view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15734content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.15733r2=1.15734

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15733
retrieving revision 1.15734
diff -u -r1.15733 -r1.15734
--- package.mask27 May 2014 12:53:51 -  1.15733
+++ package.mask27 May 2014 12:59:42 -  1.15734
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15733 2014/05/27 
12:53:51 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15734 2014/05/27 
12:59:42 mgorny Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -355,7 +355,7 @@
 # are not provided anymore. Python 2.7 is almost drop-in replacement.
 # The Python itself will be masked in 30 days, and all packages will be
 # removed in 60 days.
-#dev-lang/python:2.6
+dev-lang/python:2.6
 dev-python/argparse
 dev-python/ordereddict
 






[gentoo-commits] gentoo-x86 commit in net-libs/czmq: ChangeLog czmq-2.2.0.ebuild czmq-2.1.0.ebuild

2014-05-27 Thread Justin Lecher (jlec)
jlec14/05/27 13:03:31

  Modified: ChangeLog czmq-2.1.0.ebuild
  Added:czmq-2.2.0.ebuild
  Log:
  net-libs/czmq: Add missing dep in libsodium, #511612; version BUmp
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.13 net-libs/czmq/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/ChangeLog?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/ChangeLog?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/ChangeLog?r1=1.12r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/czmq/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   27 Apr 2014 15:56:46 -  1.12
+++ ChangeLog   27 May 2014 13:03:31 -  1.13
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/czmq
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/ChangeLog,v 1.12 2014/04/27 
15:56:46 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/ChangeLog,v 1.13 2014/05/27 
13:03:31 jlec Exp $
+
+*czmq-2.2.0 (27 May 2014)
+
+  27 May 2014; Justin Lecher j...@gentoo.org czmq-2.1.0.ebuild,
+  +czmq-2.2.0.ebuild:
+  Add missing dep in libsodium, #511612; version BUmp
 
   27 Apr 2014; Justin Lecher j...@gentoo.org czmq-2.0.3.ebuild,
   czmq-2.1.0.ebuild, +files/version.sh:



1.3  net-libs/czmq/czmq-2.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/czmq-2.1.0.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/czmq-2.1.0.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/czmq-2.1.0.ebuild?r1=1.2r2=1.3

Index: czmq-2.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/czmq/czmq-2.1.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- czmq-2.1.0.ebuild   27 Apr 2014 15:56:46 -  1.2
+++ czmq-2.1.0.ebuild   27 May 2014 13:03:31 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/czmq-2.1.0.ebuild,v 1.2 
2014/04/27 15:56:46 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/czmq-2.1.0.ebuild,v 1.3 
2014/05/27 13:03:31 jlec Exp $
 
 EAPI=5
 
@@ -18,6 +18,7 @@
 IUSE=doc static-libs
 
 RDEPEND=
+   dev-libs/libsodium
sys-apps/util-linux
=net-libs/zeromq-2.1
 



1.1  net-libs/czmq/czmq-2.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/czmq-2.2.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/czmq/czmq-2.2.0.ebuild?rev=1.1content-type=text/plain

Index: czmq-2.2.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/czmq-2.2.0.ebuild,v 1.1 
2014/05/27 13:03:31 jlec Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=true

inherit autotools-utils

DESCRIPTION= High-level C Binding for ZeroMQ
HOMEPAGE=http://czmq.zeromq.org;
SRC_URI=http://download.zeromq.org/${P}.tar.gz;

LICENSE=LGPL-3
SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~x86
IUSE=doc static-libs

RDEPEND=
dev-libs/libsodium
sys-apps/util-linux
=net-libs/zeromq-2.1

DEPEND=${RDEPEND}
doc? (
app-text/asciidoc
app-text/xmlto
)

DOCS=( NEWS AUTHORS )

src_prepare() {
sed -i -e 's|-Werror||g' configure.ac || die
autotools-utils_src_prepare
}

src_install() {
autotools-utils_src_install

doman doc/*.[1-9]
}






[gentoo-commits] gentoo-x86 commit in app-forensics/rkhunter: rkhunter-1.4.2.ebuild ChangeLog

2014-05-27 Thread Richard Farina (zerochaos)
zerochaos14/05/27 13:11:54

  Modified: ChangeLog
  Added:rkhunter-1.4.2.ebuild
  Log:
  simple revbump as requested by bug 504066. tested and functional
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.98 app-forensics/rkhunter/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/ChangeLog?rev=1.98view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/ChangeLog?rev=1.98content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/ChangeLog?r1=1.97r2=1.98

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog   11 Apr 2013 06:20:32 -  1.97
+++ ChangeLog   27 May 2014 13:11:54 -  1.98
@@ -1,6 +1,11 @@
 # ChangeLog for app-forensics/rkhunter
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v 1.97 
2013/04/11 06:20:32 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v 1.98 
2014/05/27 13:11:54 zerochaos Exp $
+
+*rkhunter-1.4.2 (27 May 2014)
+
+  27 May 2014; Rick Farina zeroch...@gentoo.org +rkhunter-1.4.2.ebuild:
+  simple revbump as requested by bug 504066. tested and functional
 
   11 Apr 2013; Patrick Lauer patr...@gentoo.org rkhunter-1.4.0.ebuild:
   Dependency fix for #398123



1.1  app-forensics/rkhunter/rkhunter-1.4.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild?rev=1.1content-type=text/plain

Index: rkhunter-1.4.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild,v 1.1 
2014/05/27 13:11:54 zerochaos Exp $

EAPI=5

inherit eutils bash-completion-r1

DESCRIPTION=Rootkit Hunter scans for known and unknown rootkits, backdoors, 
and sniffers.
HOMEPAGE=http://rkhunter.sf.net/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~mips ~ppc ~x86
IUSE=

RDEPEND=
app-shells/bash
dev-lang/perl
sys-process/lsof[rpc]
virtual/cron
virtual/mailx


S=${WORKDIR}/${P}/files

src_prepare() {
epatch ${FILESDIR}/${PN}.conf.patch
}

src_install() {
# rkhunter requires to be root
dosbin ${PN}

insinto /etc
doins ${PN}.conf

exeinto /usr/lib/${PN}/scripts
doexe *.pl

insinto /var/lib/${PN}/db
doins *.dat

insinto /var/lib/${PN}/db/i18n
doins i18n/*

doman ${PN}.8
dodoc ACKNOWLEDGMENTS CHANGELOG FAQ README

exeinto /etc/cron.daily
newexe ${FILESDIR}/${PN}-1.3.cron ${PN}

newbashcomp ${FILESDIR}/${PN}.bash-completion ${PN}
}

pkg_postinst() {
elog A cron script has been installed to /etc/cron.daily/rkhunter.
elog To enable it, edit /etc/cron.daily/rkhunter and follow the
elog directions.
elog If you want ${PN} to send mail, you will need to install
elog virtual/mailx or alter the EMAIL_CMD variable in the
elog cron script and possibly the MAIL_CMD variable in the
elog ${PN}.conf file to use another mail client.
}






[gentoo-commits] gentoo-x86 commit in net-dns/knot: knot-1.4.6.ebuild knot-9999.ebuild ChangeLog knot-1.4.5.ebuild

2014-05-27 Thread Tomas Chvatal (scarabeus)
scarabeus14/05/27 13:28:32

  Modified: knot-.ebuild ChangeLog
  Added:knot-1.4.6.ebuild
  Removed:  knot-1.4.5.ebuild
  Log:
  Version bump to 1.4.6. Drop older. Add idn useflag. Thanks to Ondrej Sury for 
the update.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
8EEE3BE8)

Revision  ChangesPath
1.2  net-dns/knot/knot-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-.ebuild?r1=1.1r2=1.2

Index: knot-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/knot/knot-.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- knot-.ebuild9 Jan 2014 18:04:02 -   1.1
+++ knot-.ebuild27 May 2014 13:28:32 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/knot-.ebuild,v 1.1 
2014/01/09 18:04:02 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/knot-.ebuild,v 1.2 
2014/05/27 13:28:32 scarabeus Exp $
 
 EAPI=5
 
@@ -10,18 +10,19 @@
 
 DESCRIPTION=High-performance authoritative-only DNS server
 HOMEPAGE=http://www.knot-dns.cz/;
-[[ ${PV} ==  ]] || 
SRC_URI=http://public.nic.cz/files/knot-dns/${P/_/-}.tar.gz;
+[[ ${PV} ==  ]] || 
SRC_URI=https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.gz;
 
 LICENSE=GPL-3
 SLOT=0
 [[ ${PV} ==  ]] || \
 KEYWORDS=~amd64 ~x86
-IUSE=debug caps +fastparser
+IUSE=debug caps +fastparser idn
 
 RDEPEND=
dev-libs/openssl
dev-libs/userspace-rcu
caps? ( sys-libs/libcap-ng )
+   idn? ( net-dns/libidn )
 
 #  sys-libs/glibc
 DEPEND=${RDEPEND}
@@ -45,7 +46,8 @@
--enable-recvmmsg \
$(use_enable fastparser) \
$(use_enable debug debug 
server,zones,xfr,packet,dname,rr,ns,hash,compiler) \
-   $(use_enable debug debuglevel details)
+   $(use_enable debug debuglevel details) \
+   $(use_with idn libidn)
 }
 
 src_install() {



1.27 net-dns/knot/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.27view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.27content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?r1=1.26r2=1.27

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   15 Apr 2014 10:45:47 -  1.26
+++ ChangeLog   27 May 2014 13:28:32 -  1.27
@@ -1,6 +1,13 @@
 # ChangeLog for net-dns/knot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.26 2014/04/15 
10:45:47 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.27 2014/05/27 
13:28:32 scarabeus Exp $
+
+*knot-1.4.6 (27 May 2014)
+
+  27 May 2014; Tomáš Chvátal scarab...@gentoo.org +knot-1.4.6.ebuild,
+  -knot-1.4.5.ebuild, knot-.ebuild:
+  Version bump to 1.4.6. Drop older. Add idn useflag. Thanks to Ondrej Sury for
+  the update.
 
   15 Apr 2014; Tomáš Chvátal scarab...@gentoo.org metadata.xml:
   Update Ondrej's mail and fix typo.



1.1  net-dns/knot/knot-1.4.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.4.6.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.4.6.ebuild?rev=1.1content-type=text/plain

Index: knot-1.4.6.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/knot-1.4.6.ebuild,v 1.1 
2014/05/27 13:28:32 scarabeus Exp $

EAPI=5

EGIT_REPO_URI=https://gitlab.labs.nic.cz/labs/${PN}.git;
[[ ${PV} ==  ]]  inherit autotools git-r3
inherit eutils user

DESCRIPTION=High-performance authoritative-only DNS server
HOMEPAGE=http://www.knot-dns.cz/;
[[ ${PV} ==  ]] || 
SRC_URI=https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.gz;

LICENSE=GPL-3
SLOT=0
[[ ${PV} ==  ]] || \
KEYWORDS=~amd64 ~x86
IUSE=debug caps +fastparser idn

RDEPEND=
dev-libs/openssl
dev-libs/userspace-rcu
caps? ( sys-libs/libcap-ng )
idn? ( net-dns/libidn )

#   sys-libs/glibc
DEPEND=${RDEPEND}
virtual/pkgconfig

[gentoo-commits] gentoo-x86 commit in app-text/acroread: acroread-9.5.5.ebuild ChangeLog

2014-05-27 Thread Michal Gorny (mgorny)
mgorny  14/05/27 13:36:01

  Modified: acroread-9.5.5.ebuild ChangeLog
  Log:
  Support fulfilling the dependencies using multilib packages, bug #490156.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  app-text/acroread/acroread-9.5.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/acroread/acroread-9.5.5.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/acroread/acroread-9.5.5.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/acroread/acroread-9.5.5.ebuild?r1=1.4r2=1.5

Index: acroread-9.5.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-9.5.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- acroread-9.5.5.ebuild   13 Jul 2013 19:07:04 -  1.4
+++ acroread-9.5.5.ebuild   27 May 2014 13:36:01 -  1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-9.5.5.ebuild,v 
1.4 2013/07/13 19:07:04 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-9.5.5.ebuild,v 
1.5 2014/05/27 13:36:01 mgorny Exp $
 
 EAPI=5
 
@@ -21,11 +21,10 @@
 
 DEPEND=dev-util/bsdiff
 RDEPEND=media-libs/fontconfig
-   x86? ( =dev-libs/openssl-0.9.8* )
cups? ( net-print/cups )
x86? (
+   =dev-libs/openssl-0.9.8*
x11-libs/gtk+:2
-   x11-libs/pango[X]
net-dns/libidn
|| ( x11-libs/pangox-compat x11-libs/pango-1.31[X] )
ldap? ( net-nds/openldap )
@@ -38,8 +37,21 @@
)
)
amd64? (
-   app-emulation/emul-linux-x86-gtklibs
-   app-emulation/emul-linux-x86-baselibs
+   || (
+   app-emulation/emul-linux-x86-gtklibs
+   (
+   x11-libs/gtk+:2[abi_x86_32(-)]
+   || ( x11-libs/pangox-compat[abi_x86_32(-)] 
x11-libs/pango-1.31[X,abi_x86_32(-)] )
+   )
+   )
+   || (
+   app-emulation/emul-linux-x86-baselibs
+   (
+   =dev-libs/openssl-0.9.8*[abi_x86_32(-)]
+   net-dns/libidn[abi_x86_32(-)]
+   ldap? ( net-nds/openldap[abi_x86_32(-)] )
+   )
+   )
)
linguas_zh_CN? ( media-fonts/acroread-asianfonts[linguas_zh_CN] )
linguas_ja? ( media-fonts/acroread-asianfonts[linguas_ja] )



1.201app-text/acroread/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/acroread/ChangeLog?rev=1.201view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/acroread/ChangeLog?rev=1.201content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/acroread/ChangeLog?r1=1.200r2=1.201

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/acroread/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog   13 Jul 2013 19:07:04 -  1.200
+++ ChangeLog   27 May 2014 13:36:01 -  1.201
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/acroread
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/ChangeLog,v 1.200 
2013/07/13 19:07:04 zmedico Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/ChangeLog,v 1.201 
2014/05/27 13:36:01 mgorny Exp $
+
+  27 May 2014; Michał Górny mgo...@gentoo.org acroread-9.5.5.ebuild:
+  Support fulfilling the dependencies using multilib packages, bug #490156.
 
   13 Jul 2013; Zac Medico zmed...@gentoo.org acroread-9.5.5.ebuild:
   Lowercase tar extension required for unpack, bug 476734.






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-panel: lxqt-panel-0.7.0.ebuild ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 13:38:57

  Modified: lxqt-panel-0.7.0.ebuild ChangeLog
  Log:
  Add dependencies needed for reboot/halt
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.2  lxqt-base/lxqt-panel/lxqt-panel-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0.ebuild?r1=1.1r2=1.2

Index: lxqt-panel-0.7.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lxqt-panel-0.7.0.ebuild 26 May 2014 16:08:22 -  1.1
+++ lxqt-panel-0.7.0.ebuild 27 May 2014 13:38:56 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0.ebuild,v 1.1 
2014/05/26 16:08:22 jauhien Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0.ebuild,v 1.2 
2014/05/27 13:38:56 jauhien Exp $
 
 EAPI=5
 inherit cmake-utils
@@ -35,6 +35,8 @@
razorqt-base/libqtxdg
x11-libs/libX11
cpuload? ( sys-libs/libstatgrab )
+   mainmenu? ( || ( sys-auth/consolekit[policykit(-)]
+   sys-apps/systemd[policykit(-)] ) )
networkmonitor? ( sys-libs/libstatgrab )
sensors? ( sys-apps/lm_sensors )
sysstat? ( lxqt-base/libsysstat )



1.2  lxqt-base/lxqt-panel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   26 May 2014 16:08:22 -  1.1
+++ ChangeLog   27 May 2014 13:38:57 -  1.2
@@ -1,6 +1,9 @@
 # ChangeLog for lxqt-base/lxqt-panel
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog,v 1.1 
2014/05/26 16:08:22 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog,v 1.2 
2014/05/27 13:38:57 jauhien Exp $
+
+  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org lxqt-panel-0.7.0.ebuild:
+  Add dependencies needed for reboot/halt
 
 *lxqt-panel-0.7.0 (26 May 2014)
 






[gentoo-commits] gentoo-x86 commit in profiles: package.mask

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 13:41:49

  Modified: package.mask
  Log:
  Drop lxqt-base/lxqt-panel mask, as issues with powermanagement are fixed

Revision  ChangesPath
1.15735  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15735view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.15735content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.15734r2=1.15735

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15734
retrieving revision 1.15735
diff -u -r1.15734 -r1.15735
--- package.mask27 May 2014 12:59:42 -  1.15734
+++ package.mask27 May 2014 13:41:48 -  1.15735
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15734 2014/05/27 
12:59:42 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15735 2014/05/27 
13:41:48 jauhien Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -34,11 +34,6 @@
 # Masked for testing, will defenitely cause major breakage
 =dev-lang/perl-5.20*
 
-# Jauhien Piatlicki jauh...@gentoo.org (26 May 2014)
-# Masked for testing as there are issues with powermanagement
-# (not working reboot/halt)
-lxqt-base/lxqt-panel
-
 # Lars Wendler polynomia...@gentoo.org (26 May 2014)
 # Masked until sys-auth/sssd got subslot support (bug #511528 and bug #511530).
 =sys-libs/ldb-1.1.17-r1






[gentoo-commits] gentoo-x86 commit in dev-python/twisted-core: twisted-core-14.0.0.ebuild ChangeLog

2014-05-27 Thread Ian Delaney (idella4)
idella4 14/05/27 13:52:44

  Modified: twisted-core-14.0.0.ebuild ChangeLog
  Log:
  Correct USE test set in RDEPEND, minor tidy, update test phase, ticket filed 
upstream for multi test failures, holding back on py3 support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.5  dev-python/twisted-core/twisted-core-14.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild?r1=1.4r2=1.5

Index: twisted-core-14.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- twisted-core-14.0.0.ebuild  20 May 2014 08:51:01 -  1.4
+++ twisted-core-14.0.0.ebuild  27 May 2014 13:52:44 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.4 2014/05/20 08:51:01 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 
1.5 2014/05/27 13:52:44 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -12,12 +12,11 @@
 KEYWORDS=~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=crypt gtk serial test
 
-DEPEND==net-zope/zope-interface-3.6.0[${PYTHON_USEDEP}]
+RDEPEND==net-zope/zope-interface-3.6.0[${PYTHON_USEDEP}]
crypt? ( =dev-python/pyopenssl-0.10[${PYTHON_USEDEP}] )
gtk? ( dev-python/pygtk:2[${PYTHON_USEDEP}] )
-   serial? ( dev-python/pyserial[${PYTHON_USEDEP}] )
-   test? ( dev-python/twisted-lore[${PYTHON_USEDEP}] )
-RDEPEND=${DEPEND}
+   serial? ( dev-python/pyserial[${PYTHON_USEDEP}] )
+DEPEND=test? ( ${RDEPEND} )
 
 PATCHES=(
# Give a load-sensitive test a better chance of succeeding.
@@ -46,10 +45,9 @@
 python_compile() {
local CFLAGS CXXFLAGS
 
-   if [[ ${EPYTHON} != python3* ]]; then
+   if ! python_is_python3; then
# Needed to make the sendmsg extension work
# (see http://twistedmatrix.com/trac/ticket/5701 )
-
append-flags -fno-strict-aliasing
fi
 
@@ -57,8 +55,7 @@
 }
 
 python_test() {
-   # NOTE: on pypy a couple of failures (refcounting, version-checking) is
-   # expected
+   # NOTE: on pypy a couple of failures (refcounting, version-checking) is 
expected
 
distutils_install_for_testing
 
@@ -70,10 +67,6 @@
sed -e /class ZshIntegrationTestCase/,/^$/d -i 
twisted/scripts/test/test_scripts.py \
|| die sed failed
 
-   # tap2rpm is already skipped if rpm is not installed, but fails for me 
on a Gentoo box with it present.
-   # I currently lack the cycles to track this failure down.
-   rm twisted/scripts/test/test_tap2rpm.py
-
# Prevent it from pulling in plugins from already installed twisted 
packages.
rm -f twisted/plugins/__init__.py
 
@@ -84,12 +77,24 @@
sed -e 's:test_basicOperation:_:' -i 
twisted/scripts/test/test_tap2deb.py || die
sed -e 's:test_inspectCertificate:_:' -i 
twisted/test/test_sslverify.py || die
 
-   # Requires twisted-web creating a cric. dep
+   # Requires twisted-web, twisted-lore and twisted-names, creating a 
circ. dep and fail even if installed.
+   # test_loreDeprecation and test_exist failures appeared in version 
14.0.0.
rm -f twisted/python/test/test_release.py || die
+   sed -e 's:test_loreDeprecation:_:' -i twisted/test/test_twisted.py || 
die
+   sed -e 's:test_exist:_:' -i twisted/python/test/test_dist3.py || die
 
# Requires connection to the network
sed -e 's:test_multiListen:_:' -i twisted/test/test_udp.py || die
 
+   # Appeared in version 14.0.0; https://twistedmatrix.com/trac/ticket/7422
+   sed -e 's:test_dataReceivedThrows:_:' \
+   -e 's:test_resumeProducingThrows:_:' \
+   -e 's:test_resumeProducingAbortLater:_:' \
+   -e 's:test_resumeProducingAbort:_:' \
+   -e 's:test_fullWriteBufferAfterByteExchange:_:' \
+   -i twisted/internet/test/test_tcp.py || die
+   sed -e 's:test_logPrefix:_:' -i 
twisted/internet/test/connectionmixins.py || die
+
if ! ${TEST_DIR}/scripts/trial twisted; then
die Tests failed with ${EPYTHON}
fi



1.24 

[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-about: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 13:59:32

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-about added to the repository



[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-about: metadata.xml lxqt-about-0.7.0.ebuild Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 14:13:34

  Added:metadata.xml lxqt-about-0.7.0.ebuild Manifest
ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  lxqt-base/lxqt-about/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  lxqt-base/lxqt-about/lxqt-about-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/lxqt-about-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/lxqt-about-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: lxqt-about-0.7.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-about/lxqt-about-0.7.0.ebuild,v 1.1 
2014/05/27 14:13:33 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt about dialog
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

DEPEND=dev-qt/qtgui:4
lxqt-base/liblxqt
RDEPEND=${DEPEND}



1.1  lxqt-base/lxqt-about/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lxqt-about-0.7.0.tar.xz 10384 SHA256 
5f1b53862f528aab8173626efbc6737dc228aa127c27c221123133401033e4de SHA512 
e73512f040ec392079b5242a4bb7df69949bf516b2ec5e03534be2d13dc11cf252502a32c4da6b8ee9b00282c8e7e42395dae068c6e7fee4522f2dee230d24bd
 WHIRLPOOL 
23a51940bbe4b9d4d82e452d1c3896f16d92ece3dce5b0b9420fd43c190bb0465d4a8278161957c2c6f187fedc60207fe30f955ee2c1eed6cdf946e3b4304b25
EBUILD lxqt-about-0.7.0.ebuild 516 SHA256 
db5e71761579a8ed35c4b935f26368c1f6a659a947267a0e5150e86eb2084011 SHA512 
b6d01a74e4a864d13deeb67229f24f0f8dcd73977bae7cc5c0b4838107824671d93641c70adc0c6eca176f54aed9230f7137c4df665c6fe23bde1dfbe68ce68d
 WHIRLPOOL 
42d1fb0c437c860a933615249964047ade027a61e6a4244b862cfcd46d22d7fcf84f3966cf39fd480912fc4fdd5598d101a285b60589f58c7ef1a2ad66acdddf
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  lxqt-base/lxqt-about/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-about/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for lxqt-base/lxqt-about
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-about/ChangeLog,v 1.1 
2014/05/27 14:13:33 jauhien Exp $

*lxqt-about-0.7.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org +lxqt-about-0.7.0.ebuild,
  +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in media-sound/mpg123: mpg123-1.20.0.ebuild ChangeLog

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 14:20:41

  Modified: ChangeLog
  Added:mpg123-1.20.0.ebuild
  Log:
  Version bump; notice how upstream introduced new out123 executable, see NEWS 
file for more information.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.308media-sound/mpg123/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.308view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.308content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/ChangeLog?r1=1.307r2=1.308

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v
retrieving revision 1.307
retrieving revision 1.308
diff -u -r1.307 -r1.308
--- ChangeLog   25 May 2014 18:49:17 -  1.307
+++ ChangeLog   27 May 2014 14:20:41 -  1.308
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/mpg123
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.307 
2014/05/25 18:49:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.308 
2014/05/27 14:20:41 ssuominen Exp $
+
+*mpg123-1.20.0 (27 May 2014)
+
+  27 May 2014; Samuli Suominen ssuomi...@gentoo.org +mpg123-1.20.0.ebuild:
+  Version bump; notice how upstream introduced new out123 executable, see NEWS
+  file for more information.
 
   25 May 2014; Markus Meier mae...@gentoo.org mpg123-1.18.1.ebuild:
   arm stable, bug #500262



1.1  media-sound/mpg123/mpg123-1.20.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/mpg123-1.20.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/mpg123-1.20.0.ebuild?rev=1.1content-type=text/plain

Index: mpg123-1.20.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-1.20.0.ebuild,v 
1.1 2014/05/27 14:20:41 ssuominen Exp $

EAPI=5
inherit eutils toolchain-funcs libtool multilib-minimal

DESCRIPTION=a realtime MPEG 1.0/2.0/2.5 audio player for layers 1, 2 and 3
HOMEPAGE=http://www.mpg123.org/;
SRC_URI=http://www.mpg123.org/download/${P}.tar.bz2;

LICENSE=GPL-2 LGPL-2.1
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris
IUSE=3dnow 3dnowext alsa altivec coreaudio int-quality ipv6 jack mmx nas oss 
portaudio pulseaudio sdl sse

# No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs.
RDEPEND=app-admin/eselect-mpg123
=sys-devel/libtool-2.2.6b
alsa? ( media-libs/alsa-lib )
jack? ( media-sound/jack-audio-connection-kit )
nas? ( media-libs/nas )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
sdl? ( media-libs/libsdl )
abi_x86_32? ( !=app-emulation/emul-linux-x86-soundlibs-20130224-r9

!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )
DEPEND=${RDEPEND}
virtual/pkgconfig

DOCS=( AUTHORS ChangeLog NEWS NEWS.libmpg123 README )

src_prepare() {
elibtoolize # for Darwin bundles
}

multilib_src_configure() {
local _audio=dummy
local _output=dummy
local _cpu=generic_fpu

if $(multilib_is_native_abi) ; then
for flag in nas portaudio sdl oss jack alsa pulseaudio 
coreaudio; do
if use ${flag}; then
_audio=${_audio} ${flag/pulseaudio/pulse}
_output=${flag/pulseaudio/pulse}
fi
done
fi

use altivec  _cpu=altivec

if [[ $(tc-arch) == amd64 || ${ARCH} == x64-* ]]; then
use sse  _cpu=x86-64
elif use x86  gcc-specs-pie ; then
# Don't use any mmx, 3dnow, sse and 3dnowext #bug 164504
_cpu=generic_fpu
elif use x86-macos ; then
# ASM doesn't work quite as expected with the Darwin linker
_cpu=generic_fpu
else
use mmx  _cpu=mmx
use 3dnow  _cpu=3dnow
use sse  _cpu=x86
use 3dnowext  _cpu=x86
fi

local myconf=
multilib_is_native_abi || myconf=${myconf} --disable-modules

ECONF_SOURCE=${S} econf \
--with-optimization=0 \
--with-audio=${_audio} \
--with-default-audio=${_output} \
--with-cpu=${_cpu} \
   

[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-notificationd: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 14:33:41

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-notificationd added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog

2014-05-27 Thread Jeroen Roovers (jer)
jer 14/05/27 14:34:14

  Modified: ChangeLog
  Log:
  Fix bug number.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.93 dev-tcltk/expect/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.93view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.93content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.92r2=1.93

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog   18 Aug 2013 11:31:36 -  1.92
+++ ChangeLog   27 May 2014 14:34:13 -  1.93
@@ -1,12 +1,12 @@
 # ChangeLog for dev-tcltk/expect
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.92 
2013/08/18 11:31:36 tomk Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.93 
2014/05/27 14:34:13 jer Exp $
 
 *expect-5.44.1.15-r1 (18 Aug 2013)
 
   18 Aug 2013; Tom Knight t...@gentoo.org +expect-5.44.1.15-r1.ebuild,
   expect-5.45.ebuild:
-  Ensure examples get installed with USE=doc, fixes bug #41130 Thanks to
+  Ensure examples get installed with USE=doc, fixes bug #411307 Thanks to
   Alexander Tsoy for patches
 
   26 Apr 2012; Alexis Ballier aball...@gentoo.org expect-5.45.ebuild:






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-notificationd: metadata.xml lxqt-notificationd-0.7.0.ebuild Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 14:41:31

  Added:metadata.xml lxqt-notificationd-0.7.0.ebuild
Manifest ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  lxqt-base/lxqt-notificationd/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  
lxqt-base/lxqt-notificationd/lxqt-notificationd-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: lxqt-notificationd-0.7.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.7.0.ebuild,v
 1.1 2014/05/27 14:41:31 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt notification daemon and library
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

DEPEND=dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
lxqt-base/liblxqt
razorqt-base/libqtxdg
RDEPEND=${DEPEND}



1.1  lxqt-base/lxqt-notificationd/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lxqt-notificationd-0.7.0.tar.xz 38064 SHA256 
bda7c841df4c4e340840877f83dc36188c52ffaff060c45b9e7f5b6f4075f11c SHA512 
341a167fe7e5413d5e925cdfe7303efe255303c68f75bfa5a73808f566aee7cdfcc19bd52f4d623c7bf97c45020ffaa3fc9f65ae99c12a3199acfa8b287c1940
 WHIRLPOOL 
7f3ba04ac5c97224bf7a6193855245c6f879b0397a843a3f64d4de3dc3de8eb0546f92aa2ff8c0a28f4aaa87630ab3b42b6f8dec9e7468052c747018decd1c4a
EBUILD lxqt-notificationd-0.7.0.ebuild 592 SHA256 
9dc2ac529914d379c8dcc48e4e3b6a51a32818aa2285648292f48f6f367c8b36 SHA512 
032b5975da340413ca8b58d20d5d93a93c9d79b315e9a969514eee87e3b15166cea0ff50a6c4a22786c5444595c9de93776b476c5cd64f9b46eec9565dfb87c3
 WHIRLPOOL 
ef3afcc960d6dda9713c79f75bbaeabbe1bdab6d1223bfb04d3d9efb13196f049a44ba621f69b2447bb27347096de3a9ebc1c1b0c5f5a87f65c0799b08c937b3
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  lxqt-base/lxqt-notificationd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-notificationd/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for lxqt-base/lxqt-notificationd
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-notificationd/ChangeLog,v 1.1 
2014/05/27 14:41:31 jauhien Exp $

*lxqt-notificationd-0.7.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
  +lxqt-notificationd-0.7.0.ebuild, +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-config: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 14:42:52

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-config added to the 
repository



[gentoo-commits] proj/x11:master commit in: media-libs/mesa/

2014-05-27 Thread Chi-Thanh Christopher Nguyen
commit: 6eb2c35a78f5dee16bb28199dfdb4c978fa2ce64
Author: Chi-Thanh Christopher Nguyen chithanh AT gentoo DOT org
AuthorDate: Tue May 27 14:51:26 2014 +
Commit: Chi-Thanh Christopher Nguyen chithanh AT cs DOT tu-berlin 
DOT de
CommitDate: Tue May 27 14:51:26 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=6eb2c35a

media-libs/mesa: perform registration of OpenMAX drivers

---
 media-libs/mesa/mesa-.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 2ebdb37..195c212 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -398,6 +398,12 @@ multilib_src_install() {
fi
eend $?
fi
+
+   if use openmax; then
+   echo XDG_DATA_DIRS=\${EPREFIX}/usr/share/mesa/xdg\  
${T}/99mesaxdgomx
+   doenvd ${T}/99mesaxdgomx
+   keepdir /usr/share/mesa/xdg
+   fi
 }
 
 multilib_src_install_all() {
@@ -446,6 +452,15 @@ pkg_postinst() {
eselect opencl set --use-old ${PN}
fi
 
+   # run omxregister-bellagio to make the OpenMAX drivers known system-wide
+   if use openmax; then
+   ebegin Registering OpenMAX drivers
+   
BELLAGIO_SEARCH_PATH=${EPREFIX}/usr/$(get_libdir)/libomxil-bellagio0 \
+   
OMX_BELLAGIO_REGISTRY=${EPREFIX}/usr/share/mesa/xdg/.omxregister \
+   omxregister-bellagio
+   eend $?
+   fi
+
# warn about patent encumbered texture-float
if use !bindist; then
elog USE=\bindist\ was not set. Potentially patent 
encumbered code was
@@ -467,6 +482,12 @@ pkg_postinst() {
fi
 }
 
+pkg_prerm() {
+   if use openmax; then
+   rm ${EPREFIX}/usr/share/mesa/xdg/.omxregister
+   fi
+}
+
 # $1 - VIDEO_CARDS flag
 # other args - names of DRI drivers to enable
 # TODO: avoid code duplication for a more elegant implementation



[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-config: metadata.xml lxqt-config-0.7.0.ebuild Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 14:54:04

  Added:metadata.xml lxqt-config-0.7.0.ebuild Manifest
ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  lxqt-base/lxqt-config/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  lxqt-base/lxqt-config/lxqt-config-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/lxqt-config-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/lxqt-config-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: lxqt-config-0.7.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-config/lxqt-config-0.7.0.ebuild,v 1.1 
2014/05/27 14:54:04 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt system configuration control center
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

DEPEND=dev-qt/qtcore:4
dev-qt/qtgui:4
lxqt-base/liblxqt
razorqt-base/libqtxdg
sys-libs/zlib
x11-libs/libXcursor
x11-libs/libXfixes
RDEPEND=${DEPEND}



1.1  lxqt-base/lxqt-config/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lxqt-config-0.7.0.tar.xz 112572 SHA256 
4b8ec02a7c78efe8fa45dcb0d60e83dc6a53bf81f12d2ea4b022cf9f6feae551 SHA512 
9f75d69a5add165019bc20f861a1c847d01a37760bd29418c80b0d290fcab54716218ab40dfc80941e13242ea59e5f9de33a753dc33c1f5f257f9b58cef672a6
 WHIRLPOOL 
2a2996d7b889e3a16570a33aa472aca3e3b913b57eb20ce4dab142b23b8a9227a7c8a56f4370eb3c02d843fb9cb4b1af979992f337e112e4839a2645869dc419
EBUILD lxqt-config-0.7.0.ebuild 635 SHA256 
fd4fed3176d97799b5ab3181aca2ea0fd1fa81c5483aa480502b58b7030d57e0 SHA512 
bd65ede262ab7b0767c5e8a5f8ba83773afb2fa6efb0a44aa799a988937145d6b2dca3e5911b001d6e6e581c9d7f9777985f40950856249ed85e4e39a991871e
 WHIRLPOOL 
fd087e2217ea464f7fab0b466619ea7905adafd2ef31ff277fd977ea89087403b522eaf7d782c64f53affe0cbc4d2f10171f5450fa259bb3f3c4a4aaef5c6f5c
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  lxqt-base/lxqt-config/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for lxqt-base/lxqt-config
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-config/ChangeLog,v 1.1 
2014/05/27 14:54:04 jauhien Exp $

*lxqt-config-0.7.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org +lxqt-config-0.7.0.ebuild,
  +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-config-randr: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 14:56:26

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-config-randr added to the 
repository



[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-config-randr: lxqt-config-randr-0.7.0.ebuild metadata.xml Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:04:52

  Added:lxqt-config-randr-0.7.0.ebuild metadata.xml
Manifest ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  lxqt-base/lxqt-config-randr/lxqt-config-randr-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/lxqt-config-randr-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/lxqt-config-randr-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: lxqt-config-randr-0.7.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-config-randr/lxqt-config-randr-0.7.0.ebuild,v
 1.1 2014/05/27 15:04:52 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt monitor configuration
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

CDEPEND=dev-libs/glib:2
dev-qt/qtcore:4
dev-qt/qtgui:4
x11-libs/libX11
x11-libs/libXrandr
DEPEND=${CDEPEND}
virtual/pkgconfig
RDEPEND=${CDEPEND}
x11-apps/xrandr



1.1  lxqt-base/lxqt-config-randr/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  lxqt-base/lxqt-config-randr/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lxqt-config-randr-0.7.0.tar.xz 58376 SHA256 
aa58f622aac3ab542838f3a3ae981dff3fc4b16f90f5a2bc6efcd3f9383fedf0 SHA512 
0859718467a32705f0bc9321c28ffe6730215920dd8e64d79af585cc6fe9fc7693ca327591b278eec2bb9fde2048c024a8abf852baab4570977e7a4c5009e1d5
 WHIRLPOOL 
d836c7c938c7df3f110a370066fc177f948f3c8aebd8db7f1fc564d5d06809e27f49325f22394218f2f039d539fc375eca6a4e8f560e9708443833d20e501001
EBUILD lxqt-config-randr-0.7.0.ebuild 635 SHA256 
5d832961bc909ccb268a4f3e065c2ee9fc9828d76bf58a0bf22a721235504bb0 SHA512 
47d0fa83ead11072c514f41f6b372601466923b50264cf5e6cba201c9a7b72688dc87807d3fbee4ae24e5405a95085cd590de4f75f3ed79a2c2371b547049bf5
 WHIRLPOOL 
2ef63037315b4a7698c026cb5d29ccc4ab8cc15b284b2067ee289129c10ff20cea0f211c44784d6fcd41d6a7ad04a2b744ee85dfa8c40bb2869544ef0fad8f9c
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  lxqt-base/lxqt-config-randr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config-randr/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for lxqt-base/lxqt-config-randr
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-config-randr/ChangeLog,v 1.1 
2014/05/27 15:04:52 jauhien Exp $

*lxqt-config-randr-0.7.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
  +lxqt-config-randr-0.7.0.ebuild, +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-policykit: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:07:49

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit added to the 
repository



[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.2.0_rc4.ebuild metadata.xml ChangeLog

2014-05-27 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/05/27 15:07:48

  Modified: metadata.xml ChangeLog
  Added:mesa-10.2.0_rc4.ebuild
  Log:
  Bump to latest prerelease. Drop llvm radeon backend requirement for opencl, 
bug #506108.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.22 media-libs/mesa/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/metadata.xml?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/metadata.xml?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/metadata.xml?r1=1.21r2=1.22

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/metadata.xml,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- metadata.xml13 Mar 2014 23:21:42 -  1.21
+++ metadata.xml27 May 2014 15:07:48 -  1.22
@@ -16,6 +16,7 @@
flag name='llvm'Enable LLVM backend for Gallium3D./flag
flag name='llvm-shared-libs'Dynamically link Gallium3D drivers 
against LLVM./flag
flag name='opencl'Enable the Clover Gallium OpenCL state 
tracker./flag
+   flag name='openmax'Enable OpenMAX video decode/encode acceleration 
for Gallium3D./flag
flag name='openvg'Enable the OpenVG 2D acceleration API for 
Gallium3D./flag
flag name='osmesa'Build the Mesa library for off-screen 
rendering./flag
flag name='pax_kernel'Enable if the user plans to run the package 
under a pax enabled hardened kernel/flag



1.560media-libs/mesa/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/ChangeLog?rev=1.560view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/ChangeLog?rev=1.560content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/ChangeLog?r1=1.559r2=1.560

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.559
retrieving revision 1.560
diff -u -r1.559 -r1.560
--- ChangeLog   21 May 2014 14:15:43 -  1.559
+++ ChangeLog   27 May 2014 15:07:48 -  1.560
@@ -1,6 +1,13 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.559 
2014/05/21 14:15:43 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.560 
2014/05/27 15:07:48 chithanh Exp $
+
+*mesa-10.2.0_rc4 (27 May 2014)
+
+  27 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  +mesa-10.2.0_rc4.ebuild, metadata.xml:
+  Bump to latest prerelease. Drop llvm radeon backend requirement for opencl,
+  bug #506108.
 
 *mesa-10.1.4 (21 May 2014)
 



1.1  media-libs/mesa/mesa-10.2.0_rc4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/mesa-10.2.0_rc4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/mesa-10.2.0_rc4.ebuild?rev=1.1content-type=text/plain

Index: mesa-10.2.0_rc4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.2.0_rc4.ebuild,v 1.1 
2014/05/27 15:07:48 chithanh Exp $

EAPI=5

EGIT_REPO_URI=git://anongit.freedesktop.org/mesa/mesa

if [[ ${PV} = * ]]; then
GIT_ECLASS=git-r3
EXPERIMENTAL=true
fi

PYTHON_COMPAT=( python{2_6,2_7} )

inherit base autotools multilib multilib-minimal flag-o-matic \
python-any-r1 toolchain-funcs pax-utils ${GIT_ECLASS}

OPENGL_DIR=xorg-x11

MY_PN=${PN/m/M}
MY_P=${MY_PN}-${PV/_/-}
MY_SRC_P=${MY_PN}Lib-${PV/_/-}

FOLDER=${PV/.0_rc*/}

DESCRIPTION=OpenGL-like graphic library for Linux
HOMEPAGE=http://mesa3d.sourceforge.net/;

#SRC_PATCHES=mirror://gentoo/${P}-gentoo-patches-01.tar.bz2
if [[ $PV = * ]]; then
SRC_URI=${SRC_PATCHES}
else

SRC_URI=ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_SRC_P}.tar.bz2
${SRC_PATCHES}
fi

# The code is MIT/X11.
# GLES[2]/gl[2]{,ext,platform}.h are SGI-B-2.0
LICENSE=MIT SGI-B-2.0
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris

INTEL_CARDS=i915 i965 ilo intel
RADEON_CARDS=r100 r200 r300 r600 radeon radeonsi
VIDEO_CARDS=${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+= video_cards_${card}
done

IUSE=${IUSE_VIDEO_CARDS}
bindist +classic debug dri3 +egl +gallium gbm gles1 gles2 

[gentoo-commits] proj/x11:master commit in: media-libs/mesa/

2014-05-27 Thread Chi-Thanh Christopher Nguyen
commit: 1acc553e0c96b2adc2465d6c1693ee4e1d6eccb8
Author: Chi-Thanh Christopher Nguyen chithanh AT gentoo DOT org
AuthorDate: Tue May 27 15:08:54 2014 +
Commit: Chi-Thanh Christopher Nguyen chithanh AT cs DOT tu-berlin 
DOT de
CommitDate: Tue May 27 15:08:54 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=1acc553e

media-libs/mesa: Fix quoting to silence repoman.

---
 media-libs/mesa/mesa-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 195c212..8630de8 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -484,7 +484,7 @@ pkg_postinst() {
 
 pkg_prerm() {
if use openmax; then
-   rm ${EPREFIX}/usr/share/mesa/xdg/.omxregister
+   rm ${EPREFIX}/usr/share/mesa/xdg/.omxregister
fi
 }
 



[gentoo-commits] proj/x11:master commit in: media-libs/mesa/

2014-05-27 Thread Chi-Thanh Christopher Nguyen
commit: 115ae24399ccc564529db5b4936eb1520386298e
Author: Chi-Thanh Christopher Nguyen chithanh AT gentoo DOT org
AuthorDate: Tue May 27 15:09:20 2014 +
Commit: Chi-Thanh Christopher Nguyen chithanh AT cs DOT tu-berlin 
DOT de
CommitDate: Tue May 27 15:09:20 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=115ae243

media-libs/mesa: Drop llvm radeon backend requirement for opencl.

---
 media-libs/mesa/mesa-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 8630de8..965bb55 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -149,7 +149,7 @@ DEPEND=${RDEPEND}
video_cards_radeonsi? ( sys-devel/llvm[video_cards_radeon] )
)
opencl? (
-   
=sys-devel/llvm-3.3-r3[video_cards_radeon,${MULTILIB_USEDEP}]
+   =sys-devel/llvm-3.3-r3[${MULTILIB_USEDEP}]
=sys-devel/clang-3.3[${MULTILIB_USEDEP}]
=sys-devel/gcc-4.6
)



[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-policykit: metadata.xml lxqt-policykit-0.7.0.ebuild Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:18:55

  Added:metadata.xml lxqt-policykit-0.7.0.ebuild Manifest
ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  lxqt-base/lxqt-policykit/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: lxqt-policykit-0.7.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0.ebuild,v 
1.1 2014/05/27 15:18:55 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt PolKit authentication agent
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

RDEPEND=dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
lxqt-base/liblxqt
razorqt-base/libqtxdg
sys-auth/polkit-qt
x11-libs/libX11
DEPEND=${RDEPEND}
virtual/pkgconfig



1.1  lxqt-base/lxqt-policykit/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lxqt-policykit-0.7.0.tar.xz 15772 SHA256 
1b93a2e5e9f70246f16198a07a49b3c2d16089d6ea413bdff25e4ec763763d86 SHA512 
8e5ff42d4e74d648ad9b159d6140afeaffd8094bd3a92c30b5faf2d5aa8e719cb9b1c8345ed6ee92f603c7f7b88224873a791b2300bca4b49a1f53b4586f26c9
 WHIRLPOOL 
971eec6ef31937af95927a2abb666293a2d57bcc365f68696c288ce7dbe7473804352468d48bc40675ca8d6723b5591881cbce6987092589e703ce0a7cc2401c
EBUILD lxqt-policykit-0.7.0.ebuild 645 SHA256 
18c3ebe874bface81de47bc8274d6435b001094752b1a2cec4d4a991240eae02 SHA512 
dcd11378c6c4233e798a2a41f36367d61c59d62d71de4d3fb659b63a0bdab10e0d518bbea4ca2708a4695abbd137d360984257bf2fad9e865921f5a7f6b0d1ce
 WHIRLPOOL 
8e56b7facc9db2cf6bbaa22a174d354b2f9184579b65f5806ff904146da0524a7417b79c0e578ab99e664f64cf54d9311c635c0769d2b9a0567618f04e164548
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  lxqt-base/lxqt-policykit/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for lxqt-base/lxqt-policykit
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog,v 1.1 
2014/05/27 15:18:55 jauhien Exp $

*lxqt-policykit-0.7.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
  +lxqt-policykit-0.7.0.ebuild, +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-runner: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:20:04

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-runner added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-libs/hidapi: hidapi-0.8.0_pre20130121-r1.ebuild ChangeLog

2014-05-27 Thread Anthony G. Basile (blueness)
blueness14/05/27 15:27:00

  Modified: hidapi-0.8.0_pre20130121-r1.ebuild ChangeLog
  Log:
  Keyword ~arm
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.2  dev-libs/hidapi/hidapi-0.8.0_pre20130121-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/hidapi/hidapi-0.8.0_pre20130121-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/hidapi/hidapi-0.8.0_pre20130121-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/hidapi/hidapi-0.8.0_pre20130121-r1.ebuild?r1=1.1r2=1.2

Index: hidapi-0.8.0_pre20130121-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/hidapi/hidapi-0.8.0_pre20130121-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hidapi-0.8.0_pre20130121-r1.ebuild  26 Jan 2014 13:51:06 -  1.1
+++ hidapi-0.8.0_pre20130121-r1.ebuild  27 May 2014 15:26:59 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/hidapi/hidapi-0.8.0_pre20130121-r1.ebuild,v 
1.1 2014/01/26 13:51:06 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/hidapi/hidapi-0.8.0_pre20130121-r1.ebuild,v 
1.2 2014/05/27 15:26:59 blueness Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 
 LICENSE=|| ( BSD GPL-3 HIDAPI )
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
+KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
 IUSE=doc static-libs X
 
 # S is only needed for the pre_package



1.7  dev-libs/hidapi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/hidapi/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/hidapi/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/hidapi/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/hidapi/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   26 Jan 2014 13:51:06 -  1.6
+++ ChangeLog   27 May 2014 15:26:59 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/hidapi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/hidapi/ChangeLog,v 1.6 2014/01/26 
13:51:06 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/hidapi/ChangeLog,v 1.7 2014/05/27 
15:26:59 blueness Exp $
+
+  27 May 2014; Anthony G. Basile bluen...@gentoo.org
+  hidapi-0.8.0_pre20130121-r1.ebuild:
+  Keyword ~arm
 
 *hidapi-0.8.0_pre20130121-r1 (26 Jan 2014)
 






[gentoo-commits] gentoo-x86 commit in net-misc/bfgminer: bfgminer-3.5.8.ebuild bfgminer-4.0.0.ebuild bfgminer-3.10.1.ebuild ChangeLog

2014-05-27 Thread Anthony G. Basile (blueness)
blueness14/05/27 15:28:48

  Modified: bfgminer-3.5.8.ebuild bfgminer-4.0.0.ebuild
bfgminer-3.10.1.ebuild ChangeLog
  Log:
  Keyword ~arm
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.2  net-misc/bfgminer/bfgminer-3.5.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-3.5.8.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-3.5.8.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-3.5.8.ebuild?r1=1.1r2=1.2

Index: bfgminer-3.5.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.5.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bfgminer-3.5.8.ebuild   26 May 2014 23:07:36 -  1.1
+++ bfgminer-3.5.8.ebuild   27 May 2014 15:28:47 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.5.8.ebuild,v 
1.1 2014/05/26 23:07:36 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.5.8.ebuild,v 
1.2 2014/05/27 15:28:47 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~mips ~ppc ~ppc64 ~x86
+KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~x86
 
 # TODO: knc (needs i2c-tools header)
 IUSE=+adl avalon bitforce bfsb bigpic bitfury cpumining examples hardened 
hashbuster icarus littlefury lm_sensors metabank modminer nanofury ncurses 
+opencl proxy proxy_getwork proxy_stratum scrypt +udev unicode x6500 ztex



1.2  net-misc/bfgminer/bfgminer-4.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-4.0.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-4.0.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-4.0.0.ebuild?r1=1.1r2=1.2

Index: bfgminer-4.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-4.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bfgminer-4.0.0.ebuild   26 May 2014 23:07:36 -  1.1
+++ bfgminer-4.0.0.ebuild   27 May 2014 15:28:47 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-4.0.0.ebuild,v 
1.1 2014/05/26 23:07:36 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-4.0.0.ebuild,v 
1.2 2014/05/27 15:28:47 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~mips ~ppc ~ppc64 ~x86
+KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~x86
 
 # TODO: knc (needs i2c-tools header)
 IUSE=+adl antminer avalon bfx bifury bitforce bfsb bigpic bitfury cpumining 
drillbit dualminer examples gridseed hardened hashbuster hashbuster2 hashfast 
icarus klondike +libusb littlefury lm_sensors metabank modminer nanofury 
ncurses +opencl proxy proxy_getwork proxy_stratum scrypt twinfury +udev unicode 
x6500 ztex



1.2  net-misc/bfgminer/bfgminer-3.10.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-3.10.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-3.10.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bfgminer/bfgminer-3.10.1.ebuild?r1=1.1r2=1.2

Index: bfgminer-3.10.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.10.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bfgminer-3.10.1.ebuild  26 May 2014 23:07:36 -  1.1
+++ bfgminer-3.10.1.ebuild  27 May 2014 15:28:47 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.10.1.ebuild,v 
1.1 2014/05/26 23:07:36 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/bfgminer/bfgminer-3.10.1.ebuild,v 
1.2 2014/05/27 15:28:47 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~mips ~ppc ~ppc64 ~x86
+KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~x86
 
 # TODO: knc (needs i2c-tools header)
 IUSE=+adl antminer avalon bifury bitforce bfsb bigpic bitfury cpumining 
drillbit examples hardened hashbuster hashbuster2 hashfast icarus 

[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-runner: lxqt-runner-0.7.0.ebuild metadata.xml Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:37:56

  Added:lxqt-runner-0.7.0.ebuild metadata.xml Manifest
ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  lxqt-base/lxqt-runner/lxqt-runner-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/lxqt-runner-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/lxqt-runner-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: lxqt-runner-0.7.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-runner/lxqt-runner-0.7.0.ebuild,v 1.1 
2014/05/27 15:37:56 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt quick launcher
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

RDEPEND=dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
dev-qt/qtscript:4
lxqt-base/liblxqt
lxqt-base/lxqt-globalkeys
=lxde-base/menu-cache-0.5.1
razorqt-base/libqtxdg
x11-libs/libX11
DEPEND=${RDEPEND}
virtual/pkgconfig



1.1  lxqt-base/lxqt-runner/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  lxqt-base/lxqt-runner/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lxqt-runner-0.7.0.tar.xz 195452 SHA256 
e4ef1820cb29fdd2b5ab2bd3a46da29abf3246bcc95e7521161a5e2103d4d7f2 SHA512 
b592a9082b0dd2908373205a193a2f23ac134e316dffb50ccecc8cb245ccac014426ce4fedc57a46aad62100a11c4aad12b78364051d53331b593c8d1b81360c
 WHIRLPOOL 
5abfe274823ba9342c2e8b83e5c9a53fd236b08c21b14fb143ac61bb86ed4c199e4f6797ea08c1bdde6c031f782e24e1898144eff8d7eb6cc9e574825baee635
EBUILD lxqt-runner-0.7.0.ebuild 688 SHA256 
2d5b3fea5db375db802cf5bee8728bfd7fde6899ad966d716bb387cd5a217046 SHA512 
e0d871c650ab831a9304091d5770514c95e3f5426ffeb4da8f92bc5a7ccba48833ca48585d08b6c04056049313e8cd7cfda20a262c86f0fc59b3472848202b67
 WHIRLPOOL 
2430e76813723382e991d111dfbfbb4f7aa830030b0d20b5ca70a05df1f1d67b5d0239e0f0c2e873ce1db2bc268878acaa5e4a3ca18154d54aaa33ccac2e235c
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  lxqt-base/lxqt-runner/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for lxqt-base/lxqt-runner
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog,v 1.1 
2014/05/27 15:37:56 jauhien Exp $

*lxqt-runner-0.7.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org +lxqt-runner-0.7.0.ebuild,
  +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in x11-base/xorg-drivers: xorg-drivers-1.16.ebuild ChangeLog

2014-05-27 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/05/27 15:18:35

  Modified: ChangeLog
  Added:xorg-drivers-1.16.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.118x11-base/xorg-drivers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-drivers/ChangeLog?rev=1.118view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-drivers/ChangeLog?rev=1.118content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-drivers/ChangeLog?r1=1.117r2=1.118

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-base/xorg-drivers/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog   19 Apr 2014 17:47:15 -  1.117
+++ ChangeLog   27 May 2014 15:18:34 -  1.118
@@ -1,6 +1,12 @@
 # ChangeLog for x11-base/xorg-drivers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-drivers/ChangeLog,v 1.117 
2014/04/19 17:47:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-drivers/ChangeLog,v 1.118 
2014/05/27 15:18:34 chithanh Exp $
+
+*xorg-drivers-1.16 (27 May 2014)
+
+  27 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  +xorg-drivers-1.16.ebuild:
+  Version bump.
 
   19 Apr 2014; Agostino Sarubbo a...@gentoo.org xorg-drivers-1.15.ebuild:
   Stable for sparc, wrt bug #500368



1.1  x11-base/xorg-drivers/xorg-drivers-1.16.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-drivers/xorg-drivers-1.16.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-drivers/xorg-drivers-1.16.ebuild?rev=1.1content-type=text/plain

Index: xorg-drivers-1.16.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-base/xorg-drivers/xorg-drivers-1.16.ebuild,v 1.1 
2014/05/27 15:18:34 chithanh Exp $

EAPI=5

DESCRIPTION=Meta package containing deps on all xorg drivers
HOMEPAGE=http://www.gentoo.org/;
SRC_URI=

LICENSE=metapackage
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux

IUSE_INPUT_DEVICES=
input_devices_acecad
input_devices_aiptek
input_devices_elographics
input_devices_evdev
input_devices_fpit
input_devices_hyperpen
input_devices_joystick
input_devices_keyboard
input_devices_mouse
input_devices_mutouch
input_devices_penmount
input_devices_tslib
input_devices_vmmouse
input_devices_void
input_devices_synaptics
input_devices_wacom

IUSE_VIDEO_CARDS=
video_cards_apm
video_cards_ast
video_cards_chips
video_cards_cirrus
video_cards_dummy
video_cards_epson
video_cards_fbdev
video_cards_freedreno
video_cards_geode
video_cards_glint
video_cards_i128
video_cards_i740
video_cards_intel
video_cards_mach64
video_cards_mga
video_cards_modesetting
video_cards_neomagic
video_cards_nouveau
video_cards_nv
video_cards_omap
video_cards_omapfb
video_cards_qxl
video_cards_r128
video_cards_radeon
video_cards_radeonsi
video_cards_rendition
video_cards_s3
video_cards_s3virge
video_cards_savage
video_cards_siliconmotion
video_cards_sisusb
video_cards_sunbw2
video_cards_suncg14
video_cards_suncg3
video_cards_suncg6
video_cards_sunffb
video_cards_sunleo
video_cards_suntcx
video_cards_tdfx
video_cards_tga
video_cards_trident
video_cards_tseng
video_cards_v4l
video_cards_vesa
video_cards_via
video_cards_virtualbox
video_cards_vmware
video_cards_voodoo
video_cards_fglrx
video_cards_nvidia


IUSE=${IUSE_VIDEO_CARDS} ${IUSE_INPUT_DEVICES}

PDEPEND=
input_devices_acecad?  ( x11-drivers/xf86-input-acecad )
input_devices_aiptek?  ( x11-drivers/xf86-input-aiptek )
input_devices_elographics? ( x11-drivers/xf86-input-elographics )
input_devices_evdev?   ( x11-drivers/xf86-input-evdev )
input_devices_fpit?( x11-drivers/xf86-input-fpit )
input_devices_hyperpen?( x11-drivers/xf86-input-hyperpen )
input_devices_joystick?( x11-drivers/xf86-input-joystick )
input_devices_keyboard?( x11-drivers/xf86-input-keyboard )

[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-powermanager: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:47:48

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-powermanager added to the 
repository



[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-powermanagement: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:52:42

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-powermanagement added to the 
repository



[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-powermanagement: lxqt-powermanagement-0.7.0.ebuild metadata.xml Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 15:59:48

  Added:lxqt-powermanagement-0.7.0.ebuild metadata.xml
Manifest ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  
lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: lxqt-powermanagement-0.7.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.7.0.ebuild,v
 1.1 2014/05/27 15:59:48 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt daemon for power management and auto-suspend
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/lxqt/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

RDEPEND=dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
dev-qt/qtsvg:4
lxqt-base/liblxqt
razorqt-base/libqtxdg
x11-libs/libX11
x11-libs/libxcb
DEPEND=${RDEPEND}
virtual/pkgconfig



1.1  lxqt-base/lxqt-powermanagement/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  lxqt-base/lxqt-powermanagement/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lxqt-powermanagement-0.7.0.tar.xz 29336 SHA256 
7f0456b9bcf416adb1e1c5c797a688bcd276680f0821e165b346364cd2926f87 SHA512 
973332d331d3a8b794d06523e623650a38b019f03c40bff8519036c314c9835101e51fafe34a76e755c5e7e85d963e481d4b3562e4d2f4a08fab4c3f60b7fbde
 WHIRLPOOL 
6156238d287ead2a83743552bdd030f5a60b30cd0dc2d19f183b878fb9e31fbdb77b101d14c4e0d9e37d2a95f5958b22e21a1376fe2d8345c9f9fe1ae032901e
EBUILD lxqt-powermanagement-0.7.0.ebuild 680 SHA256 
c61cb93df28b6e9ac69aceceb935eb1abfcce97024147aa9ca8ee82ee5c3bfd3 SHA512 
ee96248a27f53e71d9c77e63e26527fe636bd2f4273ea30c38802ba10e67dd649508313aced246a2b02385e9e4e702d6d9a38dad45c6cad0b2580d8eadb09cb3
 WHIRLPOOL 
07682cb5165396e5325fa91a99fe9bc68350a05693fc82171493a42fb0ad1d4e6676a28190e8c741962c062da46f089fe5c557f85149d77ea036b41c676b46ad
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  lxqt-base/lxqt-powermanagement/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-powermanagement/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for lxqt-base/lxqt-powermanagement
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-powermanagement/ChangeLog,v 
1.1 2014/05/27 15:59:48 jauhien Exp $

*lxqt-powermanagement-0.7.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
  +lxqt-powermanagement-0.7.0.ebuild, +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in x11-drivers/ati-drivers: ati-drivers-14.4_p1.ebuild ChangeLog

2014-05-27 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/05/27 15:55:02

  Modified: ChangeLog
  Added:ati-drivers-14.4_p1.ebuild
  Log:
  Version bump, import of Emil Karlson's ebuild from the x11 overlay.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.359x11-drivers/ati-drivers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.359view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.359content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?r1=1.358r2=1.359

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v
retrieving revision 1.358
retrieving revision 1.359
diff -u -r1.358 -r1.359
--- ChangeLog   26 May 2014 19:20:32 -  1.358
+++ ChangeLog   27 May 2014 15:55:02 -  1.359
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/ati-drivers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.358 
2014/05/26 19:20:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.359 
2014/05/27 15:55:02 chithanh Exp $
+
+*ati-drivers-14.4_p1 (27 May 2014)
+
+  27 May 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  +ati-drivers-14.4_p1.ebuild:
+  Version bump, import of Emil Karlson's ebuild from the x11 overlay.
 
   26 May 2014; Jeroen Roovers j...@gentoo.org metadata.xml:
   Sync e-mail address.



1.1  x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild?rev=1.1content-type=text/plain

Index: ati-drivers-14.4_p1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild,v 
1.1 2014/05/27 15:55:02 chithanh Exp $

EAPI=5

inherit eutils multilib linux-info linux-mod toolchain-funcs versionator 
pax-utils

DESCRIPTION=Ati precompiled drivers for Radeon Evergreen (HD5000 Series) and 
newer chipsets
HOMEPAGE=http://www.amd.com;
RUN=${WORKDIR}/fglrx-14.10.1006.1001/amd-driver-installer-14.10.1006.1001-x86.x86_64.run
SLOT=1
# Uses javascript for download YE
#DRIVERS_URI=http://www2.ati.com/drivers/linux/amd-catalyst-13.12-linux-x86.x86_64.zip;
DRIVERS_URI=mirror://gentoo/amd-catalyst-14-4-rev2-linux-x86-x86-64-may6.zip
XVBA_SDK_URI=http://developer.amd.com/wordpress/media/2012/10/xvba-sdk-0.74-404001.tar.gz;
SRC_URI=${DRIVERS_URI} ${XVBA_SDK_URI}
FOLDER_PREFIX=common/
IUSE=debug +modules multilib qt4 static-libs pax_kernel

LICENSE=AMD GPL-2 QPL-1.0
KEYWORDS=-* ~amd64 ~x86

RESTRICT=bindist test

RDEPEND=
=x11-base/xorg-server-1.15.49[-minimal]
=app-admin/eselect-opengl-1.0.7
app-admin/eselect-opencl
sys-power/acpid
x11-apps/xauth
x11-libs/libX11
x11-libs/libXext
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
virtual/glu
multilib? (
|| (
virtual/glu[abi_x86_32]
app-emulation/emul-linux-x86-opengl
)
|| (
(
x11-libs/libX11[abi_x86_32]
x11-libs/libXext[abi_x86_32]
x11-libs/libXinerama[abi_x86_32]
x11-libs/libXrandr[abi_x86_32]
x11-libs/libXrender[abi_x86_32]
)
app-emulation/emul-linux-x86-xlibs
)
)
qt4? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libXcursor
x11-libs/libXfixes
x11-libs/libXxf86vm
dev-qt/qtcore:4
dev-qt/qtgui:4[accessibility]
)

if [[ legacy != ${SLOT} ]]; then
RDEPEND=${RDEPEND}
!x11-drivers/ati-drivers:legacy
else
RDEPEND=${RDEPEND}
!x11-drivers/ati-drivers:1
fi

DEPEND=${RDEPEND}
x11-proto/inputproto
x11-proto/xf86miscproto
x11-proto/xf86vidmodeproto
x11-proto/xineramaproto
x11-libs/libXtst
sys-apps/findutils
app-misc/pax-utils

[gentoo-commits] gentoo-x86 commit in app-forensics/rkhunter/files: rkhunter-1.4.0.conf.patch rkhunter-1.4.2.conf.patch rkhunter.conf.patch

2014-05-27 Thread Richard Farina (zerochaos)
zerochaos14/05/27 16:08:08

  Added:rkhunter-1.4.0.conf.patch rkhunter-1.4.2.conf.patch
  Removed:  rkhunter.conf.patch
  Log:
  tested improperly, bump is proper now
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.1  app-forensics/rkhunter/files/rkhunter-1.4.0.conf.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/files/rkhunter-1.4.0.conf.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/files/rkhunter-1.4.0.conf.patch?rev=1.1content-type=text/plain

Index: rkhunter-1.4.0.conf.patch
===
--- rkhunter.conf.old   2009-01-07 17:33:11.0 +0100
+++ rkhunter.conf   2009-01-07 17:36:58.0 +0100
@@ -19,6 +19,7 @@
 # describing the option will say if this is so.
 #
 
+INSTALLDIR=/usr
 
 #
 # If this option is set to 1, it specifies that the mirrors file
@@ -84,17 +85,17 @@ MAIL_CMD=mail -s [rkhunter] Warnings fo
 # important files will be written to this directory, so be
 # sure that the directory permissions are tight.
 #
-#TMPDIR=/var/lib/rkhunter/tmp
+TMPDIR=/var/lib/rkhunter/tmp
 
 #
 # Specify the database directory to use.
 #
-#DBDIR=/var/lib/rkhunter/db
+DBDIR=/var/lib/rkhunter/db
 
 #
 # Specify the script directory to use.
 #
-#SCRIPTDIR=/usr/local/lib/rkhunter/scripts
+SCRIPTDIR=/usr/lib/rkhunter/scripts
 
 #
 # Specify the root directory to use.



1.1  app-forensics/rkhunter/files/rkhunter-1.4.2.conf.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/files/rkhunter-1.4.2.conf.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/files/rkhunter-1.4.2.conf.patch?rev=1.1content-type=text/plain

Index: rkhunter-1.4.2.conf.patch
===
diff -Naur rkhunter-1.4.2/files/rkhunter.conf 
rkhunter-1.4.2-fixed/files/rkhunter.conf
--- rkhunter-1.4.2/files/rkhunter.conf  2014-01-25 16:29:51.0 -0500
+++ rkhunter-1.4.2-fixed/files/rkhunter.conf2014-05-27 11:58:11.098750088 
-0400
@@ -72,6 +72,7 @@
 # to use.
 #
 
+INSTALLDIR=/usr
 
 #
 # If this option is set to '1', it specifies that the mirrors file
@@ -154,7 +155,7 @@
 # subsequently commented out or removed, then the program will assume a
 # default directory beneath the installation directory.
 #
-#TMPDIR=/var/lib/rkhunter/tmp
+TMPDIR=/var/lib/rkhunter/tmp
 
 #
 # This option specifies the database directory to use.
@@ -163,7 +164,7 @@
 # subsequently commented out or removed, then the program will assume a
 # default directory beneath the installation directory.
 #
-#DBDIR=/var/lib/rkhunter/db
+DBDIR=/var/lib/rkhunter/db
 
 #
 # This option specifies the script directory to use.
@@ -171,7 +172,7 @@
 # The installer program will set the default directory. If this default is
 # subsequently commented out or removed, then the program will not run.
 #
-#SCRIPTDIR=/usr/local/lib/rkhunter/scripts
+SCRIPTDIR=/usr/lib/rkhunter/scripts
 
 #
 # This option can be used to modify the command directory list used by rkhunter






[gentoo-commits] gentoo-x86 commit in app-forensics/rkhunter: rkhunter-1.4.0.ebuild rkhunter-1.4.2.ebuild ChangeLog

2014-05-27 Thread Richard Farina (zerochaos)
zerochaos14/05/27 16:08:08

  Modified: rkhunter-1.4.0.ebuild rkhunter-1.4.2.ebuild
ChangeLog
  Log:
  tested improperly, bump is proper now
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.7  app-forensics/rkhunter/rkhunter-1.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.0.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.0.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.0.ebuild?r1=1.6r2=1.7

Index: rkhunter-1.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rkhunter-1.4.0.ebuild   11 Apr 2013 06:20:32 -  1.6
+++ rkhunter-1.4.0.ebuild   27 May 2014 16:08:08 -  1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.0.ebuild,v 1.6 
2013/04/11 06:20:32 patrick Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.0.ebuild,v 1.7 
2014/05/27 16:08:08 zerochaos Exp $
 
 EAPI=4
 
@@ -26,7 +26,7 @@
 S=${WORKDIR}/${P}/files
 
 src_prepare() {
-   epatch ${FILESDIR}/${PN}.conf.patch
+   epatch ${FILESDIR}/${P}.conf.patch
 }
 
 src_install() {



1.2  app-forensics/rkhunter/rkhunter-1.4.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild?r1=1.1r2=1.2

Index: rkhunter-1.4.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rkhunter-1.4.2.ebuild   27 May 2014 13:11:54 -  1.1
+++ rkhunter-1.4.2.ebuild   27 May 2014 16:08:08 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild,v 1.1 
2014/05/27 13:11:54 zerochaos Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-forensics/rkhunter/rkhunter-1.4.2.ebuild,v 1.2 
2014/05/27 16:08:08 zerochaos Exp $
 
 EAPI=5
 
@@ -26,7 +26,7 @@
 S=${WORKDIR}/${P}/files
 
 src_prepare() {
-   epatch ${FILESDIR}/${PN}.conf.patch
+   epatch ${FILESDIR}/${P}.conf.patch
 }
 
 src_install() {



1.99 app-forensics/rkhunter/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/ChangeLog?rev=1.99view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/ChangeLog?rev=1.99content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/rkhunter/ChangeLog?r1=1.98r2=1.99

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog   27 May 2014 13:11:54 -  1.98
+++ ChangeLog   27 May 2014 16:08:08 -  1.99
@@ -1,6 +1,11 @@
 # ChangeLog for app-forensics/rkhunter
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v 1.98 
2014/05/27 13:11:54 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/rkhunter/ChangeLog,v 1.99 
2014/05/27 16:08:08 zerochaos Exp $
+
+  27 May 2014; Rick Farina zeroch...@gentoo.org
+  +files/rkhunter-1.4.0.conf.patch, +files/rkhunter-1.4.2.conf.patch,
+  -files/rkhunter.conf.patch, rkhunter-1.4.0.ebuild, rkhunter-1.4.2.ebuild:
+  tested improperly, bump is proper now
 
 *rkhunter-1.4.2 (27 May 2014)
 






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-config: lxqt-config-0.7.0-r1.ebuild ChangeLog lxqt-config-0.7.0.ebuild

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:11:45

  Modified: ChangeLog
  Added:lxqt-config-0.7.0-r1.ebuild
  Removed:  lxqt-config-0.7.0.ebuild
  Log:
  install mans
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.2  lxqt-base/lxqt-config/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-config/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   27 May 2014 14:54:04 -  1.1
+++ ChangeLog   27 May 2014 16:11:45 -  1.2
@@ -1,6 +1,12 @@
 # ChangeLog for lxqt-base/lxqt-config
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-config/ChangeLog,v 1.1 
2014/05/27 14:54:04 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-config/ChangeLog,v 1.2 
2014/05/27 16:11:45 jauhien Exp $
+
+*lxqt-config-0.7.0-r1 (27 May 2014)
+
+  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +lxqt-config-0.7.0-r1.ebuild, -lxqt-config-0.7.0.ebuild:
+  install mans
 
 *lxqt-config-0.7.0 (27 May 2014)
 



1.1  lxqt-base/lxqt-config/lxqt-config-0.7.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/lxqt-config-0.7.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-config/lxqt-config-0.7.0-r1.ebuild?rev=1.1content-type=text/plain

Index: lxqt-config-0.7.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-config/lxqt-config-0.7.0-r1.ebuild,v 1.1 
2014/05/27 16:11:45 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt system configuration control center
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

DEPEND=dev-qt/qtcore:4
dev-qt/qtgui:4
lxqt-base/liblxqt
razorqt-base/libqtxdg
sys-libs/zlib
x11-libs/libXcursor
x11-libs/libXfixes
RDEPEND=${DEPEND}

src_install(){
cmake-utils_src_install
doman man/*.1 lxqt-config-cursor/man/*.1 lxqt-config-appearance/man/*.1
}






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-policykit: lxqt-policykit-0.7.0-r1.ebuild ChangeLog lxqt-policykit-0.7.0.ebuild

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:15:27

  Modified: ChangeLog
  Added:lxqt-policykit-0.7.0-r1.ebuild
  Removed:  lxqt-policykit-0.7.0.ebuild
  Log:
  install mans
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.2  lxqt-base/lxqt-policykit/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   27 May 2014 15:18:55 -  1.1
+++ ChangeLog   27 May 2014 16:15:27 -  1.2
@@ -1,6 +1,12 @@
 # ChangeLog for lxqt-base/lxqt-policykit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog,v 1.1 
2014/05/27 15:18:55 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog,v 1.2 
2014/05/27 16:15:27 jauhien Exp $
+
+*lxqt-policykit-0.7.0-r1 (27 May 2014)
+
+  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +lxqt-policykit-0.7.0-r1.ebuild, -lxqt-policykit-0.7.0.ebuild:
+  install mans
 
 *lxqt-policykit-0.7.0 (27 May 2014)
 



1.1  lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0-r1.ebuild?rev=1.1content-type=text/plain

Index: lxqt-policykit-0.7.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/lxqt-policykit-0.7.0-r1.ebuild,v
 1.1 2014/05/27 16:15:27 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt PolKit authentication agent
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

RDEPEND=dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
lxqt-base/liblxqt
razorqt-base/libqtxdg
sys-auth/polkit-qt
x11-libs/libX11
DEPEND=${RDEPEND}
virtual/pkgconfig

src_install(){
cmake-utils_src_install
doman man/*.1
}






[gentoo-commits] gentoo-x86 commit in mail-filter/libsrs_alt: libsrs_alt-1.0.ebuild ChangeLog

2014-05-27 Thread Jeroen Roovers (jer)
jer 14/05/27 16:18:07

  Modified: libsrs_alt-1.0.ebuild ChangeLog
  Log:
  Block dev-perl/Mail-SRS in RDEPEND not DEPEND (bug #511604).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.11 mail-filter/libsrs_alt/libsrs_alt-1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/libsrs_alt/libsrs_alt-1.0.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/libsrs_alt/libsrs_alt-1.0.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/libsrs_alt/libsrs_alt-1.0.ebuild?r1=1.10r2=1.11

Index: libsrs_alt-1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-filter/libsrs_alt/libsrs_alt-1.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libsrs_alt-1.0.ebuild   17 Apr 2012 11:56:36 -  1.10
+++ libsrs_alt-1.0.ebuild   27 May 2014 16:18:07 -  1.11
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/mail-filter/libsrs_alt/libsrs_alt-1.0.ebuild,v 1.10 
2012/04/17 11:56:36 naota Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/mail-filter/libsrs_alt/libsrs_alt-1.0.ebuild,v 1.11 
2014/05/27 16:18:07 jer Exp $
 
 inherit eutils autotools
 
@@ -17,8 +17,7 @@
 KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd
 IUSE=
 
-DEPEND=!dev-perl/Mail-SRS
-RDEPEND=
+RDEPEND=!dev-perl/Mail-SRS
 
 src_unpack() {
unpack ${A}



1.30 mail-filter/libsrs_alt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/libsrs_alt/ChangeLog?rev=1.30view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/libsrs_alt/ChangeLog?rev=1.30content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/libsrs_alt/ChangeLog?r1=1.29r2=1.30

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-filter/libsrs_alt/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   17 Apr 2012 11:56:36 -  1.29
+++ ChangeLog   27 May 2014 16:18:07 -  1.30
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/libsrs_alt
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/libsrs_alt/ChangeLog,v 1.29 
2012/04/17 11:56:36 naota Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/libsrs_alt/ChangeLog,v 1.30 
2014/05/27 16:18:07 jer Exp $
+
+  27 May 2014; Jeroen Roovers j...@gentoo.org libsrs_alt-1.0.ebuild:
+  Block dev-perl/Mail-SRS in RDEPEND not DEPEND (bug #511604).
 
   17 Apr 2012; Naohiro Aota na...@gentoo.org
   +files/libsrs_alt-1.0-ftime.patch, libsrs_alt-1.0.ebuild:






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-session: lxqt-session-0.7.0-r1.ebuild ChangeLog lxqt-session-0.7.0.ebuild

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:21:51

  Modified: ChangeLog
  Added:lxqt-session-0.7.0-r1.ebuild
  Removed:  lxqt-session-0.7.0.ebuild
  Log:
  install mans
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.2  lxqt-base/lxqt-session/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-session/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-session/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-session/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-session/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   26 May 2014 14:03:42 -  1.1
+++ ChangeLog   27 May 2014 16:21:51 -  1.2
@@ -1,6 +1,12 @@
 # ChangeLog for lxqt-base/lxqt-session
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-session/ChangeLog,v 1.1 
2014/05/26 14:03:42 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-session/ChangeLog,v 1.2 
2014/05/27 16:21:51 jauhien Exp $
+
+*lxqt-session-0.7.0-r1 (27 May 2014)
+
+  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +lxqt-session-0.7.0-r1.ebuild, -lxqt-session-0.7.0.ebuild:
+  install mans
 
 *lxqt-session-0.7.0 (26 May 2014)
 



1.1  lxqt-base/lxqt-session/lxqt-session-0.7.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-session/lxqt-session-0.7.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-session/lxqt-session-0.7.0-r1.ebuild?rev=1.1content-type=text/plain

Index: lxqt-session-0.7.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-session/lxqt-session-0.7.0-r1.ebuild,v 
1.1 2014/05/27 16:21:51 jauhien Exp $

EAPI=5

inherit cmake-utils

DESCRIPTION=LXQT session manager
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

S=${WORKDIR}

CDEPEND=dev-qt/qtcore:4
dev-qt/qtdbus
dev-qt/qtgui:4
lxqt-base/liblxqt
razorqt-base/libqtxdg
x11-libs/libX11
DEPEND=${CDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig
RDEPEND=${CDEPEND}
lxqt-base/lxqt-common

src_install(){
cmake-utils_src_install
doman lxqt-config-session/man/*.1 lxqt-session/man/*.1
}






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-runner: lxqt-runner-0.7.0-r1.ebuild ChangeLog lxqt-runner-0.7.0.ebuild

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:24:59

  Modified: ChangeLog
  Added:lxqt-runner-0.7.0-r1.ebuild
  Removed:  lxqt-runner-0.7.0.ebuild
  Log:
  install mans
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.2  lxqt-base/lxqt-runner/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   27 May 2014 15:37:56 -  1.1
+++ ChangeLog   27 May 2014 16:24:59 -  1.2
@@ -1,6 +1,12 @@
 # ChangeLog for lxqt-base/lxqt-runner
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog,v 1.1 
2014/05/27 15:37:56 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-runner/ChangeLog,v 1.2 
2014/05/27 16:24:59 jauhien Exp $
+
+*lxqt-runner-0.7.0-r1 (27 May 2014)
+
+  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +lxqt-runner-0.7.0-r1.ebuild, -lxqt-runner-0.7.0.ebuild:
+  install mans
 
 *lxqt-runner-0.7.0 (27 May 2014)
 



1.1  lxqt-base/lxqt-runner/lxqt-runner-0.7.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/lxqt-runner-0.7.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-runner/lxqt-runner-0.7.0-r1.ebuild?rev=1.1content-type=text/plain

Index: lxqt-runner-0.7.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-runner/lxqt-runner-0.7.0-r1.ebuild,v 1.1 
2014/05/27 16:24:59 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt quick launcher
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0

RDEPEND=dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
dev-qt/qtscript:4
lxqt-base/liblxqt
lxqt-base/lxqt-globalkeys
=lxde-base/menu-cache-0.5.1
razorqt-base/libqtxdg
x11-libs/libX11
DEPEND=${RDEPEND}
virtual/pkgconfig

src_install(){
cmake-utils_src_install
doman man/*.1
}






[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-panel: lxqt-panel-0.7.0-r1.ebuild ChangeLog lxqt-panel-0.7.0.ebuild

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:29:18

  Modified: ChangeLog
  Added:lxqt-panel-0.7.0-r1.ebuild
  Removed:  lxqt-panel-0.7.0.ebuild
  Log:
  install mans
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.3  lxqt-base/lxqt-panel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog?r1=1.2r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   27 May 2014 13:38:57 -  1.2
+++ ChangeLog   27 May 2014 16:29:18 -  1.3
@@ -1,6 +1,12 @@
 # ChangeLog for lxqt-base/lxqt-panel
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog,v 1.2 
2014/05/27 13:38:57 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/ChangeLog,v 1.3 
2014/05/27 16:29:18 jauhien Exp $
+
+*lxqt-panel-0.7.0-r1 (27 May 2014)
+
+  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +lxqt-panel-0.7.0-r1.ebuild, -lxqt-panel-0.7.0.ebuild:
+  install mans
 
   27 May 2014; Jauhien Piatlicki jauh...@gentoo.org lxqt-panel-0.7.0.ebuild:
   Add dependencies needed for reboot/halt



1.1  lxqt-base/lxqt-panel/lxqt-panel-0.7.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0-r1.ebuild?rev=1.1content-type=text/plain

Index: lxqt-panel-0.7.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/lxqt-base/lxqt-panel/lxqt-panel-0.7.0-r1.ebuild,v 1.1 
2014/05/27 16:29:18 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXQt desktop panel and plugins
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/lxqt/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-2 LGPL-2.1+
SLOT=0
IUSE=+alsa +clock colorpicker cpuload +desktopswitch dom +kbindicator +mainmenu
+mount networkmonitor pulseaudio +quicklaunch screensaver sensors
+showdesktop sysstat +taskbar teatime +tray +volume worldclock
REQUIRED_USE=volume? ( || ( alsa pulseaudio ) )

DEPEND=dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
=lxde-base/menu-cache-0.3.3
lxqt-base/liblxqt
lxqt-base/liblxqt-mount
lxqt-base/libsysstat
lxqt-base/lxqt-globalkeys
razorqt-base/libqtxdg
x11-libs/libX11
cpuload? ( sys-libs/libstatgrab )
mainmenu? ( || ( sys-auth/consolekit[policykit(-)]
sys-apps/systemd[policykit(-)] ) )
networkmonitor? ( sys-libs/libstatgrab )
sensors? ( sys-apps/lm_sensors )
sysstat? ( lxqt-base/libsysstat )
volume? ( alsa? ( media-libs/alsa-lib )
pulseaudio? ( media-sound/pulseaudio ) )
worldclock? ( dev-libs/icu:= )
RDEPEND=${DEPEND}
lxde-base/lxmenu-data

src_configure() {
local mycmakeargs i y
for i in clock colorpicker cpuload desktopswitch dom kbindicator 
mainmenu mount \
networkmonitor quicklaunch screensaver sensors showdesktop 
sysstat \
taskbar teatime tray volume worldclock; do
y=$(tr '[:lower:]' '[:upper:]'  ${i})
mycmakeargs+=( $(cmake-utils_use ${i} ${y}_PLUGIN) )
done

if use volume; then
mycmakeargs+=( $(cmake-utils_use alsa VOLUME_USE_ALSA)
$(cmake-utils_use pulseaudio VOLUME_USE_PULSEAUDIO) )
fi

cmake-utils_src_configure
}

src_install(){
cmake-utils_src_install
doman panel/man/*.1
}






[gentoo-commits] gentoo-x86 commit in media-gfx/lximage-qt: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:38:15

  Log:
  Directory /var/cvsroot/gentoo-x86/media-gfx/lximage-qt added to the repository



[gentoo-commits] gentoo-x86 commit in app-laptop/laptop-mode-tools/files: laptop-mode-tools-1.64-ethernet-power.patch

2014-05-27 Thread Alon Bar-Lev (alonbl)
alonbl  14/05/27 16:41:38

  Added:laptop-mode-tools-1.64-ethernet-power.patch
  Log:
  Fix newer kernel compatibility, bug#50, thanks to Stefan Huber
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
BF20DC51)

Revision  ChangesPath
1.1  
app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.64-ethernet-power.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.64-ethernet-power.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.64-ethernet-power.patch?rev=1.1content-type=text/plain

Index: laptop-mode-tools-1.64-ethernet-power.patch
===
From c55b44f656c88aa1ef7307664f7040407d23e0de Mon Sep 17 00:00:00 2001
From: Alon Bar-Lev alon.bar...@gmail.com
Date: Tue, 27 May 2014 19:35:11 +0300
Subject: [PATCH] ethernet: replace sysfs/enabled by 'ip link down'

backport of 8fff5eb2bfdde0
---
 usr/share/laptop-mode-tools/modules/ethernet | 59 +++-
 1 file changed, 22 insertions(+), 37 deletions(-)

diff --git a/usr/share/laptop-mode-tools/modules/ethernet 
b/usr/share/laptop-mode-tools/modules/ethernet
index 6fd06e2..0c922e2 100755
--- a/usr/share/laptop-mode-tools/modules/ethernet
+++ b/usr/share/laptop-mode-tools/modules/ethernet
@@ -24,6 +24,13 @@ if [ x$CONTROL_ETHERNET = x1 ] || [ x$ENABLE_AUTO_MODULES = 
x1 -a x$CONTROL_ETHE
MIITOOL=/bin/false
fi
 
+   if [ -x /bin/ip ]; then
+   IPTOOL=/bin/ip
+   else
+   log VERBOSE ip is not installed
+   IPTOOL=/bin/false
+   fi
+
 
if [ $ON_AC -eq 1 ]; then
if [ $ACTIVATE -eq 1 ]; then
@@ -52,43 +59,7 @@ if [ x$CONTROL_ETHERNET = x1 ] || [ x$ENABLE_AUTO_MODULES = 
x1 -a x$CONTROL_ETHE
fi

for DEVICE in $ETHERNET_DEVICES ; do
-DISABLED=0
-path=`readlink -f /sys/class/net/$DEVICE`
-   dev_path=
-log VERBOSE ethernet: $path
-if ! [ -z $path ]; then
-if [ -d $path/device ]; then
-  dev_path=`readlink -f $path/device`
-  log VERBOSE ethernet: $dev_path
-fi
-fi
-
-if ! [ -z $dev_path ]  [ -f $dev_path/enable ]; then
-if [ x$DISABLE_ETHERNET = x1 ]; then
-if [ -f $dev_path/enable ]; then
-echo 0  $dev_path/enable
-log VERBOSE ethernet: Disabling 
ethernet device $DEVICE
-DISABLED=1
-fi
-elif [ x$DISABLE_ETHERNET = x0 ]; then
-if [ -f $dev_path/enable ]; then
-echo 1  $dev_path/enable
-log VERBOSE ethernet: Re-enabling 
ethernet device $DEVICE
-DISABLED=0
-fi
-elif [ x$DISABLE_ETHERNET = x2 ]; then
-DISABLED=0 # Be safe. :-)
-else
-DISABLED=0 # Same here. Be safe. :-)
-   # For all other cases also, just 
disable it.
-fi
-else
-log VERBOSE $DEVICE does not seem to be supporting 
enable/disable
-fi
-
-   if [ x$DISABLED = x1 ]; then
-   continue
-   fi
+   log VERBOSE ethernet: $DEVICE
 
# Wakeup-on-LAN handling
if [ x$DISABLE_WAKEUP_ON_LAN = x1 ] ; then
@@ -152,6 +123,20 @@ if [ x$CONTROL_ETHERNET = x1 ] || [ x$ENABLE_AUTO_MODULES 
= x1 -a x$CONTROL_ETHE
log VERBOSE Could not restore speed for 
$DEVICE
fi
fi
+
+   # Shut down interface
+   if [ x$DISABLE_ETHERNET = x1 ]; then
+   if $IPTOOL link show $DEVICE | grep -q NO-CARRIER; then
+   log VERBOSE ethernet: Disabling ethernet 
device $DEVICE
+   $IPTOOL link set dev $DEVICE down
+   else
+   log VERBOSE ethernet: Not disabling ethernet 
device $DEVICE with active carrier.
+   fi
+   elif [ x$DISABLE_ETHERNET = x0 ]; then
+   $IPTOOL link set dev $DEVICE up
+   log VERBOSE ethernet: Re-enabling ethernet device 
$DEVICE
+   fi
+
done
 else
log VERBOSE Ethernet 

[gentoo-commits] gentoo-x86 commit in app-laptop/laptop-mode-tools: laptop-mode-tools-1.64-r1.ebuild ChangeLog

2014-05-27 Thread Alon Bar-Lev (alonbl)
alonbl  14/05/27 16:41:38

  Modified: ChangeLog
  Added:laptop-mode-tools-1.64-r1.ebuild
  Log:
  Fix newer kernel compatibility, bug#50, thanks to Stefan Huber
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
BF20DC51)

Revision  ChangesPath
1.87 app-laptop/laptop-mode-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/laptop-mode-tools/ChangeLog?rev=1.87view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/laptop-mode-tools/ChangeLog?rev=1.87content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/laptop-mode-tools/ChangeLog?r1=1.86r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-laptop/laptop-mode-tools/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   11 May 2014 07:22:10 -  1.86
+++ ChangeLog   27 May 2014 16:41:38 -  1.87
@@ -1,6 +1,13 @@
 # ChangeLog for app-laptop/laptop-mode-tools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-laptop/laptop-mode-tools/ChangeLog,v 
1.86 2014/05/11 07:22:10 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-laptop/laptop-mode-tools/ChangeLog,v 
1.87 2014/05/27 16:41:38 alonbl Exp $
+
+*laptop-mode-tools-1.64-r1 (27 May 2014)
+
+  27 May 2014; Alon Bar-Lev alo...@gentoo.org
+  +files/laptop-mode-tools-1.64-ethernet-power.patch,
+  +laptop-mode-tools-1.64-r1.ebuild:
+  Fix newer kernel compatibility, bug#50, thanks to Stefan Huber
 
   11 May 2014; Samuli Suominen ssuomi...@gentoo.org
   laptop-mode-tools-1.64.ebuild:



1.1  
app-laptop/laptop-mode-tools/laptop-mode-tools-1.64-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/laptop-mode-tools/laptop-mode-tools-1.64-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/laptop-mode-tools/laptop-mode-tools-1.64-r1.ebuild?rev=1.1content-type=text/plain

Index: laptop-mode-tools-1.64-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-laptop/laptop-mode-tools/laptop-mode-tools-1.64-r1.ebuild,v
 1.1 2014/05/27 16:41:38 alonbl Exp $

EAPI=5
inherit eutils multilib systemd udev

MY_P=${PN}_${PV}

DESCRIPTION=Linux kernel laptop_mode user-space utilities
HOMEPAGE=http://www.samwel.tk/laptop_mode/;
SRC_URI=http://www.samwel.tk/laptop_mode/tools/downloads/${MY_P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86
IUSE=+acpi apm bluetooth scsi

RDEPEND=net-wireless/wireless-tools
sys-apps/ethtool
sys-apps/hdparm
sys-apps/which
acpi? ( sys-power/acpid )
apm? ( sys-apps/apmd )
bluetooth? ( net-wireless/bluez:= )
scsi? ( sys-apps/sdparm )
DEPEND=

S=${WORKDIR}/${MY_P}

src_prepare() {
epatch ${FILESDIR}/${P}-ethernet-power.patch

# This should avoid conflict with pm-powersave wrt #327443 and #396703
cat -EOF  ${T}/${PN}
HOOK_BLACKLIST=00powersave
EOF
}

src_compile() { :; }

src_install() {
DESTDIR=${D} \
INIT_D=none \
MAN_D=/usr/share/man \
LIB_D=/usr/$(get_libdir) \
UDEV_D=$(udev_get_udevdir) \
SYSTEMD_UNIT_D=$(systemd_get_unitdir) \
TMPFILES_D=/usr/$(get_libdir)/tmpfiles.d \
ACPI=$(use acpi  echo force || echo disabled) \
PMU=$(false  echo force || echo disabled) \
APM=$(use apm  echo force || echo disabled) \
SYSTEMD=yes \
sh ./install.sh || die

dodoc Documentation/*.txt README.md
newinitd ${FILESDIR}/laptop_mode.init-1.4 laptop_mode

# See src_prepare()
insinto /etc/pm/config.d
doins ${T}/${PN}
}

pkg_postinst() {
if use acpi || use apm; then
if use acpi; then
daemon_name=acpid
elif use apm; then
deamon_name=apmd
fi
if [ $(rc-config list default | grep laptop_mode) =  ] || [ 
$(rc-config list default | grep ${daemon_name} ) =  ]; then
ewarn To enable automatic power state event handling,
ewarn e.g. enabling laptop_mode after unplugging the 
battery,
ewarn both laptop_mode and the ${daemon_name} daemon 
must be
ewarn added to default runlevel:
if [ $(rc-config list default | grep laptop_mode) = 
 ]; then
ewarn # rc-update add laptop_mode default
fi
 

[gentoo-commits] gentoo-x86 commit in media-gfx/lximage-qt: lximage-qt-0.2.0.ebuild metadata.xml Manifest ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:47:47

  Added:lximage-qt-0.2.0.ebuild metadata.xml Manifest
ChangeLog
  Log:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide 
Pesavento, see bug #509946
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.1  media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild?rev=1.1content-type=text/plain

Index: lximage-qt-0.2.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild,v 1.1 
2014/05/27 16:47:47 jauhien Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION=LXImage Image Viewer - GPicView replacement
HOMEPAGE=http://www.lxqt.org/;

if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
else
SRC_URI=http://lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz;
KEYWORDS=~amd64 ~x86
S=${WORKDIR}
fi

LICENSE=GPL-3
SLOT=0

RDEPEND=dev-qt/qtcore:4
dev-qt/qtdbus
dev-qt/qtgui:4
dev-libs/glib:2
media-libs/libexif
=x11-libs/libfm-1.2
x11-libs/libX11
x11-libs/libXfixes
x11-misc/pcmanfm-qt
DEPEND=${RDEPEND}
virtual/pkgconfig



1.1  media-gfx/lximage-qt/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdlxqt/herd
  maintainer
emailjauh...@gentoo.org/email
nameJauhien Piatlicki/name
  /maintainer
/pkgmetadata



1.1  media-gfx/lximage-qt/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lximage-qt-0.2.0.tar.xz 41240 SHA256 
4750981bbf1a1a36fd581addd8d6acecb608f9660442b6831eb05639151524fb SHA512 
238e1fb7795fb2b5d73132fc61942b0277d1c2b7c880f3022e4fabee754a17da013af1907ada001762271ac7ded42efbf4470990bb574d26215ff0276f4a7c16
 WHIRLPOOL 
a09053cfb944518a3879dcf28786ad70a2b7a67cc04d4f2a737d1dadaad846c883b322aa906135f01726cf2266d78d70a94e5e619699b91718faa914787afc37
EBUILD lximage-qt-0.2.0.ebuild 688 SHA256 
fba9406190dea0df2c169942b96eca8f8bc7146ac01037d3132999dafcb8b56c SHA512 
eab0e93d638e84e0e77409ef95fb5d2afa3405a67d76da44dcea84a10d64046210f3c0ecc45c0e9cd0df490e7525ebf369f8da41269d38170c96837c27219ec8
 WHIRLPOOL 
73b3efbd02b0dfc1f484e8f4bec9fd1f4f1ee4773906f1832859718c57d3b6d1cdc5403e4ffeaed4c51d3afba92ff677988aa713fbb036168df7b3b16b133e44
MISC metadata.xml 263 SHA256 
d23df106b61ed123144d9d24eea822badfbe6cb7d8d4ec61215af73b4c8f1fc6 SHA512 
9f99b13f568e1cfda82dc35cd0b95fba565d5f18909db7b0d7dff75273cf4076a68288768ee5f65a70485833971fb3e511919a9e80d09e0d96f3a38744435d3a
 WHIRLPOOL 
6bfa4c8737764e7450195f3ffd2e8fe8531ad44dfa02b0d7819678eeb7898280f07ed13ac87e0158abb6d9b804ee617b7683f73a4cd17db822419eba55fa62c6



1.1  media-gfx/lximage-qt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for media-gfx/lximage-qt
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/lximage-qt/ChangeLog,v 1.1 
2014/05/27 16:47:47 jauhien Exp $

*lximage-qt-0.2.0 (27 May 2014)

  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org +lximage-qt-0.2.0.ebuild,
  +metadata.xml:
  Initial import from the qt overlay, thanks to Harvey Mittens and Davide
  Pesavento, see bug #509946






[gentoo-commits] gentoo-x86 commit in media-gfx/lximage-qt: lximage-qt-0.2.0.ebuild ChangeLog

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 16:50:56

  Modified: lximage-qt-0.2.0.ebuild ChangeLog
  Log:
  fix license
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB2EFA1D4)

Revision  ChangesPath
1.2  media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild?r1=1.1r2=1.2

Index: lximage-qt-0.2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lximage-qt-0.2.0.ebuild 27 May 2014 16:47:47 -  1.1
+++ lximage-qt-0.2.0.ebuild 27 May 2014 16:50:56 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild,v 1.1 
2014/05/27 16:47:47 jauhien Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/lximage-qt/lximage-qt-0.2.0.ebuild,v 1.2 
2014/05/27 16:50:56 jauhien Exp $
 
 EAPI=5
 inherit cmake-utils
@@ -17,7 +17,7 @@
S=${WORKDIR}
 fi
 
-LICENSE=GPL-3
+LICENSE=GPL-2 LGPL-2.1+
 SLOT=0
 
 RDEPEND=dev-qt/qtcore:4



1.2  media-gfx/lximage-qt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/lximage-qt/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/lximage-qt/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   27 May 2014 16:47:47 -  1.1
+++ ChangeLog   27 May 2014 16:50:56 -  1.2
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/lximage-qt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/lximage-qt/ChangeLog,v 1.1 
2014/05/27 16:47:47 jauhien Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/lximage-qt/ChangeLog,v 1.2 
2014/05/27 16:50:56 jauhien Exp $
+
+  27 May 2014; Jauhien Piatlicki jauh...@gentoo.org lximage-qt-0.2.0.ebuild:
+  fix license
 
 *lximage-qt-0.2.0 (27 May 2014)
 






[gentoo-commits] proj/kde:master commit in: dev-util/kdevelop-python/, dev-util/kdevelop-pg-qt/, dev-util/kdevelop/, ...

2014-05-27 Thread Johannes Huber
commit: 489b3843f421a42008e96231d21fd986f6698d64
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue May 27 16:44:42 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue May 27 16:44:42 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=489b3843

[kdevelop] Rename  to 4.

Preparation for frameworks based versions.

Package-Manager: portage-2.2.10

---
 dev-util/kdev-clang/{kdev-clang-.ebuild = kdev-clang-4..ebuild}  | 0
 .../{kdevelop-mercurial-.ebuild = kdevelop-mercurial-4..ebuild}  | 0
 .../{kdevelop-pg-qt-.ebuild = kdevelop-pg-qt-4..ebuild}  | 0
 .../{kdevelop-php-docs-.ebuild = kdevelop-php-docs-4..ebuild}| 0
 .../kdevelop-php/{kdevelop-php-.ebuild = kdevelop-php-4..ebuild} | 0
 .../{kdevelop-python-.ebuild = kdevelop-python-4..ebuild}| 0
 .../{kdevelop-qmake-.ebuild = kdevelop-qmake-4..ebuild}  | 0
 dev-util/kdevelop/{kdevelop-.ebuild = kdevelop-4..ebuild}| 0
 .../kdevplatform/{kdevplatform-.ebuild = kdevplatform-4..ebuild} | 0
 9 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-util/kdev-clang/kdev-clang-.ebuild 
b/dev-util/kdev-clang/kdev-clang-4..ebuild
similarity index 100%
rename from dev-util/kdev-clang/kdev-clang-.ebuild
rename to dev-util/kdev-clang/kdev-clang-4..ebuild

diff --git a/dev-util/kdevelop-mercurial/kdevelop-mercurial-.ebuild 
b/dev-util/kdevelop-mercurial/kdevelop-mercurial-4..ebuild
similarity index 100%
rename from dev-util/kdevelop-mercurial/kdevelop-mercurial-.ebuild
rename to dev-util/kdevelop-mercurial/kdevelop-mercurial-4..ebuild

diff --git a/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-.ebuild 
b/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-4..ebuild
similarity index 100%
rename from dev-util/kdevelop-pg-qt/kdevelop-pg-qt-.ebuild
rename to dev-util/kdevelop-pg-qt/kdevelop-pg-qt-4..ebuild

diff --git a/dev-util/kdevelop-php-docs/kdevelop-php-docs-.ebuild 
b/dev-util/kdevelop-php-docs/kdevelop-php-docs-4..ebuild
similarity index 100%
rename from dev-util/kdevelop-php-docs/kdevelop-php-docs-.ebuild
rename to dev-util/kdevelop-php-docs/kdevelop-php-docs-4..ebuild

diff --git a/dev-util/kdevelop-php/kdevelop-php-.ebuild 
b/dev-util/kdevelop-php/kdevelop-php-4..ebuild
similarity index 100%
rename from dev-util/kdevelop-php/kdevelop-php-.ebuild
rename to dev-util/kdevelop-php/kdevelop-php-4..ebuild

diff --git a/dev-util/kdevelop-python/kdevelop-python-.ebuild 
b/dev-util/kdevelop-python/kdevelop-python-4..ebuild
similarity index 100%
rename from dev-util/kdevelop-python/kdevelop-python-.ebuild
rename to dev-util/kdevelop-python/kdevelop-python-4..ebuild

diff --git a/dev-util/kdevelop-qmake/kdevelop-qmake-.ebuild 
b/dev-util/kdevelop-qmake/kdevelop-qmake-4..ebuild
similarity index 100%
rename from dev-util/kdevelop-qmake/kdevelop-qmake-.ebuild
rename to dev-util/kdevelop-qmake/kdevelop-qmake-4..ebuild

diff --git a/dev-util/kdevelop/kdevelop-.ebuild 
b/dev-util/kdevelop/kdevelop-4..ebuild
similarity index 100%
rename from dev-util/kdevelop/kdevelop-.ebuild
rename to dev-util/kdevelop/kdevelop-4..ebuild

diff --git a/dev-util/kdevplatform/kdevplatform-.ebuild 
b/dev-util/kdevplatform/kdevplatform-4..ebuild
similarity index 100%
rename from dev-util/kdevplatform/kdevplatform-.ebuild
rename to dev-util/kdevplatform/kdevplatform-4..ebuild



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

2014-05-27 Thread Johannes Huber
commit: 48e2b09b14650fa0f4450ec8166d0ddf1e0a0c6b
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue May 27 16:48:09 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue May 27 16:48:09 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=48e2b09b

[eclass] Fix kdevelop versions

Needed because of version scheme change.

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

diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index ffe5d05..33b5e3f 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -82,12 +82,12 @@ case ${KDEBASE} in
# @DESCRIPTION:
# Specifies KDevelop version. Default is 4.0.0 for 
tagged packages and  for live packages.
# Applies to KDEBASE=kdevelop only.
-   KDEVELOP_VERSION=${KDEVELOP_VERSION:-}
+   KDEVELOP_VERSION=${KDEVELOP_VERSION:-4.}
# @ECLASS-VARIABLE: KDEVPLATFORM_VERSION
# @DESCRIPTION:
# Specifies KDevplatform version. Default is 1.0.0 for 
tagged packages and  for live packages.
# Applies to KDEBASE=kdevelop only.
-   KDEVPLATFORM_VERSION=${KDEVPLATFORM_VERSION:-}
+   KDEVPLATFORM_VERSION=${KDEVPLATFORM_VERSION:-4.}
else
case ${PN} in
kdevelop|quanta)



[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/, Documentation/package.accept_keywords/

2014-05-27 Thread Johannes Huber
commit: 0a8ba253a05193bd06d74d0b235660ed60a11ffb
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Tue May 27 16:52:43 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Tue May 27 16:52:43 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0a8ba253

[Documentation] Update kdevelop keywords

---
 Documentation/package.accept_keywords/kde-extras-live.keywords | 10 +-
 Documentation/package.unmask/kde-extras-live   | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/Documentation/package.accept_keywords/kde-extras-live.keywords 
b/Documentation/package.accept_keywords/kde-extras-live.keywords
index 1928fea..0576b90 100644
--- a/Documentation/package.accept_keywords/kde-extras-live.keywords
+++ b/Documentation/package.accept_keywords/kde-extras-live.keywords
@@ -8,11 +8,11 @@
 ~app-office/skrooge- **
 ~app-portage/kportagetray- **
 ~dev-cpp/eigen- **
-~dev-util/kdevelop- **
-~dev-util/kdevelop-extra-plugins- **
-~dev-util/kdevelop-php- **
-~dev-util/kdevelop-php-docs- **
-~dev-util/kdevplatform- **
+~dev-util/kdevelop-4. **
+~dev-util/kdevelop-extra-plugins-4. **
+~dev-util/kdevelop-php-4. **
+~dev-util/kdevelop-php-docs-4. **
+~dev-util/kdevplatform-4. **
 ~dev-util/krazy2- **
 ~dev-util/kxsldbg- **
 ~dev-vcs/kdesvn- **

diff --git a/Documentation/package.unmask/kde-extras-live 
b/Documentation/package.unmask/kde-extras-live
index 899cf9e..7645fb0 100644
--- a/Documentation/package.unmask/kde-extras-live
+++ b/Documentation/package.unmask/kde-extras-live
@@ -7,11 +7,11 @@
 ~app-office/skrooge-
 ~app-portage/kportagetray-
 ~dev-cpp/eigen-
-~dev-util/kdevelop-
-~dev-util/kdevelop-extra-plugins-
-~dev-util/kdevelop-php-
-~dev-util/kdevelop-php-docs-
-~dev-util/kdevplatform-
+~dev-util/kdevelop-4.
+~dev-util/kdevelop-extra-plugins-4.
+~dev-util/kdevelop-php-4.
+~dev-util/kdevelop-php-docs-4.
+~dev-util/kdevplatform-4.
 ~dev-util/krazy2-
 ~dev-util/kxsldbg-
 ~dev-vcs/kdesvn-



[gentoo-commits] gentoo-x86 commit in dev-libs/libffi: libffi-3.1.ebuild ChangeLog

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 17:11:15

  Modified: ChangeLog
  Added:libffi-3.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.184dev-libs/libffi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.184view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.184content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?r1=1.183r2=1.184

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- ChangeLog   14 May 2014 14:41:37 -  1.183
+++ ChangeLog   27 May 2014 17:11:15 -  1.184
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libffi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.183 
2014/05/14 14:41:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.184 
2014/05/27 17:11:15 ssuominen Exp $
+
+*libffi-3.1 (27 May 2014)
+
+  27 May 2014; Samuli Suominen ssuomi...@gentoo.org +libffi-3.1.ebuild:
+  Version bump.
 
   14 May 2014; Agostino Sarubbo a...@gentoo.org libffi-3.0.13-r1.ebuild:
   Stable for sparc, wrt bug #497760



1.1  dev-libs/libffi/libffi-3.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.1.ebuild?rev=1.1content-type=text/plain

Index: libffi-3.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.1.ebuild,v 1.1 
2014/05/27 17:11:15 ssuominen Exp $

EAPI=5
inherit eutils libtool multilib multilib-minimal toolchain-funcs

DESCRIPTION=a portable, high level programming interface to various calling 
conventions.
HOMEPAGE=http://sourceware.org/libffi/;
SRC_URI=ftp://sourceware.org/pub/${PN}/${P}.tar.gz;

LICENSE=MIT
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 pax_kernel static-libs test

RDEPEND=abi_x86_32? ( !=app-emulation/emul-linux-x86-baselibs-20130224-r1
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
DEPEND=test? ( dev-util/dejagnu )

DOCS=ChangeLog* README

ECONF_SOURCE=${S}

pkg_setup() {
# Check for orphaned libffi, see http://bugs.gentoo.org/354903 for 
example
if [[ ${ROOT} == /  ${EPREFIX} ==  ]]  ! has_version 
${CATEGORY}/${PN}; then
local base=${T}/conftest
echo 'int main() { }'  ${base}.c
$(tc-getCC) -o ${base} ${base}.c -lffi /dev/null
if [ $? -eq 0 ]; then
eerror The linker reported linking against -lffi to be 
working while it shouldn't have.
eerror This is wrong and you should find and delete 
the old copy of libffi before continuing.
die The system is in inconsistent state with unknown 
libffi installed.
fi
fi
}

src_prepare() {
sed -i 's:@toolexeclibdir@:$(libdir):g' Makefile.in || die #462814
epatch_user
elibtoolize
}

multilib_src_configure() {
use userland_BSD  export HOST=${CHOST}
econf \
$(use_enable static-libs static) \
$(use_enable pax_kernel pax_emutramp) \
$(use_enable debug)
}

multilib_src_install_all() {
prune_libtool_files
einstalldocs
}

pkg_preinst() {
preserve_old_lib /usr/$(get_libdir)/${PN}$(get_libname 5)
}

pkg_postinst() {
preserve_old_lib_notify /usr/$(get_libdir)/${PN}$(get_libname 5)
}






[gentoo-commits] gentoo-x86 commit in dev-libs/libffi: ChangeLog libffi-3.0.13.ebuild libffi-3.0.12.ebuild libffi-3.0.11.ebuild

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 17:14:03

  Modified: ChangeLog
  Removed:  libffi-3.0.13.ebuild libffi-3.0.12.ebuild
libffi-3.0.11.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.186dev-libs/libffi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.186view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.186content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?r1=1.185r2=1.186

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog   27 May 2014 17:12:55 -  1.185
+++ ChangeLog   27 May 2014 17:14:03 -  1.186
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libffi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.185 
2014/05/27 17:12:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.186 
2014/05/27 17:14:03 ssuominen Exp $
+
+  27 May 2014; Samuli Suominen ssuomi...@gentoo.org
+  -files/libffi-3.0.11-x86-pic-check.patch, -libffi-3.0.11.ebuild,
+  -libffi-3.0.12.ebuild, -libffi-3.0.13.ebuild:
+  old
 
   27 May 2014; Samuli Suominen ssuomi...@gentoo.org libffi-3.1.ebuild:
   Time to let preserve_old_lib go and rely upon FEATURES=preserved-libs which






[gentoo-commits] gentoo-x86 commit in dev-libs/libffi/files: libffi-3.0.11-x86-pic-check.patch

2014-05-27 Thread Samuli Suominen (ssuominen)
ssuominen14/05/27 17:14:04

  Removed:  libffi-3.0.11-x86-pic-check.patch
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)



[gentoo-commits] gentoo-x86 commit in lxqt-base/lxqt-meta: - New directory

2014-05-27 Thread Jauhien Piatlicki (jauhien)
jauhien 14/05/27 17:26:15

  Log:
  Directory /var/cvsroot/gentoo-x86/lxqt-base/lxqt-meta added to the repository



  1   2   >