[gentoo-commits] proj/portage-utils:master commit in: tests/quse/, tests/profile/, /, tests/source/, tests/qxpak/, tests/qtbz2/, ...

2014-03-15 Thread Mike Frysinger
commit: 853aa467aed80c3fd70d5dda4825f4a09969b5dd
Author: Mike Frysinger vapier AT gentoo DOT org
AuthorDate: Sat Mar 15 05:57:47 2014 +
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Sat Mar 15 05:57:47 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage-utils.git;a=commit;h=853aa467

build: run tests in quiet mode by default

---
 Makefile| 1 +
 tests/Makefile  | 2 +-
 tests/atom_explode/Makefile | 2 +-
 tests/install/Makefile  | 2 +-
 tests/mkdir/Makefile| 2 +-
 tests/profile/Makefile  | 2 +-
 tests/qdepends/Makefile | 2 +-
 tests/qfile/Makefile| 2 +-
 tests/qlist/Makefile| 2 +-
 tests/qmerge/Makefile   | 2 +-
 tests/qtbz2/Makefile| 2 +-
 tests/quse/Makefile | 2 +-
 tests/qxpak/Makefile| 2 +-
 tests/reinitialize/Makefile | 2 +-
 tests/source/Makefile   | 2 +-
 15 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/Makefile b/Makefile
index 79a19eb..6c05dbd 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,7 @@ Q = @
 else
 Q =
 endif
+export Q
 ifdef PV
 CPPFLAGS  += -DVERSION=\$(PV)\
 else

diff --git a/tests/Makefile b/tests/Makefile
index bf568b0..8784fce 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -8,7 +8,7 @@ all: check
 test check: $(TESTS:=_subdir)
 
 %_subdir:
-   cd $(@:_subdir=) || exit 1; \
+   $(Q)cd $(@:_subdir=) || exit 1; \
out=`$(MAKE) check 21`; \
ret=$$?; \
echo $$out; \

diff --git a/tests/atom_explode/Makefile b/tests/atom_explode/Makefile
index b16f8ef..43d3bd7 100644
--- a/tests/atom_explode/Makefile
+++ b/tests/atom_explode/Makefile
@@ -14,7 +14,7 @@ basic: $(b)/e
diff -u $(s)/basic.good $(b)/basic
 
 dotest: $(b)/e
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
rm -f $(b)/me $(b)/py $(b)/e $(b)/q $(b)/basic

diff --git a/tests/install/Makefile b/tests/install/Makefile
index b0839ba..0e8f6a8 100644
--- a/tests/install/Makefile
+++ b/tests/install/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
rm -f $(b)/q `find $(b) -type l`

diff --git a/tests/mkdir/Makefile b/tests/mkdir/Makefile
index fb9a17d..ad14de3 100644
--- a/tests/mkdir/Makefile
+++ b/tests/mkdir/Makefile
@@ -10,7 +10,7 @@ $(b)/m: $(s)/test.c
 test check: dotest
 
 dotest: $(b)/m
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
rm -f $(b)/m

diff --git a/tests/profile/Makefile b/tests/profile/Makefile
index 13a25cb..f3eaa1f 100644
--- a/tests/profile/Makefile
+++ b/tests/profile/Makefile
@@ -4,6 +4,6 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 .PHONY: all check clean test

diff --git a/tests/qdepends/Makefile b/tests/qdepends/Makefile
index d69ceff..48bc55b 100644
--- a/tests/qdepends/Makefile
+++ b/tests/qdepends/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
 

diff --git a/tests/qfile/Makefile b/tests/qfile/Makefile
index ec2f4b6..a65f798 100644
--- a/tests/qfile/Makefile
+++ b/tests/qfile/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
 

diff --git a/tests/qlist/Makefile b/tests/qlist/Makefile
index 9787827..80e1383 100644
--- a/tests/qlist/Makefile
+++ b/tests/qlist/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
 

diff --git a/tests/qmerge/Makefile b/tests/qmerge/Makefile
index baff1b7..90f7b77 100644
--- a/tests/qmerge/Makefile
+++ b/tests/qmerge/Makefile
@@ -7,7 +7,7 @@ PACKAGES = $(PKGDIR)/Packages
 all: test
 
 test check: $(PACKAGES)
-   ./dotest
+   $(Q)$(s)/dotest
 
 $(PACKAGES): $(wildcard $(PKGDIR)/*/*.tbz2)
PKGDIR=$(PKGDIR) emaint binhost -f 

diff --git a/tests/qtbz2/Makefile b/tests/qtbz2/Makefile
index 1abf6ae..7144e2b 100644
--- a/tests/qtbz2/Makefile
+++ b/tests/qtbz2/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
 

diff --git a/tests/quse/Makefile b/tests/quse/Makefile
index 9b0117b..cc21e8b 100644
--- a/tests/quse/Makefile
+++ b/tests/quse/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
rm -f $(b)/PORTDIR-* $(b)/*.squashfs

diff --git a/tests/qxpak/Makefile b/tests/qxpak/Makefile
index a6c6408..8abfa9d 100644
--- a/tests/qxpak/Makefile
+++ b/tests/qxpak/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test check:
-   $(s)/dotest
+   $(Q)$(s)/dotest
 
 clean:
 

diff --git a/tests/reinitialize/Makefile b/tests/reinitialize/Makefile
index 0de2802..11cfb65 100644
--- a/tests/reinitialize/Makefile
+++ b/tests/reinitialize/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
 all: check
 
 test 

[gentoo-commits] proj/portage-utils: New tag: v0.52

2014-03-15 Thread Mike Frysinger
commit: 
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Sat Mar 15 06:02:29 2014 +

New tag: v0.52




[gentoo-commits] proj/portage-utils:master commit in: /

2014-03-15 Thread Mike Frysinger
commit: 7edb85827c65468248d3d3352546fc076e822550
Author: Mike Frysinger vapier AT gentoo DOT org
AuthorDate: Sat Mar 15 05:54:06 2014 +
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Sat Mar 15 05:54:06 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage-utils.git;a=commit;h=7edb8582

qdepends: fix assert after eat_file rework

The assert no longer makes sense since the buffer is dynamically
allocated.  Rework the logic to handle any sized buffer.

URL: https://bugs.gentoo.org/504636

---
 qdepends.c | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/qdepends.c b/qdepends.c
index bc51e02..96f757b 100644
--- a/qdepends.c
+++ b/qdepends.c
@@ -484,13 +484,16 @@ _q_static int qdepends_vdb_deep_cb(q_vdb_pkg_ctx 
*pkg_ctx, void *priv)
IF_DEBUG(dep_dump_tree(dep_tree));
 
if (q_vdb_pkg_eat(pkg_ctx, USE, use, use_len))
-   use[0] = ' ';
+   use[0] = '\0';
 
for (ptr = use; *ptr; ++ptr)
if (*ptr == '\n' || *ptr == '\t')
*ptr = ' ';
-   len = strlen(use);
-   assert(len+1  sizeof(use));
+   len = ptr - use;
+   if (len == use_len) {
+   use_len += BUFSIZE;
+   use = xrealloc(use, use_len);
+   }
use[len] = ' ';
use[len+1] = '\0';
memmove(use+1, use, len);



[gentoo-commits] gentoo-x86 commit in dev-python/six: six-1.6.1.ebuild ChangeLog

2014-03-15 Thread Tim Harder (radhermit)
radhermit14/03/15 06:09:19

  Modified: ChangeLog
  Added:six-1.6.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.38 dev-python/six/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   8 Jan 2014 05:35:32 -   1.37
+++ ChangeLog   15 Mar 2014 06:09:18 -  1.38
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/six
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v 1.37 2014/01/08 
05:35:32 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v 1.38 2014/03/15 
06:09:18 radhermit Exp $
+
+*six-1.6.1 (15 Mar 2014)
+
+  15 Mar 2014; Tim Harder radher...@gentoo.org +six-1.6.1.ebuild:
+  Version bump.
 
   08 Jan 2014; Ian Delaney idel...@gentoo.org six-1.5.2.ebuild:
   Add ~sparc keyword, again



1.1  dev-python/six/six-1.6.1.ebuild

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

Index: six-1.6.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/six/six-1.6.1.ebuild,v 1.1 
2014/03/15 06:09:18 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )

inherit distutils-r1

DESCRIPTION=Python 2 and 3 compatibility library
HOMEPAGE=https://bitbucket.org/gutworth/six http://pypi.python.org/pypi/six;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos
IUSE=doc test

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

PATCHES=( ${FILESDIR}/${PN}-1.5.2-mapping.patch )

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

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

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






[gentoo-commits] gentoo-x86 commit in app-portage/portage-utils: portage-utils-0.52.ebuild ChangeLog

2014-03-15 Thread Mike Frysinger (vapier)
vapier  14/03/15 06:12:38

  Modified: ChangeLog
  Added:portage-utils-0.52.ebuild
  Log:
  Fix crash in `qdepends -Q` #504636 by josef.95.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.155app-portage/portage-utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/portage-utils/ChangeLog?rev=1.155view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/portage-utils/ChangeLog?rev=1.155content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/portage-utils/ChangeLog?r1=1.154r2=1.155

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-portage/portage-utils/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog   11 Mar 2014 04:55:52 -  1.154
+++ ChangeLog   15 Mar 2014 06:12:38 -  1.155
@@ -1,6 +1,11 @@
 # ChangeLog for app-portage/portage-utils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/portage-utils/ChangeLog,v 1.154 
2014/03/11 04:55:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/portage-utils/ChangeLog,v 1.155 
2014/03/15 06:12:38 vapier Exp $
+
+*portage-utils-0.52 (15 Mar 2014)
+
+  15 Mar 2014; Mike Frysinger vap...@gentoo.org +portage-utils-0.52.ebuild:
+  Fix crash in `qdepends -Q` #504636 by josef.95.
 
 *portage-utils-0.51 (11 Mar 2014)
 



1.1  app-portage/portage-utils/portage-utils-0.52.ebuild

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

Index: portage-utils-0.52.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-portage/portage-utils/portage-utils-0.52.ebuild,v 
1.1 2014/03/15 06:12:38 vapier Exp $

EAPI=4

inherit flag-o-matic toolchain-funcs eutils

DESCRIPTION=small and fast portage helper tools written in C
HOMEPAGE=http://www.gentoo.org/doc/en/portage-utils.xml;
SRC_URI=mirror://gentoo/${P}.tar.xz
http://dev.gentoo.org/~vapier/dist/${P}.tar.xz;

LICENSE=GPL-2
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 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
IUSE=nls static

DEPEND=app-arch/xz-utils
RDEPEND=

src_prepare() {
epatch_user
}

src_configure() {
use static  append-ldflags -static

# Avoid slow configure+gnulib+make if on an up-to-date Linux system
if use prefix || ! use kernel_linux || \
   has_version 'sys-libs/glibc-2.10'
then
econf --with-eprefix=${EPREFIX}
else
tc-export CC
fi
}

src_compile() {
emake NLS=$(usex nls)
}

src_install() {
default

exeinto /etc/portage/bin
doexe ${FILESDIR}/post_sync
insinto /etc/portage/postsync.d
doins ${FILESDIR}/q-reinitialize

# Portage fixes shebangs, we just need to fix the paths in the files
sed -i \
-e s:\(/etc/portage/postsync.d\|/usr/bin/q\):${EPREFIX}:g \
${ED}/etc/portage/bin/post_sync \
${ED}/etc/portage/postsync.d/q-reinitialize || die
}

pkg_preinst() {
# preserve +x bit on postsync files #301721
local x
pushd ${ED} /dev/null
for x in etc/portage/postsync.d/* ; do
[[ -x ${EROOT}/${x} ]]  chmod +x ${x}
done
}

pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]] ; then
elog ${EPREFIX}/etc/portage/postsync.d/q-reinitialize has been 
installed for convenience
elog If you wish for it to be automatically run at the end of 
every --sync:
elog# chmod +x 
${EPREFIX}/etc/portage/postsync.d/q-reinitialize
elog Normally this should only take a few seconds to run but 
file systems
elog such as ext3 can take a lot longer.  To disable, simply 
do:
elog# chmod -x 
${EPREFIX}/etc/portage/postsync.d/q-reinitialize
fi
}






[gentoo-commits] gentoo-x86 commit in dev-python/six: six-1.6.1.ebuild ChangeLog six-9999.ebuild

2014-03-15 Thread Tim Harder (radhermit)
radhermit14/03/15 06:30:43

  Modified: six-1.6.1.ebuild ChangeLog six-.ebuild
  Log:
  Drop python version specific sphinx use deps and update live ebuild.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.2  dev-python/six/six-1.6.1.ebuild

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

Index: six-1.6.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/six/six-1.6.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- six-1.6.1.ebuild15 Mar 2014 06:09:18 -  1.1
+++ six-1.6.1.ebuild15 Mar 2014 06:30:42 -  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-python/six/six-1.6.1.ebuild,v 1.1 
2014/03/15 06:09:18 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/six/six-1.6.1.ebuild,v 1.2 
2014/03/15 06:30:42 radhermit Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
@@ -16,7 +16,7 @@
 KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos
 IUSE=doc test
 
-DEPEND=doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+DEPEND=doc? ( dev-python/sphinx )
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
 
 PATCHES=( ${FILESDIR}/${PN}-1.5.2-mapping.patch )



1.39 dev-python/six/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   15 Mar 2014 06:09:18 -  1.38
+++ ChangeLog   15 Mar 2014 06:30:42 -  1.39
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/six
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v 1.38 2014/03/15 
06:09:18 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v 1.39 2014/03/15 
06:30:42 radhermit Exp $
+
+  15 Mar 2014; Tim Harder radher...@gentoo.org six-1.6.1.ebuild,
+  six-.ebuild:
+  Drop python version specific sphinx use deps and update live ebuild.
 
 *six-1.6.1 (15 Mar 2014)
 



1.8  dev-python/six/six-.ebuild

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

Index: six-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/six/six-.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- six-.ebuild 21 Oct 2013 12:03:48 -  1.7
+++ six-.ebuild 15 Mar 2014 06:30:42 -  1.8
@@ -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/dev-python/six/six-.ebuild,v 1.7 
2013/10/21 12:03:48 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/six/six-.ebuild,v 1.8 
2014/03/15 06:30:42 radhermit Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
@@ -30,23 +30,15 @@
 KEYWORDS=
 #endif
 
-python_prepare_all() {
-   # disable tests that require tkinter
-   sed -i -e s/test_move_items/_/ test_six.py || die
-
-   distutils-r1_python_prepare_all
-}
-
 python_compile_all() {
use doc  emake -C documentation html
 }
 
 python_test() {
-   py.test || die
+   py.test -v || die Testing failed with ${EPYTHON}
 }
 
 python_install_all() {
use doc  local HTML_DOCS=( documentation/_build/html/ )
-
distutils-r1_python_install_all
 }






[gentoo-commits] gentoo-x86 commit in dev-perl/locale-maketext-lexicon: locale-maketext-lexicon-0.960.0.ebuild ChangeLog

2014-03-15 Thread Mikle Kolyada (zlogene)
zlogene 14/03/15 06:50:07

  Modified: locale-maketext-lexicon-0.960.0.ebuild ChangeLog
  Log:
  alpha stable wrt bug #495542
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.7  
dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.960.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.960.0.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.960.0.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.960.0.ebuild?r1=1.6r2=1.7

Index: locale-maketext-lexicon-0.960.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.960.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- locale-maketext-lexicon-0.960.0.ebuild  12 Mar 2014 10:21:38 -  
1.6
+++ locale-maketext-lexicon-0.960.0.ebuild  15 Mar 2014 06:50:07 -  
1.7
@@ -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-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.960.0.ebuild,v
 1.6 2014/03/12 10:21:38 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.960.0.ebuild,v
 1.7 2014/03/15 06:50:07 zlogene Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~alpha amd64 hppa ia64 ~ppc sparc x86 ~amd64-fbsd
+KEYWORDS=alpha amd64 hppa ia64 ~ppc sparc x86 ~amd64-fbsd
 IUSE=test
 
 RDEPEND=



1.90 dev-perl/locale-maketext-lexicon/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/locale-maketext-lexicon/ChangeLog?rev=1.90view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/locale-maketext-lexicon/ChangeLog?rev=1.90content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/locale-maketext-lexicon/ChangeLog?r1=1.89r2=1.90

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/locale-maketext-lexicon/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog   12 Mar 2014 10:21:38 -  1.89
+++ ChangeLog   15 Mar 2014 06:50:07 -  1.90
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/locale-maketext-lexicon
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/locale-maketext-lexicon/ChangeLog,v 1.89 
2014/03/12 10:21:38 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/locale-maketext-lexicon/ChangeLog,v 1.90 
2014/03/15 06:50:07 zlogene Exp $
+
+  15 Mar 2014; Mikle Kolyada zlog...@gentoo.org
+  locale-maketext-lexicon-0.960.0.ebuild:
+  alpha stable wrt bug #495542
 
   12 Mar 2014; Agostino Sarubbo a...@gentoo.org
   locale-maketext-lexicon-0.960.0.ebuild:






[gentoo-commits] proj/kde:master commit in: kde-base/umbrello/

2014-03-15 Thread Michael Palimaka
commit: 2846c65feb6e2f42abd2835932ab4dab466d665d
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Sat Mar 15 07:00:32 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Sat Mar 15 07:00:41 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2846c65f

[kde-base/umbrello] Boost is no longer a dependency.

Upstream commit 40d4232ad0a67ecea3d5fbc5bb2fbf2fef44b873.

Package-Manager: portage-2.2.8-r1

---
 kde-base/umbrello/umbrello-4.12.90.ebuild  | 4 +---
 kde-base/umbrello/umbrello-4.13.49..ebuild | 4 +---
 kde-base/umbrello/umbrello-.ebuild | 4 +---
 3 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/kde-base/umbrello/umbrello-4.12.90.ebuild 
b/kde-base/umbrello/umbrello-4.12.90.ebuild
index 10ffbd8..37a8a96 100644
--- a/kde-base/umbrello/umbrello-4.12.90.ebuild
+++ b/kde-base/umbrello/umbrello-4.12.90.ebuild
@@ -19,6 +19,4 @@ RDEPEND=
dev-libs/libxml2
dev-libs/libxslt
 
-DEPEND=${RDEPEND}
-   dev-libs/boost
-
+DEPEND=${RDEPEND}

diff --git a/kde-base/umbrello/umbrello-4.13.49..ebuild 
b/kde-base/umbrello/umbrello-4.13.49..ebuild
index 7d75469..185b548 100644
--- a/kde-base/umbrello/umbrello-4.13.49..ebuild
+++ b/kde-base/umbrello/umbrello-4.13.49..ebuild
@@ -19,6 +19,4 @@ RDEPEND=
dev-libs/libxml2
dev-libs/libxslt
 
-DEPEND=${RDEPEND}
-   dev-libs/boost
-
+DEPEND=${RDEPEND}

diff --git a/kde-base/umbrello/umbrello-.ebuild 
b/kde-base/umbrello/umbrello-.ebuild
index 7d75469..185b548 100644
--- a/kde-base/umbrello/umbrello-.ebuild
+++ b/kde-base/umbrello/umbrello-.ebuild
@@ -19,6 +19,4 @@ RDEPEND=
dev-libs/libxml2
dev-libs/libxslt
 
-DEPEND=${RDEPEND}
-   dev-libs/boost
-
+DEPEND=${RDEPEND}



[gentoo-commits] gentoo-x86 commit in media-sound/soundkonverter: soundkonverter-2.1.0.ebuild soundkonverter-2.0.3.ebuild soundkonverter-2.0.4.ebuild ChangeLog

2014-03-15 Thread Michael Palimaka (kensington)
kensington14/03/15 07:31:23

  Modified: soundkonverter-2.1.0.ebuild
soundkonverter-2.0.3.ebuild
soundkonverter-2.0.4.ebuild ChangeLog
  Log:
  Add missing sys-devel/gettext dependency by Nikoli nik...@gmx.us wrt bug 
#504656.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x06B1F38DCA45A1EC!)

Revision  ChangesPath
1.2  media-sound/soundkonverter/soundkonverter-2.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.1.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.1.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.1.0.ebuild?r1=1.1r2=1.2

Index: soundkonverter-2.1.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- soundkonverter-2.1.0.ebuild 14 Mar 2014 08:18:39 -  1.1
+++ soundkonverter-2.1.0.ebuild 15 Mar 2014 07:31:23 -  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-sound/soundkonverter/soundkonverter-2.1.0.ebuild,v
 1.1 2014/03/14 08:18:39 kensington Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.1.0.ebuild,v
 1.2 2014/03/15 07:31:23 kensington Exp $
 
 EAPI=5
 
@@ -16,12 +16,14 @@
 KEYWORDS=~amd64 ~x86
 IUSE=debug
 
-DEPEND=
+RDEPEND=
$(add_kdebase_dep libkcddb)
media-libs/taglib
media-sound/cdparanoia
 
-RDEPEND=${DEPEND}
+DEPEND=${RDEPEND}
+   sys-devel/gettext
+
 
 pkg_postinst() {
elog soundKonverter optionally supports many different audio formats.



1.4  media-sound/soundkonverter/soundkonverter-2.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.3.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.3.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.3.ebuild?r1=1.3r2=1.4

Index: soundkonverter-2.0.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- soundkonverter-2.0.3.ebuild 1 Nov 2013 13:51:34 -   1.3
+++ soundkonverter-2.0.3.ebuild 15 Mar 2014 07:31:23 -  1.4
@@ -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/media-sound/soundkonverter/soundkonverter-2.0.3.ebuild,v
 1.3 2013/11/01 13:51:34 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.3.ebuild,v
 1.4 2014/03/15 07:31:23 kensington Exp $
 
 EAPI=5
 
@@ -16,12 +16,14 @@
 KEYWORDS=amd64 x86
 IUSE=debug
 
-DEPEND=
+RDEPEND=
$(add_kdebase_dep libkcddb)
media-libs/taglib
media-sound/cdparanoia
 
-RDEPEND=${DEPEND}
+DEPEND=${RDEPEND}
+   sys-devel/gettext
+
 
 pkg_postinst() {
elog soundKonverter optionally supports many different audio formats.



1.2  media-sound/soundkonverter/soundkonverter-2.0.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.4.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.4.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.4.ebuild?r1=1.1r2=1.2

Index: soundkonverter-2.0.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- soundkonverter-2.0.4.ebuild 3 Nov 2013 11:31:51 -   1.1
+++ soundkonverter-2.0.4.ebuild 15 Mar 2014 07:31:23 -  1.2
@@ -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/media-sound/soundkonverter/soundkonverter-2.0.4.ebuild,v
 1.1 2013/11/03 11:31:51 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-sound/soundkonverter/soundkonverter-2.0.4.ebuild,v
 1.2 2014/03/15 07:31:23 kensington Exp $
 

[gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/, pym/_emerge/

2014-03-15 Thread Brian Dolbec
commit: 7c593f727587313b5ffe9c70d7a432b2f0487a21
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Sat Mar 15 07:55:30 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Sat Mar 15 07:55:30 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=7c593f72

portage/sync: Move the Modules  and SyncManager initialization code to 
sync/__init__.py

This creates a central place to store a single instance of the SyncManager.
It also makes the module names available for use in repository/config.py for 
repos.conf checks.

---
 pym/_emerge/actions.py |  8 
 pym/portage/sync/__init__.py   | 34 ++
 pym/portage/sync/controller.py |  8 +---
 3 files changed, 39 insertions(+), 11 deletions(-)

diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
index 6f4de04..f76a3dc 100644
--- a/pym/_emerge/actions.py
+++ b/pym/_emerge/actions.py
@@ -62,7 +62,9 @@ from portage.util._async.run_main_scheduler import 
run_main_scheduler
 from portage.util._async.SchedulerInterface import SchedulerInterface
 from portage.util._eventloop.global_event_loop import global_event_loop
 from portage._global_updates import _global_updates
-from portage.sync.controller import SyncManager
+from portage.sync import get_syncer
+from portage.sync.getaddrinfo_validate import getaddrinfo_validate
+from portage.sync.old_tree_timestamp import old_tree_timestamp_warn
 from portage.metadata import action_metadata
 
 from _emerge.clear_caches import clear_caches
@@ -81,8 +83,6 @@ from _emerge.Scheduler import Scheduler
 from _emerge.search import search
 from _emerge.SetArg import SetArg
 from _emerge.show_invalid_depstring_notice import show_invalid_depstring_notice
-from portage.sync.getaddrinfo_validate import getaddrinfo_validate
-from portage.sync.old_tree_timestamp import old_tree_timestamp_warn
 from _emerge.unmerge import unmerge
 from _emerge.UnmergeDepPriority import UnmergeDepPriority
 from _emerge.UseFlagDisplay import pkg_use_display
@@ -1875,7 +1875,7 @@ def action_sync(emerge_config, trees=DeprecationWarning,
else:

selected_repos.extend(emerge_config.target_config.settings.repositories)
 
-   sync_manager = SyncManager(emerge_config.target_config.settings, 
emergelog)
+   sync_manager = get_syncer(emerge_config.target_config.settings, 
emergelog)
retvals = []
for repo in selected_repos:
if repo.sync_type is not None:

diff --git a/pym/portage/sync/__init__.py b/pym/portage/sync/__init__.py
index 21a391a..65498ec 100644
--- a/pym/portage/sync/__init__.py
+++ b/pym/portage/sync/__init__.py
@@ -1,2 +1,36 @@
 # Copyright 2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
+
+import os
+
+from portage.emaint.module import Modules
+from portage.sync.controller import SyncManager
+
+sync_manager = None
+
+path = os.path.join(os.path.dirname(__file__), modules)
+# initial development debug info
+print(module path:, path)
+
+module_controller = Modules(path=path, namepath=portage.sync.modules)
+
+# initial development debug info
+print(module_controller.module_names)
+module_names = module_controller.module_names[:]
+
+
+def get_syncer(settings=None, logger=None):
+   global sync_manager
+   if sync_manager and not settings and not logger:
+   return sync_manager
+   if settings is None:
+   from _emerge.actions import load_emerge_config
+   emerge_config = load_emerge_config()
+   settings = emerge_config.target_config.settings
+   if logger is None:
+   from _emerge.emergelog import emergelog as logger
+   sync_manager = SyncManager(settings, logger)
+   return sync_manager
+
+
+

diff --git a/pym/portage/sync/controller.py b/pym/portage/sync/controller.py
index a4b2ab8..e53d173 100644
--- a/pym/portage/sync/controller.py
+++ b/pym/portage/sync/controller.py
@@ -10,7 +10,6 @@ import pwd
 
 import portage
 from portage import os
-from portage.emaint.module import Modules
 from portage.emaint.progress import ProgressBar
 #from portage.emaint.defaults import DEFAULT_OPTIONS
 #from portage.util._argparse import ArgumentParser
@@ -85,13 +84,8 @@ class SyncManager(object):
# files have sane permissions.
os.umask(0o22)
 
-   path = os.path.join(os.path.dirname(__file__), modules)
-   print(module path:, path)
-   self.module_controller = Modules(path=path,
-   namepath=portage.sync.modules)
-   print(self.module_controller.module_names)
+   self.module_controller = portage.sync.module_controller
self.module_names = self.module_controller.module_names[:]
-   #self.module_names.insert(0, all)
 
 
def get_modules(self, mod):



[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: ChangeLog dbus-1.6.18.ebuild dbus-1.6.12.ebuild dbus-1.6.14.ebuild dbus-1.6.16.ebuild

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 08:27:43

  Modified: ChangeLog
  Removed:  dbus-1.6.18.ebuild dbus-1.6.12.ebuild
dbus-1.6.14.ebuild dbus-1.6.16.ebuild
  Log:
  old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.414sys-apps/dbus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?rev=1.414view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?rev=1.414content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?r1=1.413r2=1.414

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v
retrieving revision 1.413
retrieving revision 1.414
diff -u -r1.413 -r1.414
--- ChangeLog   14 Mar 2014 22:13:56 -  1.413
+++ ChangeLog   15 Mar 2014 08:27:43 -  1.414
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/dbus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.413 2014/03/14 
22:13:56 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.414 2014/03/15 
08:27:43 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org -dbus-1.6.12.ebuild,
+  -dbus-1.6.14.ebuild, -dbus-1.6.16.ebuild, -dbus-1.6.18.ebuild:
+  old
 
   14 Mar 2014; Matt Turner matts...@gentoo.org dbus-1.6.18-r1.ebuild:
   alpha stable, bug #496628.






[gentoo-commits] proj/kde:master commit in: kde-base/kdm/

2014-03-15 Thread Johannes Huber
commit: de1917538387e956d24b3cd2950bac0d9863db7f
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Sat Mar 15 09:08:06 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Sat Mar 15 09:08:17 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=de191753

[kde-base/kdm] DEPEND on sys-apps/systemd-sysv-utils to fix bug #479426. Thanks 
to Manuel Sput Nickschas for the hint.

Package-Manager: portage-2.2.8-r1

---
 kde-base/kdm/kdm-4.11.49..ebuild | 5 -
 kde-base/kdm/kdm-.ebuild | 5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/kde-base/kdm/kdm-4.11.49..ebuild 
b/kde-base/kdm/kdm-4.11.49..ebuild
index e27e1f1..082b63f 100644
--- a/kde-base/kdm/kdm-4.11.49..ebuild
+++ b/kde-base/kdm/kdm-4.11.49..ebuild
@@ -30,7 +30,10 @@ DEPEND=
$(add_kdebase_dep kcheckpass)
virtual/pam
)
-   systemd? ( sys-apps/systemd )
+   systemd? (
+   sys-apps/systemd
+   sys-apps/systemd-sysv-utils
+   )
 
 RDEPEND=${DEPEND}
$(add_kdebase_dep kdepasswd)

diff --git a/kde-base/kdm/kdm-.ebuild b/kde-base/kdm/kdm-.ebuild
index e27e1f1..082b63f 100644
--- a/kde-base/kdm/kdm-.ebuild
+++ b/kde-base/kdm/kdm-.ebuild
@@ -30,7 +30,10 @@ DEPEND=
$(add_kdebase_dep kcheckpass)
virtual/pam
)
-   systemd? ( sys-apps/systemd )
+   systemd? (
+   sys-apps/systemd
+   sys-apps/systemd-sysv-utils
+   )
 
 RDEPEND=${DEPEND}
$(add_kdebase_dep kdepasswd)



[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog

2014-03-15 Thread Alexis Ballier (aballier)
aballier14/03/15 09:17:06

  Modified: ffmpeg-.ebuild ChangeLog
  Log:
  drop vis useflag, removed upstream
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.151media-video/ffmpeg/ffmpeg-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild?rev=1.151view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild?rev=1.151content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild?r1=1.150r2=1.151

Index: ffmpeg-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ffmpeg-.ebuild  12 Mar 2014 20:50:25 -  1.150
+++ ffmpeg-.ebuild  15 Mar 2014 09:17:06 -  1.151
@@ -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/ffmpeg/ffmpeg-.ebuild,v 
1.150 2014/03/12 20:50:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-.ebuild,v 
1.151 2014/03/15 09:17:06 aballier Exp $
 
 EAPI=5
 
@@ -52,7 +52,6 @@
 ARM_CPU_FEATURES=armv5te armv6 armv6t2 neon armvfp:vfp
 MIPS_CPU_FEATURES=mips32r2 mipsdspr1 mipsdspr2 mipsfpu
 PPC_CPU_FEATURES=altivec
-SPARC_CPU_FEATURES=vis
 X86_CPU_FEATURES=3dnow:amd3dnow 3dnowext:amd3dnowext avx avx2 fma3 fma4 mmx 
mmxext sse sse2 sse3 ssse3 sse4 sse4_2:sse42
 
 # String for CPU features in the useflag[:configure_option] form
@@ -61,7 +60,6 @@
${ARM_CPU_FEATURES}
${MIPS_CPU_FEATURES}
${PPC_CPU_FEATURES}
-   ${SPARC_CPU_FEATURES}
${X86_CPU_FEATURES}
 
 



1.722media-video/ffmpeg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.721
retrieving revision 1.722
diff -u -r1.721 -r1.722
--- ChangeLog   12 Mar 2014 20:50:25 -  1.721
+++ ChangeLog   15 Mar 2014 09:17:06 -  1.722
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.721 
2014/03/12 20:50:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.722 
2014/03/15 09:17:06 aballier Exp $
+
+  15 Mar 2014; Alexis Ballier aball...@gentoo.org ffmpeg-.ebuild:
+  drop vis useflag, removed upstream
 
   12 Mar 2014; Alexis Ballier aball...@gentoo.org ffmpeg-.ebuild:
   add x265 support, bug #502068 by Michal Feix






[gentoo-commits] gentoo-x86 commit in dev-perl/Text-CSV: Text-CSV-1.320.0.ebuild ChangeLog

2014-03-15 Thread Mikle Kolyada (zlogene)
zlogene 14/03/15 10:03:00

  Modified: Text-CSV-1.320.0.ebuild ChangeLog
  Log:
  alpha stable wrt bug #495494
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.9  dev-perl/Text-CSV/Text-CSV-1.320.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-CSV/Text-CSV-1.320.0.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-CSV/Text-CSV-1.320.0.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-CSV/Text-CSV-1.320.0.ebuild?r1=1.8r2=1.9

Index: Text-CSV-1.320.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV/Text-CSV-1.320.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Text-CSV-1.320.0.ebuild 12 Mar 2014 09:58:18 -  1.8
+++ Text-CSV-1.320.0.ebuild 15 Mar 2014 10:03:00 -  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/dev-perl/Text-CSV/Text-CSV-1.320.0.ebuild,v 
1.8 2014/03/12 09:58:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV/Text-CSV-1.320.0.ebuild,v 
1.9 2014/03/15 10:03:00 zlogene Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 DESCRIPTION=Manipulate comma-separated value strings
 
 SLOT=0
-KEYWORDS=~alpha amd64 arm ia64 ppc ppc64 sparc x86
+KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sparc x86
 IUSE=test
 
 RDEPEND=



1.56 dev-perl/Text-CSV/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-CSV/ChangeLog?rev=1.56view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-CSV/ChangeLog?rev=1.56content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-CSV/ChangeLog?r1=1.55r2=1.56

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   12 Mar 2014 09:58:18 -  1.55
+++ ChangeLog   15 Mar 2014 10:03:00 -  1.56
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Text-CSV
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV/ChangeLog,v 1.55 
2014/03/12 09:58:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV/ChangeLog,v 1.56 
2014/03/15 10:03:00 zlogene Exp $
+
+  15 Mar 2014; Mikle Kolyada zlog...@gentoo.org Text-CSV-1.320.0.ebuild:
+  alpha stable wrt bug #495494
 
   12 Mar 2014; Agostino Sarubbo a...@gentoo.org Text-CSV-1.320.0.ebuild:
   Stable for sparc, wrt bug #495494






[gentoo-commits] gentoo-x86 commit in dev-perl/set-scalar: set-scalar-1.280.0.ebuild ChangeLog

2014-03-15 Thread Mikle Kolyada (zlogene)
zlogene 14/03/15 10:09:58

  Modified: ChangeLog
  Added:set-scalar-1.280.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.51 dev-perl/set-scalar/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/ChangeLog?rev=1.51view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/ChangeLog?rev=1.51content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/ChangeLog?r1=1.50r2=1.51

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/set-scalar/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog   12 Mar 2014 10:05:46 -  1.50
+++ ChangeLog   15 Mar 2014 10:09:58 -  1.51
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/set-scalar
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/set-scalar/ChangeLog,v 1.50 
2014/03/12 10:05:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/set-scalar/ChangeLog,v 1.51 
2014/03/15 10:09:58 zlogene Exp $
+
+*set-scalar-1.280.0 (15 Mar 2014)
+
+  15 Mar 2014; Mikle Kolyada zlog...@gentoo.org +set-scalar-1.280.0.ebuild:
+  Version bump
 
   12 Mar 2014; Agostino Sarubbo a...@gentoo.org set-scalar-1.260.0.ebuild:
   Stable for sparc, wrt bug #495552



1.1  dev-perl/set-scalar/set-scalar-1.280.0.ebuild

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

Index: set-scalar-1.280.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/set-scalar/set-scalar-1.280.0.ebuild,v 1.1 
2014/03/15 10:09:58 zlogene Exp $

EAPI=5

MY_PN=Set-Scalar
MODULE_AUTHOR=DAVIDO
MODULE_VERSION=1.28
inherit perl-module

DESCRIPTION=Scalar set operations

SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris
IUSE=

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-2.38.2-r1.ebuild ChangeLog

2014-03-15 Thread Pacho Ramos (pacho)
pacho   14/03/15 10:10:02

  Modified: glib-2.38.2-r1.ebuild ChangeLog
  Log:
  amd64 stable, bug #501330
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.2  dev-libs/glib/glib-2.38.2-r1.ebuild

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

Index: glib-2.38.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.38.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glib-2.38.2-r1.ebuild   14 Mar 2014 04:37:54 -  1.1
+++ glib-2.38.2-r1.ebuild   15 Mar 2014 10:10:02 -  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/glib/glib-2.38.2-r1.ebuild,v 1.1 
2014/03/14 04:37:54 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.38.2-r1.ebuild,v 1.2 
2014/03/15 10:10:02 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{6,7} )
@@ -16,7 +16,7 @@
 LICENSE=LGPL-2+
 SLOT=2
 IUSE=debug fam kernel_linux selinux static-libs systemtap test utils xattr
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux
 
 # FIXME: want libselinux[${MULTILIB_USEDEP}] - bug #480960
 RDEPEND=



1.596dev-libs/glib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.595
retrieving revision 1.596
diff -u -r1.595 -r1.596
--- ChangeLog   14 Mar 2014 04:37:54 -  1.595
+++ ChangeLog   15 Mar 2014 10:10:02 -  1.596
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.595 2014/03/14 
04:37:54 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.596 2014/03/15 
10:10:02 pacho Exp $
+
+  15 Mar 2014; Pacho Ramos pa...@gentoo.org glib-2.38.2-r1.ebuild:
+  amd64 stable, bug #501330
 
 *glib-2.38.2-r1 (14 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/set-scalar: set-scalar-1.260.0.ebuild ChangeLog set-scalar-1.250.0.ebuild

2014-03-15 Thread Mikle Kolyada (zlogene)
zlogene 14/03/15 10:11:37

  Modified: set-scalar-1.260.0.ebuild ChangeLog
  Removed:  set-scalar-1.250.0.ebuild
  Log:
  alpha stable wrt bug #495552; Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.9  dev-perl/set-scalar/set-scalar-1.260.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/set-scalar-1.260.0.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/set-scalar-1.260.0.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/set-scalar-1.260.0.ebuild?r1=1.8r2=1.9

Index: set-scalar-1.260.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/set-scalar/set-scalar-1.260.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- set-scalar-1.260.0.ebuild   12 Mar 2014 10:05:46 -  1.8
+++ set-scalar-1.260.0.ebuild   15 Mar 2014 10:11: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/dev-perl/set-scalar/set-scalar-1.260.0.ebuild,v 1.8 
2014/03/12 10:05:46 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/set-scalar/set-scalar-1.260.0.ebuild,v 1.9 
2014/03/15 10:11:36 zlogene Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 DESCRIPTION=Scalar set operations
 
 SLOT=0
-KEYWORDS=~alpha amd64 arm hppa ia64 ~m68k ppc ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ppc ~s390 ~sh sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris
 IUSE=
 
 SRC_TEST=do



1.52 dev-perl/set-scalar/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/ChangeLog?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/ChangeLog?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/set-scalar/ChangeLog?r1=1.51r2=1.52

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/set-scalar/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   15 Mar 2014 10:09:58 -  1.51
+++ ChangeLog   15 Mar 2014 10:11:36 -  1.52
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/set-scalar
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/set-scalar/ChangeLog,v 1.51 
2014/03/15 10:09:58 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/set-scalar/ChangeLog,v 1.52 
2014/03/15 10:11:36 zlogene Exp $
+
+  15 Mar 2014; Mikle Kolyada zlog...@gentoo.org -set-scalar-1.250.0.ebuild,
+  set-scalar-1.260.0.ebuild:
+  alpha stable wrt bug #495552; Drop old.
 
 *set-scalar-1.280.0 (15 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-tex/pgf: ChangeLog pgf-3.0.0.ebuild

2014-03-15 Thread Alexis Ballier (aballier)
aballier14/03/15 10:17:30

  Modified: ChangeLog
  Added:pgf-3.0.0.ebuild
  Log:
  Version bump, bug #497436. Fixes bugs #406783 and #399087. Symlink docs from 
the texmf tree so that texdoc finds it, bug #441874.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.66 dev-tex/pgf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pgf/ChangeLog?rev=1.66view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pgf/ChangeLog?rev=1.66content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pgf/ChangeLog?r1=1.65r2=1.66

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-tex/pgf/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   9 May 2012 16:27:02 -   1.65
+++ ChangeLog   15 Mar 2014 10:17:30 -  1.66
@@ -1,6 +1,12 @@
 # ChangeLog for dev-tex/pgf
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/pgf/ChangeLog,v 1.65 2012/05/09 
16:27:02 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/pgf/ChangeLog,v 1.66 2014/03/15 
10:17:30 aballier Exp $
+
+*pgf-3.0.0 (15 Mar 2014)
+
+  15 Mar 2014; Alexis Ballier aball...@gentoo.org +pgf-3.0.0.ebuild:
+  Version bump, bug #497436. Fixes bugs #406783 and #399087. Symlink docs from
+  the texmf tree so that texdoc finds it, bug #441874.
 
   09 May 2012; Alexis Ballier aball...@gentoo.org pgf-2.10.ebuild:
   keyword ~amd64-fbsd



1.1  dev-tex/pgf/pgf-3.0.0.ebuild

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

Index: pgf-3.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/pgf/pgf-3.0.0.ebuild,v 1.1 
2014/03/15 10:17:30 aballier Exp $

inherit latex-package

DESCRIPTION=pgf -- The TeX Portable Graphic Format
HOMEPAGE=http://sourceforge.net/projects/pgf;
SRC_URI=mirror://sourceforge/pgf/${PN}_${PV}.tds.zip

LICENSE=GPL-2 LPPL-1.3c FDL-1.2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
IUSE=doc source

RDEPEND=dev-texlive/texlive-latexrecommended
=dev-tex/xcolor-2.11
DEPEND=${RDEPEND}
app-arch/unzip

S=${WORKDIR}

src_install() {
insinto ${TEXMF}
doins -r tex || die

if use source ; then
doins -r source || die
fi

cd ${S}/doc/generic/pgf
dodoc AUTHORS ChangeLog README || die
if use doc ; then
insinto /usr/share/doc/${PF}/texdoc
doins pgfmanual.pdf || die
doins -r images macros text-en version-* || die
dosym /usr/share/doc/${PF}/texdoc ${TEXMF}/doc/latex/${PN} || 
die
fi
}






[gentoo-commits] gentoo-x86 commit in profiles/arch/alpha: package.use.mask

2014-03-15 Thread Pacho Ramos (pacho)
pacho   14/03/15 10:26:55

  Modified: package.use.mask
  Log:
  Mask rdp USE due missing keywords, bug #504672

Revision  ChangesPath
1.148profiles/arch/alpha/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.148view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.148content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?r1=1.147r2=1.148

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- package.use.mask22 Feb 2014 08:38:43 -  1.147
+++ package.use.mask15 Mar 2014 10:26:55 -  1.148
@@ -1,15 +1,19 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.147 2014/02/22 08:38:43 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.148 2014/03/15 10:26:55 pacho Exp $
 
-# Pacho Ramos pa...@gentoo.org (22 Feb 2013)
+# Pacho Ramos pa...@gentoo.org (15 Mar 2014)
+# Missing keywords, bug #504672
+=net-misc/vinagre-3.10 rdp
+
+# Pacho Ramos pa...@gentoo.org (22 Feb 2014)
 # Missing keywords, bug #495250
 =gnome-base/gnome-extra-apps-3.10 tracker
 
-# Pacho Ramos pa...@gentoo.org (11 Jan 2013)
+# Pacho Ramos pa...@gentoo.org (11 Jan 2014)
 sys-kernel/dracut -dracut_modules_systemd
 
-# Pacho Ramos pa...@gentoo.org (08 Jan 2013)
+# Pacho Ramos pa...@gentoo.org (08 Jan 2014)
 # systemd[pam] cannot be provided for alpha, bug #438368
 gnome-base/gdm systemd
 sys-auth/pambase systemd






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2014-03-15 Thread Pacho Ramos (pacho)
pacho   14/03/15 10:26:55

  Modified: ChangeLog
  Log:
  Mask rdp USE due missing keywords, bug #504672

Revision  ChangesPath
1.8698   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8697
retrieving revision 1.8698
diff -u -r1.8697 -r1.8698
--- ChangeLog   14 Mar 2014 08:56:33 -  1.8697
+++ ChangeLog   15 Mar 2014 10:26:54 -  1.8698
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8697 2014/03/14 
08:56:33 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8698 2014/03/15 
10:26:54 pacho 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!
 
+  15 Mar 2014; Pacho Ramos pa...@gentoo.org arch/alpha/package.use.mask,
+  arch/ia64/package.use.mask, arch/sparc/package.use.mask:
+  Mask rdp USE due missing keywords, bug #504672
+
   14 Mar 2014; Lars Wendler polynomia...@gentoo.org package.mask:
   Masked net-fs/samba-3.6 for security reasons.
 






[gentoo-commits] gentoo-x86 commit in profiles/arch/ia64: package.use.mask

2014-03-15 Thread Pacho Ramos (pacho)
pacho   14/03/15 10:26:55

  Modified: package.use.mask
  Log:
  Mask rdp USE due missing keywords, bug #504672

Revision  ChangesPath
1.141profiles/arch/ia64/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?rev=1.141view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?rev=1.141content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?r1=1.140r2=1.141

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- package.use.mask23 Feb 2014 10:49:49 -  1.140
+++ package.use.mask15 Mar 2014 10:26:55 -  1.141
@@ -1,12 +1,16 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.140 
2014/02/23 10:49:49 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.141 
2014/03/15 10:26:55 pacho Exp $
 
-# Pacho Ramos pa...@gentoo.org (23 Feb 2013)
+# Pacho Ramos pa...@gentoo.org (15 Mar 2014)
+# Missing keywords, bug #504672
+=net-misc/vinagre-3.10 rdp
+
+# Pacho Ramos pa...@gentoo.org (23 Feb 2014)
 # Needed dependencies cannot be installed on ia64, bug #498638
 dev-util/dbus-test-runner test
 
-# Pacho Ramos pa...@gentoo.org (22 Feb 2013)
+# Pacho Ramos pa...@gentoo.org (22 Feb 2014)
 # Missing keywords, bug #495250
 =gnome-base/gnome-extra-apps-3.10 tracker
 






[gentoo-commits] gentoo-x86 commit in dev-python/cryptography: ChangeLog cryptography-0.2.2.ebuild

2014-03-15 Thread Tim Harder (radhermit)
radhermit14/03/15 10:30:16

  Modified: ChangeLog
  Added:cryptography-0.2.2.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.6  dev-python/cryptography/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   4 Mar 2014 20:55:05 -   1.5
+++ ChangeLog   15 Mar 2014 10:30:16 -  1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/cryptography
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v 1.5 
2014/03/04 20:55:05 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v 1.6 
2014/03/15 10:30:16 radhermit Exp $
+
+*cryptography-0.2.2 (15 Mar 2014)
+
+  15 Mar 2014; Tim Harder radher...@gentoo.org +cryptography-0.2.2.ebuild:
+  Version bump.
 
   04 Mar 2014; Naohiro Aota na...@gentoo.org cryptography-0.2.1.ebuild:
   Add ~x86-fbsd wrt bug #503094



1.1  dev-python/cryptography/cryptography-0.2.2.ebuild

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

Index: cryptography-0.2.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/cryptography/cryptography-0.2.2.ebuild,v 1.1 
2014/03/15 10:30:16 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )

inherit distutils-r1

DESCRIPTION=Library providing cryptographic recipes and primitives
HOMEPAGE=https://github.com/pyca/cryptography/ 
https://pypi.python.org/pypi/cryptography/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~hppa ~x86 ~x86-fbsd
IUSE=test

RDEPEND=dev-libs/openssl:0
=dev-python/six-1.4.1[${PYTHON_USEDEP}]
=dev-python/cffi-0.8[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/iso8601[${PYTHON_USEDEP}]
dev-python/pretend[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)

DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst )

python_test() {
py.test -v || die Tests fail with ${EPYTHON}
}






[gentoo-commits] gentoo-x86 commit in app-crypt/seahorse/files: seahorse-3.10.2-include-correct-headers-for-vala.patch

2014-03-15 Thread Pacho Ramos (pacho)
pacho   14/03/15 10:48:43

  Added:   
seahorse-3.10.2-include-correct-headers-for-vala.patch
  Log:
  Fix crash with patch approved by upstream, bug #504582 by 504582
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.1  
app-crypt/seahorse/files/seahorse-3.10.2-include-correct-headers-for-vala.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/files/seahorse-3.10.2-include-correct-headers-for-vala.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/files/seahorse-3.10.2-include-correct-headers-for-vala.patch?rev=1.1content-type=text/plain

Index: seahorse-3.10.2-include-correct-headers-for-vala.patch
===
From 577c4ba0fc84d904338280c0ead77177c9d94ea3 Mon Sep 17 00:00:00 2001
From: Stef Walter st...@gnome.org
Date: Thu, 20 Feb 2014 08:41:54 +
Subject: common: Include correct headers for vala calling C code

These caused crashes due to pointers being casted to int.

Due to the way vala code is generated, this fix may require
you to:

$ rm common/*.c
$ make clean all

https://bugzilla.gnome.org/show_bug.cgi?id=708996
---
diff --git a/common/config.vapi b/common/config.vapi
index b814388..056021f 100644
--- a/common/config.vapi
+++ b/common/config.vapi
@@ -16,11 +16,13 @@ namespace Config
  */
 namespace Seahorse {
 
+[CCode (cheader_filename = libseahorse/seahorse-prefs.h)]
 namespace Prefs {
public void show(Gtk.Window window, string? tabid);
public bool available();
 }
 
+[CCode (cheader_filename = libseahorse/seahorse-application.h)]
 namespace Application {
public unowned Gtk.Application @get();
 }
--
cgit v0.9.2






[gentoo-commits] gentoo-x86 commit in dev-python/urwid: ChangeLog urwid-1.2.0.ebuild

2014-03-15 Thread Tim Harder (radhermit)
radhermit14/03/15 11:04:52

  Modified: ChangeLog
  Added:urwid-1.2.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.69 dev-python/urwid/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   6 Mar 2014 10:43:34 -   1.68
+++ ChangeLog   15 Mar 2014 11:04:52 -  1.69
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/urwid
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.68 
2014/03/06 10:43:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.69 
2014/03/15 11:04:52 radhermit Exp $
+
+*urwid-1.2.0 (15 Mar 2014)
+
+  15 Mar 2014; Tim Harder radher...@gentoo.org +urwid-1.2.0.ebuild:
+  Version bump.
 
   06 Mar 2014; Agostino Sarubbo a...@gentoo.org urwid-1.1.0.ebuild:
   Stable for ppc64, wrt bug #497622



1.1  dev-python/urwid/urwid-1.2.0.ebuild

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

Index: urwid-1.2.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/urwid-1.2.0.ebuild,v 1.1 
2014/03/15 11:04:52 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
PYTHON_REQ_USE=ncurses

inherit distutils-r1

DESCRIPTION=Urwid is a curses-based user interface library for Python
HOMEPAGE=http://urwid.org/ http://pypi.python.org/pypi/urwid/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-interix 
~amd64-linux ~ia64-linux ~x86-linux
IUSE=doc examples test

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/twisted-core )

PATCHES=( ${FILESDIR}/${PN}-1.1.0-sphinx.patch )

python_compile_all() {
if use doc ; then
if [[ ${EPYTHON} == python3* ]] ; then
2to3 -nw --no-diffs docs/conf.py || die
fi
cd docs
sphinx-build . _build/html || die
fi
}

python_compile() {
if [[ ${EPYTHON} == python2* ]] ; then
local CFLAGS=${CFLAGS} -fno-strict-aliasing
export CFLAGS
fi

distutils-r1_python_compile
}

python_test() {
esetup.py test
}

python_install_all() {
use examples  local EXAMPLES=( examples/. )
use doc  local HTML_DOCS=( docs/_build/html/. )

distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-libs/glib: glib-2.38.2-r1.ebuild ChangeLog

2014-03-15 Thread Pacho Ramos (pacho)
pacho   14/03/15 11:25:49

  Modified: glib-2.38.2-r1.ebuild ChangeLog
  Log:
  x86 stable, bug #501330
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  dev-libs/glib/glib-2.38.2-r1.ebuild

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

Index: glib-2.38.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.38.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- glib-2.38.2-r1.ebuild   15 Mar 2014 10:10:02 -  1.2
+++ glib-2.38.2-r1.ebuild   15 Mar 2014 11:25:49 -  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-libs/glib/glib-2.38.2-r1.ebuild,v 1.2 
2014/03/15 10:10:02 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.38.2-r1.ebuild,v 1.3 
2014/03/15 11:25:49 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{6,7} )
@@ -16,7 +16,7 @@
 LICENSE=LGPL-2+
 SLOT=2
 IUSE=debug fam kernel_linux selinux static-libs systemtap test utils xattr
-KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux
 
 # FIXME: want libselinux[${MULTILIB_USEDEP}] - bug #480960
 RDEPEND=



1.597dev-libs/glib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.596
retrieving revision 1.597
diff -u -r1.596 -r1.597
--- ChangeLog   15 Mar 2014 10:10:02 -  1.596
+++ ChangeLog   15 Mar 2014 11:25:49 -  1.597
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.596 2014/03/15 
10:10:02 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.597 2014/03/15 
11:25:49 pacho Exp $
+
+  15 Mar 2014; Pacho Ramos pa...@gentoo.org glib-2.38.2-r1.ebuild:
+  x86 stable, bug #501330
 
   15 Mar 2014; Pacho Ramos pa...@gentoo.org glib-2.38.2-r1.ebuild:
   amd64 stable, bug #501330






[gentoo-commits] gentoo-x86 commit in www-apps/phpsysinfo: ChangeLog phpsysinfo-3.1.11.ebuild

2014-03-15 Thread Tim Harder (radhermit)
radhermit14/03/15 11:32:15

  Modified: ChangeLog
  Added:phpsysinfo-3.1.11.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.85 www-apps/phpsysinfo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/ChangeLog?rev=1.85view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/ChangeLog?rev=1.85content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/ChangeLog?r1=1.84r2=1.85

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog   13 Feb 2014 09:02:19 -  1.84
+++ ChangeLog   15 Mar 2014 11:32:15 -  1.85
@@ -1,6 +1,11 @@
 # ChangeLog for www-apps/phpsysinfo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.84 
2014/02/13 09:02:19 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.85 
2014/03/15 11:32:15 radhermit Exp $
+
+*phpsysinfo-3.1.11 (15 Mar 2014)
+
+  15 Mar 2014; Tim Harder radher...@gentoo.org +phpsysinfo-3.1.11.ebuild:
+  Version bump.
 
 *phpsysinfo-3.1.9 (13 Feb 2014)
 



1.1  www-apps/phpsysinfo/phpsysinfo-3.1.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.1.11.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.1.11.ebuild?rev=1.1content-type=text/plain

Index: phpsysinfo-3.1.11.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.1.11.ebuild,v 1.1 
2014/03/15 11:32:15 radhermit Exp $

EAPI=5

inherit webapp

DESCRIPTION=phpSysInfo is a nice package that will display your system stats 
via PHP
HOMEPAGE=http://rk4an.github.com/phpsysinfo/;
SRC_URI=https://github.com/rk4an/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz

LICENSE=GPL-2
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd

RDEPEND=virtual/httpd-php
dev-lang/php[simplexml,xml,xsl(+),xslt(+),unicode]

need_httpd_cgi

src_install() {
webapp_src_preinst

dodoc CHANGELOG.md README*
rm CHANGELOG.md COPYING README* .gitignore .travis.yml || die

insinto ${MY_HTDOCSDIR}
doins -r .
newins phpsysinfo.ini{.new,}

webapp_configfile ${MY_HTDOCSDIR}/phpsysinfo.ini
webapp_src_install
}






[gentoo-commits] gentoo-x86 commit in media-gfx/pngcrush: ChangeLog pngcrush-1.7.72.ebuild

2014-03-15 Thread Tim Harder (radhermit)
radhermit14/03/15 11:34:50

  Modified: ChangeLog
  Added:pngcrush-1.7.72.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.122media-gfx/pngcrush/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog   13 Feb 2014 08:57:49 -  1.121
+++ ChangeLog   15 Mar 2014 11:34:50 -  1.122
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/pngcrush
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.121 
2014/02/13 08:57:49 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.122 
2014/03/15 11:34:50 radhermit Exp $
+
+*pngcrush-1.7.72 (15 Mar 2014)
+
+  15 Mar 2014; Tim Harder radher...@gentoo.org +pngcrush-1.7.72.ebuild:
+  Version bump.
 
 *pngcrush-1.7.71 (13 Feb 2014)
 



1.1  media-gfx/pngcrush/pngcrush-1.7.72.ebuild

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

Index: pngcrush-1.7.72.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.72.ebuild,v 
1.1 2014/03/15 11:34:50 radhermit Exp $

EAPI=5
inherit toolchain-funcs

DESCRIPTION=Portable Network Graphics (PNG) optimizing utility
HOMEPAGE=http://pmt.sourceforge.net/pngcrush/;
SRC_URI=system-libs? ( mirror://sourceforge/pmt/${P}-nolib.tar.xz )
!system-libs? ( mirror://sourceforge/pmt/${P}.tar.xz )

LICENSE=pngcrush
SLOT=0
KEYWORDS=~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
IUSE=+system-libs

RDEPEND=
system-libs? (
=media-libs/libpng-1.5:0=
sys-libs/zlib:=
)
DEPEND=${RDEPEND}
app-arch/xz-utils

pkg_setup() {
use system-libs  S+=-nolib
}

src_compile() {
emake \
CC=$(tc-getCC) \
LD=$(tc-getCC) \
CFLAGS=${CFLAGS} -Wall \
LDFLAGS=${LDFLAGS}
}

src_install() {
dobin ${PN}
dohtml ChangeLog.html
}






[gentoo-commits] gentoo-x86 commit in media-gfx/pngquant: ChangeLog pngquant-2.1.0.ebuild

2014-03-15 Thread Tim Harder (radhermit)
radhermit14/03/15 11:42:56

  Modified: ChangeLog
  Added:pngquant-2.1.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.6  media-gfx/pngquant/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/pngquant/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   19 Jan 2014 07:33:29 -  1.5
+++ ChangeLog   15 Mar 2014 11:42:55 -  1.6
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/pngquant
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngquant/ChangeLog,v 1.5 
2014/01/19 07:33:29 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngquant/ChangeLog,v 1.6 
2014/03/15 11:42:55 radhermit Exp $
+
+*pngquant-2.1.0 (15 Mar 2014)
+
+  15 Mar 2014; Tim Harder radher...@gentoo.org +pngquant-2.1.0.ebuild:
+  Version bump.
 
 *pngquant-2.0.2 (19 Jan 2014)
 



1.1  media-gfx/pngquant/pngquant-2.1.0.ebuild

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

Index: pngquant-2.1.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/pngquant/pngquant-2.1.0.ebuild,v 
1.1 2014/03/15 11:42:55 radhermit Exp $

EAPI=5
inherit flag-o-matic toolchain-funcs

DESCRIPTION=a command-line utility for converting 24/32-bit PNG images to 
paletted (8-bit) PNGs
HOMEPAGE=http://pngquant.org/;
SRC_URI=http://pngquant.org/${P}-src.tar.bz2;

LICENSE=HPND rwpng
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug openmp sse2

RDEPEND=media-libs/libpng:0=
sys-libs/zlib:=
DEPEND=${RDEPEND}

src_prepare() {
# Failure in upstream logic. Otherwise we lose the -I and -L flags
# from Makefile.
sed -i \
-e 's:CFLAGS ?=:CFLAGS +=:' \
-e 's:LDFLAGS ?=:LDFLAGS +=:' \
Makefile || die
}

src_compile() {
use debug || append-cflags -DNDEBUG
use sse2  append-cflags -DUSE_SSE=1

local openmp
if use openmp  tc-has-openmp; then
append-cflags -fopenmp
openmp=-lgomp
fi

tc-export CC
emake CFLAGSOPT= OPENMPFLAGS=${openmp}
}

src_install() {
dobin ${PN}
doman ${PN}.1
dodoc CHANGELOG README.md
}






[gentoo-commits] gentoo-x86 commit in sys-auth/polkit: polkit-0.112-r2.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:17:34

  Modified: ChangeLog
  Added:polkit-0.112-r2.ebuild
  Log:
  USE=jit to determine which pax-mark, if any, should be applied wrt #485910
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.168sys-auth/polkit/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog   11 Mar 2014 20:08:55 -  1.167
+++ ChangeLog   15 Mar 2014 12:17:34 -  1.168
@@ -1,6 +1,11 @@
 # ChangeLog for sys-auth/polkit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.167 
2014/03/11 20:08:55 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.168 
2014/03/15 12:17:34 ssuominen Exp $
+
+*polkit-0.112-r2 (15 Mar 2014)
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org +polkit-0.112-r2.ebuild:
+  USE=jit to determine which pax-mark, if any, should be applied wrt #485910
 
   11 Mar 2014; Pacho Ramos pa...@gentoo.org metadata.xml:
   Cleanup due #239126



1.1  sys-auth/polkit/polkit-0.112-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/polkit-0.112-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/polkit-0.112-r2.ebuild?rev=1.1content-type=text/plain

Index: polkit-0.112-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.112-r2.ebuild,v 1.1 
2014/03/15 12:17:34 ssuominen Exp $

EAPI=5
inherit eutils multilib pam pax-utils systemd user

DESCRIPTION=Policy framework for controlling privileges for system-wide 
services
HOMEPAGE=http://www.freedesktop.org/wiki/Software/polkit;
SRC_URI=http://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz;

LICENSE=LGPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
IUSE=examples gtk +introspection jit kde nls pam selinux systemd

RDEPEND=ia64? ( =dev-lang/spidermonkey-1.8.5*[-debug] )
mips? ( =dev-lang/spidermonkey-1.8.5*[-debug] )
!ia64? ( !mips? ( dev-lang/spidermonkey:17[-debug,jit=] ) )
=dev-libs/glib-2.32
=dev-libs/expat-2:=
introspection? ( =dev-libs/gobject-introspection-1 )
pam? (
sys-auth/pambase
virtual/pam
)
selinux? ( sec-policy/selinux-policykit )
systemd? ( sys-apps/systemd )
DEPEND=${RDEPEND}
app-text/docbook-xml-dtd:4.1.2
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
dev-util/intltool
virtual/pkgconfig
PDEPEND=
gtk? ( || (
=gnome-extra/polkit-gnome-0.105
lxde-base/lxpolkit
) )
kde? ( sys-auth/polkit-kde-agent )
!systemd? ( sys-auth/consolekit[policykit] )

QA_MULTILIB_PATHS=
usr/lib/polkit-1/polkit-agent-helper-1
usr/lib/polkit-1/polkitd

pkg_setup() {
local u=polkitd
local g=polkitd
local h=/var/lib/polkit-1

enewgroup ${g}
enewuser ${u} -1 -1 ${h} ${g}
esethome ${u} ${h}
}

src_prepare() {
sed -i -e 's|unix-group:wheel|unix-user:0|' 
src/polkitbackend/*-default.rules || die #401513
}

src_configure() {
econf \
--localstatedir=${EPREFIX}/var \
--disable-static \
--enable-man-pages \
--disable-gtk-doc \
$(use_enable systemd libsystemd-login) \
$(use_enable introspection) \
--disable-examples \
$(use_enable nls) \
$(if use ia64 || use mips; then echo --with-mozjs=mozjs185; 
else echo --with-mozjs=mozjs-17.0; fi) \
$(systemd_with_unitdir) \
--with-authfw=$(usex pam pam shadow) \
$(use pam  echo --with-pam-module-dir=$(getpam_mod_dir)) \
--with-os-type=gentoo
}

src_compile() {
default

# Required for polkitd on hardened/PaX due to spidermonkey's JIT
local f='src/polkitbackend/.libs/polkitd 
test/polkitbackend/.libs/polkitbackendjsauthoritytest'
local m=''
# Only used when USE=jit is enabled for 'dev-lang/spidermonkey:17' 
wrt #485910

[gentoo-commits] gentoo-x86 commit in sys-auth/polkit: metadata.xml ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:20:18

  Modified: metadata.xml ChangeLog
  Log:
  Add proper metadata for freedesktop-bugs@g.o
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.6  sys-auth/polkit/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/metadata.xml?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/metadata.xml?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/metadata.xml?r1=1.5r2=1.6

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/polkit/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml11 Mar 2014 20:08:55 -  1.5
+++ metadata.xml15 Mar 2014 12:20:18 -  1.6
@@ -1,9 +1,11 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-  herdfreedesktop/herd
-  use
-flag name='introspection'Use pkgdev-libs/gobject-introspection/pkg 
for introspection/flag
-flag name='systemd'Use pkgsys-apps/systemd/pkg instead of 
pkgsys-auth/consolekit/pkg for session tracking/flag
-  /use
+   herdfreedesktop/herd
+   maintainer
+   emailfreedesktop-b...@gentoo.org/email
+   /maintainer
+   use
+   flag name='systemd'Use pkgsys-apps/systemd/pkg instead of 
pkgsys-auth/consolekit/pkg for session tracking/flag
+   /use
 /pkgmetadata



1.169sys-auth/polkit/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog   15 Mar 2014 12:17:34 -  1.168
+++ ChangeLog   15 Mar 2014 12:20:18 -  1.169
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/polkit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.168 
2014/03/15 12:17:34 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.169 
2014/03/15 12:20:18 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org metadata.xml:
+  Add proper metadata for freedesktop-bugs@g.o
 
 *polkit-0.112-r2 (15 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-auth/consolekit: metadata.xml ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:25:29

  Modified: metadata.xml ChangeLog
  Log:
  Add proper metadata for freedesktop-bugs@g.o
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.8  sys-auth/consolekit/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/consolekit/metadata.xml?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/consolekit/metadata.xml?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/consolekit/metadata.xml?r1=1.7r2=1.8

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/consolekit/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml21 Aug 2013 19:29:03 -  1.7
+++ metadata.xml15 Mar 2014 12:25:29 -  1.8
@@ -1,15 +1,12 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-herdfreedesktop/herd
-use
-   flag name='policykit'
-   Use the PolicyKit framework (pkgsys-auth/polkit/pkg) to get
-   authorization for suspend/shutdown.
-   /flag
-   flag name='systemd-units'
-   Install systemd unit files despite pkgsys-apps/systemd/pkg
-   and systemd-logind. Not recommended.
-   /flag
-/use
+   herdfreedesktop/herd
+   maintainer
+   emailfreedesktop-b...@gentoo.org/email
+   /maintainer
+   use
+   flag name='policykit'Use the PolicyKit framework 
(pkgsys-auth/polkit/pkg) to get authorization for suspend/shutdown./flag
+   flag name='systemd-units'Install systemd unit files to 
replace the modern functionality of logind in pkgsys-apps/systemd/pkg. Not 
recommended./flag
+   /use
 /pkgmetadata



1.169sys-auth/consolekit/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/consolekit/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog   15 Mar 2014 12:06:26 -  1.168
+++ ChangeLog   15 Mar 2014 12:25:29 -  1.169
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/consolekit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/consolekit/ChangeLog,v 1.168 
2014/03/15 12:06:26 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/consolekit/ChangeLog,v 1.169 
2014/03/15 12:25:29 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org metadata.xml:
+  Add proper metadata for freedesktop-bugs@g.o
 
   15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org consolekit-0.4.6.ebuild:
   Skip broken ~ dev-libs/glib-2.38 releases wrt #501330. Remove /var/run






[gentoo-commits] gentoo-x86 commit in sys-auth/consolekit: consolekit-0.4.6.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:33:36

  Modified: consolekit-0.4.6.ebuild ChangeLog
  Log:
  Install /etc/logrotate.d file wrt #374513 by Vladimir Berezhnoy
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.14 sys-auth/consolekit/consolekit-0.4.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/consolekit/consolekit-0.4.6.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/consolekit/consolekit-0.4.6.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/consolekit/consolekit-0.4.6.ebuild?r1=1.13r2=1.14

Index: consolekit-0.4.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/consolekit/consolekit-0.4.6.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- consolekit-0.4.6.ebuild 15 Mar 2014 12:06:26 -  1.13
+++ consolekit-0.4.6.ebuild 15 Mar 2014 12:33:36 -  1.14
@@ -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-auth/consolekit/consolekit-0.4.6.ebuild,v 1.13 
2014/03/15 12:06:26 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/consolekit/consolekit-0.4.6.ebuild,v 1.14 
2014/03/15 12:33:36 ssuominen Exp $
 
 EAPI=5
 inherit autotools eutils linux-info pam systemd
@@ -10,7 +10,8 @@
 
 DESCRIPTION=Framework for defining and tracking users, login sessions and 
seats.
 HOMEPAGE=http://www.freedesktop.org/wiki/Software/ConsoleKit;
-SRC_URI=http://www.freedesktop.org/software/${MY_PN}/dist/${MY_P}.tar.xz;
+SRC_URI=http://www.freedesktop.org/software/${MY_PN}/dist/${MY_P}.tar.xz
+   mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}-4.debian.tar.gz 
# for logrotate file
 
 LICENSE=GPL-2
 SLOT=0
@@ -121,4 +122,7 @@
use systemd-units || rm -rf ${ED}/tmp
 
rm -rf ${ED}/var/run # let the init script create the directory
+
+   insinto /etc/logrotate.d
+   newins ${WORKDIR}/debian/${PN}.logrotate ${PN} #374513
 }



1.170sys-auth/consolekit/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/consolekit/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog   15 Mar 2014 12:25:29 -  1.169
+++ ChangeLog   15 Mar 2014 12:33:36 -  1.170
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/consolekit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/consolekit/ChangeLog,v 1.169 
2014/03/15 12:25:29 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/consolekit/ChangeLog,v 1.170 
2014/03/15 12:33:36 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org consolekit-0.4.6.ebuild:
+  Install /etc/logrotate.d file wrt #374513 by Vladimir Berezhnoy
 
   15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org metadata.xml:
   Add proper metadata for freedesktop-bugs@g.o






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

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:42:59

  Modified: ChangeLog package.mask
  Log:
  Add new media-video/parole with requirement for GTK+-3 libxfce4ui to Xfce 
4.12 mask

Revision  ChangesPath
1.8699   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8698
retrieving revision 1.8699
diff -u -r1.8698 -r1.8699
--- ChangeLog   15 Mar 2014 10:26:54 -  1.8698
+++ ChangeLog   15 Mar 2014 12:42:58 -  1.8699
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8698 2014/03/15 
10:26:54 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8699 2014/03/15 
12:42:58 ssuominen 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!
 
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org package.mask:
+  Add new media-video/parole with requirement for GTK+-3 libxfce4ui to Xfce
+  4.12 mask
+
   15 Mar 2014; Pacho Ramos pa...@gentoo.org arch/alpha/package.use.mask,
   arch/ia64/package.use.mask, arch/sparc/package.use.mask:
   Mask rdp USE due missing keywords, bug #504672



1.15475  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15474
retrieving revision 1.15475
diff -u -r1.15474 -r1.15475
--- package.mask14 Mar 2014 08:56:32 -  1.15474
+++ package.mask15 Mar 2014 12:42:59 -  1.15475
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15474 2014/03/14 
08:56:32 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15475 2014/03/15 
12:42:59 ssuominen 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
@@ -70,6 +70,7 @@
 =xfce-base/xfce4-settings-4.11*
 =xfce-base/xfdesktop-4.11*
 =xfce-base/xfwm4-4.11*
+=media-video/parole-0.6*
 
 # Manuel Rüger mr...@gentoo.org (06 Mar 2014)
 # Mask further ruby18-only packages






[gentoo-commits] gentoo-x86 commit in media-video/parole: parole-0.6.0.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:45:29

  Modified: ChangeLog
  Added:parole-0.6.0.ebuild
  Log:
  Version bump to version making of use the new GTK+-3 libxfce4ui from Xfce 
4.12 (git)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.45 media-video/parole/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/parole/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   11 Mar 2014 12:54:23 -  1.44
+++ ChangeLog   15 Mar 2014 12:45:29 -  1.45
@@ -1,6 +1,12 @@
 # ChangeLog for media-video/parole
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/parole/ChangeLog,v 1.44 
2014/03/11 12:54:23 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/parole/ChangeLog,v 1.45 
2014/03/15 12:45:29 ssuominen Exp $
+
+*parole-0.6.0 (15 Mar 2014)
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org +parole-0.6.0.ebuild:
+  Version bump to version making of use the new GTK+-3 libxfce4ui from Xfce 
4.12
+  (git)
 
   11 Mar 2014; Samuli Suominen ssuomi...@gentoo.org -parole-0.5.0.ebuild,
   -parole-0.5.1.ebuild:



1.1  media-video/parole/parole-0.6.0.ebuild

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

Index: parole-0.6.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/parole/parole-0.6.0.ebuild,v 1.1 
2014/03/15 12:45:29 ssuominen Exp $

EAPI=5
inherit xfconf

DESCRIPTION=a simple media player based on the GStreamer framework for the 
Xfce4 desktop
HOMEPAGE=http://goodies.xfce.org/projects/applications/parole/;
SRC_URI=mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~mips ~x86
IUSE=debug libnotify taglib

COMMON_DEPEND==dev-libs/dbus-glib-0.100
=dev-libs/glib-2.32
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
sys-apps/dbus
=x11-libs/gtk+-3.2:3
x11-libs/libX11
=xfce-base/libxfce4ui-4.11
=xfce-base/libxfce4util-4.11
=xfce-base/xfconf-4.10
libnotify? ( =x11-libs/libnotify-0.7 )
taglib? ( =media-libs/taglib-1.6 )
RDEPEND=${COMMON_DEPEND}
media-plugins/gst-plugins-meta:1.0
DEPEND=${COMMON_DEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig
x11-proto/xproto

pkg_setup() {
XFCONF=(
$(use_enable taglib)
$(use_enable libnotify notify-plugin)
$(xfconf_use_debug)
--with-gstreamer=1.0
)

DOCS=( AUTHORS ChangeLog README THANKS TODO )
}






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-wmdock-plugin: xfce4-wmdock-plugin-0.6.0.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:51:17

  Modified: ChangeLog
  Added:xfce4-wmdock-plugin-0.6.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.13 xfce-extra/xfce4-wmdock-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/ChangeLog?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/ChangeLog?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/ChangeLog?r1=1.12r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   28 Nov 2012 12:44:47 -  1.12
+++ ChangeLog   15 Mar 2014 12:51:17 -  1.13
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-wmdock-plugin
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/ChangeLog,v 
1.12 2012/11/28 12:44:47 ssuominen Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/ChangeLog,v 
1.13 2014/03/15 12:51:17 ssuominen Exp $
+
+*xfce4-wmdock-plugin-0.6.0 (15 Mar 2014)
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  +xfce4-wmdock-plugin-0.6.0.ebuild:
+  Version bump.
 
   28 Nov 2012; Samuli Suominen ssuomi...@gentoo.org
   xfce4-wmdock-plugin-0.3.4.ebuild:
@@ -57,4 +63,3 @@
   23 Aug 2009; Samuli Suominen ssuomi...@gentoo.org
   +xfce4-wmdock-plugin-0.3.0.ebuild, +xfce4-wmdock-plugin-0.3.2.ebuild:
   Rename xfce4-wmdock to xfce4-wmdock-plugin.
-



1.1  
xfce-extra/xfce4-wmdock-plugin/xfce4-wmdock-plugin-0.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/xfce4-wmdock-plugin-0.6.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-wmdock-plugin/xfce4-wmdock-plugin-0.6.0.ebuild?rev=1.1content-type=text/plain

Index: xfce4-wmdock-plugin-0.6.0.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-wmdock-plugin/xfce4-wmdock-plugin-0.6.0.ebuild,v
 1.1 2014/03/15 12:51:17 ssuominen Exp $

EAPI=5
inherit multilib xfconf

DESCRIPTION=a compatibility layer for running WindowMaker dockapps on Xfce4.
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-wmdock-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86 ~x86-fbsd
IUSE=debug

RDEPEND=x11-libs/gtk+:2
=xfce-base/libxfce4util-4.8
=xfce-base/libxfcegui4-4.8
=xfce-base/xfce4-panel-4.8
=x11-libs/libwnck-2.8.1:1
x11-libs/libX11
DEPEND=${RDEPEND}
dev-util/intltool
virtual/pkgconfig
sys-devel/gettext

pkg_setup() {
XFCONF=(
--libexecdir=${EPREFIX}/usr/$(get_libdir)
$(xfconf_use_debug)
)

DOCS=( AUTHORS ChangeLog README TODO )
}

src_prepare() {
echo panel-plugin/wmdock.desktop.in.in  po/POTFILES.skip
xfconf_src_prepare
}






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-xkb-plugin: ChangeLog xfce4-xkb-plugin-0.5.4.3.ebuild xfce4-xkb-plugin-0.5.5.ebuild

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 12:54:48

  Modified: ChangeLog
  Removed:  xfce4-xkb-plugin-0.5.4.3.ebuild
xfce4-xkb-plugin-0.5.5.ebuild
  Log:
  old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.47 xfce-extra/xfce4-xkb-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog?rev=1.47view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog?rev=1.47content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog?r1=1.46r2=1.47

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   28 Jan 2014 14:18:14 -  1.46
+++ ChangeLog   15 Mar 2014 12:54:48 -  1.47
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-extra/xfce4-xkb-plugin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog,v 
1.46 2014/01/28 14:18:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog,v 
1.47 2014/03/15 12:54:48 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  -xfce4-xkb-plugin-0.5.4.3.ebuild, -xfce4-xkb-plugin-0.5.5.ebuild:
+  old
 
   28 Jan 2014; Agostino Sarubbo a...@gentoo.org 
xfce4-xkb-plugin-0.5.6.ebuild:
   Stable for x86, wrt bug #496018






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-xkb-plugin: xfce4-xkb-plugin-0.7.0.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 13:02:49

  Modified: ChangeLog
  Added:xfce4-xkb-plugin-0.7.0.ebuild
  Log:
  Version bump for =xfce-base/xfce4-settings-4.11 (git)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.48 xfce-extra/xfce4-xkb-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   15 Mar 2014 12:54:48 -  1.47
+++ ChangeLog   15 Mar 2014 13:02:49 -  1.48
@@ -1,6 +1,12 @@
 # ChangeLog for xfce-extra/xfce4-xkb-plugin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog,v 
1.47 2014/03/15 12:54:48 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-xkb-plugin/ChangeLog,v 
1.48 2014/03/15 13:02:49 ssuominen Exp $
+
+*xfce4-xkb-plugin-0.7.0 (15 Mar 2014)
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  +xfce4-xkb-plugin-0.7.0.ebuild:
+  Version bump for =xfce-base/xfce4-settings-4.11 (git)
 
   15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
   -xfce4-xkb-plugin-0.5.4.3.ebuild, -xfce4-xkb-plugin-0.5.5.ebuild:



1.1  xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.7.0.ebuild?rev=1.1content-type=text/plain

Index: xfce4-xkb-plugin-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/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.7.0.ebuild,v
 1.1 2014/03/15 13:02:49 ssuominen Exp $

EAPI=5
inherit multilib xfconf

DESCRIPTION=XKB layout switching panel plug-in for the Xfce desktop 
environment
HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-xkb-plugin;
SRC_URI=mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2

LICENSE=BSD-2 GPL-2+
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
IUSE=debug

COMMON_DEPEND==gnome-base/librsvg-2.36.2
x11-libs/gtk+:2
=x11-libs/libwnck-2.12:1
x11-libs/libX11
=x11-libs/libxklavier-5
=xfce-base/garcon-0.1.5
=xfce-base/libxfce4ui-4.11
=xfce-base/libxfce4util-4.11
=xfce-base/xfce4-panel-4.11
RDEPEND=${COMMON_DEPEND}
=xfce-base/xfce4-settings-4.11
DEPEND=${COMMON_DEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig

pkg_setup() {
XFCONF=(
--libexecdir=${EPREFIX}/usr/$(get_libdir)
$(xfconf_use_debug)
)

DOCS=( AUTHORS ChangeLog README )
}






[gentoo-commits] gentoo-x86 commit in mail-client/sylpheed: sylpheed-3.3.1.ebuild ChangeLog

2014-03-15 Thread Akinori Hattori (hattya)
hattya  14/03/15 13:11:35

  Modified: ChangeLog
  Added:sylpheed-3.3.1.ebuild
  Log:
  new upstream release
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, signed Manifest commit with key 
EC917A6D)

Revision  ChangesPath
1.332mail-client/sylpheed/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/ChangeLog?rev=1.332view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/ChangeLog?rev=1.332content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/ChangeLog?r1=1.331r2=1.332

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v
retrieving revision 1.331
retrieving revision 1.332
diff -u -r1.331 -r1.332
--- ChangeLog   17 Jan 2014 13:34:50 -  1.331
+++ ChangeLog   15 Mar 2014 13:11:35 -  1.332
@@ -1,6 +1,11 @@
 # ChangeLog for mail-client/sylpheed
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.331 
2014/01/17 13:34:50 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.332 
2014/03/15 13:11:35 hattya Exp $
+
+*sylpheed-3.3.1 (15 Mar 2014)
+
+  15 Mar 2014; Akinori Hattori hat...@gentoo.org +sylpheed-3.3.1.ebuild:
+  new upstream release
 
 *sylpheed-3.3.0-r1 (17 Jan 2014)
 



1.1  mail-client/sylpheed/sylpheed-3.3.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/sylpheed-3.3.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/sylpheed/sylpheed-3.3.1.ebuild?rev=1.1content-type=text/plain

Index: sylpheed-3.3.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/sylpheed-3.3.1.ebuild,v 
1.1 2014/03/15 13:11:35 hattya Exp $

EAPI=5

inherit eutils

DESCRIPTION=A lightweight email client and newsreader
HOMEPAGE=http://sylpheed.sraoss.jp/;
SRC_URI=http://sylpheed.sraoss.jp/${PN}/v${PV%.*}/${P}.tar.bz2;

LICENSE=GPL-2 LGPL-2.1
SLOT=0
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
IUSE=crypt ipv6 ldap nls oniguruma pda spell ssl xface

CDEPEND=x11-libs/gtk+:2
nls? ( sys-devel/gettext )
crypt? ( app-crypt/gpgme )
ldap? ( net-nds/openldap )
oniguruma? ( dev-libs/oniguruma )
pda? ( app-pda/jpilot )
spell? ( app-text/gtkspell:2 )
ssl? ( dev-libs/openssl )
RDEPEND=${CDEPEND}
app-misc/mime-types
net-misc/curl
DEPEND=${CDEPEND}
virtual/pkgconfig
xface? ( media-libs/compface )

src_configure() {
local htmldir=/usr/share/doc/${PF}/html
econf \
$(use_enable crypt gpgme) \
$(use_enable ipv6) \
$(use_enable ldap) \
$(use_enable oniguruma) \
$(use_enable pda jpilot) \
$(use_enable spell gtkspell) \
$(use_enable ssl) \
$(use_enable xface compface) \
--with-manualdir=${htmldir}/manual \
--with-faqdir=${htmldir}/faq \
--disable-updatecheck
}

src_install() {
emake DESTDIR=${D} install
dodoc AUTHORS ChangeLog* NEWS* PLUGIN* README* TODO*

doicon *.png
domenu *.desktop

cd plugin/attachment_tool
docinto plugin/attachment_tool
emake DESTDIR=${D} install-plugin
dodoc README
}






[gentoo-commits] gentoo-x86 commit in mail-client/mutt: mutt-1.5.22-r3.ebuild ChangeLog

2014-03-15 Thread Agostino Sarubbo (ago)
ago 14/03/15 13:15:43

  Modified: mutt-1.5.22-r3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #504462
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=amd64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  mail-client/mutt/mutt-1.5.22-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild?r1=1.3r2=1.4

Index: mutt-1.5.22-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mutt-1.5.22-r3.ebuild   14 Mar 2014 15:14:30 -  1.3
+++ mutt-1.5.22-r3.ebuild   15 Mar 2014 13:15:43 -  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/mail-client/mutt/mutt-1.5.22-r3.ebuild,v 
1.3 2014/03/14 15:14:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild,v 
1.4 2014/03/15 13:15:43 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 IUSE=berkdb crypt debug doc gdbm gnutls gpg idn imap kerberos mbox nls nntp 
pop qdbm sasl selinux sidebar slang smime smtp ssl tokyocabinet
 SLOT=0
 LICENSE=GPL-2
-KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 RDEPEND=
app-misc/mime-types
nls? ( virtual/libintl )



1.257mail-client/mutt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/ChangeLog?rev=1.257view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/ChangeLog?rev=1.257content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/ChangeLog?r1=1.256r2=1.257

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/mutt/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog   14 Mar 2014 15:14:30 -  1.256
+++ ChangeLog   15 Mar 2014 13:15:43 -  1.257
@@ -1,6 +1,9 @@
 # ChangeLog for mail-client/mutt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/ChangeLog,v 1.256 
2014/03/14 15:14:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/ChangeLog,v 1.257 
2014/03/15 13:15:43 ago Exp $
+
+  15 Mar 2014; Agostino Sarubbo a...@gentoo.org mutt-1.5.22-r3.ebuild:
+  Stable for amd64, wrt bug #504462
 
   14 Mar 2014; Jeroen Roovers j...@gentoo.org mutt-1.5.22-r3.ebuild:
   Stable for HPPA (bug #504462).






[gentoo-commits] gentoo-x86 commit in net-fs/samba: samba-3.6.23.ebuild ChangeLog

2014-03-15 Thread Agostino Sarubbo (ago)
ago 14/03/15 13:16:40

  Modified: samba-3.6.23.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #504494
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.3  net-fs/samba/samba-3.6.23.ebuild

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

Index: samba-3.6.23.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.6.23.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- samba-3.6.23.ebuild 15 Mar 2014 13:16:17 -  1.2
+++ samba-3.6.23.ebuild 15 Mar 2014 13:16:40 -  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-fs/samba/samba-3.6.23.ebuild,v 1.2 
2014/03/15 13:16:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.6.23.ebuild,v 1.3 
2014/03/15 13:16:40 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 SRC_URI=mirror://samba/stable/${MY_P}.tar.gz
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=acl addns ads +aio avahi caps +client cluster cups debug dmapi doc 
examples fam
ldap ldb +netapi pam quota +readline selinux +server +smbclient 
smbsharemodes
swat syslog +winbind



1.658net-fs/samba/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.658view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.658content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?r1=1.657r2=1.658

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v
retrieving revision 1.657
retrieving revision 1.658
diff -u -r1.657 -r1.658
--- ChangeLog   15 Mar 2014 13:16:17 -  1.657
+++ ChangeLog   15 Mar 2014 13:16:40 -  1.658
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/samba
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.657 2014/03/15 
13:16:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.658 2014/03/15 
13:16:40 ago Exp $
+
+  15 Mar 2014; Agostino Sarubbo a...@gentoo.org samba-3.6.23.ebuild:
+  Stable for x86, wrt bug #504494
 
   15 Mar 2014; Agostino Sarubbo a...@gentoo.org samba-3.6.23.ebuild:
   Stable for amd64, wrt bug #504494






[gentoo-commits] gentoo-x86 commit in mail-client/mutt: mutt-1.5.22-r3.ebuild ChangeLog

2014-03-15 Thread Agostino Sarubbo (ago)
ago 14/03/15 13:16:30

  Modified: mutt-1.5.22-r3.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #504462
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  mail-client/mutt/mutt-1.5.22-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild?r1=1.4r2=1.5

Index: mutt-1.5.22-r3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mutt-1.5.22-r3.ebuild   15 Mar 2014 13:15:43 -  1.4
+++ mutt-1.5.22-r3.ebuild   15 Mar 2014 13:16:29 -  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/mail-client/mutt/mutt-1.5.22-r3.ebuild,v 
1.4 2014/03/15 13:15:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.22-r3.ebuild,v 
1.5 2014/03/15 13:16:29 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 IUSE=berkdb crypt debug doc gdbm gnutls gpg idn imap kerberos mbox nls nntp 
pop qdbm sasl selinux sidebar slang smime smtp ssl tokyocabinet
 SLOT=0
 LICENSE=GPL-2
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 RDEPEND=
app-misc/mime-types
nls? ( virtual/libintl )



1.258mail-client/mutt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/ChangeLog?rev=1.258view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/ChangeLog?rev=1.258content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/mutt/ChangeLog?r1=1.257r2=1.258

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-client/mutt/ChangeLog,v
retrieving revision 1.257
retrieving revision 1.258
diff -u -r1.257 -r1.258
--- ChangeLog   15 Mar 2014 13:15:43 -  1.257
+++ ChangeLog   15 Mar 2014 13:16:29 -  1.258
@@ -1,6 +1,9 @@
 # ChangeLog for mail-client/mutt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/ChangeLog,v 1.257 
2014/03/15 13:15:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/ChangeLog,v 1.258 
2014/03/15 13:16:29 ago Exp $
+
+  15 Mar 2014; Agostino Sarubbo a...@gentoo.org mutt-1.5.22-r3.ebuild:
+  Stable for x86, wrt bug #504462
 
   15 Mar 2014; Agostino Sarubbo a...@gentoo.org mutt-1.5.22-r3.ebuild:
   Stable for amd64, wrt bug #504462






[gentoo-commits] gentoo-x86 commit in net-fs/samba: samba-3.6.23.ebuild ChangeLog

2014-03-15 Thread Agostino Sarubbo (ago)
ago 14/03/15 13:16:17

  Modified: samba-3.6.23.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #504494
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=amd64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.2  net-fs/samba/samba-3.6.23.ebuild

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

Index: samba-3.6.23.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.6.23.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- samba-3.6.23.ebuild 14 Mar 2014 09:30:41 -  1.1
+++ samba-3.6.23.ebuild 15 Mar 2014 13:16:17 -  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-fs/samba/samba-3.6.23.ebuild,v 1.1 
2014/03/14 09:30:41 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.6.23.ebuild,v 1.2 
2014/03/15 13:16:17 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 SRC_URI=mirror://samba/stable/${MY_P}.tar.gz
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
 IUSE=acl addns ads +aio avahi caps +client cluster cups debug dmapi doc 
examples fam
ldap ldb +netapi pam quota +readline selinux +server +smbclient 
smbsharemodes
swat syslog +winbind



1.657net-fs/samba/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.657view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.657content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?r1=1.656r2=1.657

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v
retrieving revision 1.656
retrieving revision 1.657
diff -u -r1.656 -r1.657
--- ChangeLog   14 Mar 2014 09:30:41 -  1.656
+++ ChangeLog   15 Mar 2014 13:16:17 -  1.657
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/samba
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.656 2014/03/14 
09:30:41 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.657 2014/03/15 
13:16:17 ago Exp $
+
+  15 Mar 2014; Agostino Sarubbo a...@gentoo.org samba-3.6.23.ebuild:
+  Stable for amd64, wrt bug #504494
 
 *samba-4.1.6 (14 Mar 2014)
 *samba-4.0.16 (14 Mar 2014)






[gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: adobe-flash-11.2.202.346.ebuild ChangeLog

2014-03-15 Thread Agostino Sarubbo (ago)
ago 14/03/15 13:16:34

  Modified: adobe-flash-11.2.202.346.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #504286
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.3  www-plugins/adobe-flash/adobe-flash-11.2.202.346.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.346.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.346.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.346.ebuild?r1=1.2r2=1.3

Index: adobe-flash-11.2.202.346.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.346.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- adobe-flash-11.2.202.346.ebuild 15 Mar 2014 13:16:06 -  1.2
+++ adobe-flash-11.2.202.346.ebuild 15 Mar 2014 13:16:34 -  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/www-plugins/adobe-flash/adobe-flash-11.2.202.346.ebuild,v
 1.2 2014/03/15 13:16:06 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.346.ebuild,v
 1.3 2014/03/15 13:16:34 ago Exp $
 
 EAPI=5
 inherit nsplugins toolchain-funcs versionator multilib multilib-minimal
@@ -29,7 +29,7 @@
 
 SLOT=0
 
-KEYWORDS=-* amd64 ~x86
+KEYWORDS=-* amd64 x86
 LICENSE=AdobeFlash-11.x
 RESTRICT=strip mirror
 



1.242www-plugins/adobe-flash/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.242view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.242content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.241r2=1.242

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.241
retrieving revision 1.242
diff -u -r1.241 -r1.242
--- ChangeLog   15 Mar 2014 13:16:06 -  1.241
+++ ChangeLog   15 Mar 2014 13:16:34 -  1.242
@@ -1,6 +1,10 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.241 
2014/03/15 13:16:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.242 
2014/03/15 13:16:34 ago Exp $
+
+  15 Mar 2014; Agostino Sarubbo a...@gentoo.org
+  adobe-flash-11.2.202.346.ebuild:
+  Stable for x86, wrt bug #504286
 
   15 Mar 2014; Agostino Sarubbo a...@gentoo.org
   adobe-flash-11.2.202.346.ebuild:






[gentoo-commits] gentoo-x86 commit in app-text/jabref: jabref-2.10-r1.ebuild ChangeLog

2014-03-15 Thread Nicolas Bock (nicolasbock)
nicolasbock14/03/15 13:24:49

  Modified: ChangeLog
  Added:jabref-2.10-r1.ebuild
  Log:
  app-text/jabref-2.10-r1: Working on bug 504320.
  
  This patch removes dev-java/microba from the bundled libraries.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
AC91CA52)

Revision  ChangesPath
1.97 app-text/jabref/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/jabref/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog   12 Mar 2014 13:21:44 -  1.96
+++ ChangeLog   15 Mar 2014 13:24:48 -  1.97
@@ -1,6 +1,12 @@
 # ChangeLog for app-text/jabref
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/jabref/ChangeLog,v 1.96 2014/03/12 
13:21:44 nicolasbock Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/jabref/ChangeLog,v 1.97 2014/03/15 
13:24:48 nicolasbock Exp $
+
+*jabref-2.10-r1 (15 Mar 2014)
+
+  15 Mar 2014; Nicolas Bock nicolasb...@gentoo.org +jabref-2.10-r1.ebuild:
+  app-text/jabref-2.10-r1: Working on bug 504320.  This patch removes dev-
+  java/microba from the bundled libraries.
 
 *jabref-2.10 (12 Mar 2014)
 



1.1  app-text/jabref/jabref-2.10-r1.ebuild

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

Index: jabref-2.10-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/jabref/jabref-2.10-r1.ebuild,v 1.1 
2014/03/15 13:24:48 nicolasbock Exp $

EAPI=5

JAVA_ANT_REWRITE_CLASSPATH=true

inherit eutils java-pkg-2 java-ant-2 java-utils-2

MY_PV=${PV/_beta/b}

DESCRIPTION=Java GUI for managing BibTeX and other bibliographies
HOMEPAGE=http://jabref.sourceforge.net/;
SRC_URI=mirror://sourceforge/${PN}/JabRef-${MY_PV}-src.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=doc

COMMON_DEP=
dev-java/antlr:3
dev-java/fontbox:1.7
dev-java/jempbox:1.7
dev-java/log4j:0
dev-java/spin:0
dev-java/microba:0


DEPEND=
=virtual/jdk-1.6
${COMMON_DEP}

RDEPEND=
=virtual/jre-1.6
${COMMON_DEP}

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

java_prepare() {
# Remove bundled dependencies.
rm lib/antlr*.jar || die
rm lib/fontbox*.jar || die
rm lib/jempbox*.jar || die
rm lib/spin.jar || die
rm lib/microba.jar || die

# Remove unjarlib target (do this only once we have removed all
# bundled dependencies in lib).
#sed -i -e 's:depends=build, unjarlib:depends=build:' build.xml

# Fix license file copy operation for microba bundled lib.
sed -i -e 's:^.*microba-license.*::' build.xml
}

src_compile() {
local EXTERNAL_JARS=antlr-3,fontbox-1.7,jempbox-1.7,log4j,spin,microba
local CLASSPATH=$(java-pkg_getjars --with-dependencies 
${EXTERNAL_JARS})
eant \
-Dgentoo.classpath=${CLASSPATH} \
jars \
$(usex doc docs )
}

src_install() {
java-pkg_newjar build/lib/JabRef-${MY_PV}.jar

use doc  java-pkg_dojavadoc build/docs/API
dodoc src/txt/README

java-pkg_dolauncher ${PN} --main net.sf.jabref.JabRef
newicon src/images/JabRef-icon-48.png JabRef-icon.png
make_desktop_entry ${PN} JabRef JabRef-icon Office
}






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-embed-plugin: ChangeLog xfce4-embed-plugin-1.2.0.ebuild

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 13:28:50

  Modified: ChangeLog
  Removed:  xfce4-embed-plugin-1.2.0.ebuild
  Log:
  old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.18 xfce-extra/xfce4-embed-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog?rev=1.18view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog?rev=1.18content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog?r1=1.17r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   28 Jan 2014 14:17:41 -  1.17
+++ ChangeLog   15 Mar 2014 13:28:50 -  1.18
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-extra/xfce4-embed-plugin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog,v 
1.17 2014/01/28 14:17:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-embed-plugin/ChangeLog,v 
1.18 2014/03/15 13:28:50 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  -xfce4-embed-plugin-1.2.0.ebuild:
+  old
 
   28 Jan 2014; Agostino Sarubbo a...@gentoo.org
   xfce4-embed-plugin-1.4.0.ebuild:






[gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: fail2ban-0.9.0.ebuild ChangeLog

2014-03-15 Thread Jeroen Roovers (jer)
jer 14/03/15 13:42:30

  Modified: ChangeLog
  Added:fail2ban-0.9.0.ebuild
  Log:
  Version bump (bug #497334).
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.128net-analyzer/fail2ban/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.128view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.128content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?r1=1.127r2=1.128

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog   13 Feb 2014 01:17:28 -  1.127
+++ ChangeLog   15 Mar 2014 13:42:30 -  1.128
@@ -1,6 +1,12 @@
 # ChangeLog for net-analyzer/fail2ban
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.127 
2014/02/13 01:17:28 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.128 
2014/03/15 13:42:30 jer Exp $
+
+*fail2ban-0.9.0 (15 Mar 2014)
+
+  15 Mar 2014; Jeroen Roovers j...@gentoo.org +fail2ban-0.9.0.ebuild,
+  +files/fail2ban-0.9.0-empty-run-dir.patch:
+  Version bump (bug #497334).
 
 *fail2ban-0.8.12-r1 (13 Feb 2014)
 



1.1  net-analyzer/fail2ban/fail2ban-0.9.0.ebuild

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

Index: fail2ban-0.9.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.9.0.ebuild,v 1.1 
2014/03/15 13:42:30 jer Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )

inherit distutils-r1 systemd vcs-snapshot

DESCRIPTION=scans log files and bans IPs that show malicious signs
HOMEPAGE=http://www.fail2ban.org/;
SRC_URI=https://github.com/${PN}/${PN}/tarball/${PV} - ${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
IUSE=selinux

DEPEND=selinux? ( sec-policy/selinux-fail2ban )
RDEPEND=net-misc/whois
virtual/mta
virtual/logger
net-firewall/iptables
selinux? ( sec-policy/selinux-fail2ban )

DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt )

src_prepare() {
# Replace /var/run with /run, but not in the top source directory
sed -i -e 's|/var\(/run/fail2ban\)|\1|g' $( find . -type f -mindepth 2 
) || die

# Do not install /run/fail2ban
epatch ${FILESDIR}/${P}-empty-run-dir.patch

distutils-r1_src_prepare
}

python_test() {
${EPYTHON} bin/${PN}-testcases
}

src_install() {
distutils-r1_src_install

rm -rf ${D}/usr/share/doc/${PN}

# not FILESDIR
newconfd files/gentoo-confd ${PN}
newinitd files/gentoo-initd ${PN}
systemd_dounit files/${PN}.service
systemd_dotmpfilesd files/${PN}-tmpfiles.conf
doman man/*.{1,5}

# Use INSTALL_MASK  if you do not want to touch /etc/logrotate.d.
# See http://thread.gmane.org/gmane.linux.gentoo.devel/35675
insinto /etc/logrotate.d
newins files/${PN}-logrotate ${PN}
}

pkg_preinst() {
has_version ${CATEGORY}/${PN}-0.7
previous_less_than_0_7=$?
}

pkg_postinst() {
if [[ $previous_less_than_0_7 = 0 ]] ; then
elog
elog Configuration files are now in /etc/fail2ban/
elog You probably have to manually update your configuration
elog files before restarting Fail2ban!
elog
elog Fail2ban is not installed under /usr/lib anymore. The
elog new location is under /usr/share.
elog
elog You are upgrading from version 0.6.x, please see:
elog 
http://www.fail2ban.org/wiki/index.php/HOWTO_Upgrade_from_0.6_to_0.8;
fi
if ! has_version ${CATEGORY}/${PN}  \
! has_version dev-python/pyinotify  ! has_version 
app-admin/gamin; then
elog For most jail.conf configurations, it is recommended you 
install either
elog dev-python/pyinotify or app-admin/gamin (in order of 
preference)
elog to control how log file modifications are detected
fi
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/fail2ban: ChangeLog

2014-03-15 Thread Jeroen Roovers (jer)
jer 14/03/15 13:45:21

  Modified: ChangeLog
  Log:
  Clean up patch.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.129net-analyzer/fail2ban/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.129view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?rev=1.129content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/ChangeLog?r1=1.128r2=1.129

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   15 Mar 2014 13:42:30 -  1.128
+++ ChangeLog   15 Mar 2014 13:45:21 -  1.129
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/fail2ban
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.128 
2014/03/15 13:42:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.129 
2014/03/15 13:45:21 jer Exp $
+
+  15 Mar 2014; Jeroen Roovers j...@gentoo.org
+  files/fail2ban-0.9.0-empty-run-dir.patch:
+  Clean up patch.
 
 *fail2ban-0.9.0 (15 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-db/opendbx: metadata.xml ChangeLog

2014-03-15 Thread Manuel Rueger (mrueg)
mrueg   14/03/15 13:51:33

  Modified: metadata.xml ChangeLog
  Log:
  Add Alice Ferrazzi as maintainer. Proxied by me.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.5  dev-db/opendbx/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/opendbx/metadata.xml?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/opendbx/metadata.xml?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/opendbx/metadata.xml?r1=1.4r2=1.5

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/opendbx/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml11 Mar 2014 19:54:53 -  1.4
+++ metadata.xml15 Mar 2014 13:51:33 -  1.5
@@ -1,8 +1,16 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
+herdproxy-maintainers/herd
 maintainer
-emailmaintainer-nee...@gentoo.org/email
+   emailalice.ferra...@gmail.com/email
+   nameAlice Ferrazzi/name
+   descriptionAssign bugs to her./description
+/maintainer
+maintainer
+   emailmr...@gentoo.org/email
+   nameManuel Rüger/name
+   descriptionCC him on bugs./description
 /maintainer
 use
flag name=bindistDisable support for pkgdev-db/firebird/pkg 
database



1.39 dev-db/opendbx/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/opendbx/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   11 Mar 2014 19:54:53 -  1.38
+++ ChangeLog   15 Mar 2014 13:51:33 -  1.39
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/opendbx
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/opendbx/ChangeLog,v 1.38 2014/03/11 
19:54:53 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/opendbx/ChangeLog,v 1.39 2014/03/15 
13:51:33 mrueg Exp $
+
+  15 Mar 2014; Manuel Rüger mr...@gentoo.org metadata.xml:
+  Add Alice Ferrazzi as maintainer. Proxied by me.
 
   11 Mar 2014; Pacho Ramos pa...@gentoo.org -opendbx-1.4.5-r1.ebuild,
   metadata.xml:






[gentoo-commits] gentoo-x86 commit in app-crypt/sign: metadata.xml ChangeLog

2014-03-15 Thread Manuel Rueger (mrueg)
mrueg   14/03/15 13:52:56

  Modified: metadata.xml ChangeLog
  Log:
  Add Alice Ferrazzi as maintainer. Proxied by me.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.5  app-crypt/sign/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/sign/metadata.xml?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/sign/metadata.xml?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/sign/metadata.xml?r1=1.4r2=1.5

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/sign/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml11 Mar 2014 19:55:40 -  1.4
+++ metadata.xml15 Mar 2014 13:52:56 -  1.5
@@ -1,8 +1,16 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
+herdproxy-maintainers/herd
 maintainer
-emailmaintainer-nee...@gentoo.org/email
+   emailalice.ferra...@gmail.com/email
+   nameAlice Ferrazzi/name
+   descriptionAssign bugs to her./description
+/maintainer
+maintainer
+   emailmr...@gentoo.org/email
+   nameManuel Rüger/name
+   descriptionCC him on bugs./description
 /maintainer
 longdescription
 sign is a file signing and signature verification utility. It's main purpose is



1.20 app-crypt/sign/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/sign/ChangeLog?rev=1.20view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/sign/ChangeLog?rev=1.20content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/sign/ChangeLog?r1=1.19r2=1.20

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/sign/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   11 Mar 2014 19:55:40 -  1.19
+++ ChangeLog   15 Mar 2014 13:52:56 -  1.20
@@ -1,6 +1,9 @@
 # ChangeLog for app-crypt/sign
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/sign/ChangeLog,v 1.19 2014/03/11 
19:55:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/sign/ChangeLog,v 1.20 2014/03/15 
13:52:56 mrueg Exp $
+
+  15 Mar 2014; Manuel Rüger mr...@gentoo.org metadata.xml:
+  Add Alice Ferrazzi as maintainer. Proxied by me.
 
   11 Mar 2014; Pacho Ramos pa...@gentoo.org metadata.xml:
   Cleanup due #53266






[gentoo-commits] gentoo-x86 commit in dev-libs/libindicator: libindicator-12.10.1-r200.ebuild libindicator-12.10.1-r300.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 14:03:58

  Modified: ChangeLog
  Added:libindicator-12.10.1-r200.ebuild
libindicator-12.10.1-r300.ebuild
  Log:
  Version bump wrt #467976 by Agostino Sarubbo
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.16 dev-libs/libindicator/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libindicator/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   30 Jul 2012 20:51:21 -  1.15
+++ ChangeLog   15 Mar 2014 14:03:58 -  1.16
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/libindicator
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicator/ChangeLog,v 1.15 
2012/07/30 20:51:21 ssuominen Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicator/ChangeLog,v 1.16 
2014/03/15 14:03:58 ssuominen Exp $
+
+*libindicator-12.10.1-r200 (15 Mar 2014)
+*libindicator-12.10.1-r300 (15 Mar 2014)
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  +libindicator-12.10.1-r200.ebuild, +libindicator-12.10.1-r300.ebuild:
+  Version bump wrt #467976 by Agostino Sarubbo
 
   30 Jul 2012; Samuli Suominen ssuomi...@gentoo.org
   libindicator-12.10.0-r200.ebuild, libindicator-12.10.0-r300.ebuild:
@@ -82,4 +89,3 @@
   +libindicator-0.2.0.ebuild:
   Initial commit. Used by gnome-extra/indicator-applet and
   xfce-extra/xfce4-indicator-plugin.
-



1.1  dev-libs/libindicator/libindicator-12.10.1-r200.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicator/libindicator-12.10.1-r200.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicator/libindicator-12.10.1-r200.ebuild?rev=1.1content-type=text/plain

Index: libindicator-12.10.1-r200.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libindicator/libindicator-12.10.1-r200.ebuild,v
 1.1 2014/03/15 14:03:58 ssuominen Exp $

EAPI=4
inherit eutils flag-o-matic virtualx

DESCRIPTION=A set of symbols and convience functions that all indicators would 
like to use
HOMEPAGE=http://launchpad.net/libindicator;
SRC_URI=http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test

RDEPEND==dev-libs/glib-2.22
=x11-libs/gtk+-2.18:2
DEPEND=${RDEPEND}
virtual/pkgconfig
test? ( dev-util/dbus-test-runner )

src_configure() {
append-flags -Wno-error

econf \
--disable-silent-rules \
--disable-static \
--with-gtk=2
}

src_test() {
Xemake check #391179
}

src_install() {
emake -j1 DESTDIR=${D} install
prune_libtool_files --all

rm -vf \
${ED}/usr/lib*/libdummy-indicator-* \
${ED}/usr/share/${PN}/*indicator-debugging
}



1.1  dev-libs/libindicator/libindicator-12.10.1-r300.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicator/libindicator-12.10.1-r300.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicator/libindicator-12.10.1-r300.ebuild?rev=1.1content-type=text/plain

Index: libindicator-12.10.1-r300.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libindicator/libindicator-12.10.1-r300.ebuild,v
 1.1 2014/03/15 14:03:58 ssuominen Exp $

EAPI=4
inherit eutils flag-o-matic virtualx

DESCRIPTION=A set of symbols and convience functions that all indicators would 
like to use
HOMEPAGE=http://launchpad.net/libindicator;
SRC_URI=http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz;

LICENSE=GPL-3
SLOT=3
KEYWORDS=~amd64 ~x86
IUSE=test

RDEPEND==dev-libs/glib-2.22
=x11-libs/gtk+-3.2:3
DEPEND=${RDEPEND}
virtual/pkgconfig
test? ( dev-util/dbus-test-runner )

src_configure() {
append-flags -Wno-error

econf \
--disable-silent-rules \
--disable-static \
--with-gtk=3
}

src_test() {
Xemake check 

[gentoo-commits] dev/johu:master commit in: dev-libs/qtkeychain/

2014-03-15 Thread Johannes Huber
commit: 18556610a863ccf20f137c05dadffd1cdf6bd08e
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Sat Mar 15 14:12:38 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Sat Mar 15 14:12:38 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/johu.git;a=commit;h=18556610

[dev-libs/qtkeychain] Sync with tree

Package-Manager: portage-2.2.8-r1

---
 dev-libs/qtkeychain/qtkeychain-.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-libs/qtkeychain/qtkeychain-.ebuild 
b/dev-libs/qtkeychain/qtkeychain-.ebuild
index 9db6bed..5b4e581 100644
--- a/dev-libs/qtkeychain/qtkeychain-.ebuild
+++ b/dev-libs/qtkeychain/qtkeychain-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -27,6 +27,8 @@ DEPEND=
 
 RDEPEND=${DEPEND}
 
+DOCS=( ChangeLog ReadMe.txt )
+
 src_configure() {
local mycmakeargs=(
$(cmake-utils_use_build !qt5 WITH_QT4)



[gentoo-commits] dev/johu:master commit in: metadata/

2014-03-15 Thread Johannes Huber
commit: 62726ed1c842562eeda8816fb0ca3311e9593a89
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Sat Mar 15 14:17:52 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Sat Mar 15 14:17:52 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/johu.git;a=commit;h=62726ed1

[metadata/layout.conf] Update

* deprecate EAPI 4
* bann EAPI 0,1.2,3
* use md5-dict cache

---
 metadata/layout.conf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/metadata/layout.conf b/metadata/layout.conf
index 2a6b735..556aae8 100644
--- a/metadata/layout.conf
+++ b/metadata/layout.conf
@@ -4,3 +4,6 @@ thin-manifests = true
 manifest-hashes = SHA256 SHA512 WHIRLPOOL
 sign-commits = true
 update-changelog = false
+cache-formats = md5-dict
+eapis-banned = 0 1 2 3
+eapis-deprecated = 4



[gentoo-commits] dev/johu:master commit in: media-sound/tomahawk/

2014-03-15 Thread Johannes Huber
commit: ee86e81eb609ec8c6fd14968b65f04908d1f8b68
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Sat Mar 15 14:26:20 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Sat Mar 15 14:26:20 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/johu.git;a=commit;h=ee86e81e

[media-sound/tomahawk] Sync with tree

Package-Manager: portage-2.2.8-r1

---
 media-sound/tomahawk/tomahawk-.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-sound/tomahawk/tomahawk-.ebuild 
b/media-sound/tomahawk/tomahawk-.ebuild
index 3f58275..bf6776f 100644
--- a/media-sound/tomahawk/tomahawk-.ebuild
+++ b/media-sound/tomahawk/tomahawk-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -29,10 +29,9 @@ DEPEND=
app-crypt/qca:2
=dev-cpp/clucene-2.3.3.4
=dev-libs/boost-1.41
-   =dev-libs/libattica-0.4.0
dev-libs/qjson
dev-libs/quazip
-   dev-libs/qtkeychain[qt5?]
+   dev-libs/qtkeychain
=media-libs/libechonest-2.1.0
=media-libs/liblastfm-1.0.1
=media-libs/phonon-4.5.0
@@ -40,6 +39,7 @@ DEPEND=
x11-libs/libX11
jabber? ( =net-libs/jreen-1.1.1 )
!qt5? (
+   =dev-libs/libattica-0.4.0
dev-qt/designer:4
dev-qt/qtcore:4
dev-qt/qtdbus:4
@@ -49,6 +49,7 @@ DEPEND=
dev-qt/qtwebkit:4
)
qt5? (
+   =dev-libs/libattica-0.4.0[qt5]
dev-qt/designer:5
dev-qt/qtcore:5
dev-qt/qtsvg:5



[gentoo-commits] dev/sera:master commit in: dev-python/python-efl/

2014-03-15 Thread Ralph Sennhauser
commit: 1f79835406c9b707377832d912d2675c66aa45f7
Author: Ralph Sennhauser sera AT gentoo DOT org
AuthorDate: Sat Mar 15 14:29:53 2014 +
Commit: Ralph Sennhauser sera AT gentoo DOT org
CommitDate: Sat Mar 15 14:29:53 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/sera.git;a=commit;h=1f798354

python-efl-1.9.0: Version bump

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: 3C5CF75A

---
 dev-python/python-efl/Manifest   | 16 
 .../{python-efl-1.8.1.ebuild = python-efl-1.9.0.ebuild} |  0
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-python/python-efl/Manifest b/dev-python/python-efl/Manifest
index 6188756..91c7f51 100644
--- a/dev-python/python-efl/Manifest
+++ b/dev-python/python-efl/Manifest
@@ -1,15 +1,15 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-DIST python-efl-1.8.1.tar.bz2 9302501 SHA256 
c973844c797e8b10f6c2b80af556b4b398605ab28a5904ea4822e7089ce2ac33 SHA512 
ed9af6bc5ac07956857ae0e750f978b16b6f54fbc240e28015cb1be700641d7cd6adebfbd208894b5dfded324fbe637801449aee3253cf3a92c3cb5af25f1e94
 WHIRLPOOL 
a4b701f5c881e6c85d5a7afa321c9a41222a7c41bd924475b9d94f02dfee478f53ae5fa1cb410e887d844f588ce71200bdd52592e9f5b8bf947d24709e4ada90
+DIST python-efl-1.9.0.tar.bz2 9469702 SHA256 
7d317a9258890e3156f2d425f7ff7b466bcf6ef77bc5cb74a9737396d879f718 SHA512 
dc43490b430b414d4af821a626965a463b9d2b16c51a91f10393009a442f0bc80c2aa6cbc65c1918fbec91d9dbb7dcdb2d9cead45f9ac205320b687f02ef86cd
 WHIRLPOOL 
824f73c9008a9ed8477419b7ff4340e442554026e2b4e35bd9a5dde7d3ca0aee1774ed8fd3532ecf3fa6668cb296e098244c7c1eca7e4b757c073f628b6253cc
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.22 (GNU/Linux)
 
-iQEcBAEBCAAGBQJS3B90AAoJELjwI6Q8XPdaDjMH/A9Gvqc+gaFViTgwJvoLq03Z
-mi/GHscih5qgkMGhjbDIG9YNm+IQKtb4W1112eWpfHTRC0gIUa0bAyBUUPhUSU6/
-s0xnosSowuUryElk2z+9Nra+eFJAMuOkb9TSjMhB8udElczBSbs67pd/1lorrM5Y
-M7o6WTSo8SIaAOxSMgVIvXKHeL3nYspoAeb8d/Wl07ZWMqNUgAepA1n8GJ6gPpFt
-HWC2FVQWqyqOicJ4FKlesDJVDOQ7uEaG28vU/BWW7kjIlgeuM7NAbJeHJVBGOVUo
-tuBhteg35s21AV5KfcoDojYOLjEkQYIlud5ywLUAQgnJ0kKY8zY5nzEIxZSVx8I=
-=8H13
+iQEcBAEBCAAGBQJTJGPhAAoJELjwI6Q8XPdaMYEH/Art7UJdCYUiGuEEzL5/iJhl
+f2CrykQnWMw1dLHQhVX+COK858t/B9ad7pRvuFapN0+tRlDsfWVAuJOiFlULS/q3
+XPx47z984RQVFTCBU+pxnZqIUWcUp8UlKkZS4tTy9xKjWZ0I3w54CxlZWJa8wHP3
+4XHoduCE0AeIzZdUwkPtoogaEnDjrho1/ROq15+Up4rS7N5Ka7fJyuVxn26vG3e8
+5ikiVPp6shDpUehzqgYbcNrxlyupKheuY0vMC3kNf45ydgT0D7jbh1lcJXurrGRG
+JYuvUb5dc4WKdibfbgQj1a8qPYTNMnVoe+scA3pEZ6Q6sxjdtjW2JYIvuuM+cQ4=
+=MgRM
 -END PGP SIGNATURE-

diff --git a/dev-python/python-efl/python-efl-1.8.1.ebuild 
b/dev-python/python-efl/python-efl-1.9.0.ebuild
similarity index 100%
rename from dev-python/python-efl/python-efl-1.8.1.ebuild
rename to dev-python/python-efl/python-efl-1.9.0.ebuild



[gentoo-commits] dev/sera:master commit in: dev-libs/efl/

2014-03-15 Thread Ralph Sennhauser
commit: c7242d8a78ad36d13d68b7bd4f9981bdd813b7fc
Author: Ralph Sennhauser sera AT gentoo DOT org
AuthorDate: Sat Mar 15 14:11:46 2014 +
Commit: Ralph Sennhauser sera AT gentoo DOT org
CommitDate: Sat Mar 15 14:11:46 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/sera.git;a=commit;h=c7242d8a

efl-1.9.1: Version bump

Drop xcb as upstream doesn't like it being exposed as it's considered
broken.

Drop audio useflag as it's redundant with pulseaudio.

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: 3C5CF75A

---
 dev-libs/efl/Manifest  |  17 +-
 dev-libs/efl/efl-1.8.5.ebuild  | 238 -
 .../{efl-1.9.0_beta2.ebuild = efl-1.9.1.ebuild}   |  51 ++---
 dev-libs/efl/metadata.xml  |   1 -
 4 files changed, 23 insertions(+), 284 deletions(-)

diff --git a/dev-libs/efl/Manifest b/dev-libs/efl/Manifest
index 4acda41..079e88d 100644
--- a/dev-libs/efl/Manifest
+++ b/dev-libs/efl/Manifest
@@ -1,16 +1,15 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-DIST efl-1.8.5.tar.bz2 28175735 SHA256 
4456ce34bdc8294336c451a44e12f2f928ac9b857040da6d72c10432611646de SHA512 
155542aa900980c59745dd2b25244d52b38de0de400b8432f9183c53c9770efdbca9d6e31f3305cf16d19357660ff8383447442d6a08c9ddec2e83a5b054e6df
 WHIRLPOOL 
d8efbc474a6d62837ab94c7ab6a060c1440fa16a2e798c2d722d6029ac17421afb8b07b3cf614c94fa9fed9f55fad8994377bc7a37b1e024fcf28423b45221a0
-DIST efl-1.9.0-beta2.tar.bz2 28175848 SHA256 
81b96dbf2b4b1c95071b28b87779845e9e5894bc046574250f7e050988c31a33 SHA512 
831212c693aea42319650c9a4d16c0cc5599e01f6b71c995cbb3ca1f8c1893d08fe7f8deffb300cc7a50c72052a34b04d24fa0d16239f547ccb98882054eba4f
 WHIRLPOOL 
381df0380eb5b500e071a2307b36bb03e941a3f3d84c47045680dcb4ca344c70aff615ca57b51f360ede74b749b75df8a857b1286a201a41f99dd4a303300324
+DIST efl-1.9.1.tar.bz2 28183514 SHA256 
5d84daa3831bb931d3d37014a2183e033552b5bbf90d66e06d2ab91c76f85196 SHA512 
ef9a244d1330c06714dcb054c622850542ce69cd6d8fbddd343cf7b8169e64b7120d0c6bfe88be523a313edfb2a2170d712aaedd1dcf4785a9ea6508abd8a75a
 WHIRLPOOL 
c5a15627334daa0910c439cc753cfdc173fd93a660ec1f8edab759c5f8b6e3ae675563cc28e19dbb1062edd99ac954cb9f941cd5a8919113fa21961fcd0c9974
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.22 (GNU/Linux)
 
-iQEcBAEBCAAGBQJTCK2GAAoJELjwI6Q8XPdaFwoH/2qpICYcWun0wJHfmF8jAyi9
-6qijgSFOOhO1coLt2/9p5piGncM49whd+x2EuJx2zfN/3uUy17WbsJCGoImYTINA
-HiVnSGs4rRpy4SWGsDuIbTOy7uCOyxf26BdtdR0nZv5t5ybiBmZA1oj1lebb3Hku
-6iYy02lfXhIy99mtQHCWSm1mLsqEUF5X9KVD1cAO8FPaiLizasuccuvcA1ygs4vd
-PSbns2Ftyojy3wUKo6f1BcdwqRcLR0CeBOcsEjkEYG+k6SVTJ8bPAj6guAZOVjma
-he5rqeIcWsbHBdmiyMFuU2uS5Pv9lfYGNEwuyZZAvox50VioybUsaVsxR+sfWyw=
-=HsSC
+iQEcBAEBCAAGBQJTJF+iAAoJELjwI6Q8XPdayYwH/0OO7dxaE0h7AJFo5eqLRW5U
+KvsJqmvucMzv6EknxUOnAhu9zIkCzT+Esfd5lN4tLz4y7hUmCzPpWAo+3Tez9o60
+tNOiaxXUKX+Gil/PjntBOi5oBZ6XkDtyCfXAwB4IKqLIzVwGafkcWLE+7/PIwl0J
+0nSZGZ8+4gC8Biw7VGC5iH75Mh2Wa23jlFUv9x2WmXNr9vzrYVnfesKyslIfMODB
+yiSO7M3/DZpfSEH8E2a8ikk63lFW90S4JU6Yu8ML8NGYKaEkfjXi71ekRye9Vtlo
+0eFJBfDOT/HmcH7Qh6qnyn5GMrvmQl7lFjQpPxRMn2oyYET39Fpx/GHhzf/vP9k=
+=gU/6
 -END PGP SIGNATURE-

diff --git a/dev-libs/efl/efl-1.8.5.ebuild b/dev-libs/efl/efl-1.8.5.ebuild
deleted file mode 100644
index 2d12fe2..000
--- a/dev-libs/efl/efl-1.8.5.ebuild
+++ /dev/null
@@ -1,238 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit eutils libtool
-
-DESCRIPTION=Enlightenment Foundation Core Libraries
-HOMEPAGE=http://www.enlightenment.org/;
-SRC_URI=http://download.enlightenment.org/rel/libs/${PN}/${P}.tar.bz2;
-
-LICENSE=BSD-2 GPL-2 LGPL-2.1 ZLIB
-SLOT=0
-KEYWORDS=~amd64 ~x86
-
-IUSE=+X audio debug doc drm egl fbcon +fontconfig fribidi gif gles glib 
gnutls gstreamer harfbuzz ibus jp2k nls +opengl ssl physics pixman +png 
pulseaudio scim sdl static-libs systemd test tiff tslib v4l2 wayland webp xcb 
xim xine xpm
-
-COMMON_DEP=
-   dev-lang/lua
-   sys-apps/dbus
-   =sys-apps/util-linux-2.20.0
-   sys-libs/zlib
-   virtual/jpeg
-   virtual/udev
-   X? (
-   x11-libs/libX11
-   gles? (
-   media-libs/mesa[egl,gles2]
-   x11-libs/libXrender
-   )
-   opengl? (
-   virtual/opengl
-   x11-libs/libXrender
-   )
-   xcb? (
-   x11-libs/libxcb
-   x11-libs/pixman
-   x11-libs/xcb-util
-   x11-libs/xcb-util-image
-   x11-libs/xcb-util-keysyms
-   x11-libs/xcb-util-renderutil
-   x11-libs/xcb-util-wm
-   )
-   !xcb? (
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   

[gentoo-commits] dev/sera:master commit in: x11-wm/enlightenment/

2014-03-15 Thread Ralph Sennhauser
commit: 04a0ab03523ba07d2f0f51d436133ea06e7e7e9c
Author: Ralph Sennhauser sera AT gentoo DOT org
AuthorDate: Sat Mar 15 14:31:56 2014 +
Commit: Ralph Sennhauser sera AT gentoo DOT org
CommitDate: Sat Mar 15 14:31:56 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/sera.git;a=commit;h=04a0ab03

enlightenment-0.18.5: Version bump

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: 3C5CF75A

---
 x11-wm/enlightenment/Manifest| 16 
 ...tenment-0.18.4.ebuild = enlightenment-0.18.5.ebuild} |  0
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/x11-wm/enlightenment/Manifest b/x11-wm/enlightenment/Manifest
index b7a8f83..20183e0 100644
--- a/x11-wm/enlightenment/Manifest
+++ b/x11-wm/enlightenment/Manifest
@@ -1,15 +1,15 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-DIST enlightenment-0.18.4.tar.bz2 27610723 SHA256 
1931d82b2dadfbecbcefcecf2c1e465cc6dc7c9c2fc5078eb703731cfcc5523c SHA512 
00417a31bdf8cdb13d6a5c6740ca79655f287e6c2efe86b05e64f5c6e912e9aa1569b628fee6df53789428934dc5125e3b239bd0192bd484feb74567130db015
 WHIRLPOOL 
c5260ccb7a650d40fc1e474feed22c393648fc69bc6f8bed95110e892b86bb93fc3187e38a3e3d9177d0935a330de98937ec8bf89fd7873d333bed8bcb82e1f2
+DIST enlightenment-0.18.5.tar.bz2 27611538 SHA256 
2bb747f3df0e06d2bfed998f9c961e5e319244801f75a705addd23d21c466bbe SHA512 
57289b072e6b4d726e45974b52536cac6ce00712e92c3a94b71ed9cc4692ff7f92e7801a4eb2061bff21015ae0419ebfaefaea9e471c35947d04d70e2295bd9f
 WHIRLPOOL 
e17dfb3886563df0723bf1148dd9547c03a7fba8782f28ed6e52bd271e615204016f7d8f491e821c1ed912c59ff7dc0c8921b5752d5d708d688e4d586dbffc75
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.22 (GNU/Linux)
 
-iQEcBAEBCAAGBQJTCIWYAAoJELjwI6Q8XPdaXQcIAK9oSAKRpZfg0osucZhI5Og8
-IURmiQFgLj94ky/5huU3f2dhIj+NCrR1DxenCCbm0pSa5B+saNv9mtgR9kXVrWG8
-sSPBXaWnOtfOmsyKsBmUbbTpoUnNgjmjzJ++yIaD6Xwf6UbiQGJfsuqNq1UWfmoL
-FnR+EA/p1Xru9mm9npslKfSoDWPXNjh4tN4Ffr4I6/BrbIMLCtaY6bQnCUMS10ms
-K1vZC3DnagJa1VQr7nv1XDZzl1joEeLBBKbc8I4HKg9EZslsSp+cw/9vkBhD+5d/
-5HSF0Sztas8XpAcKVpo7RYY/irug8AT9aCu3qHBZA5hhvEpR6x2lTFQGCYOUYqc=
-=XJ75
+iQEcBAEBCAAGBQJTJGRcAAoJELjwI6Q8XPdaS70H/iXsY7ty0CwmGXG/egSZ1ojF
+L+MTk4ZKONv2Qn+nZ9y6JJc8YLyZSGTTxmdNIligngWnVMkoHJ3l5jwlERvosp8s
+dUfqhtooAeflrx0CSH/4vPLmtV+yFiXtprLiHrRHglYXDuCGwqwzAGf+9NOIIF8l
+5V0erGfeheefP4+fC0N91HsYY/AZ53xbnKJbLuQA8twt5XD4nGqFDvexRgPGacrK
+6DO48pu4dd6X+utpcr3YgvILcMYIkS4DAzbt0yywHJCrxK9+AnkGG21654qgGfJh
+C0zxr4EFSkR969CittkP8H7/MBl9EROmKs1DRzeAZfFqzeQ2GR4jtB4XJC2Kf5E=
+=VexA
 -END PGP SIGNATURE-

diff --git a/x11-wm/enlightenment/enlightenment-0.18.4.ebuild 
b/x11-wm/enlightenment/enlightenment-0.18.5.ebuild
similarity index 100%
rename from x11-wm/enlightenment/enlightenment-0.18.4.ebuild
rename to x11-wm/enlightenment/enlightenment-0.18.5.ebuild



[gentoo-commits] dev/johu:master commit in: media-tv/tvbrowser/

2014-03-15 Thread Johannes Huber
commit: 54990695f9906dd711ad049156f543d1c82bcf63
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Sat Mar 15 14:37:40 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Sat Mar 15 14:37:40 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/johu.git;a=commit;h=54990695

[media-tv/tvbrowser] Sync with tree

Package-Manager: portage-2.2.8-r1

---
 media-tv/tvbrowser/tvbrowser-.ebuild | 331 ++-
 1 file changed, 146 insertions(+), 185 deletions(-)

diff --git a/media-tv/tvbrowser/tvbrowser-.ebuild 
b/media-tv/tvbrowser/tvbrowser-.ebuild
index d27c853..a870d64 100644
--- a/media-tv/tvbrowser/tvbrowser-.ebuild
+++ b/media-tv/tvbrowser/tvbrowser-.ebuild
@@ -1,68 +1,72 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
-#WANT_ANT_TASKS=ant-junit
-JAVA_PKG_IUSE=doc source
-inherit eutils java-pkg-2 java-ant-2 flag-o-matic subversion
+JAVA_PKG_IUSE=doc source test
+
+inherit eutils java-pkg-2 java-ant-2 flag-o-matic virtualx subversion
+
+tp_base=http://javootoo.l2fprod.com/plaf/skinlf/themepacks;
+tvp_base=http://tvbrowser.org/downloads;
 
 DESCRIPTION=Themeable and easy to use TV Guide - written in Java
 HOMEPAGE=http://www.tvbrowser.org/;
-SRC_URI=themes? (
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/BeOSthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/amarachthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/aquathemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/architectBluethemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/architectOlivethemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/b0sumiErgothempack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/b0sumithemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/bbjthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/beigeazulthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/beosthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/blueMetalthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/blueTurquesathemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/cellshadedthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/chaNinja-Bluethemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/coronaHthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/cougarthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/crystal2themepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/fatalEthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/gfxOasisthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/gorillathemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/hmmXPBluethemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/hmmXPMonoBluethemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/iBarthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/macosthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/midnightthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/mmMagra-Xthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/modernthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/oliveGreenLunaXPthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/opusLunaSilverthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/opusOSBluethemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/opusOSDeepthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/opusOSOlivethemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/quickSilverRthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/roueBluethemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/roueBrownthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/roueGreenthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/royalInspiratthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/silverLunaXPthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/solunaRthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/tigerGraphitethemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/tigerthemepack.zip
-   http://javootoo.l2fprod.com/plaf/skinlf/themepacks/toxicthemepack.zip
-   
http://javootoo.l2fprod.com/plaf/skinlf/themepacks/underlingthemepack.zip
-   

[gentoo-commits] gentoo-x86 commit in dev-vcs/gitg: gitg-0.3.2.ebuild ChangeLog gitg-0.2.6.ebuild gitg-0.2.7.ebuild

2014-03-15 Thread Sebastian Pipping (sping)
sping   14/03/15 15:04:20

  Modified: gitg-0.3.2.ebuild ChangeLog gitg-0.2.6.ebuild
gitg-0.2.7.ebuild
  Log:
  dev-vcs/gitg: Add build dependency gnome-base/gnome-common (bug #504070)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x401A1600)

Revision  ChangesPath
1.2  dev-vcs/gitg/gitg-0.3.2.ebuild

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

Index: gitg-0.3.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gitg-0.3.2.ebuild   8 Feb 2014 14:33:20 -   1.1
+++ gitg-0.3.2.ebuild   15 Mar 2014 15:04:20 -  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-vcs/gitg/gitg-0.3.2.ebuild,v 1.1 
2014/02/08 14:33:20 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.3.2.ebuild,v 1.2 
2014/03/15 15:04:20 sping Exp $
 
 EAPI=5
 
@@ -42,6 +42,7 @@
)
 
 DEPEND=${RDEPEND}
+   gnome-base/gnome-common
=sys-devel/gettext-0.17
virtual/pkgconfig
=dev-util/intltool-0.40



1.26 dev-vcs/gitg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.26view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.26content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?r1=1.25r2=1.26

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   8 Feb 2014 14:33:20 -   1.25
+++ ChangeLog   15 Mar 2014 15:04:20 -  1.26
@@ -1,6 +1,11 @@
 # ChangeLog for dev-vcs/gitg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.25 2014/02/08 
14:33:20 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.26 2014/03/15 
15:04:20 sping Exp $
+
+  15 Mar 2014; Sebastian Pipping sp...@gentoo.org gitg-0.3.2.ebuild:
+  eautoreconf needs GNOME_COMPILE_WARNINGS from
+  /usr/share/aclocal/gnome-compiler-flags.m4 to rebuild configure script (bug
+  #504070)
 
 *gitg-0.3.2 (08 Feb 2014)
 



1.3  dev-vcs/gitg/gitg-0.2.6.ebuild

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

Index: gitg-0.2.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.2.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gitg-0.2.6.ebuild   13 Apr 2013 13:14:04 -  1.2
+++ gitg-0.2.6.ebuild   15 Mar 2014 15:04:20 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.2.6.ebuild,v 1.2 
2013/04/13 13:14:04 ikelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.2.6.ebuild,v 1.3 
2014/03/15 15:04:20 sping Exp $
 
 EAPI=5
 
@@ -27,6 +27,7 @@
glade? ( =dev-util/glade-3.2:3.10 )
 
 DEPEND=${RDEPEND}
+   gnome-base/gnome-common
=sys-devel/gettext-0.17
virtual/pkgconfig
=dev-util/intltool-0.40



1.4  dev-vcs/gitg/gitg-0.2.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-0.2.7.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-0.2.7.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-0.2.7.ebuild?r1=1.3r2=1.4

Index: gitg-0.2.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.2.7.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gitg-0.2.7.ebuild   18 Aug 2013 13:26:33 -  1.3
+++ gitg-0.2.7.ebuild   15 Mar 2014 15:04:20 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 

[gentoo-commits] gentoo-x86 commit in www-client/google-chrome: google-chrome-33.0.1750.152_p1.ebuild ChangeLog google-chrome-33.0.1750.149_p1.ebuild

2014-03-15 Thread Mike Frysinger (vapier)
vapier  14/03/15 15:05:35

  Modified: ChangeLog
  Added:google-chrome-33.0.1750.152_p1.ebuild
  Removed:  google-chrome-33.0.1750.149_p1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.373www-client/google-chrome/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome/ChangeLog?rev=1.373view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome/ChangeLog?rev=1.373content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome/ChangeLog?r1=1.372r2=1.373

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/google-chrome/ChangeLog,v
retrieving revision 1.372
retrieving revision 1.373
diff -u -r1.372 -r1.373
--- ChangeLog   11 Mar 2014 15:50:54 -  1.372
+++ ChangeLog   15 Mar 2014 15:05:35 -  1.373
@@ -1,6 +1,13 @@
 # ChangeLog for www-client/google-chrome
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/ChangeLog,v 1.372 
2014/03/11 15:50:54 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/ChangeLog,v 1.373 
2014/03/15 15:05:35 vapier Exp $
+
+*google-chrome-33.0.1750.152_p1 (15 Mar 2014)
+
+  15 Mar 2014; Mike Frysinger vap...@gentoo.org
+  +google-chrome-33.0.1750.152_p1.ebuild,
+  -google-chrome-33.0.1750.149_p1.ebuild:
+  Version bump.
 
 *google-chrome-33.0.1750.149_p1 (11 Mar 2014)
 



1.1  
www-client/google-chrome/google-chrome-33.0.1750.152_p1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome/google-chrome-33.0.1750.152_p1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome/google-chrome-33.0.1750.152_p1.ebuild?rev=1.1content-type=text/plain

Index: google-chrome-33.0.1750.152_p1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-33.0.1750.152_p1.ebuild,v
 1.1 2014/03/15 15:05:35 vapier Exp $

EAPI=5

CHROMIUM_LANGS=am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he
hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl 
sr
sv sw ta te th tr uk vi zh_CN zh_TW

inherit readme.gentoo chromium eutils multilib pax-utils unpacker

DESCRIPTION=The web browser from Google
HOMEPAGE=http://www.google.com/chrome;

if [[ ${PN} == google-chrome ]]; then
MY_PN=${PN}-stable
else
MY_PN=${PN}
fi

MY_P=${MY_PN}_${PV/_p/-}

SRC_URI=
amd64? (

http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb
)
x86? (

http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_i386.deb
)


LICENSE=google-chrome
SLOT=0
KEYWORDS=-* ~amd64 ~x86
IUSE=+plugins
RESTRICT=bindist mirror strip

RDEPEND=
app-arch/bzip2
app-misc/ca-certificates
dev-libs/atk
dev-libs/expat
dev-libs/glib:2
|| ( dev-libs/libgcrypt:11 dev-libs/libgcrypt:0/11 )
dev-libs/nspr
dev-libs/nss
gnome-base/gconf:2
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype
net-print/cups
sys-apps/dbus
=sys-devel/gcc-4.4.0[cxx]
sys-libs/libcap
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
=x11-libs/libX11-1.5.0
x11-libs/libXcomposite
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXScrnSaver
x11-libs/libXtst
x11-libs/pango
x11-misc/xdg-utils


if [[ ${PN} == google-chrome ]]; then
RDEPEND+=
!www-client/google-chrome:beta
!www-client/google-chrome:stable
!www-client/google-chrome:unstable

fi

for x in google-chrome{,-beta,-unstable}; do
if [[ ${PN} != ${x} ]]; then
RDEPEND+= !www-client/${x}
fi
done
unset x

QA_PREBUILT=*
S=${WORKDIR}

DISABLE_AUTOFORMATTING=yes
DOC_CONTENTS=
Some web pages may require additional fonts to display properly.
Try installing some of the following packages if some characters
are not displayed properly:
- media-fonts/arphicfonts
- media-fonts/bitstream-cyberbit
- media-fonts/droid
- media-fonts/ipamonafont
- media-fonts/ja-ipafonts
- media-fonts/takao-fonts
- media-fonts/wqy-microhei
- media-fonts/wqy-zenhei

Depending on your desktop environment, you may need
to install additional packages 

[gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-gobject-introspection: ruby-gobject-introspection-2.2.0.ebuild ChangeLog

2014-03-15 Thread Naohiro Aota (naota)
naota   14/03/15 15:09:19

  Modified: ChangeLog
  Added:ruby-gobject-introspection-2.2.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F8551514)

Revision  ChangesPath
1.5  dev-ruby/ruby-gobject-introspection/ChangeLog

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

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/ruby-gobject-introspection/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   15 Jan 2014 18:43:43 -  1.4
+++ ChangeLog   15 Mar 2014 15:09:19 -  1.5
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/ruby-gobject-introspection
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/ruby-gobject-introspection/ChangeLog,v 1.4 
2014/01/15 18:43:43 naota Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/ruby-gobject-introspection/ChangeLog,v 1.5 
2014/03/15 15:09:19 naota Exp $
+
+*ruby-gobject-introspection-2.2.0 (15 Mar 2014)
+
+  15 Mar 2014; Naohiro Aota na...@gentoo.org
+  +ruby-gobject-introspection-2.2.0.ebuild:
+  version bump
 
 *ruby-gobject-introspection-2.1.0 (15 Jan 2014)
 



1.1  
dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.0.ebuild

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

Index: ruby-gobject-introspection-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/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.0.ebuild,v
 1.1 2014/03/15 15:09:19 naota Exp $

EAPI=4
USE_RUBY=ruby19 ruby20

inherit ruby-ng-gnome2

RUBY_S=ruby-gnome2-all-${PV}/gobject-introspection

DESCRIPTION=Ruby GObjectIntrosprction bindings
KEYWORDS=~amd64
IUSE=

DEPEND=${DEPEND} dev-libs/gobject-introspection
RDEPEND=${RDEPEND} dev-libs/gobject-introspection

ruby_add_rdepend =dev-ruby/ruby-glib2-${PV}






[gentoo-commits] gentoo-x86 commit in dev-python/python-fchksum: python-fchksum-1.7.1-r1.ebuild ChangeLog

2014-03-15 Thread Mike Frysinger (vapier)
vapier  14/03/15 15:16:53

  Modified: ChangeLog
  Added:python-fchksum-1.7.1-r1.ebuild
  Log:
  Update to distutils-r1 and fix unaligned accesses in md5 module.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.40 dev-python/python-fchksum/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fchksum/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   15 Mar 2014 15:02:19 -  1.39
+++ ChangeLog   15 Mar 2014 15:16:53 -  1.40
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-fchksum
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fchksum/ChangeLog,v 1.39 
2014/03/15 15:02:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fchksum/ChangeLog,v 1.40 
2014/03/15 15:16:53 vapier Exp $
+
+*python-fchksum-1.7.1-r1 (15 Mar 2014)
+
+  15 Mar 2014; Mike Frysinger vap...@gentoo.org
+  +files/python-fchksum-1.7.1-md5-align.patch, +python-fchksum-1.7.1-r1.ebuild:
+  Update to distutils-r1 and fix unaligned accesses in md5 module.
 
   15 Mar 2014; Mike Frysinger vap...@gentoo.org python-fchksum-1.7.1.ebuild:
   Update HOMEPAGE/SRC_URI.



1.1  dev-python/python-fchksum/python-fchksum-1.7.1-r1.ebuild

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

Index: python-fchksum-1.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/dev-python/python-fchksum/python-fchksum-1.7.1-r1.ebuild,v
 1.1 2014/03/15 15:16:53 vapier Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Python module to find the checksum of files
HOMEPAGE=http://code.fluffytapeworm.com/projects;
SRC_URI=http://code.fluffytapeworm.com/projects/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
IUSE=

DEPEND=sys-libs/zlib
RDEPEND=${DEPEND}

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






[gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-clutter: ruby-clutter-2.2.0.ebuild ChangeLog

2014-03-15 Thread Naohiro Aota (naota)
naota   14/03/15 15:17:48

  Modified: ChangeLog
  Added:ruby-clutter-2.2.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F8551514)

Revision  ChangesPath
1.5  dev-ruby/ruby-clutter/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-clutter/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   15 Jan 2014 18:47:22 -  1.4
+++ ChangeLog   15 Mar 2014 15:17:48 -  1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/ruby-clutter
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-clutter/ChangeLog,v 1.4 
2014/01/15 18:47:22 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-clutter/ChangeLog,v 1.5 
2014/03/15 15:17:48 naota Exp $
+
+*ruby-clutter-2.2.0 (15 Mar 2014)
+
+  15 Mar 2014; Naohiro Aota na...@gentoo.org +ruby-clutter-2.2.0.ebuild:
+  version bump
 
 *ruby-clutter-2.1.0 (15 Jan 2014)
 



1.1  dev-ruby/ruby-clutter/ruby-clutter-2.2.0.ebuild

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

Index: ruby-clutter-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/dev-ruby/ruby-clutter/ruby-clutter-2.2.0.ebuild,v 1.1 
2014/03/15 15:17:48 naota Exp $

EAPI=5
USE_RUBY=ruby19 ruby20

inherit ruby-ng-gnome2

DESCRIPTION=Ruby Clutter bindings
KEYWORDS=~amd64
IUSE=

RESTRICT=test

RUBY_S=ruby-gnome2-all-${PV}/clutter

DEPEND=${DEPEND} media-libs/clutter
RDEPEND=${RDEPEND} media-libs/clutter

ruby_add_bdepend =dev-ruby/ruby-glib2-${PV}
ruby_add_rdepend =dev-ruby/ruby-cairo-gobject-${PV}
=dev-ruby/ruby-gobject-introspection-${PV}

each_ruby_configure() {
:
}

each_ruby_compile() {
:
}

each_ruby_install() {
each_fakegem_install
}






[gentoo-commits] gentoo-x86 commit in media-gfx/gimp: ChangeLog gimp-9999.ebuild

2014-03-15 Thread Sebastian Pipping (sping)
sping   14/03/15 15:28:26

  Modified: ChangeLog gimp-.ebuild
  Log:
  media-gfx/gimp: Update live ebuild dependencies (bug #490636)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x401A1600)

Revision  ChangesPath
1.425media-gfx/gimp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
retrieving revision 1.424
retrieving revision 1.425
diff -u -r1.424 -r1.425
--- ChangeLog   4 Mar 2014 20:04:55 -   1.424
+++ ChangeLog   15 Mar 2014 15:28:26 -  1.425
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/gimp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.424 2014/03/04 
20:04:55 vincent Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.425 2014/03/15 
15:28:26 sping Exp $
+
+  15 Mar 2014; Sebastian Pipping sp...@gentoo.org gimp-.ebuild:
+  Update live ebuild dependencies (bug #490636)
 
   04 Mar 2014; Vicente Olivert Riera vinc...@gentoo.org 
gimp-2.8.10-r1.ebuild:
   Add ~mips keyword.



1.52 media-gfx/gimp/gimp-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/gimp-.ebuild?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/gimp-.ebuild?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/gimp-.ebuild?r1=1.51r2=1.52

Index: gimp-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-.ebuild,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- gimp-.ebuild24 Jul 2013 03:34:02 -  1.51
+++ gimp-.ebuild15 Mar 2014 15:28:26 -  1.52
@@ -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/media-gfx/gimp/gimp-.ebuild,v 1.51 
2013/07/24 03:34:02 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-.ebuild,v 1.52 
2014/03/15 15:28:26 sping Exp $
 
 EAPI=3
 PYTHON_DEPEND=python? 2:2.5
@@ -17,13 +17,13 @@
 SLOT=2
 KEYWORDS=
 
-IUSE=alsa aalib altivec aqua bzip2 curl dbus debug doc exif gnome postscript 
jpeg jpeg2k lcms mmx mng pdf png python smp sse svg tiff udev webkit wmf xpm
+IUSE=alsa aalib altivec aqua bzip2 curl dbus debug doc gnome openexr 
postscript jpeg jpeg2k lcms mmx mng pdf png python smp sse svg tiff udev webkit 
wmf xpm
 
-RDEPEND==dev-libs/glib-2.30.2:2
+RDEPEND==dev-libs/glib-2.36.0:2
=dev-libs/atk-2.2.0
=x11-libs/gtk+-2.24.10:2
=x11-libs/gdk-pixbuf-2.24.1:2
-   =x11-libs/cairo-1.10.2
+   =x11-libs/cairo-1.12.2
=x11-libs/pango-1.29.4
xpm? ( x11-libs/libXpm )
=media-libs/freetype-2.1.7
@@ -42,8 +42,8 @@
webkit? ( =net-libs/webkit-gtk-1.6.1:2 )
jpeg? ( virtual/jpeg:0 )
jpeg2k? ( media-libs/jasper )
-   exif? ( =media-libs/libexif-0.6.15 )
-   lcms? ( =media-libs/lcms-1.16:0 )
+   =media-libs/gexiv2-0.6.1
+   lcms? ( =media-libs/lcms-2.2:2 )
mng? ( media-libs/libmng )
pdf? ( =app-text/poppler-0.12.4[cairo] )
png? ( =media-libs/libpng-1.2.37:0 )
@@ -53,6 +53,7 @@
wmf? ( =media-libs/libwmf-0.2.8 )
x11-libs/libXcursor
sys-libs/zlib
+   =app-arch/xz-utils-5.0.0
bzip2? ( app-arch/bzip2 )
postscript? ( app-text/ghostscript-gpl )
udev? ( virtual/udev[gudev] )
@@ -79,11 +80,12 @@
$(use_with curl libcurl) \
$(use_with dbus) \
$(use_with gnome gvfs) \
+   $(use_with openexr) \
$(use_with webkit) \
$(use_with jpeg libjpeg) \
$(use_with jpeg2k libjasper) \
$(use_with exif libexif) \
-   $(use_with lcms) \
+   $(use_with lcms lcms lcms2) \
$(use_with postscript gs) \
$(use_enable mmx) \
$(use_with mng libmng) \






[gentoo-commits] gentoo-x86 commit in net-misc/youtube-dl: ChangeLog youtube-dl-2013.12.20.ebuild

2014-03-15 Thread Jeroen Roovers (jer)
jer 14/03/15 15:29:35

  Modified: ChangeLog
  Removed:  youtube-dl-2013.12.20.ebuild
  Log:
  Old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.318net-misc/youtube-dl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.318view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.318content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?r1=1.317r2=1.318

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v
retrieving revision 1.317
retrieving revision 1.318
diff -u -r1.317 -r1.318
--- ChangeLog   14 Mar 2014 10:05:45 -  1.317
+++ ChangeLog   15 Mar 2014 15:29:35 -  1.318
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/youtube-dl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.317 
2014/03/14 10:05:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.318 
2014/03/15 15:29:35 jer Exp $
+
+  15 Mar 2014; Jeroen Roovers j...@gentoo.org -youtube-dl-2013.12.20.ebuild:
+  Old.
 
   14 Mar 2014; Agostino Sarubbo a...@gentoo.org youtube-dl-2014.02.10.ebuild:
   Stable for ppc64, wrt bug #501090






[gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-gstreamer: ruby-gstreamer-2.2.0.ebuild ChangeLog

2014-03-15 Thread Naohiro Aota (naota)
naota   14/03/15 15:51:21

  Modified: ChangeLog
  Added:ruby-gstreamer-2.2.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F8551514)

Revision  ChangesPath
1.68 dev-ruby/ruby-gstreamer/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gstreamer/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   10 Mar 2014 16:16:20 -  1.67
+++ ChangeLog   15 Mar 2014 15:51:21 -  1.68
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/ruby-gstreamer
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gstreamer/ChangeLog,v 1.67 
2014/03/10 16:16:20 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gstreamer/ChangeLog,v 1.68 
2014/03/15 15:51:21 naota Exp $
+
+*ruby-gstreamer-2.2.0 (15 Mar 2014)
+
+  15 Mar 2014; Naohiro Aota na...@gentoo.org +ruby-gstreamer-2.2.0.ebuild:
+  version bump
 
   10 Mar 2014; Manuel Rüger mr...@gentoo.org -ruby-gstreamer-1.1.3.ebuild,
   ruby-gstreamer-1.1.8.ebuild, ruby-gstreamer-1.2.6.ebuild:



1.1  dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.0.ebuild

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

Index: ruby-gstreamer-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/dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.0.ebuild,v 
1.1 2014/03/15 15:51:21 naota Exp $

EAPI=5
USE_RUBY=ruby19 ruby20

inherit ruby-ng-gnome2

DESCRIPTION=Ruby GStreamer bindings
KEYWORDS=~amd64 ~ppc ~x86
IUSE=

RDEPEND=${RDEPEND}
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10
DEPEND=${DEPEND}
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10






[gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-clutter-gstreamer: ruby-clutter-gstreamer-2.2.0.ebuild ChangeLog

2014-03-15 Thread Naohiro Aota (naota)
naota   14/03/15 15:55:57

  Modified: ChangeLog
  Added:ruby-clutter-gstreamer-2.2.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F8551514)

Revision  ChangesPath
1.3  dev-ruby/ruby-clutter-gstreamer/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-clutter-gstreamer/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   15 Jan 2014 19:10:02 -  1.2
+++ ChangeLog   15 Mar 2014 15:55:57 -  1.3
@@ -1,3 +1,9 @@
+*ruby-clutter-gstreamer-2.2.0 (15 Mar 2014)
+
+  15 Mar 2014; Naohiro Aota na...@gentoo.org
+  +ruby-clutter-gstreamer-2.2.0.ebuild:
+  version bump
+
 *ruby-clutter-gstreamer-2.1.0 (15 Jan 2014)
 
   15 Jan 2014; Naohiro Aota na...@gentoo.org



1.1  
dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.0.ebuild

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

Index: ruby-clutter-gstreamer-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/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.0.ebuild,v
 1.1 2014/03/15 15:55:57 naota Exp $

EAPI=5
USE_RUBY=ruby19 ruby20

inherit ruby-ng-gnome2

DESCRIPTION=Ruby Clutter bindings
KEYWORDS=~amd64
IUSE=

RUBY_S=ruby-gnome2-all-${PV}/clutter-gstreamer

DEPEND=${DEPEND} media-libs/clutter-gst
RDEPEND=${RDEPEND} media-libs/clutter-gst

ruby_add_rdepend =dev-ruby/ruby-clutter-${PV}
=dev-ruby/ruby-gstreamer-${PV}

each_ruby_configure() {
:
}

each_ruby_compile() {
:
}

each_ruby_install() {
each_fakegem_install
}






[gentoo-commits] gentoo-x86 commit in dev-libs/libuv: libuv-0.11.22.ebuild ChangeLog libuv-0.11.16.ebuild libuv-0.11.10.ebuild libuv-0.11.13.ebuild libuv-0.11.21.ebuild libuv-0.11.6.ebuild libuv-0.11.

2014-03-15 Thread Julian Ospald (hasufell)
hasufell14/03/15 16:10:10

  Modified: ChangeLog
  Added:libuv-0.11.22.ebuild
  Removed:  libuv-0.11.16.ebuild libuv-0.11.10.ebuild
libuv-0.11.13.ebuild libuv-0.11.21.ebuild
libuv-0.11.6.ebuild libuv-0.11.12.ebuild
libuv-0.11.8.ebuild libuv-0.11.18.ebuild
  Log:
  version bump (fixes bug #504542), add subslot, remove old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.13 dev-libs/libuv/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   27 Feb 2014 14:20:55 -  1.12
+++ ChangeLog   15 Mar 2014 16:10:09 -  1.13
@@ -1,6 +1,14 @@
 # ChangeLog for dev-libs/libuv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.12 2014/02/27 
14:20:55 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.13 2014/03/15 
16:10:09 hasufell Exp $
+
+*libuv-0.11.22 (15 Mar 2014)
+
+  15 Mar 2014; Julian Ospald hasuf...@gentoo.org -libuv-0.11.6.ebuild,
+  -libuv-0.11.8.ebuild, -libuv-0.11.10.ebuild, -libuv-0.11.12.ebuild,
+  -libuv-0.11.13.ebuild, -libuv-0.11.16.ebuild, -libuv-0.11.18.ebuild,
+  -libuv-0.11.21.ebuild, +libuv-0.11.22.ebuild:
+  version bump (fixes bug #504542), add subslot, remove old
 
 *libuv-0.11.21 (27 Feb 2014)
 



1.1  dev-libs/libuv/libuv-0.11.22.ebuild

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

Index: libuv-0.11.22.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-0.11.22.ebuild,v 1.1 
2014/03/15 16:10:09 hasufell Exp $

EAPI=5

inherit eutils autotools

DESCRIPTION=A new platform layer for Node
HOMEPAGE=https://github.com/joyent/libuv;
SRC_URI=https://github.com/joyent/libuv/archive/v${PV}.tar.gz - ${P}.tar.gz

LICENSE=BSD BSD-2 ISC MIT
SLOT=0/11
KEYWORDS=~amd64 ~x86
IUSE=static-libs

DEPEND=virtual/pkgconfig

src_prepare() {
echo m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests]) \
 m4/libuv-extra-automake-flags.m4 || die

eautoreconf
}

src_configure() {
econf \
$(use_enable static-libs static)
}

src_install() {
default
prune_libtool_files
}






[gentoo-commits] gentoo-x86 commit in net-libs/libnfsidmap: libnfsidmap-0.25-r1.ebuild ChangeLog

2014-03-15 Thread Mike Frysinger (vapier)
vapier  14/03/15 16:20:45

  Modified: ChangeLog
  Added:libnfsidmap-0.25-r1.ebuild
  Log:
  Set plugins dir to right libdir #504666 by Sergey Popov.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.45 net-libs/libnfsidmap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   18 Jan 2014 04:50:16 -  1.44
+++ ChangeLog   15 Mar 2014 16:20:45 -  1.45
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/libnfsidmap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v 1.44 
2014/01/18 04:50:16 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v 1.45 
2014/03/15 16:20:45 vapier Exp $
+
+*libnfsidmap-0.25-r1 (15 Mar 2014)
+
+  15 Mar 2014; Mike Frysinger vap...@gentoo.org +libnfsidmap-0.25-r1.ebuild:
+  Set plugins dir to right libdir #504666 by Sergey Popov.
 
   18 Jan 2014; Mike Frysinger vap...@gentoo.org libnfsidmap-0.24.ebuild,
   libnfsidmap-0.25.ebuild:



1.1  net-libs/libnfsidmap/libnfsidmap-0.25-r1.ebuild

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

Index: libnfsidmap-0.25-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.25-r1.ebuild,v 1.1 
2014/03/15 16:20:45 vapier Exp $

EAPI=4

inherit autotools eutils multilib

DESCRIPTION=NFSv4 ID - name mapping library
HOMEPAGE=http://www.citi.umich.edu/projects/nfsv4/linux/;
SRC_URI=http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${P}.tar.gz;

LICENSE=BSD
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86
IUSE=ldap static-libs

DEPEND=ldap? ( net-nds/openldap )
RDEPEND=${DEPEND}
!net-fs/nfs-utils-1.2.2
!net-fs/idmapd

src_prepare() {
epatch ${FILESDIR}/${PN}-0.19-getgrouplist.patch #169909
epatch ${FILESDIR}/${PN}-0.21-headers.patch
# Ideally the build would use -DLIBDIR=$(libdir) at build time.
sed -i \
-e 
/PATH_PLUGINS/s:/usr/lib/libnfsidmap:${EPREFIX}/usr/$(get_libdir)/libnfsidmap:
 \
libnfsidmap.c || die #504666
eautoreconf
}

src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable static-libs static) \
$(use_enable ldap)
}

src_install() {
default

insinto /etc
doins idmapd.conf

# remove useless files
rm -f ${D}/usr/$(get_libdir)/libnfsidmap/*.{a,la}
use static-libs || find ${D}/usr -name '*.la' -delete
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/openvz-sources: openvz-sources-2.6.32.85.17.ebuild ChangeLog

2014-03-15 Thread Maxim Koltsov (maksbotan)
maksbotan14/03/15 17:41:18

  Modified: ChangeLog
  Added:openvz-sources-2.6.32.85.17.ebuild
  Log:
  Bump to 2.6.32.85.17, thanks to slepnoga.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F8DBDADE)

Revision  ChangesPath
1.217sys-kernel/openvz-sources/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/ChangeLog?rev=1.217view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/ChangeLog?rev=1.217content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/ChangeLog?r1=1.216r2=1.217

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -r1.216 -r1.217
--- ChangeLog   24 Feb 2014 16:25:26 -  1.216
+++ ChangeLog   15 Mar 2014 17:41:18 -  1.217
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/openvz-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v 1.216 
2014/02/24 16:25:26 civil Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v 1.217 
2014/03/15 17:41:18 maksbotan Exp $
+
+*openvz-sources-2.6.32.85.17 (15 Mar 2014)
+
+  15 Mar 2014; Maxim Koltsov maksbo...@gentoo.org
+  +openvz-sources-2.6.32.85.17.ebuild:
+  Bump to 2.6.32.85.17, thanks to slepnoga.
 
 *openvz-sources-2.6.32.84.26 (24 Feb 2014)
 



1.1  
sys-kernel/openvz-sources/openvz-sources-2.6.32.85.17.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/openvz-sources-2.6.32.85.17.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/openvz-sources/openvz-sources-2.6.32.85.17.ebuild?rev=1.1content-type=text/plain

Index: openvz-sources-2.6.32.85.17.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/openvz-sources-2.6.32.85.17.ebuild,v
 1.1 2014/03/15 17:41:18 maksbotan Exp $

EAPI=5

inherit versionator

OVZ_KV=0$(get_version_component_range 4).$(get_version_component_range 5)

CKV=$(get_version_component_range 1-3)
OKV=${OKV:-${CKV}}
EXTRAVERSION=-${PN/-*}-${OVZ_KV}
ETYPE=sources
KV_FULL=${CKV}${EXTRAVERSION}
if [[ ${PR} != r0 ]]; then
KV_FULL+=-${PR}
EXTRAVERSION+=-${PR}
fi
S=${WORKDIR}/linux-${KV_FULL}

# ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH} should succeed.
KV_MAJOR=$(get_version_component_range 1 ${OKV})
KV_MINOR=$(get_version_component_range 2 ${OKV})
KV_PATCH=$(get_version_component_range 3 ${OKV})

KERNEL_URI=mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.xz

inherit kernel-2
#detect_version

KEYWORDS=~amd64 ~ppc64 ~sparc ~x86
IUSE=

DESCRIPTION=Kernel sources with OpenVZ patchset
HOMEPAGE=http://www.openvz.org;
SRC_URI=${KERNEL_URI} ${ARCH_URI}

http://download.openvz.org/kernel/branches/rhel6-${CKV}/042stab${OVZ_KV}/patches/patch-042stab${OVZ_KV}-combined.gz;

UNIPATCH_STRICTORDER=1
UNIPATCH_LIST=${DISTDIR}/patch-042stab${OVZ_KV}-combined.gz

K_EXTRAEINFO=This openvz kernel uses RHEL6 patchset instead of vanilla kernel.
This patchset considered to be more stable and security supported by upstream,
but for us RHEL6 patchset is very fragile and fails to build in many
configurations so if you have problems use config files from openvz team
http://wiki.openvz.org/Download/kernel/rhel6/042stab${OVZ_KV};






[gentoo-commits] gentoo-x86 commit in profiles/targets/desktop/gnome: package.use

2014-03-15 Thread Alexandre Rostovtsev (tetromino)
tetromino14/03/15 18:42:25

  Modified: package.use
  Log:
  Enable USE=vala for gcr for =app-crypt/seahorse-3.10.2-r1

Revision  ChangesPath
1.24 profiles/targets/desktop/gnome/package.use

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/gnome/package.use?rev=1.24view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/gnome/package.use?rev=1.24content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/targets/desktop/gnome/package.use?r1=1.23r2=1.24

Index: package.use
===
RCS file: /var/cvsroot/gentoo-x86/profiles/targets/desktop/gnome/package.use,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- package.use 4 Mar 2014 02:48:47 -   1.23
+++ package.use 15 Mar 2014 18:42:25 -  1.24
@@ -1,6 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/targets/desktop/gnome/package.use,v 1.23 
2014/03/04 02:48:47 tetromino Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/targets/desktop/gnome/package.use,v 1.24 
2014/03/15 18:42:25 tetromino Exp $
+
+# For eautoreconf in =app-crypt/seahorse-3.10.2-r1
+app-crypt/gcr vala
 
 # Required by folks, needed by empathy
 =gnome-extra/evolution-data-server-3.8 vala






[gentoo-commits] gentoo-x86 commit in net-proxy/obfsproxy: obfsproxy-0.2.7.ebuild ChangeLog

2014-03-15 Thread Anthony G. Basile (blueness)
blueness14/03/15 18:51:20

  Modified: ChangeLog
  Added:obfsproxy-0.2.7.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.24 net-proxy/obfsproxy/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/obfsproxy/ChangeLog?rev=1.24view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/obfsproxy/ChangeLog?rev=1.24content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/obfsproxy/ChangeLog?r1=1.23r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-proxy/obfsproxy/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   4 Feb 2014 13:19:52 -   1.23
+++ ChangeLog   15 Mar 2014 18:51:20 -  1.24
@@ -1,6 +1,11 @@
 # ChangeLog for net-proxy/obfsproxy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/obfsproxy/ChangeLog,v 1.23 
2014/02/04 13:19:52 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/obfsproxy/ChangeLog,v 1.24 
2014/03/15 18:51:20 blueness Exp $
+
+*obfsproxy-0.2.7 (15 Mar 2014)
+
+  15 Mar 2014; Anthony G. Basile bluen...@gentoo.org +obfsproxy-0.2.7.ebuild:
+  Version bump
 
 *obfsproxy-0.2.6 (04 Feb 2014)
 



1.1  net-proxy/obfsproxy/obfsproxy-0.2.7.ebuild

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

Index: obfsproxy-0.2.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/obfsproxy/obfsproxy-0.2.7.ebuild,v 
1.1 2014/03/15 18:51:20 blueness Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=An obfuscating proxy using Tor's pluggable transport protocol
HOMEPAGE=https://www.torproject.org/projects/obfsproxy.html;
SRC_URI=mirror://pypi/o/${PN}/${P}.tar.gz

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

DOCS=( ChangeLog INSTALL README TODO doc/HOWTO.txt )

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]

RDEPEND==dev-python/pyptlib-0.0.5[${PYTHON_USEDEP}]
=dev-python/pycrypto-2.6-r2[${PYTHON_USEDEP}]
dev-python/twisted-core[${PYTHON_USEDEP}]

pkg_postinst() {
einfo
einfo To run ${PN} with a tor bridge, add the following to your torrc 
file:
einfo
einfo  SocksPort 0
einfo  ORPort 443 # or some other port if you already run a 
webserver/skype
einfo  BridgeRelay 1
einfo  ExitPolicy reject *:*
einfo  Nickname CHANGEME_1
einfo  ContactInfo CHANGEME_2
einfo  ServerTransportPlugin obfs2,obfs3 exec /usr/bin/${PN} managed
einfo
einfo Obviously, change CHANGEME_1 and CHANGEME_2 to appropriate 
values.  When you
einfo start tor, you should see a message similar to the following in 
its logs:
einfo
einfo  Oct 05 20:00:41.000 [notice] Registered server transport 
'obfs2' at '0.0.0.0:26821
einfo  Oct 05 20:00:42.000 [notice] Registered server transport 
'obfs3' at '0.0.0.0:40172
einfo
einfo Note the port numbers, 26821 and 40172 in this case, and report 
it, along with
einfo your IP address, to your bridge clients.  If you are behind a 
NAT firewall, you
einfo you need to do port forwarding on those ports.
einfo
}






[gentoo-commits] gentoo-x86 commit in dev-libs/libusb: ChangeLog libusb-1.0.9.ebuild libusb-1.0.9-r1.ebuild

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 18:53:14

  Modified: ChangeLog
  Removed:  libusb-1.0.9.ebuild libusb-1.0.9-r1.ebuild
  Log:
  old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.160dev-libs/libusb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog   15 Mar 2014 18:52:24 -  1.159
+++ ChangeLog   15 Mar 2014 18:53:14 -  1.160
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/libusb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.159 
2014/03/15 18:52:24 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.160 
2014/03/15 18:53:14 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org -libusb-1.0.9-r1.ebuild,
+  -libusb-1.0.9.ebuild:
+  old
 
   15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org libusb-1.0.9-r2.ebuild:
   Stabilize latest legacy 1.0.9 ebuild revision for everyone.






[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg2theora: ffmpeg2theora-0.29-r1.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:04:18

  Modified: ffmpeg2theora-0.29-r1.ebuild ChangeLog
  Log:
  Fix underlinking by always linking against -lm -ldl wrt #504698 by Guy
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.4  media-video/ffmpeg2theora/ffmpeg2theora-0.29-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.29-r1.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.29-r1.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.29-r1.ebuild?r1=1.3r2=1.4

Index: ffmpeg2theora-0.29-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.29-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ffmpeg2theora-0.29-r1.ebuild14 Jan 2014 13:55:24 -  1.3
+++ ffmpeg2theora-0.29-r1.ebuild15 Mar 2014 19:04:18 -  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/media-video/ffmpeg2theora/ffmpeg2theora-0.29-r1.ebuild,v
 1.3 2014/01/14 13:55:24 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.29-r1.ebuild,v
 1.4 2014/03/15 19:04:18 ssuominen Exp $
 
 EAPI=4
 inherit eutils toolchain-funcs scons-utils
@@ -25,8 +25,10 @@
virtual/pkgconfig
 
 src_prepare() {
-   epatch ${FILESDIR}/${P}-swr.patch \
-   ${FILESDIR}/${P}-ffmpeg2.patch
+   epatch \
+   ${FILESDIR}/${P}-swr.patch \
+   ${FILESDIR}/${P}-ffmpeg2.patch \
+   ${FILESDIR}/${P}-underlinking.patch
 }
 
 src_configure() {



1.67 media-video/ffmpeg2theora/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   14 Jan 2014 13:55:24 -  1.66
+++ ChangeLog   15 Mar 2014 19:04:18 -  1.67
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpeg2theora
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v 1.66 
2014/01/14 13:55:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v 1.67 
2014/03/15 19:04:18 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  +files/ffmpeg2theora-0.29-underlinking.patch, ffmpeg2theora-0.29-r1.ebuild:
+  Fix underlinking by always linking against -lm -ldl wrt #504698 by Guy
 
   14 Jan 2014; Agostino Sarubbo a...@gentoo.org ffmpeg2theora-0.29-r1.ebuild:
   Stable for x86, wrt bug #495818






[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg2theora/files: ffmpeg2theora-0.29-underlinking.patch

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:04:18

  Added:ffmpeg2theora-0.29-underlinking.patch
  Log:
  Fix underlinking by always linking against -lm -ldl wrt #504698 by Guy
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.1  
media-video/ffmpeg2theora/files/ffmpeg2theora-0.29-underlinking.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg2theora/files/ffmpeg2theora-0.29-underlinking.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg2theora/files/ffmpeg2theora-0.29-underlinking.patch?rev=1.1content-type=text/plain

Index: ffmpeg2theora-0.29-underlinking.patch
===
For example, pow() from mathlib is used directly in src/ffmpeg2theora.c:

snip
v = pow(v, g) * 255.0;// mplayer's vf_eq2.c multiplies with 256 here, 
strange...
/snip

For build failure and log, see Gentoo bug #504698

--- SConstruct
+++ SConstruct
@@ -206,9 +206,8 @@
   if env['crossmingw']:
   env.Append(CCFLAGS=['-Wl,-subsystem,windows'])
   env.Append(LIBS=['m'])
-  elif env['static']:
-  env.Append(LIBS=['m', 'dl'])
 
+  env.Append(LIBS=['m', 'dl'])
 
 env = conf.Finish()
 






[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg2theora: ChangeLog ffmpeg2theora-0.29.ebuild

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:06:45

  Modified: ChangeLog
  Removed:  ffmpeg2theora-0.29.ebuild
  Log:
  old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.68 media-video/ffmpeg2theora/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog   15 Mar 2014 19:04:18 -  1.67
+++ ChangeLog   15 Mar 2014 19:06:44 -  1.68
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpeg2theora
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v 1.67 
2014/03/15 19:04:18 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v 1.68 
2014/03/15 19:06:44 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  -ffmpeg2theora-0.29.ebuild:
+  old
 
   15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
   +files/ffmpeg2theora-0.29-underlinking.patch, ffmpeg2theora-0.29-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in app-emacs/haskell-mode: ChangeLog haskell-mode-13.07.ebuild

2014-03-15 Thread Ulrich Mueller (ulm)
ulm 14/03/15 19:27:11

  Modified: ChangeLog haskell-mode-13.07.ebuild
  Log:
  Perform tests in a separate directory because make check removes the 
byte-compiled elisp files, bug 540660.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.50 app-emacs/haskell-mode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/haskell-mode/ChangeLog?rev=1.50view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/haskell-mode/ChangeLog?rev=1.50content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/haskell-mode/ChangeLog?r1=1.49r2=1.50

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emacs/haskell-mode/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   16 Feb 2014 13:24:41 -  1.49
+++ ChangeLog   15 Mar 2014 19:27:10 -  1.50
@@ -1,6 +1,10 @@
 # ChangeLog for app-emacs/haskell-mode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/haskell-mode/ChangeLog,v 1.49 
2014/02/16 13:24:41 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/haskell-mode/ChangeLog,v 1.50 
2014/03/15 19:27:10 ulm Exp $
+
+  15 Mar 2014; Ulrich Müller u...@gentoo.org haskell-mode-13.07.ebuild:
+  Perform tests in a separate directory because make check removes the
+  byte-compiled elisp files, bug 540660.
 
 *haskell-mode-13.07 (16 Feb 2014)
 



1.2  app-emacs/haskell-mode/haskell-mode-13.07.ebuild

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

Index: haskell-mode-13.07.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emacs/haskell-mode/haskell-mode-13.07.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- haskell-mode-13.07.ebuild   16 Feb 2014 13:24:42 -  1.1
+++ haskell-mode-13.07.ebuild   15 Mar 2014 19:27:10 -  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-emacs/haskell-mode/haskell-mode-13.07.ebuild,v 1.1 
2014/02/16 13:24:42 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emacs/haskell-mode/haskell-mode-13.07.ebuild,v 1.2 
2014/03/15 19:27:10 ulm Exp $
 
 EAPI=5
 
@@ -32,6 +32,12 @@
elisp-make-autoload-file haskell-site-file.el
 }
 
+src_test() {
+   # perform tests in a separate directory #504660
+   mkdir test  cp *.el Makefile test || die
+   emake -C test check
+}
+
 src_install() {
elisp_src_install
insinto ${SITEETC}/${PN}






[gentoo-commits] gentoo-x86 commit in x11-misc/xdg-user-dirs: ChangeLog xdg-user-dirs-0.14.ebuild

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:28:20

  Modified: ChangeLog
  Removed:  xdg-user-dirs-0.14.ebuild
  Log:
  old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.40 x11-misc/xdg-user-dirs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?rev=1.40view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?rev=1.40content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?r1=1.39r2=1.40

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   29 Dec 2013 08:19:12 -  1.39
+++ ChangeLog   15 Mar 2014 19:28:20 -  1.40
@@ -1,6 +1,10 @@
 # ChangeLog for x11-misc/xdg-user-dirs
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v 1.39 
2013/12/29 08:19:12 hattya Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v 1.40 
2014/03/15 19:28:20 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  -files/xdg-user-dirs-0.14-strndup-nls.patch, -xdg-user-dirs-0.14.ebuild:
+  old
 
   29 Dec 2013; Akinori Hattori hat...@gentoo.org xdg-user-dirs-0.15.ebuild:
   ia64 stable wrt bug #485578






[gentoo-commits] gentoo-x86 commit in x11-misc/xdg-user-dirs/files: xdg-user-dirs-0.14-strndup-nls.patch

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:28:20

  Removed:  xdg-user-dirs-0.14-strndup-nls.patch
  Log:
  old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)



[gentoo-commits] proj/emacs:master commit in: app-emacs/cedet/, app-emacs/cedet/files/

2014-03-15 Thread Ulrich Müller
commit: 75a64903c426872878dc513b7d28eadd7513c755
Author: Ulrich Müller ulm AT gentoo DOT org
AuthorDate: Sat Mar 15 19:36:40 2014 +
Commit: Ulrich Müller ulm AT gentoo DOT org
CommitDate: Sat Mar 15 19:36:40 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/emacs.git;a=commit;h=75a64903

Remove live ebuild for app-emacs/cedet, bug 361091.

---
 app-emacs/cedet/ChangeLog   | 22 --
 app-emacs/cedet/cedet-.ebuild   | 77 -
 app-emacs/cedet/files/50cedet-gentoo.el | 10 -
 app-emacs/cedet/metadata.xml| 20 -
 4 files changed, 129 deletions(-)

diff --git a/app-emacs/cedet/ChangeLog b/app-emacs/cedet/ChangeLog
deleted file mode 100644
index be22816..000
--- a/app-emacs/cedet/ChangeLog
+++ /dev/null
@@ -1,22 +0,0 @@
-# ChangeLog for app-emacs/cedet
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  19 Jan 2014; Ulrich Müller u...@gentoo.org cedet-.ebuild:
-  Switch from package.mask to empty KEYWORDS.
-
-  29 Mar 2011; Ulrich Mueller u...@gentoo.org cedet-.ebuild:
-  CEDET upstream has moved to Bazaar. Update ebuild accordingly, bug 361091,
-  thanks to Dmitry Dzhus d...@sphinx.net.ru. Change ebuild to EAPI 4.
-  Suppress all unrecognised file warnings.
-
-  02 Mar 2009; Ulrich Mueller u...@gentoo.org +files/50cedet-gentoo.el,
-  -files/60cedet-gentoo.el, cedet-.ebuild:
-  Sync ebuild from main tree.
-
-*cedet- (12 Aug 2008)
-
-  12 Aug 2008; Ulrich Mueller u...@gentoo.org +files/60cedet-gentoo.el,
-  +metadata.xml, +cedet-.ebuild:
-  Live CVS ebuild by Dmitry Dzhus d...@sphinx.net.ru in bug 234536.
-

diff --git a/app-emacs/cedet/cedet-.ebuild 
b/app-emacs/cedet/cedet-.ebuild
deleted file mode 100644
index 14da78a..000
--- a/app-emacs/cedet/cedet-.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-NEED_EMACS=22
-EBZR_REPO_URI=bzr://cedet.bzr.sourceforge.net/bzrroot/cedet/code/trunk
-
-# Inherit bzr last so that bzr_src_unpack takes action
-inherit elisp eutils bzr
-
-DESCRIPTION=CEDET: Collection of Emacs Development Tools
-HOMEPAGE=http://cedet.sourceforge.net/;
-
-LICENSE=GPL-2 FDL-1.1
-SLOT=0
-
-RDEPEND=!app-emacs/semantic
-   !app-emacs/eieio
-   !app-emacs/speedbar
-
-SITEFILE=50${PN}-gentoo.el
-
-src_compile() {
-   emake -j1 EMACS=${EMACS}
-}
-
-#src_test() {
-#  make utest || die make utest failed
-#}
-
-src_install() {
-   local target file dir
-   find . -type d \( -name tests -o -name www \) -prune -o -type f -print \
-   | while read target
-   do
-   file=${target##*/}
-   dir=${target%/*}; dir=${dir#./}
-   case ${file} in
-   *~ | .cvsignore | .ede-ignore | Makefile* | *.texi | 
*-script \
-   | PRERELEASE_CHECKLIST | Project.ede | 
USING_CEDET_FROM_BZR \
-   | USING_CEDET_FROM_CVS | gettodos.sh | test.dot 
| testdist.sh \
-   | grammar-fw-ov.txt | grammar-fw-ov.dia)
-   ;;
-   README | AUTHORS | *NEWS | INSTALL | *.txt | 
semanticdb.sh)
-   docinto ${dir}
-   dodoc ${target} ;;
-   *.el | *.by | *.wy | *.clj)
-   # install grammar sources along with the elisp 
files, since
-   # the location where semantic expects them is 
not configurable
-   insinto ${SITELISP}/${PN}/${dir}
-   doins ${target} ;;
-   *.elc)
-   # we are in a subshell, so collecting in a 
variable won't work
-   echo ${target} ${T}/elc-list.txt ;;
-   *.srt | *.xpm)
-   insinto ${SITEETC}/${PN}/${dir}
-   doins ${target} ;;
-   *.info* | grammar-fw-ov.png)
-   doinfo ${target} ;;
-   *)
-   # don't die in the live ebuild since upstream 
may add files
-   # die Unrecognised file ${target} ;;
-   ewarn Unrecognised file ${target} ;;
-   esac
-   done
-
-   # make sure that the compiled elisp files have a later time stamp than
-   # the corresponding sources, in order to suppress warnings at run time
-   while read target; do
-   dir=${target%/*}; dir=${dir#./}
-   insinto ${SITELISP}/${PN}/${dir}
-   doins ${target}
-   done ${T}/elc-list.txt
-
-   elisp-site-file-install ${FILESDIR}/${SITEFILE} || die
-}

diff --git 

[gentoo-commits] gentoo-x86 commit in x11-misc/xdg-user-dirs: xdg-user-dirs-0.15.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:37:21

  Modified: xdg-user-dirs-0.15.ebuild ChangeLog
  Log:
  Add missing docbook-xml-dtd dependency wrt #492322 by Tom Nachdenk
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.11 x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild?r1=1.10r2=1.11

Index: xdg-user-dirs-0.15.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xdg-user-dirs-0.15.ebuild   29 Dec 2013 08:19:12 -  1.10
+++ xdg-user-dirs-0.15.ebuild   15 Mar 2014 19:37:21 -  1.11
@@ -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/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild,v 1.10 
2013/12/29 08:19:12 hattya Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild,v 1.11 
2014/03/15 19:37:21 ssuominen Exp $
 
 EAPI=5
 
@@ -16,7 +16,8 @@
 RDEPEND=
 # libxslt is mandatory because 0.15 tarball is broken, re:
 # http://bugs.freedesktop.org/show_bug.cgi?id=66251
-DEPEND=dev-libs/libxslt
+DEPEND=app-text/docbook-xml-dtd:4.3
+   dev-libs/libxslt
sys-devel/gettext
 PDEPEND=gtk? ( x11-misc/xdg-user-dirs-gtk )
 



1.41 x11-misc/xdg-user-dirs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?rev=1.41view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?rev=1.41content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?r1=1.40r2=1.41

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   15 Mar 2014 19:28:20 -  1.40
+++ ChangeLog   15 Mar 2014 19:37:21 -  1.41
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xdg-user-dirs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v 1.40 
2014/03/15 19:28:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v 1.41 
2014/03/15 19:37:21 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org 
xdg-user-dirs-0.15.ebuild:
+  Add missing docbook-xml-dtd dependency wrt #492322 by Tom Nachdenk
 
   15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
   -files/xdg-user-dirs-0.14-strndup-nls.patch, -xdg-user-dirs-0.14.ebuild:






[gentoo-commits] gentoo-x86 commit in x11-misc/xdg-user-dirs: xdg-user-dirs-0.15.ebuild ChangeLog

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:47:38

  Modified: xdg-user-dirs-0.15.ebuild ChangeLog
  Log:
  Fix build for systems with external libiconv wrt #499940 by René Rhéaume, and 
#366885 by Leho Kraav
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.12 x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild?r1=1.11r2=1.12

Index: xdg-user-dirs-0.15.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- xdg-user-dirs-0.15.ebuild   15 Mar 2014 19:37:21 -  1.11
+++ xdg-user-dirs-0.15.ebuild   15 Mar 2014 19:47:38 -  1.12
@@ -1,8 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild,v 1.11 
2014/03/15 19:37:21 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/xdg-user-dirs-0.15.ebuild,v 1.12 
2014/03/15 19:47:38 ssuominen Exp $
 
 EAPI=5
+inherit autotools eutils
 
 DESCRIPTION=A tool to help manage 'well known' user directories
 HOMEPAGE=http://www.freedesktop.org/wiki/Software/xdg-user-dirs;
@@ -22,3 +23,9 @@
 PDEPEND=gtk? ( x11-misc/xdg-user-dirs-gtk )
 
 DOCS=( AUTHORS ChangeLog NEWS )
+
+src_prepare() {
+   sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die 
#467032
+   epatch ${FILESDIR}/${P}-libiconv.patch
+   eautoreconf # for the above patch
+}



1.42 x11-misc/xdg-user-dirs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?rev=1.42view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?rev=1.42content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog?r1=1.41r2=1.42

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog   15 Mar 2014 19:37:21 -  1.41
+++ ChangeLog   15 Mar 2014 19:47:38 -  1.42
@@ -1,6 +1,11 @@
 # ChangeLog for x11-misc/xdg-user-dirs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v 1.41 
2014/03/15 19:37:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs/ChangeLog,v 1.42 
2014/03/15 19:47:38 ssuominen Exp $
+
+  15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org
+  +files/xdg-user-dirs-0.15-libiconv.patch, xdg-user-dirs-0.15.ebuild:
+  Fix build for systems with external libiconv wrt #499940 by René Rhéaume, and
+  #366885 by Leho Kraav
 
   15 Mar 2014; Samuli Suominen ssuomi...@gentoo.org 
xdg-user-dirs-0.15.ebuild:
   Add missing docbook-xml-dtd dependency wrt #492322 by Tom Nachdenk






[gentoo-commits] gentoo-x86 commit in x11-misc/xdg-user-dirs/files: xdg-user-dirs-0.15-libiconv.patch

2014-03-15 Thread Samuli Suominen (ssuominen)
ssuominen14/03/15 19:47:38

  Added:xdg-user-dirs-0.15-libiconv.patch
  Log:
  Fix build for systems with external libiconv wrt #499940 by René Rhéaume, and 
#366885 by Leho Kraav
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.1  
x11-misc/xdg-user-dirs/files/xdg-user-dirs-0.15-libiconv.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/files/xdg-user-dirs-0.15-libiconv.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdg-user-dirs/files/xdg-user-dirs-0.15-libiconv.patch?rev=1.1content-type=text/plain

Index: xdg-user-dirs-0.15-libiconv.patch
===
http://bugs.gentoo.org/366885
http://bugs.gentoo.org/499940

--- Makefile.am
+++ Makefile.am
@@ -16,7 +16,7 @@
 xdgdir=$(sysconfdir)/xdg
 xdg_DATA=user-dirs.conf user-dirs.defaults
 
-libraries = $(LIBINTL)
+libraries = $(LIBINTL) $(LIBICONV)
 
 bin_PROGRAMS = \
xdg-user-dirs-update\






[gentoo-commits] gentoo-x86 commit in app-crypt/efitools: efitools-1.4.2-r1.ebuild ChangeLog

2014-03-15 Thread Mike Frysinger (vapier)
vapier  14/03/15 19:48:06

  Modified: efitools-1.4.2-r1.ebuild ChangeLog
  Log:
  Require a recent version of gnu-efi #487580 by Frank Krömmelbein.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  app-crypt/efitools/efitools-1.4.2-r1.ebuild

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

Index: efitools-1.4.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/efitools/efitools-1.4.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- efitools-1.4.2-r1.ebuild3 Oct 2013 22:34:09 -   1.1
+++ efitools-1.4.2-r1.ebuild15 Mar 2014 19:48:06 -  1.2
@@ -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-crypt/efitools/efitools-1.4.2-r1.ebuild,v 1.1 
2013/10/03 22:34:09 gregkh Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-crypt/efitools/efitools-1.4.2-r1.ebuild,v 1.2 
2014/03/15 19:48:06 vapier Exp $
 
 EAPI=4
 
@@ -17,7 +17,7 @@
sys-apps/util-linux
 DEPEND=${RDEPEND}
sys-apps/help2man
-   sys-boot/gnu-efi
+   =sys-boot/gnu-efi-3.0u
app-crypt/sbsigntool
virtual/pkgconfig
dev-perl/File-Slurp



1.7  app-crypt/efitools/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/efitools/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   3 Oct 2013 22:34:09 -   1.6
+++ ChangeLog   15 Mar 2014 19:48:06 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for app-crypt/efitools
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/efitools/ChangeLog,v 1.6 
2013/10/03 22:34:09 gregkh Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/efitools/ChangeLog,v 1.7 
2014/03/15 19:48:06 vapier Exp $
+
+  15 Mar 2014; Mike Frysinger vap...@gentoo.org efitools-1.4.2-r1.ebuild:
+  Require a recent version of gnu-efi #487580 by Frank Krömmelbein.
 
 *efitools-1.4.2-r1 (03 Oct 2013)
 






[gentoo-commits] gentoo-x86 commit in app-editors/emacs-vcs: ChangeLog emacs-vcs-24.3.50_pre20140228.ebuild emacs-vcs-24.3.9999.ebuild emacs-vcs-24.3.50_pre20140131.ebuild emacs-vcs-24.3.50_pre2013123

2014-03-15 Thread Ulrich Mueller (ulm)
ulm 14/03/15 19:56:16

  Modified: ChangeLog emacs-vcs-24.3.50_pre20140228.ebuild
emacs-vcs-24.3..ebuild
emacs-vcs-24.3.50_pre20140131.ebuild
  Removed:  emacs-vcs-24.3.50_pre20131231.ebuild
  Log:
  Install emacs man page under the same name as the binary. Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.148app-editors/emacs-vcs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?rev=1.148view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?rev=1.148content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?r1=1.147r2=1.148

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog   1 Mar 2014 09:43:31 -   1.147
+++ ChangeLog   15 Mar 2014 19:56:16 -  1.148
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/emacs-vcs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.147 
2014/03/01 09:43:31 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.148 
2014/03/15 19:56:16 ulm Exp $
+
+  15 Mar 2014; Ulrich Müller u...@gentoo.org
+  -emacs-vcs-24.3.50_pre20131231.ebuild, emacs-vcs-24.3.50_pre20140131.ebuild,
+  emacs-vcs-24.3.50_pre20140228.ebuild, emacs-vcs-24.3..ebuild:
+  Install emacs man page under the same name as the binary. Remove old.
 
 *emacs-vcs-24.3.50_pre20140228 (01 Mar 2014)
 



1.2  app-editors/emacs-vcs/emacs-vcs-24.3.50_pre20140228.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3.50_pre20140228.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3.50_pre20140228.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3.50_pre20140228.ebuild?r1=1.1r2=1.2

Index: emacs-vcs-24.3.50_pre20140228.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3.50_pre20140228.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emacs-vcs-24.3.50_pre20140228.ebuild1 Mar 2014 09:43:31 -   
1.1
+++ emacs-vcs-24.3.50_pre20140228.ebuild15 Mar 2014 19:56:16 -  
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-editors/emacs-vcs/emacs-vcs-24.3.50_pre20140228.ebuild,v
 1.1 2014/03/01 09:43:31 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3.50_pre20140228.ebuild,v
 1.2 2014/03/15 19:56:16 ulm Exp $
 
 EAPI=5
 
@@ -37,7 +37,7 @@
 REQUIRED_USE=?? ( aqua X )
 
 RDEPEND=sys-libs/ncurses
-   =app-admin/eselect-emacs-1.2
+   =app-admin/eselect-emacs-1.16
=app-emacs/emacs-common-gentoo-1.3-r3[games?,X?]
net-libs/liblockfile
acl? ( virtual/acl )
@@ -237,6 +237,8 @@
 
mv ${ED}/usr/bin/{emacs-${FULL_VERSION}-,}${EMACS_SUFFIX} \
|| die moving emacs executable failed
+   mv ${ED}/usr/share/man/man1/{emacs-,}${EMACS_SUFFIX}.1 \
+   || die moving emacs man page failed
 
# move info dir to avoid collisions with the dir file generated by 
portage
mv ${ED}/usr/share/info/${EMACS_SUFFIX}/dir{,.orig} \
@@ -348,6 +350,9 @@
# force an update of the emacs symlink for the livecd/dvd,
# because some microemacs packages set it with USE=livecd
eselect emacs update
+   elif [[ $(readlink ${EROOT}/usr/bin/emacs) = ${EMACS_SUFFIX} ]]; then
+   # refresh symlinks in case any installed files have changed
+   eselect emacs set ${EMACS_SUFFIX}
else
eselect emacs update ifunset
fi



1.25 app-editors/emacs-vcs/emacs-vcs-24.3..ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3..ebuild?rev=1.25view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3..ebuild?rev=1.25content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.3..ebuild?r1=1.24r2=1.25

Index: emacs-vcs-24.3..ebuild
===
RCS file: 

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

2014-03-15 Thread Ulrich Mueller (ulm)
ulm 14/03/15 20:02:51

  Modified: package.mask ChangeLog
  Log:
  Mask net-ftp/pftpfxp for removal.

Revision  ChangesPath
1.15478  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15477
retrieving revision 1.15478
diff -u -r1.15477 -r1.15478
--- package.mask15 Mar 2014 14:10:20 -  1.15477
+++ package.mask15 Mar 2014 20:02:50 -  1.15478
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15477 2014/03/15 
14:10:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15478 2014/03/15 
20:02:50 ulm 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,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Ulrich Müller u...@gentoo.org (15 Mar 2014)
+# No license, unknown copyright holder. No Gentoo maintainer.
+# Masked for removal in 30 days, bug 465784.
+net-ftp/pftpfxp
+
 # Lars Wendler polynomia...@gentoo.org (14 Mar 2014)
 # Masked for security reasons.
 # Do NOT remove this mask or the affected packages without speaking to



1.8703   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.8702
retrieving revision 1.8703
diff -u -r1.8702 -r1.8703
--- ChangeLog   15 Mar 2014 18:42:24 -  1.8702
+++ ChangeLog   15 Mar 2014 20:02:50 -  1.8703
@@ -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.8702 2014/03/15 
18:42:24 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.8703 2014/03/15 
20:02:50 ulm 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!
 
+  15 Mar 2014; Ulrich Müller u...@gentoo.org package.mask:
+  Mask net-ftp/pftpfxp for removal.
+
   15 Mar 2014; Alexandre Rostovtsev tetrom...@gentoo.org
   targets/desktop/gnome/package.use:
   Enable USE=vala for gcr for =app-crypt/seahorse-3.10.2-r1






[gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.3.4.ebuild ChangeLog

2014-03-15 Thread Julian Ospald (hasufell)
hasufell14/03/15 20:06:18

  Modified: polarssl-1.3.4.ebuild ChangeLog
  Log:
  install docs
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.2  net-libs/polarssl/polarssl-1.3.4.ebuild

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

Index: polarssl-1.3.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.3.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- polarssl-1.3.4.ebuild   11 Mar 2014 12:31:32 -  1.1
+++ polarssl-1.3.4.ebuild   15 Mar 2014 20:06:18 -  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-libs/polarssl/polarssl-1.3.4.ebuild,v 
1.1 2014/03/11 12:31:32 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.3.4.ebuild,v 
1.2 2014/03/15 20:06:18 hasufell Exp $
 
 EAPI=5
 
@@ -75,6 +75,8 @@
 }
 
 multilib_src_install_all() {
+   einstalldocs
+
if use examples ; then
# avoid file collisions with sys-apps/coreutils
local p e



1.69 net-libs/polarssl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   11 Mar 2014 12:31:32 -  1.68
+++ ChangeLog   15 Mar 2014 20:06:18 -  1.69
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/polarssl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.68 
2014/03/11 12:31:32 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.69 
2014/03/15 20:06:18 hasufell Exp $
+
+  15 Mar 2014; Julian Ospald hasuf...@gentoo.org polarssl-1.3.4.ebuild:
+  install docs
 
 *polarssl-1.3.4 (11 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in sci-physics/lammps: lammps-20140314.ebuild ChangeLog

2014-03-15 Thread Nicolas Bock (nicolasbock)
nicolasbock14/03/15 20:17:20

  Modified: ChangeLog
  Added:lammps-20140314.ebuild
  Log:
  sci-physics/lammps-20140314: Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
AC91CA52)

Revision  ChangesPath
1.28 sci-physics/lammps/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/ChangeLog?rev=1.28view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/ChangeLog?rev=1.28content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/ChangeLog?r1=1.27r2=1.28

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   12 Mar 2014 23:29:30 -  1.27
+++ ChangeLog   15 Mar 2014 20:17:20 -  1.28
@@ -1,6 +1,11 @@
 # ChangeLog for sci-physics/lammps
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v 1.27 
2014/03/12 23:29:30 nicolasbock Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v 1.28 
2014/03/15 20:17:20 nicolasbock Exp $
+
+*lammps-20140314 (15 Mar 2014)
+
+  15 Mar 2014; Nicolas Bock nicolasb...@gentoo.org +lammps-20140314.ebuild:
+  sci-physics/lammps-20140314: Version bump.
 
 *lammps-20140312 (12 Mar 2014)
 



1.1  sci-physics/lammps/lammps-20140314.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/lammps-20140314.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/lammps-20140314.ebuild?rev=1.1content-type=text/plain

Index: lammps-20140314.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/lammps-20140314.ebuild,v 
1.1 2014/03/15 20:17:20 nicolasbock Exp $

EAPI=5

inherit eutils fortran-2 multilib

convert_month() {
case $1 in
01) echo Jan
;;
02) echo Feb
;;
03) echo Mar
;;
04) echo Apr
;;
05) echo May
;;
06) echo Jun
;;
07) echo Jul
;;
08) echo Aug
;;
09) echo Sep
;;
10) echo Oct
;;
11) echo Nov
;;
12) echo Dec
;;
*)  echo unknown
;;
esac
}

MY_P=${PN}-$((10#${PV:6:2}))$(convert_month ${PV:4:2})${PV:2:2}

DESCRIPTION=Large-scale Atomic/Molecular Massively Parallel Simulator
HOMEPAGE=http://lammps.sandia.gov/;
SRC_URI=http://lammps.sandia.gov/tars/${MY_P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64
IUSE=doc examples gzip lammps-memalign mpi static-libs

DEPEND=
mpi? ( virtual/mpi )
sci-libs/voro++

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}

lmp_emake() {
local LAMMPS_INCLUDEFLAGS
LAMMPS_INCLUDEFLAGS=$(usex gzip '-DLAMMPS_GZIP' '')
LAMMPS_INCLUDEFLAGS+=$(usex lammps-memalign ' -DLAMMPS_MEMALIGN' '')

# The lammps makefile uses CC to indicate the C++ compiler.
emake \
ARCHIVE=$(tc-getAR) \
CC=$(usex mpi mpic++ $(tc-getCXX)) \
F90=$(usex mpi mpif90 $(tc-getFC)) \
LINK=$(usex mpi mpic++ $(tc-getCXX)) \
CCFLAGS=${CXXFLAGS} \
F90FLAGS=${FCFLAGS} \
LINKFLAGS=${LDFLAGS} \
LMP_INC=${LAMMPS_INCLUDEFLAGS} \
MPI_INC=$(usex mpi '' -I../STUBS) \
MPI_PATH=$(usex mpi '' '-L../STUBS') \
MPI_LIB=$(usex mpi '' '-lmpi_stubs') \
$@
}

src_prepare() {
# Fix inconsistent use of SHFLAGS.
sed -i -e 's:$(CCFLAGS):$(CCFLAGS) -fPIC:' src/STUBS/Makefile || die
sed -i -e 's:$(F90FLAGS):$(F90FLAGS) -fPIC:' lib/meam/Makefile.gfortran 
|| die
sed -i -e 's:$(F90FLAGS):$(F90FLAGS) -fPIC:' lib/reax/Makefile.gfortran 
|| die
sed -i \
-e 's:voronoi_SYSINC\s\+=.*$:voronoi_SYSINC = 
-I/usr/include/voro++:' \
-e 's:voronoi_SYSPATH\s\+=.*$:voronoi_SYSPATH =:' \
src/VORONOI/Makefile.lammps || die

# Fix missing .so name.
sed -i \
-e 's:SHLIBFLAGS\s\+=\s\+:SHLIBFLAGS = 
-Wl,-soname,liblammps.so.0 :' \
src/MAKE/Makefile.serial || die

# Fix makefile in 

[gentoo-commits] gentoo-x86 commit in dev-libs/libuv: libuv-0.11.22-r1.ebuild ChangeLog

2014-03-15 Thread Julian Ospald (hasufell)
hasufell14/03/15 20:37:51

  Modified: libuv-0.11.22-r1.ebuild ChangeLog
  Log:
  fix tests in out-of-source build
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.2  dev-libs/libuv/libuv-0.11.22-r1.ebuild

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

Index: libuv-0.11.22-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-0.11.22-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libuv-0.11.22-r1.ebuild 15 Mar 2014 20:09:41 -  1.1
+++ libuv-0.11.22-r1.ebuild 15 Mar 2014 20:37:51 -  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/libuv/libuv-0.11.22-r1.ebuild,v 
1.1 2014/03/15 20:09:41 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-0.11.22-r1.ebuild,v 
1.2 2014/03/15 20:37:51 hasufell Exp $
 
 EAPI=5
 
@@ -29,6 +29,12 @@
$(use_enable static-libs static)
 }
 
+multilib_src_test() {
+   mkdir ${BUILD_DIR}/test || die
+   cp -pPR ${S}/test/fixtures ${BUILD_DIR}/test/fixtures || die
+   default
+}
+
 multilib_src_install_all() {
einstalldocs
prune_libtool_files



1.15 dev-libs/libuv/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   15 Mar 2014 20:09:41 -  1.14
+++ ChangeLog   15 Mar 2014 20:37:51 -  1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libuv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.14 2014/03/15 
20:09:41 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.15 2014/03/15 
20:37:51 hasufell Exp $
+
+  15 Mar 2014; Julian Ospald hasuf...@gentoo.org libuv-0.11.22-r1.ebuild:
+  fix tests in out-of-source build
 
 *libuv-0.11.22-r1 (15 Mar 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-lang/python: python-2.7.6.ebuild ChangeLog

2014-03-15 Thread Mike Gilbert (floppym)
floppym 14/03/15 20:58:09

  Modified: python-2.7.6.ebuild ChangeLog
  Log:
  Backport upstream fixes for bug 503180.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.7  dev-lang/python/python-2.7.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.6.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.6.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.6.ebuild?r1=1.6r2=1.7

Index: python-2.7.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- python-2.7.6.ebuild 18 Jan 2014 11:40:40 -  1.6
+++ python-2.7.6.ebuild 15 Mar 2014 20:58:09 -  1.7
@@ -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-lang/python/python-2.7.6.ebuild,v 1.6 
2014/01/18 11:40:40 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.6.ebuild,v 1.7 
2014/03/15 20:58:09 floppym Exp $
 
 EAPI=4
 WANT_AUTOMAKE=none
@@ -9,7 +9,7 @@
 inherit autotools eutils flag-o-matic multilib pax-utils python-utils-r1 
toolchain-funcs multiprocessing
 
 MY_P=Python-${PV}
-PATCHSET_REVISION=0
+PATCHSET_REVISION=1
 
 DESCRIPTION=An interpreted, interactive, object-oriented programming language
 HOMEPAGE=http://www.python.org/;



1.746dev-lang/python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v
retrieving revision 1.745
retrieving revision 1.746
diff -u -r1.745 -r1.746
--- ChangeLog   1 Mar 2014 22:49:32 -   1.745
+++ ChangeLog   15 Mar 2014 20:58:09 -  1.746
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.745 
2014/03/01 22:49:32 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.746 
2014/03/15 20:58:09 floppym Exp $
+
+  15 Mar 2014; Mike Gilbert flop...@gentoo.org python-2.7.6.ebuild:
+  Backport upstream fixes for bug 503180.
 
   01 Mar 2014; Mike Gilbert flop...@gentoo.org python-3.4.0_rc1.ebuild:
   Disable ensurepip.






[gentoo-commits] gentoo-x86 commit in dev-vcs/git-annex: git-annex-5.20140306-r1.ebuild ChangeLog git-annex-5.20140306.ebuild

2014-03-15 Thread Alexander Vershilov (qnikst)
qnikst  14/03/15 20:59:23

  Modified: ChangeLog
  Added:git-annex-5.20140306-r1.ebuild
  Removed:  git-annex-5.20140306.ebuild
  Log:
  fix assistant dependency, #504610
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xEAD50D64D8D3571A!)

Revision  ChangesPath
1.22 dev-vcs/git-annex/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-annex/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-annex/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-annex/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git-annex/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   12 Mar 2014 21:33:28 -  1.21
+++ ChangeLog   15 Mar 2014 20:59:23 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for dev-vcs/git-annex
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-annex/ChangeLog,v 1.21 
2014/03/12 21:33:28 qnikst Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-annex/ChangeLog,v 1.22 
2014/03/15 20:59:23 qnikst Exp $
+
+*git-annex-5.20140306-r1 (15 Mar 2014)
+
+  15 Mar 2014; Alexander Vershilov qni...@gentoo.org
+  +git-annex-5.20140306-r1.ebuild, -git-annex-5.20140306.ebuild:
+  fix assistant dependency, #504610
 
 *git-annex-5.20140306 (12 Mar 2014)
 



1.1  dev-vcs/git-annex/git-annex-5.20140306-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-annex/git-annex-5.20140306-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-annex/git-annex-5.20140306-r1.ebuild?rev=1.1content-type=text/plain

Index: git-annex-5.20140306-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-vcs/git-annex/git-annex-5.20140306-r1.ebuild,v 1.1 
2014/03/15 20:59:23 qnikst Exp $

EAPI=5

# ebuild generated by hackport 0.3.5

CABAL_FEATURES=bin
inherit haskell-cabal

DESCRIPTION=manage files with git, without checking their contents into git
HOMEPAGE=http://git-annex.branchable.com/;
SRC_URI=mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz
RESTRICT=test

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~x86 ~amd64-linux
IUSE=android androidsplice +assistant +cryptohash +dbus +dns doc ekg +feed 
+inotify +pairing tahoe +production +quvi +s3 +tdfa +testsuite +webapp +webdav 
+xmpp

RDEPEND=dev-vcs/git
assistant? ( sys-process/lsof )

DEPEND=${RDEPEND}
dev-haskell/async
dev-haskell/bloomfilter
=dev-haskell/cabal-1.8
dev-haskell/case-insensitive
dev-haskell/dataenc
dev-haskell/data-default
dev-haskell/dlist
dev-haskell/edit-distance
dev-haskell/extensible-exceptions
dev-haskell/hslogger
dev-haskell/http
dev-haskell/ifelse
dev-haskell/json[generic]
dev-haskell/missingh
dev-haskell/monad-control
dev-haskell/monadcatchio-transformers
=dev-haskell/mtl-2
=dev-haskell/network-2.0
=dev-haskell/quickcheck-2.1
dev-haskell/random
dev-haskell/safesemaphore
dev-haskell/sha
=dev-haskell/stm-2.3
dev-haskell/text
dev-haskell/unix-compat
dev-haskell/utf8-string
dev-haskell/uuid
=dev-lang/ghc-7.4.1
android? ( dev-haskell/data-endian )
assistant? ( inotify? ( dev-haskell/hinotify ) )
cryptohash? ( =dev-haskell/cryptohash-0.10.0 )
dbus? ( =dev-haskell/dbus-0.10.3 )
dns? ( dev-haskell/dns )
ekg? ( dev-haskell/aeson
dev-haskell/ekg
dev-haskell/http-types )
feed? ( dev-haskell/feed )
pairing? ( dev-haskell/network-info
dev-haskell/network-multicast )
s3? ( dev-haskell/hs3 )
tahoe? ( dev-haskell/aeson )
tdfa? ( dev-haskell/regex-tdfa )
testsuite? ( dev-haskell/tasty
dev-haskell/tasty-hunit
dev-haskell/tasty-quickcheck
dev-haskell/tasty-rerun )
webapp? ( dev-haskell/aeson
dev-haskell/blaze-builder
dev-haskell/clientsession
dev-haskell/crypto-api
dev-haskell/hamlet
dev-haskell/http-types
dev-haskell/network-conduit
dev-haskell/transformers
dev-haskell/wai
dev-haskell/wai-logger
  

[gentoo-commits] gentoo-x86 commit in sys-fs/f2fs-tools: f2fs-tools-1.3.0.ebuild ChangeLog

2014-03-15 Thread Anthony G. Basile (blueness)
blueness14/03/15 21:03:56

  Modified: ChangeLog
  Added:f2fs-tools-1.3.0.ebuild
  Log:
  Version bump, bug #504676
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.14 sys-fs/f2fs-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/f2fs-tools/ChangeLog?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/f2fs-tools/ChangeLog?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/f2fs-tools/ChangeLog?r1=1.13r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/f2fs-tools/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   30 Jan 2014 21:05:00 -  1.13
+++ ChangeLog   15 Mar 2014 21:03:56 -  1.14
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/f2fs-tools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/f2fs-tools/ChangeLog,v 1.13 
2014/01/30 21:05:00 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/f2fs-tools/ChangeLog,v 1.14 
2014/03/15 21:03:56 blueness Exp $
+
+*f2fs-tools-1.3.0 (15 Mar 2014)
+
+  15 Mar 2014; Anthony G. Basile bluen...@gentoo.org 
+f2fs-tools-1.3.0.ebuild:
+  Version bump, bug #504676
 
 *f2fs-tools-1.2.0 (30 Jan 2014)
 



1.1  sys-fs/f2fs-tools/f2fs-tools-1.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/f2fs-tools/f2fs-tools-1.3.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/f2fs-tools/f2fs-tools-1.3.0.ebuild?rev=1.1content-type=text/plain

Index: f2fs-tools-1.3.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/f2fs-tools/f2fs-tools-1.3.0.ebuild,v 
1.1 2014/03/15 21:03:56 blueness Exp $

EAPI=5

inherit multilib

DESCRIPTION=Tools for Flash-Friendly File System (F2FS)
HOMEPAGE=http://git.kernel.org/?p=linux/kernel/git/jaegeuk/f2fs-tools.git;a=summary;
SRC_URI=http://dev.gentoo.org/~blueness/f2fs-tools/${P}.tar.gz;

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

src_configure() {
#This is required to install to /sbin, bug #481110
econf --prefix=/ --includedir=/usr/include
}

src_install() {
default
rm -f ${ED}/$(get_libdir)/libf2fs.{,l}a
}






[gentoo-commits] gentoo-x86 commit in sys-apps/memtester: memtester-4.3.0.ebuild ChangeLog

2014-03-15 Thread Matt Turner (mattst88)
mattst8814/03/15 21:39:36

  Modified: memtester-4.3.0.ebuild ChangeLog
  Log:
  Added ~alpha.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.6  sys-apps/memtester/memtester-4.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtester/memtester-4.3.0.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtester/memtester-4.3.0.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtester/memtester-4.3.0.ebuild?r1=1.5r2=1.6

Index: memtester-4.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/memtester/memtester-4.3.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- memtester-4.3.0.ebuild  23 Oct 2012 04:58:53 -  1.5
+++ memtester-4.3.0.ebuild  15 Mar 2014 21:39:36 -  1.6
@@ -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/sys-apps/memtester/memtester-4.3.0.ebuild,v 
1.5 2012/10/23 04:58:53 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtester/memtester-4.3.0.ebuild,v 
1.6 2014/03/15 21:39:36 mattst88 Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=amd64 ~arm ~ia64 ~mips ppc ppc64 sparc x86
+KEYWORDS=~alpha amd64 ~arm ~ia64 ~mips ppc ppc64 sparc x86
 IUSE=
 
 src_prepare() {



1.52 sys-apps/memtester/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtester/ChangeLog?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtester/ChangeLog?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtester/ChangeLog?r1=1.51r2=1.52

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/memtester/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   23 Oct 2012 04:58:53 -  1.51
+++ ChangeLog   15 Mar 2014 21:39:36 -  1.52
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/memtester
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtester/ChangeLog,v 1.51 
2012/10/23 04:58:53 armin76 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtester/ChangeLog,v 1.52 
2014/03/15 21:39:36 mattst88 Exp $
+
+  15 Mar 2014; Matt Turner matts...@gentoo.org memtester-4.3.0.ebuild:
+  Added ~alpha.
 
   23 Oct 2012; Raúl Porcel armi...@gentoo.org memtester-4.3.0.ebuild:
   sparc stable because its used in the installcd
@@ -169,4 +172,3 @@
   07 Nov 2002, Mark Guertin g...@gentoo.org memtest-2.93.1.ebuild :
   Added initial build, this works on ppc (there are no other mem testers
   in portage that do currently).
-






[gentoo-commits] gentoo-x86 commit in gnome-base/gnome-shell/files: gnome-shell-3.10.4-fix-background-manager.patch gnome-shell-3.10.4-bluetooth-gold.patch

2014-03-15 Thread Alexandre Rostovtsev (tetromino)
tetromino14/03/15 22:13:55

  Added:gnome-shell-3.10.4-fix-background-manager.patch
gnome-shell-3.10.4-bluetooth-gold.patch
  Log:
  Fix silent linking failure to gnome-bluetooth when using ld.gold (bug 
#503952, thanks to Justin Lecher) and background corruption with multiple 
minitors (bug #504530, thanks to Chandler Paul).
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
CF0ADD61)

Revision  ChangesPath
1.1  
gnome-base/gnome-shell/files/gnome-shell-3.10.4-fix-background-manager.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/files/gnome-shell-3.10.4-fix-background-manager.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/files/gnome-shell-3.10.4-fix-background-manager.patch?rev=1.1content-type=text/plain

Index: gnome-shell-3.10.4-fix-background-manager.patch
===
From 831bd07b0d6b7055fea8317f2cdf8fd4a408c36d Mon Sep 17 00:00:00 2001
From: Jasper St. Pierre jstpie...@mecheye.net
Date: Thu,  7 Nov 2013 17:14:47 -0500
Subject: [PATCH] layout: Fix several issues with the background management code

If monitor-changed fires at startup, it will destroy all of the
backgrounds, but since this._isStartup is true, won't recreate any
of them. Additionally, since _bgManagers is indexed by monitor index,
if the primary index is not 0, it could become a sparse array (e.g.
[undefined, undefined, primaryBackground]), and our for loop will
crash trying to access properties of undefined.

Fix both of these issues by always creating background managers for
every monitor, hiding them on startup but only showing them after
the startup animation is complete.

One thing we need to watch out for is that while LayoutManager is
constructing, Main.uiGroup / Main.layoutManager will be undefined,
so addBackgroundMenu will fail. Fix this by passing down the uiGroup
to the background menu code.

https://bugzilla.gnome.org/show_bug.cgi?id=709313


diff --git a/js/ui/backgroundMenu.js b/js/ui/backgroundMenu.js
index 06e698c..dcbbb39 100644
--- a/js/ui/backgroundMenu.js
+++ b/js/ui/backgroundMenu.js
@@ -13,7 +13,7 @@ const BackgroundMenu = new Lang.Class({
 Name: 'BackgroundMenu',
 Extends: PopupMenu.PopupMenu,
 
-_init: function(source) {
+_init: function(source, layoutManager) {
 this.parent(source, 0, St.Side.TOP);
 
 this.addSettingsAction(_(Settings), 'gnome-control-center.desktop');
@@ -22,17 +22,17 @@ const BackgroundMenu = new Lang.Class({
 
 this.actor.add_style_class_name('background-menu');
 
-Main.uiGroup.add_actor(this.actor);
+layoutManager.uiGroup.add_actor(this.actor);
 this.actor.hide();
 }
 });
 
-function addBackgroundMenu(actor) {
+function addBackgroundMenu(actor, layoutManager) {
 let cursor = new St.Bin({ opacity: 0 });
-Main.uiGroup.add_actor(cursor);
+layoutManager.uiGroup.add_actor(cursor);
 
 actor.reactive = true;
-actor._backgroundMenu = new BackgroundMenu(cursor);
+actor._backgroundMenu = new BackgroundMenu(cursor, layoutManager);
 actor._backgroundManager = new PopupMenu.PopupMenuManager({ actor: actor 
});
 actor._backgroundManager.addMenu(actor._backgroundMenu);
 
diff --git a/js/ui/layout.js b/js/ui/layout.js
index 17073a6..80bae9d 100644
--- a/js/ui/layout.js
+++ b/js/ui/layout.js
@@ -352,26 +352,26 @@ const LayoutManager = new Lang.Class({
 this.emit('hot-corners-changed');
 },
 
-_createBackground: function(monitorIndex) {
+_addBackgroundMenu: function(bgManager) {
+BackgroundMenu.addBackgroundMenu(bgManager.background.actor, this);
+},
+
+_createBackgroundManager: function(monitorIndex) {
 let bgManager = new Background.BackgroundManager({ container: 
this._backgroundGroup,
layoutManager: this,
monitorIndex: 
monitorIndex });
-BackgroundMenu.addBackgroundMenu(bgManager.background.actor);
-
-bgManager.connect('changed', Lang.bind(this, function() {
-  
BackgroundMenu.addBackgroundMenu(bgManager.background.actor);
-  }));
 
-this._bgManagers[monitorIndex] = bgManager;
+bgManager.connect('changed', Lang.bind(this, this._addBackgroundMenu));
+this._addBackgroundMenu(bgManager);
 
-return bgManager.background;
+return bgManager;
 },
 
-_createSecondaryBackgrounds: function() {
+_showSecondaryBackgrounds: function() {
 for (let i = 0; i  this.monitors.length; i++) {
 if (i != this.primaryIndex) {
-let background = this._createBackground(i);
-
+let background = this._bgManagers[i].background;
+

[gentoo-commits] proj/devmanual:master commit in: appendices/contributing/

2014-03-15 Thread Markos Chandras
commit: 90b991061553053964a556936a66962272335096
Author: Markus Meier maekke AT gentoo DOT org
AuthorDate: Sun Jan 19 13:17:43 2014 +
Commit: Markos Chandras hwoarang AT gentoo DOT org
CommitDate: Sat Mar 15 22:38:39 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/devmanual.git;a=commit;h=90b99106

remove trunk reference

remove trunk reference since devmanual is no longer in svn...

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

---
 appendices/contributing/text.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/appendices/contributing/text.xml b/appendices/contributing/text.xml
index d59b80d..e434511 100644
--- a/appendices/contributing/text.xml
+++ b/appendices/contributing/text.xml
@@ -44,7 +44,7 @@ fine too d/ the formatting can be easily done by someone 
else (meaning, us).
 /p
 
 p
-  To build the devmanual, simply run cmake/c in the ctrunk/c directory 
of the repository.
+  To build the devmanual, simply run cmake/c in the top directory of the 
repository.
   You need cxsltproc/c (from cdev-libs/libxslt/c) for the XML to HTML
   conversion and optionally also cImageMagick/c for the SVG to PNG 
conversion
   used in some of the figures throughout the document.



[gentoo-commits] gentoo-x86 commit in net-firewall/shorewall/files/4.5.21.7: - New directory

2014-03-15 Thread Markos Chandras (hwoarang)
hwoarang14/03/15 22:43:59

  Log:
  Directory /var/cvsroot/gentoo-x86/net-firewall/shorewall/files/4.5.21.7 added 
to the repository



[gentoo-commits] gentoo-x86 commit in net-firewall/shorewall-core/files/4.5.21.7: - New directory

2014-03-15 Thread Markos Chandras (hwoarang)
hwoarang14/03/15 22:52:03

  Log:
  Directory /var/cvsroot/gentoo-x86/net-firewall/shorewall-core/files/4.5.21.7 
added to the repository



[gentoo-commits] gentoo-x86 commit in net-firewall/shorewall-core/files/4.5.21.7: shorewallrc 10-releasenotes.patch

2014-03-15 Thread Markos Chandras (hwoarang)
hwoarang14/03/15 22:53:52

  Added:shorewallrc 10-releasenotes.patch
  Log:
  Version bump. Bug #499174 thanks to Thomas D.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
C2BA7F3C!)

Revision  ChangesPath
1.1  net-firewall/shorewall-core/files/4.5.21.7/shorewallrc

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall-core/files/4.5.21.7/shorewallrc?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall-core/files/4.5.21.7/shorewallrc?rev=1.1content-type=text/plain

Index: shorewallrc
===
#
# Gentoo Shorewall 4.5 rc file
#
BUILD=  #Default is to detect the build system
HOST=gentoo #Gentoo GNU Linux
PREFIX=@GENTOO_PORTAGE_EPREFIX@/usr #Top-level 
directory for shared files, libraries, etc.
SHAREDIR=${PREFIX}/share#Directory for arch-neutral files.
LIBEXECDIR=${PREFIX}/share  #Directory for executable scripts.
PERLLIBDIR=${PREFIX}/share/shorewall#Directory to install Shorewall Perl 
module directory
CONFDIR=@GENTOO_PORTAGE_EPREFIX@/etc#Directory 
where subsystem configurations are installed
SBINDIR=@GENTOO_PORTAGE_EPREFIX@/sbin   #Directory 
where system administration programs are installed
MANDIR=${PREFIX}/share/man  #Directory where manpages are installed.
INITDIR=${CONFDIR}/init.d   #Directory where SysV init scripts are 
installed.
INITFILE=${PRODUCT} #Name of the product's installed SysV 
init script
INITSOURCE=init.gentoo.sh   #Name of the distributed file to be 
installed as the SysV init script
ANNOTATED=  #If non-zero, annotated configuration 
files are installed
SYSTEMD=@GENTOO_PORTAGE_EPREFIX@/usr/lib/systemd/system #Directory 
where .service files are installed (systems running systemd only)
SERVICEFILE=gentoo.service  #Name of the distributed file to be 
installed as systemd service file
SYSCONFFILE=default.gentoo  #Name of the distributed file to be 
installed in $SYSCONFDIR
SYSCONFDIR=${CONFDIR}/conf.d#Directory where SysV init parameter 
files are installed
SPARSE= #If non-empty, only install 
$PRODUCT/$PRODUCT.conf in $CONFDIR
VARLIB=@GENTOO_PORTAGE_EPREFIX@/var/lib #Directory 
where product variable data is stored.
VARDIR=${VARLIB}/${PRODUCT} #Directory where product variable data 
is stored.



1.1  
net-firewall/shorewall-core/files/4.5.21.7/10-releasenotes.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall-core/files/4.5.21.7/10-releasenotes.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall-core/files/4.5.21.7/10-releasenotes.patch?rev=1.1content-type=text/plain

Index: 10-releasenotes.patch
===
This patch will update the version number in the release notes.

See http://thread.gmane.org/gmane.comp.security.shorewall/30808

--- shorewall-core-4.5.21.7.old/releasenotes.txt2014-03-08 
16:35:39.0 +0100
+++ shorewall-core-4.5.21.7/releasenotes.txt2014-03-09 14:38:19.503337459 
+0100
@@ -1,5 +1,5 @@
 
-   S H O R E W A L L  4 . 5 . 2 1 . 6
+   S H O R E W A L L  4 . 5 . 2 1 . 7

   M a r c h  0 8 ,  2 0 1 4
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-pango: ruby-pango-2.2.0.ebuild ChangeLog

2014-03-15 Thread Naohiro Aota (naota)
naota   14/03/15 22:54:48

  Modified: ChangeLog
  Added:ruby-pango-2.2.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F8551514)

Revision  ChangesPath
1.87 dev-ruby/ruby-pango/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-pango/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   10 Mar 2014 17:15:07 -  1.86
+++ ChangeLog   15 Mar 2014 22:54:48 -  1.87
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/ruby-pango
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-pango/ChangeLog,v 1.86 
2014/03/10 17:15:07 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-pango/ChangeLog,v 1.87 
2014/03/15 22:54:48 naota Exp $
+
+*ruby-pango-2.2.0 (15 Mar 2014)
+
+  15 Mar 2014; Naohiro Aota na...@gentoo.org +ruby-pango-2.2.0.ebuild:
+  version bump
 
   10 Mar 2014; Manuel Rüger mr...@gentoo.org -ruby-pango-1.1.3.ebuild,
   ruby-pango-1.1.8.ebuild, ruby-pango-1.2.6.ebuild:



1.1  dev-ruby/ruby-pango/ruby-pango-2.2.0.ebuild

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

Index: ruby-pango-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/dev-ruby/ruby-pango/ruby-pango-2.2.0.ebuild,v 1.1 
2014/03/15 22:54:48 naota Exp $

EAPI=5
USE_RUBY=ruby19 ruby20

inherit ruby-ng-gnome2

DESCRIPTION=Ruby Pango bindings
KEYWORDS=~amd64 ~ppc ~x86
IUSE=
DEPEND=${DEPEND}
=x11-libs/pango-1.2.1
=dev-ruby/rcairo-1.2.0
RDEPEND=${RDEPEND}
=x11-libs/pango-1.2.1
=dev-ruby/rcairo-1.2.0

ruby_add_rdepend =dev-ruby/ruby-glib2-${PV}






[gentoo-commits] gentoo-x86 commit in net-firewall/shorewall/files/4.5.21.7: shorewall.confd 10-releasenotes.patch shorewall.initd shorewall.systemd shorewallrc

2014-03-15 Thread Markos Chandras (hwoarang)
hwoarang14/03/15 22:54:39

  Added:shorewall.confd 10-releasenotes.patch
shorewall.initd shorewall.systemd shorewallrc
  Log:
  Version bump. Bug #499174 thanks to Thomas D.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
C2BA7F3C!)

Revision  ChangesPath
1.1  net-firewall/shorewall/files/4.5.21.7/shorewall.confd

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/files/4.5.21.7/shorewall.confd?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/files/4.5.21.7/shorewall.confd?rev=1.1content-type=text/plain

Index: shorewall.confd
===
# Global start/restart/stop options
# 
OPTIONS=

# Start options
# 
STARTOPTIONS=

# Stop options
# 
STOPOPTIONS=

# Restart options
# 
RESTARTOPTIONS=



1.1  net-firewall/shorewall/files/4.5.21.7/10-releasenotes.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/files/4.5.21.7/10-releasenotes.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/files/4.5.21.7/10-releasenotes.patch?rev=1.1content-type=text/plain

Index: 10-releasenotes.patch
===
This patch will update the version number in the release notes.

See http://thread.gmane.org/gmane.comp.security.shorewall/30808

--- shorewall-4.5.21.7.old/releasenotes.txt 2014-03-08 16:35:39.0 
+0100
+++ shorewall-4.5.21.7/releasenotes.txt 2014-03-09 14:38:19.503337459 +0100
@@ -1,5 +1,5 @@
 
-   S H O R E W A L L  4 . 5 . 2 1 . 6
+   S H O R E W A L L  4 . 5 . 2 1 . 7

   M a r c h  0 8 ,  2 0 1 4
 



1.1  net-firewall/shorewall/files/4.5.21.7/shorewall.initd

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/files/4.5.21.7/shorewall.initd?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/files/4.5.21.7/shorewall.initd?rev=1.1content-type=text/plain

Index: shorewall.initd
===
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-firewall/shorewall/files/4.5.21.7/shorewall.initd,v 
1.1 2014/03/15 22:54:38 hwoarang Exp $

description='The Shoreline Firewall, more commonly known as Shorewall, is'
description=${description} a high-level tool for configuring Netfilter.

extra_commands=check clear
extra_started_commands=refresh reset

description_check=Checks if the configuration will compile or not.

description_clear=Clear will remove all rules and chains installed by
description_clear=${description_clear} Shorewall. The firewall is then
description_clear=${description_clear} wide open and unprotected.

description_refresh=The mangle table will be refreshed along with the
description_refresh=${description_refresh} blacklist chain (if any).

description_reset=All the packet and byte counters in the firewall are reset.

depend() {
need net
provide firewall
after ulogd
}

status() {
local _retval
/sbin/shorewall status 1/dev/null
_retval=$?
if [ ${_retval} = '0' ]; then
einfo 'status: started'
mark_service_started ${SVCNAME}
return 0
else
einfo 'status: stopped' 
mark_service_stopped ${SVCNAME}
return 3
fi
}

start() {
ebegin Starting shorewall
/sbin/shorewall ${OPTIONS} start ${STARTOPTIONS} 1/dev/null
eend $? 
}

stop() {
ebegin Stopping shorewall
/sbin/shorewall ${OPTIONS} stop ${STOPOPTIONS} 1/dev/null
eend $?
}

restart() {
# shorewall comes with its own control script that includes a
# restart function, so refrain from calling svc_stop/svc_start
# here.  Note that this comment is required to fix bug 55576;
# runscript.sh greps this script...  (09 Jul 2004 agriffis)

ebegin Restarting shorewall
/sbin/shorewall status 1/dev/null
if [ $? != 0 ] ; then
svc_start
else
/sbin/shorewall ${OPTIONS} restart ${RESTARTOPTIONS} 1/dev/null
fi
eend $?
}

clear() {
# clear will remove all the rules and bring the system to an 
unfirewalled
# state. (21 Nov 2004 eldad)

ebegin Clearing all shorewall rules and setting policy to ACCEPT
/sbin/shorewall ${OPTIONS} clear 

[gentoo-commits] gentoo-x86 commit in net-firewall/shorewall-init/files/4.5.21.7: - New directory

2014-03-15 Thread Markos Chandras (hwoarang)
hwoarang14/03/15 22:55:50

  Log:
  Directory /var/cvsroot/gentoo-x86/net-firewall/shorewall-init/files/4.5.21.7 
added to the repository



  1   2   >