[gentoo-commits] gentoo-x86 commit in dev-libs/icu/files: icu-remove-bashisms.patch

2015-01-06 Thread Remi Cardona (remi)
remi15/01/07 07:40:43

  Added:icu-remove-bashisms.patch
  Log:
  dev-libs/icu: add patch to fix bug #528022
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
901AB08A)

Revision  ChangesPath
1.1  dev-libs/icu/files/icu-remove-bashisms.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/files/icu-remove-bashisms.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/files/icu-remove-bashisms.patch?rev=1.1&content-type=text/plain

Index: icu-remove-bashisms.patch
===
Index: config/Makefile.inc.in
===
--- config/Makefile.inc.in  (revision 36912)
+++ config/Makefile.inc.in  (working copy)
@@ -125,12 +125,6 @@
 # with usually. Many applications will want to add $(ICULIBS_I18N) as well. 
 ICULIBS = $(ICULIBS_BASE) $(ICULIBS_I18N) $(ICULIBS_COMMON) $(ICULIBS_DATA) 
 
-# Proper echo newline handling is needed in icu-config
-ECHO_N=@ICU_ECHO_N@
-ECHO_C=@ICU_ECHO_C@
-# Not currently being used but good to have for proper tab handling
-ECHO_T=@ICU_ECHO_T@
-
 ##
 ##
 #
Index: config/icu-config-bottom
===
--- config/icu-config-bottom(revision 36912)
+++ config/icu-config-bottom(working copy)
@@ -217,73 +217,73 @@
;;
 
--cflags)
-   echo $ECHO_N "${CFLAGS} ${ECHO_C}"
+   printf "%s" "${CFLAGS}"
;;
 
--cc)
-   echo $ECHO_N "${CC} ${ECHO_C}"
+   printf "%s" "${CC}"
;;
 
--cxx)
-   echo $ECHO_N "${CXX} ${ECHO_C}"
+   printf "%s" "${CXX}"
;;
 
--cxxflags)
-   echo $ECHO_N "${CXXFLAGS} ${ECHO_C}"
+   printf "%s" "${CXXFLAGS}"
;;
 
--cppflags)
# Don't echo the -I. - it's unneeded.
-   echo $ECHO_N "${CPPFLAGS} ${ECHO_C}" | sed -e 's/-I. //'
+   printf "%s" "${CPPFLAGS}" | sed -e 's/-I. //'
;;
 
--cppflags-searchpath)
-   echo $ECHO_N "-I${prefix}/include ${ECHO_C}"
+   printf "%s" "-I${prefix}/include"
;;
 
--cppflags-dynamic)
-   echo $ECHO_N "${SHAREDLIBCPPFLAGS} ${ECHO_C}"
+   printf "%s" "${SHAREDLIBCPPFLAGS}"
;;
 
--cxxflags-dynamic)
-   echo $ECHO_N "${SHAREDLIBCXXFLAGS} ${ECHO_C}"
+   printf "%s" "${SHAREDLIBCXXFLAGS}"
;;
 
--cflags-dynamic)
-   echo $ECHO_N "${SHAREDLIBCFLAGS} ${ECHO_C}"
+   printf "%s" "${SHAREDLIBCFLAGS}"
;;
 
--ldflags-system)
-   echo $ECHO_N "${LIBS} ${ECHO_C}"
+   printf "%s" "${LIBS}"
;;
 
--ldflags)
-   echo $ECHO_N "${LDFLAGS} ${ICULIBS} ${ECHO_C}"
+   printf "%s" "${LDFLAGS} ${ICULIBS}"
 # $RPATH_LDFLAGS
;;
 
--ldflags-libsonly)
-   echo $ECHO_N "${ICULIBS_I18N} ${ICULIBS_COMMON} ${ICULIBS_DATA} 
${ECHO_C}"
+   printf "%s" "${ICULIBS_I18N} ${ICULIBS_COMMON} ${ICULIBS_DATA}"
;;
 
--ldflags-icuio)
-   echo $ECHO_N " ${ICULIBS_ICUIO} ${ECHO_C}"
+   printf "%s" " ${ICULIBS_ICUIO}"
;;
 
--ldflags-obsolete)
-   echo $ECHO_N "${ICULIBS_OBSOLETE} ${ECHO_C}"
+   printf "%s" "${ICULIBS_OBSOLETE}"
;;
 
--ldflags-toolutil)
-   echo $ECHO_N " ${ICULIBS_TOOLUTIL} ${ECHO_C}"
+   printf "%s" " ${ICULIBS_TOOLUTIL}"
;;
 
--ldflags-layout)
-   echo $ECHO_N "${ICULIBS_LAYOUT} ${ICULIBS_LAYOUTEX} ${ECHO_C}"
+   printf "%s" "${ICULIBS_LAYOUT} ${ICULIBS_LAYOUTEX}"
;;
 
--ldflags-searchpath)
-   echo $ECHO_N "-L${libdir} ${ECHO_C}"
+   printf "%s" "-L${libdir}"
;;
 
--detect-prefix)
@@ -319,47 +319,47 @@
;;
 
--shared-datadir)
-   echo $ECHO_N "${datadir} ${ECHO_C}"
+   printf "%s" "${datadir}"
;;
 
 --incfile)
-   echo $ECHO_N "${pkglibdir}/Makefile.inc ${ECHO_C}"
+   printf "%s" "${pkglibdir}/Makefile.inc"
;;
 
--incpkgdatafile)
-   echo $ECHO_N "${pkglibdir}/pkgdata.inc ${ECHO_C}"
+   printf "%s" "${pkglibdir}/pkgdata.inc"
;;
 
--icudata)
-   echo $ECHO_N "${ICUDATA_NAME} ${ECHO_C}"
+   printf "%s" "${ICUDATA_NAME}"
;;
 
--icudata-mode)
-   echo $ECHO_N "${PKGDATA_MODE} ${ECHO_C}"
+   printf "%s" "${PKGDATA_MODE}"
;;
 
--icudata-install-dir)
-echo $ECHO_N "${ICUPKGDATA_DIR} ${ECHO_C}"
+printf "%s" "${I

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

2015-01-06 Thread Remi Cardona (remi)
remi15/01/07 07:40:43

  Modified: ChangeLog
  Added:icu-53.1-r1.ebuild
  Log:
  dev-libs/icu: add patch to fix bug #528022
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
901AB08A)

Revision  ChangesPath
1.289dev-libs/icu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.289&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.289&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.288&r2=1.289

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- ChangeLog   2 Jan 2015 13:45:01 -   1.288
+++ ChangeLog   7 Jan 2015 07:40:43 -   1.289
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.288 2015/01/02 
13:45:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.289 2015/01/07 
07:40:43 remi Exp $
+
+*icu-53.1-r1 (07 Jan 2015)
+
+  07 Jan 2015; Rémi Cardona  +icu-53.1-r1.ebuild,
+  +files/icu-remove-bashisms.patch:
+  Add patch to fix icu-config with non-bash /bin/sh, see bug #528022.
 
   02 Jan 2015; Agostino Sarubbo  icu-53.1.ebuild:
   Stable for x86, wrt bug #523164



1.1  dev-libs/icu/icu-53.1-r1.ebuild

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

Index: icu-53.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-53.1-r1.ebuild,v 1.1 
2015/01/07 07:40:43 remi Exp $

EAPI=5

inherit eutils toolchain-funcs autotools multilib-minimal

DESCRIPTION="International Components for Unicode"
HOMEPAGE="http://www.icu-project.org/";
SRC_URI="http://download.icu-project.org/files/icu4c/${PV/_/}/icu4c-${PV//./_}-src.tgz";

LICENSE="BSD"

SLOT="0/53"

KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="debug doc examples static-libs"

DEPEND="
doc? (
app-doc/doxygen[dot]
)
"

S="${WORKDIR}/${PN}/source"

src_prepare() {
local variable

epatch "${FILESDIR}/icu-fix-tests-depending-on-date.patch"
epatch "${FILESDIR}/${PN}-remove-bashisms.patch"
epatch_user

# Do not hardcode flags in icu-config and icu-*.pc files.
# https://ssl.icu-project.org/trac/ticket/6102
for variable in CFLAGS CPPFLAGS CXXFLAGS FFLAGS LDFLAGS; do
sed \
-e "/^${variable} =.*/s: *@${variable}@\( *$\)\?::" \
-i config/icu.pc.in \
-i config/Makefile.inc.in \
|| die
done

# Disable renaming as it is stupind thing to do
sed -i \
-e "s/#define U_DISABLE_RENAMING 0/#define U_DISABLE_RENAMING 
1/" \
common/unicode/uconfig.h || die

# Fix linking of icudata
sed -i \
-e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" \
config/mh-linux || die

# Append doxygen configuration to configure
sed -i \
-e 's:icudefs.mk:icudefs.mk Doxyfile:' \
configure.ac || die
eautoreconf
}

src_configure() {
if tc-is-cross-compiler; then
mkdir "${WORKDIR}"/host || die
pushd "${WORKDIR}"/host >/dev/null || die

CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \
CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" 
AR="$(tc-getBUILD_AR)" \
RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \
"${S}"/configure --disable-renaming --disable-debug \
--disable-samples --enable-static || die
emake

popd >/dev/null || die
fi

multilib-minimal_src_configure
}

multilib_src_configure() {
local myeconfargs=(
--disable-renaming
--disable-samples
$(use_enable debug)
$(use_enable static-libs static)
)

multilib_is_native_abi && myeconfargs+=(
$(use_enable examples samples)
)
tc-is-cross-compiler && myeconfargs+=(
--with-cross-build="${WORKDIR}"/host
)

# icu tries to use clang by default
tc-export 

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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 07:35:53

  Modified: rtslib-.ebuild ChangeLog
  Log:
  revbump; conversion -> distutils-r1
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/rtslib/rtslib-.ebuild

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

Index: rtslib-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rtslib/rtslib-.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rtslib-.ebuild  9 Aug 2012 04:09:49 -   1.2
+++ rtslib-.ebuild  7 Jan 2015 07:35:53 -   1.3
@@ -1,15 +1,13 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rtslib/rtslib-.ebuild,v 1.2 
2012/08/09 04:09:49 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rtslib/rtslib-.ebuild,v 1.3 
2015/01/07 07:35:53 idella4 Exp $
 
-EAPI=4
+EAPI=5
 
 EGIT_REPO_URI="git://linux-iscsi.org/${PN}.git"
-PYTHON_DEPEND="2"
-RESTRICT_PYTHON_ABIS="3.* 2.5-jython"
-SUPPORT_PYTHON_ABIS="1"
+PYTHON_COMPAT=( python2_7 )
 
-inherit eutils distutils git-2 python
+inherit distutils-r1 git-2
 
 DESCRIPTION="RTSLib Community Edition for target_core_mod/ConfigFS"
 HOMEPAGE="http://linux-iscsi.org/";
@@ -21,14 +19,14 @@
 IUSE=""
 
 DEPEND="
-   dev-python/configobj
-   dev-python/ipaddr
-   dev-python/netifaces
+   dev-python/configobj[${PYTHON_USEDEP}]
+   dev-python/ipaddr[${PYTHON_USEDEP}]
+   dev-python/netifaces[${PYTHON_USEDEP}]
"
 RDEPEND="${DEPEND}"
 
 src_install() {
-   distutils_src_install
+   distutils-r1_src_install
keepdir /var/target/fabric
insinto /var/target/fabric
doins specs/*.spec



1.3  dev-python/rtslib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rtslib/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   9 Aug 2012 04:09:49 -   1.2
+++ ChangeLog   7 Jan 2015 07:35:53 -   1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/rtslib
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rtslib/ChangeLog,v 1.2 
2012/08/09 04:09:49 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rtslib/ChangeLog,v 1.3 
2015/01/07 07:35:53 idella4 Exp $
+
+  07 Jan 2015; Ian Delaney  rtslib-.ebuild:
+  revbump; conversion -> distutils-r1
 
   09 Aug 2012; Patrick Lauer  rtslib-.ebuild:
   Restricting jython






[gentoo-commits] gentoo-x86 commit in x11-wm/fluxbox: metadata.xml ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/07 07:34:24

  Modified: metadata.xml ChangeLog
  Log:
  Update e-mail address.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.19 x11-wm/fluxbox/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/metadata.xml?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/metadata.xml?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/metadata.xml?r1=1.18&r2=1.19

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/metadata.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- metadata.xml20 Oct 2013 20:53:56 -  1.18
+++ metadata.xml7 Jan 2015 07:34:24 -   1.19
@@ -7,9 +7,8 @@
Panagiotis Christopoulos
 
 
-   dlcampb...@gmx.com
+   cont...@sporkbox.us
Daniel Campbell
-   Mantainer. Assign bugs to him
 

[gentoo-commits] gentoo-x86 commit in net-im/mcabber: mcabber-0.10.3.ebuild ChangeLog

2015-01-06 Thread Wolfram Schlich (wschlich)
wschlich15/01/07 07:33:30

  Modified: ChangeLog
  Added:mcabber-0.10.3.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.67 net-im/mcabber/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mcabber/ChangeLog?rev=1.67&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mcabber/ChangeLog?rev=1.67&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mcabber/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   5 Aug 2014 18:34:11 -   1.66
+++ ChangeLog   7 Jan 2015 07:33:30 -   1.67
@@ -1,6 +1,12 @@
 # ChangeLog for net-im/mcabber
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.66 2014/08/05 
18:34:11 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.67 2015/01/07 
07:33:30 wschlich Exp $
+
+*mcabber-0.10.3 (07 Jan 2015)
+
+  07 Jan 2015; Wolfram Schlich 
+  +files/mcabber-0.10.3-vim-ftdetect.patch, +mcabber-0.10.3.ebuild:
+  version bump
 
   05 Aug 2014; Manuel Rüger 
   mcabber-0.10.2_p20131025-r1.ebuild, mcabber-0.10.2_p20131025.ebuild:



1.1  net-im/mcabber/mcabber-0.10.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mcabber/mcabber-0.10.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mcabber/mcabber-0.10.3.ebuild?rev=1.1&content-type=text/plain

Index: mcabber-0.10.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/mcabber-0.10.3.ebuild,v 1.1 
2015/01/07 07:33:30 wschlich Exp $

EAPI=5

inherit flag-o-matic autotools-utils

DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
HOMEPAGE="http://mcabber.com/";
#REV="a18e1b488f1c"
#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
SRC_URI="http://mcabber.com/files/${P}.tar.bz2";

#S=${WORKDIR}/${PN}-${REV}/${PN}

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"

IUSE="aspell crypt idn modules otr spell ssl vim-syntax"

LANGS="cs de fr it nl pl ru uk"
# localized help versions are installed only, when LINGUAS var is set
for i in ${LANGS}; do
IUSE="${IUSE} linguas_${i}"
done;

RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
otr? ( >=net-libs/libotr-3.1.0 )
aspell? ( app-text/aspell )
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
idn? ( net-dns/libidn  )
spell? ( app-text/enchant )
dev-libs/glib:2
sys-libs/ncurses
>=net-libs/loudmouth-1.4.3-r1[ssl?]"
DEPEND="${RDEPEND}
virtual/pkgconfig"

## autotools-utils.eclass settings
AUTOTOOLS_AUTORECONF="1"
AUTOTOOLS_IN_SOURCE_BUILD="1"
DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt )
PATCHES=(
"${FILESDIR}/${P}-vim-ftdetect.patch"
)

pkg_setup() {
if use aspell && use spell; then
ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
fi
}

src_configure() {
local myeconfargs=(
$(use_enable crypt gpgme) \
$(use_enable otr) \
$(use_enable aspell) \
$(use_enable spell enchant) \
$(use_enable modules) \
$(use_with idn libidn)
)
autotools-utils_src_configure
}

src_install() {
autotools-utils_src_install

# clean unneeded language documentation
for i in ${LANGS}; do
use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
done

# contrib themes
insinto /usr/share/${PN}/themes
doins "${S}"/contrib/themes/*

# contrib generic scripts
exeinto /usr/share/${PN}/scripts
doexe "${S}"/contrib/*.{pl,py}

# contrib event scripts
exeinto /usr/share/${PN}/scripts/events
doexe "${S}"/contrib/events/*

if use vim-syntax; then
cd contrib/vim/ || die

insinto /usr/share/vim/vimfiles/syntax
doins mcabber_log-syntax.vim

insinto /usr/share/vim/vimfiles/ftdetect
doins mcabber_log-ftdetect.vim
fi
}

pkg_postinst() {
elog
elog "MCabber requires you to crea

[gentoo-commits] gentoo-x86 commit in net-im/mcabber/files: mcabber-0.10.3-vim-ftdetect.patch

2015-01-06 Thread Wolfram Schlich (wschlich)
wschlich15/01/07 07:33:30

  Added:mcabber-0.10.3-vim-ftdetect.patch
  Log:
  version bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  net-im/mcabber/files/mcabber-0.10.3-vim-ftdetect.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mcabber/files/mcabber-0.10.3-vim-ftdetect.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mcabber/files/mcabber-0.10.3-vim-ftdetect.patch?rev=1.1&content-type=text/plain

Index: mcabber-0.10.3-vim-ftdetect.patch
===
diff -urN 
mcabber-a18e1b488f1c.orig/mcabber/contrib/vim/mcabber_log-ftdetect.vim 
mcabber-a18e1b488f1c/mcabber/contrib/vim/mcabber_log-ftdetect.vim
--- mcabber-a18e1b488f1c.orig/mcabber/contrib/vim/mcabber_log-ftdetect.vim  
2013-10-25 22:20:23.0 +0200
+++ mcabber-a18e1b488f1c/mcabber/contrib/vim/mcabber_log-ftdetect.vim   
2014-03-30 14:41:31.975129825 +0200
@@ -1,7 +1,7 @@
 "
 " Save this file in your ~/.vim/ftdetect/ folder
 
-function MCabber_log_ftdetect()
+function! MCabber_log_ftdetect()
 if getline(1) =~ '^\u. \d\{8}T\d\d:\d\d:\d\dZ \d\{3} '
   setlocal filetype=mcabber_log
 endif






[gentoo-commits] gentoo-x86 commit in net-misc/ser2net: metadata.xml ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/07 07:15:32

  Modified: metadata.xml ChangeLog
  Log:
  Add proxy-maint.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.6  net-misc/ser2net/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ser2net/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml4 Apr 2014 13:17:20 -   1.5
+++ metadata.xml7 Jan 2015 07:15:32 -   1.6
@@ -1,6 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
+   proxy-maintainers

bren...@horan.hk
Brendan Horan



1.36 net-misc/ser2net/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ser2net/ChangeLog?rev=1.36&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ser2net/ChangeLog?rev=1.36&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ser2net/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/ser2net/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   4 Apr 2014 13:22:24 -   1.35
+++ ChangeLog   7 Jan 2015 07:15:32 -   1.36
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/ser2net
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ser2net/ChangeLog,v 1.35 
2014/04/04 13:22:24 tomwij Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ser2net/ChangeLog,v 1.36 
2015/01/07 07:15:32 jer Exp $
+
+  07 Jan 2015; Jeroen Roovers  metadata.xml:
+  Add proxy-maint.
 
 *ser2net-2.9.1 (04 Apr 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/railties: railties-4.0.12.ebuild ChangeLog railties-4.0.13.ebuild railties-4.1.9.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:06:08

  Modified: railties-4.0.12.ebuild ChangeLog
  Added:railties-4.0.13.ebuild railties-4.1.9.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.2  dev-ruby/railties/railties-4.0.12.ebuild

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

Index: railties-4.0.12.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-4.0.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- railties-4.0.12.ebuild  17 Nov 2014 20:20:24 -  1.1
+++ railties-4.0.12.ebuild  7 Jan 2015 07:06:08 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-4.0.12.ebuild,v 
1.1 2014/11/17 20:20:24 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-4.0.12.ebuild,v 
1.2 2015/01/07 07:06:08 graaff Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21"
@@ -16,8 +16,8 @@
 inherit ruby-fakegem versionator
 
 DESCRIPTION="Tools for creating, working with, and running Rails applications"
-HOMEPAGE="http://github.com/rails/rails";
-SRC_URI="http://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+HOMEPAGE="https://github.com/rails/rails";
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"



1.98 dev-ruby/railties/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog   1 Jan 2015 11:00:20 -   1.97
+++ ChangeLog   7 Jan 2015 07:06:08 -   1.98
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/railties
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v 1.97 
2015/01/01 11:00:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v 1.98 
2015/01/07 07:06:08 graaff Exp $
+
+*railties-4.1.9 (07 Jan 2015)
+*railties-4.0.13 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  railties-4.0.12.ebuild,
+  +railties-4.0.13.ebuild, +railties-4.1.9.ebuild:
+  Version bumps.
 
   01 Jan 2015; Agostino Sarubbo  railties-4.2.0.ebuild:
   Stable for ~ppc64, wrt bug #534186



1.1  dev-ruby/railties/railties-4.0.13.ebuild

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

Index: railties-4.0.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-4.0.13.ebuild,v 
1.1 2015/01/07 07:06:08 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_TEST="test:regular"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="railties.gemspec"

RUBY_FAKEGEM_BINWRAP=""

inherit ruby-fakegem versionator

DESCRIPTION="Tools for creating, working with, and running Rails applications"
HOMEPAGE="http://github.com/rails/rails";
SRC_URI="http://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

# The test suite has many failures, most likely due to a mismatch in
# exact dependencies or environment specifics. Needs further
# investigation.
RESTRICT="test"

RDEPEND+=">=app-admin/eselect-rails-0.19"

ruby_add_rdepend "
~dev-ruby/activesupport-${PV}
~dev-ruby/actionpack-${PV}
>=dev-ruby/thor-0.18.1
>=dev-ruby/rake-0.8.7"

ruby_add_bdepend "
test? (
dev-ruby/mocha:0.13
)"

all_ru

[gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-4.1.9.ebuild rails-4.0.13.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:06:25

  Modified: ChangeLog
  Added:rails-4.1.9.ebuild rails-4.0.13.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.310dev-ruby/rails/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.309
retrieving revision 1.310
diff -u -r1.309 -r1.310
--- ChangeLog   1 Jan 2015 10:21:53 -   1.309
+++ ChangeLog   7 Jan 2015 07:06:25 -   1.310
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.309 2015/01/01 
10:21:53 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.310 2015/01/07 
07:06:25 graaff Exp $
+
+*rails-4.1.9 (07 Jan 2015)
+*rails-4.0.13 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  +rails-4.0.13.ebuild,
+  +rails-4.1.9.ebuild:
+  Version bumps.
 
 *rails-4.2.0 (01 Jan 2015)
 



1.1  dev-ruby/rails/rails-4.1.9.ebuild

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

Index: rails-4.1.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-4.1.9.ebuild,v 1.1 
2015/01/07 07:06:25 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_BINWRAP=""

# The guides are now here but we'd need to rebuilt them first.
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""

RUBY_FAKEGEM_EXTRADOC="README.md guides/CHANGELOG.md"

inherit ruby-fakegem versionator

DESCRIPTION="ruby on rails is a web-application and persistance framework"
HOMEPAGE="http://www.rubyonrails.org";

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm"

IUSE="+asset-pipeline"

ruby_add_rdepend "
~dev-ruby/actionmailer-${PV}
~dev-ruby/actionpack-${PV}
~dev-ruby/actionview-${PV}
~dev-ruby/activemodel-${PV}
~dev-ruby/activerecord-${PV}
~dev-ruby/activesupport-${PV}
~dev-ruby/railties-${PV}
>=dev-ruby/bundler-1.3 =dev-ruby/bundler-1*
=dev-ruby/sprockets-rails-2*
asset-pipeline? (
dev-ruby/jquery-rails
>=dev-ruby/sass-rails-4.0.3:4.0
>=dev-ruby/uglifier-1.3.0
>=dev-ruby/coffee-rails-4.0.0:4.0
)"

# also: turbolinks, >=jbuilder-1.2:1



1.1  dev-ruby/rails/rails-4.0.13.ebuild

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

Index: rails-4.0.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-4.0.13.ebuild,v 1.1 
2015/01/07 07:06:25 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_BINWRAP=""

# The guides are now here but we'd need to rebuilt them first.
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""

RUBY_FAKEGEM_EXTRADOC="README.md guides/CHANGELOG.md"

inherit ruby-fakegem versionator

DESCRIPTION="ruby on rails is a web-application and persistance framework"
HOMEPAGE="http://www.rubyonrails.org";

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~x86"

IUSE="+asset-pipeline"

ruby_add_rdepend "
~dev-ruby/actionmailer-${PV}
~dev-ruby/actionpack-${PV}
~dev-ruby/activerecord-${PV}
~dev-ruby/activesupport-${PV}
~dev-ruby/railties-${PV}
>=dev-ruby/bundler-1.3 =dev-ruby/bundler-1*
=dev-ruby/sprockets-rails-2*
asset-pipeline? (
dev-ruby/jquery-rails
>=dev-ruby/sass-rails-4.0.0:4.0
>=dev-ruby/uglifier-1.3.0
>=dev-ruby/coffee-rails-4.0.0:4.0
)"

# also: turbolinks, >=jbuilder-1.2:1






[gentoo-commits] gentoo-x86 commit in dev-ruby/actionmailer: ChangeLog actionmailer-4.0.13.ebuild actionmailer-4.1.9.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:05:21

  Modified: ChangeLog
  Added:actionmailer-4.0.13.ebuild
actionmailer-4.1.9.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.282dev-ruby/actionmailer/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v
retrieving revision 1.281
retrieving revision 1.282
diff -u -r1.281 -r1.282
--- ChangeLog   1 Jan 2015 11:00:05 -   1.281
+++ ChangeLog   7 Jan 2015 07:05:21 -   1.282
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/actionmailer
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.281 
2015/01/01 11:00:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.282 
2015/01/07 07:05:21 graaff Exp $
+
+*actionmailer-4.1.9 (07 Jan 2015)
+*actionmailer-4.0.13 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  +actionmailer-4.0.13.ebuild,
+  +actionmailer-4.1.9.ebuild:
+  Version bumps.
 
   01 Jan 2015; Agostino Sarubbo  actionmailer-4.2.0.ebuild:
   Stable for ~ppc64, wrt bug #534186



1.1  dev-ruby/actionmailer/actionmailer-4.0.13.ebuild

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

Index: actionmailer-4.0.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-4.0.13.ebuild,v 1.1 
2015/01/07 07:05:21 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="Framework for designing email-service layers"
HOMEPAGE="https://github.com/rails/rails";
SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "~dev-ruby/actionpack-${PV}
>=dev-ruby/mail-2.5.4:2.5"
ruby_add_bdepend "test? (
dev-ruby/bundler
dev-ruby/mocha:0.13
)"

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
"/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\)/d"
 ../Gemfile || die
sed -i -e '/rack-ssl/d' -e 's/~> 3.4/>= 3.4/' 
../railties/railties.gemspec || die

# Add json to Gemfile to fix mime-types not doing this itself.
sed -e '5igem "json"' -i ../Gemfile || die
}



1.1  dev-ruby/actionmailer/actionmailer-4.1.9.ebuild

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

Index: actionmailer-4.1.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-4.1.9.ebuild,v 1.1 
2015/01/07 07:05:21 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="Framework for designing email-service layers"
HOMEPAGE="https://github.com/rails/rails";
SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "~dev-ruby/actionpack-${PV}
>=dev-ruby/mail-2.5.4:2.5"
ruby_add_bdepend "test? (
dev-ruby/test-unit:2
dev-ruby/mocha:0.14
)"

all_ruby_prepare() {
# Remove items 

[gentoo-commits] gentoo-x86 commit in dev-ruby/activerecord: ChangeLog activerecord-4.0.13.ebuild activerecord-4.1.9.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:05:49

  Modified: ChangeLog
  Added:activerecord-4.0.13.ebuild
activerecord-4.1.9.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.288dev-ruby/activerecord/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog   1 Jan 2015 11:00:17 -   1.287
+++ ChangeLog   7 Jan 2015 07:05:49 -   1.288
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/activerecord
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.287 
2015/01/01 11:00:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.288 
2015/01/07 07:05:49 graaff Exp $
+
+*activerecord-4.1.9 (07 Jan 2015)
+*activerecord-4.0.13 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  +activerecord-4.0.13.ebuild,
+  +activerecord-4.1.9.ebuild:
+  Version bumps.
 
   01 Jan 2015; Agostino Sarubbo  activerecord-4.2.0.ebuild:
   Stable for ~ppc64, wrt bug #534186



1.1  dev-ruby/activerecord/activerecord-4.0.13.ebuild

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

Index: activerecord-4.0.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-4.0.13.ebuild,v 1.1 
2015/01/07 07:05:49 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

# this is not null so that the dependencies will actually be filled
RUBY_FAKEGEM_TASK_TEST="test"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM"
HOMEPAGE="http://rubyforge.org/projects/activerecord/";
SRC_URI="http://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE="mysql postgres sqlite3"

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "~dev-ruby/activesupport-${PV}
~dev-ruby/activemodel-${PV}
>=dev-ruby/activerecord-deprecated_finders-1.0.2:1.0
>=dev-ruby/arel-4.0.2:4.0
sqlite3? ( >=dev-ruby/sqlite3-1.3.5 )
mysql? ( >=dev-ruby/mysql2-0.3.10:0.3 )
postgres? ( >=dev-ruby/pg-0.11.0 )
!=dev-ruby/sqlite3-1.3.5
dev-ruby/mocha:0.13
)"

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
"/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\)/d"
 ../Gemfile || die
sed -i -e '/rack-ssl/d' -e 's/~> 3.4/>= 3.4/' 
../railties/railties.gemspec || die
sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die

sed -i -e '/bcrypt/ s/3.0.0/3.0/' ../Gemfile || die

# Add back json in the Gemfile because we dropped some dependencies
# earlier that implicitly required it.
sed -i -e '$agem "json"' ../Gemfile || die

# Avoid test depending on mysql adapter which we don't support for
# this Rails version to simplify our dependencies.
rm test/cases/connection_specification/resolver_test.rb || die

# Avoid single test using mysql dependencies.
rm test/cases/invalid_connection_test.rb || die

# Avoid test depending on specific sqlite3 binding or database version.
sed -i -e '/test_uniqueness_violations_are_translated/,/^end/ 
s:^:#:' test/cases/adapter_test.rb || die
}

each_ruby_test() {
case ${RUBY} in
*jruby)
;;
*)
if use sqlite3; then
${RUBY} -S rake test_sqlite3 || die "sqlite3 
tests failed"
fi
;;

[gentoo-commits] gentoo-x86 commit in dev-ruby/activemodel: activemodel-4.1.9.ebuild ChangeLog activemodel-4.0.13.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:04:15

  Modified: ChangeLog
  Added:activemodel-4.1.9.ebuild activemodel-4.0.13.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.100dev-ruby/activemodel/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog   1 Jan 2015 11:00:14 -   1.99
+++ ChangeLog   7 Jan 2015 07:04:15 -   1.100
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/activemodel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v 1.99 
2015/01/01 11:00:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v 1.100 
2015/01/07 07:04:15 graaff Exp $
+
+*activemodel-4.1.9 (07 Jan 2015)
+*activemodel-4.0.13 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  +activemodel-4.0.13.ebuild,
+  +activemodel-4.1.9.ebuild:
+  Version bumps.
 
   01 Jan 2015; Agostino Sarubbo  activemodel-4.2.0.ebuild:
   Stable for ~ppc64, wrt bug #534186



1.1  dev-ruby/activemodel/activemodel-4.1.9.ebuild

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

Index: activemodel-4.1.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-4.1.9.ebuild,v 1.1 
2015/01/07 07:04:15 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="A toolkit for building modeling frameworks like Active Record and 
Active Resource"
HOMEPAGE="https://github.com/rails/rails";
SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "
~dev-ruby/activesupport-${PV}
>=dev-ruby/builder-3.1.0:3.1
"

ruby_add_bdepend "
test? (
>=dev-ruby/railties-4.0.0
dev-ruby/test-unit:2
>=dev-ruby/mocha-0.14.0:0.14
>=dev-ruby/bcrypt-ruby-3.1.7
)"

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|uglifier\|minitest\)/
 s:^:#:" ../Gemfile || die
}



1.1  dev-ruby/activemodel/activemodel-4.0.13.ebuild

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

Index: activemodel-4.0.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-4.0.13.ebuild,v 1.1 
2015/01/07 07:04:15 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="A toolkit for building modeling frameworks like Active Record and 
Active Resource"
HOMEPAGE="https://github.com/rails/rails";
SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "
~dev-ruby/activesupport-${PV}
>=dev-ruby/builder-3.1.0:3.1
>=dev-ruby/bcrypt-ruby-3.1.7"

ruby_add_bdepend "
test? (
  

[gentoo-commits] gentoo-x86 commit in dev-ruby/actionview: ChangeLog actionview-4.1.9.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:04:35

  Modified: ChangeLog
  Added:actionview-4.1.9.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.18 dev-ruby/actionview/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   1 Jan 2015 11:00:11 -   1.17
+++ ChangeLog   7 Jan 2015 07:04:34 -   1.18
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/actionview
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v 1.17 
2015/01/01 11:00:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v 1.18 
2015/01/07 07:04:34 graaff Exp $
+
+*actionview-4.1.9 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  +actionview-4.1.9.ebuild:
+  Version bumps.
 
   01 Jan 2015; Agostino Sarubbo  actionview-4.2.0.ebuild:
   Stable for ~ppc64, wrt bug #534186



1.1  dev-ruby/actionview/actionview-4.1.9.ebuild

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

Index: actionview-4.1.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/actionview/actionview-4.1.9.ebuild,v 1.1 
2015/01/07 07:04:34 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="Simple, battle-tested conventions and helpers for building web 
pages"
HOMEPAGE="https://github.com/rails/rails/";
SRC_URI="http://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "
~dev-ruby/activesupport-${PV}
>=dev-ruby/builder-3.1 =dev-ruby/builder-3*
>=dev-ruby/erubis-2.7.0
"

ruby_add_bdepend "
test? (
dev-ruby/mocha:0.14
~dev-ruby/actionpack-${PV}
~dev-ruby/activemodel-${PV}
)"

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|minitest\)/
 s:^:#:" ../Gemfile || die

}






[gentoo-commits] gentoo-x86 commit in dev-ruby/actionpack: ChangeLog actionpack-4.0.13.ebuild actionpack-4.1.9.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:04:56

  Modified: ChangeLog
  Added:actionpack-4.0.13.ebuild actionpack-4.1.9.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.301dev-ruby/actionpack/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v
retrieving revision 1.300
retrieving revision 1.301
diff -u -r1.300 -r1.301
--- ChangeLog   1 Jan 2015 11:00:08 -   1.300
+++ ChangeLog   7 Jan 2015 07:04:56 -   1.301
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/actionpack
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.300 
2015/01/01 11:00:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.301 
2015/01/07 07:04:56 graaff Exp $
+
+*actionpack-4.1.9 (07 Jan 2015)
+*actionpack-4.0.13 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  +actionpack-4.0.13.ebuild,
+  +actionpack-4.1.9.ebuild:
+  Version bumps.
 
   01 Jan 2015; Agostino Sarubbo  actionpack-4.2.0.ebuild:
   Stable for ~ppc64, wrt bug #534186



1.1  dev-ruby/actionpack/actionpack-4.0.13.ebuild

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

Index: actionpack-4.0.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-4.0.13.ebuild,v 1.1 
2015/01/07 07:04:56 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

# The default test task tries to test activerecord with SQLite as well.
RUBY_FAKEGEM_TASK_TEST="test_action_pack"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="actionpack.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="Eases web-request routing, handling, and response"
HOMEPAGE="http://rubyforge.org/projects/actionpack/";
SRC_URI="http://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "
~dev-ruby/activesupport-${PV}
>=dev-ruby/builder-3.1.0:3.1
>=dev-ruby/rack-1.5.2:1.5
>=dev-ruby/rack-test-0.6.2:0.6
>=dev-ruby/erubis-2.7.0"

ruby_add_bdepend "
test? (
dev-ruby/mocha:0.13
dev-ruby/bundler
~dev-ruby/activemodel-${PV}
~dev-ruby/activerecord-${PV}
~dev-ruby/actionmailer-${PV}
dev-ruby/sprockets-rails:2.0
>=dev-ruby/tzinfo-0.3.37:0
>=dev-ruby/uglifier-1.0.3
)"

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\)/d"
 ../Gemfile || die

sed -i -e '/rack-ssl/d' -e 's/~> 3.4/>= 3.4/' 
../railties/railties.gemspec || die
sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die

sed -i -e '/bcrypt/ s/3.0.0/3.0/' ../Gemfile || die

# Add back json in the Gemfile because we dropped some dependencies
# earlier that implicitly required it.
sed -i -e '$agem "json"' ../Gemfile || die

# Avoid fragile test that gets more output than it expects.
sed -i -e 
'/test_locals_option_to_assert_template_is_not_supported/,/end/ s:^:#:'  
test/controller/render_test.rb || die
}



1.1  dev-ruby/actionpack/actionpack-4.1.9.ebuild

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

Index: actionpack-4.1.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of

[gentoo-commits] gentoo-x86 commit in dev-ruby/activesupport: ChangeLog activesupport-4.1.9.ebuild activesupport-4.0.13.ebuild

2015-01-06 Thread Hans de Graaff (graaff)
graaff  15/01/07 07:03:48

  Modified: ChangeLog
  Added:activesupport-4.1.9.ebuild
activesupport-4.0.13.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.279dev-ruby/activesupport/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
retrieving revision 1.278
retrieving revision 1.279
diff -u -r1.278 -r1.279
--- ChangeLog   1 Jan 2015 10:18:43 -   1.278
+++ ChangeLog   7 Jan 2015 07:03:48 -   1.279
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/activesupport
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.278 
2015/01/01 10:18:43 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.279 
2015/01/07 07:03:48 graaff Exp $
+
+*activesupport-4.1.9 (07 Jan 2015)
+*activesupport-4.0.13 (07 Jan 2015)
+
+  07 Jan 2015; Hans de Graaff  +activesupport-4.0.13.ebuild,
+  +activesupport-4.1.9.ebuild:
+  Version bumps.
 
 *activesupport-4.2.0 (01 Jan 2015)
 



1.1  dev-ruby/activesupport/activesupport-4.1.9.ebuild

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

Index: activesupport-4.1.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-4.1.9.ebuild,v 1.1 
2015/01/07 07:03:48 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""

RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"

RUBY_FAKEGEM_BINWRAP=""

inherit ruby-fakegem versionator

DESCRIPTION="Utility Classes and Extension to the Standard Library"
HOMEPAGE="https://github.com/rails/rails";
SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
IUSE=""

RUBY_S="rails-${PV}/${PN}"

ruby_add_rdepend "
>=dev-ruby/i18n-0.6.9:0.6
>=dev-ruby/json-1.7.7:0
>=dev-ruby/tzinfo-1.1:1
>=dev-ruby/minitest-5.1:5
>=dev-ruby/thread_safe-0.1:0"

# memcache-client, nokogiri, and builder are not strictly
# needed, but there are tests using this code.
ruby_add_bdepend "test? (
>=dev-ruby/dalli-2.2.1
>=dev-ruby/nokogiri-1.4.5
>=dev-ruby/builder-3.1.0
>=dev-ruby/libxml-2.0.0
)"

all_ruby_prepare() {
# Set the secure permissions that tests expect.
chmod 0755 "${HOME}" || die "Failed to fix permissions on home"

# Set test environment to our hand.
#   rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to 
remove load paths"

# Avoid test that seems to be broken by lack of DST.
sed -i -e '369 s:^:#:' test/core_ext/string_ext_test.rb || die

# Avoid test that fails with Minitest 5.4 since that already defines
# a string E in its TestCase.
rm test/core_ext/marshal_test.rb || die
sed -i -e '/test_const_missing_in_anonymous_modules/askip "gentoo 
minitest"' test/dependencies_test.rb || die
}



1.1  dev-ruby/activesupport/activesupport-4.0.13.ebuild

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

Index: activesupport-4.0.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-4.0.13.ebuild,v 
1.1 2015/01/07 07:03:48 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""

RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"

RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"

RUBY_FAKEGEM_BINWRAP=""

inherit ruby-fakegem ver

[gentoo-commits] gentoo-x86 commit in dev-lang/opendylan: opendylan-2014.1.ebuild ChangeLog

2015-01-06 Thread Patrick Lauer (patrick)
patrick 15/01/07 05:38:37

  Modified: ChangeLog
  Added:opendylan-2014.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.19 dev-lang/opendylan/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/ChangeLog?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/ChangeLog?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/opendylan/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   29 Oct 2014 03:47:06 -  1.18
+++ ChangeLog   7 Jan 2015 05:38:37 -   1.19
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/opendylan
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan/ChangeLog,v 1.18 
2014/10/29 03:47:06 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan/ChangeLog,v 1.19 
2015/01/07 05:38:37 patrick Exp $
+
+*opendylan-2014.1 (07 Jan 2015)
+
+  07 Jan 2015; Patrick Lauer  +opendylan-2014.1.ebuild:
+  Bump
 
   29 Oct 2014; Patrick Lauer  opendylan-2013.2.ebuild:
   Fix cc detection #527108



1.1  dev-lang/opendylan/opendylan-2014.1.ebuild

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

Index: opendylan-2014.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan/opendylan-2014.1.ebuild,v 
1.1 2015/01/07 05:38:37 patrick Exp $
EAPI=4

inherit autotools toolchain-funcs

RESTRICT="test"

DESCRIPTION="OpenDylan language runtime environment"

HOMEPAGE="http://opendylan.org";
SRC_URI="http://opendylan.org/downloads/${PN}/${PV}/${P}-sources.tar.bz2";

LICENSE="Opendylan"
SLOT="0"

# not tested on x86
KEYWORDS="~amd64 ~x86"

IUSE=""

# the boehm-gc check is "wrong" and reported upstream
# but for now static-libs useflag is needed
DEPEND="app-arch/unzip
dev-libs/boehm-gc[threads]
dev-lang/perl
dev-perl/XML-Parser
|| ( dev-lang/opendylan-bin dev-lang/opendylan )
x86? ( :" $i
done
done
fi
}

src_configure() {
if has_version =dev-lang/opendylan-bin-2014.1; then
PATH=/opt/opendylan-2014.1/bin/:$PATH
elif has_version =dev-lang/opendylan-bin-2013.2; then
PATH=/opt/opendylan-2013.2/bin/:$PATH
elif has_version =dev-lang/opendylan-bin-2013.1; then
PATH=/opt/opendylan-2013.1/bin/:$PATH
else
PATH=/opt/opendylan/bin:$PATH
fi

if use amd64; then
econf --prefix=/opt/opendylan || die
else
econf --prefix=/opt/opendylan --with-mps=/usr/include/mps/ || 
die
fi
if use x86; then
# Includedir, pointing at something wrong
sed -i -e 's:-I$(MPS)/code:-I$(MPS):'  
sources/lib/run-time/pentium-linux/Makefile || die "Couldn't fix mps path"
sed -i -e 's~(cd $(MPS)/code; make -f lii4gc.gmk mmdw.a)~:;~' 
sources/lib/run-time/pentium-linux/Makefile || die "Couldn't fix mps building"
sed -i -e 's~(cd $(MPS)/code; make -f lii4gc.gmk mpsplan.a)~:;~' 
sources/lib/run-time/pentium-linux/Makefile || die "Couldn't fix mps building"
sed -i -e 's~$(MPS_LIB)/mpsplan.a~/usr/lib/mpsplan.a~' 
sources/lib/run-time/pentium-linux/Makefile || die "Couldn't fix mps clone"
sed -i -e 's~$(MPS_LIB)/mmdw.a~/usr/lib/mmdw.a~' 
sources/lib/run-time/pentium-linux/Makefile || die "Couldn't fix mps clone"
fi
}

src_compile() {
ulimit -s 32000 # this is naughty build system
emake -j1 3-stage-bootstrap || die
}

src_install() {
ulimit -s 32000 # this is naughty build system
# because of Makefile weirdness it rebuilds quite a bit here
# upstream has been notified
emake -j1 DESTDIR="${D}" install
mkdir -p "${D}/etc/env.d/opendylan/"
echo "export PATH=/opt/opendylan/bin:\$PATH" > 
"${D}/etc/env.d/opendylan/99-opendylan" || die "Failed to add env settings"
}






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 04:41:34

  Modified: ChangeLog
  Added:rtgraph-0.70-r1.ebuild
  Removed:  rtgraph-0.70.ebuild
  Log:
  revbump; conversion -> distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.12 dev-python/rtgraph/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/ChangeLog?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/ChangeLog?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   10 Aug 2014 21:21:24 -  1.11
+++ ChangeLog   7 Jan 2015 04:41:34 -   1.12
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/rtgraph
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v 1.11 
2014/08/10 21:21:24 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v 1.12 
2015/01/07 04:41:34 idella4 Exp $
+
+*rtgraph-0.70-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney  +rtgraph-0.70-r1.ebuild,
+  -rtgraph-0.70.ebuild:
+  revbump; conversion -> distutils-r1, rm old
 
   10 Aug 2014; Sergei Trofimovich  rtgraph-0.70.ebuild:
   QA: drop trailing '.' from DESCRIPTION



1.1  dev-python/rtgraph/rtgraph-0.70-r1.ebuild

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

Index: rtgraph-0.70-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/rtgraph-0.70-r1.ebuild,v 
1.1 2015/01/07 04:41:34 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="Widgets for graphing data in real-time using PyGTK, and UI 
components for controlling the graphs"
HOMEPAGE="http://navi.cx/svn/misc/trunk/rtgraph/web/index.html";
SRC_URI="http://navi.picogui.org/releases/${P}.tar.gz";

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE="examples"

DEPEND="dev-python/pygtk:2[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"

python_prepare_all() {
if use examples; then
mkdir examples || die
mv 
./{cpu_meter.py,graph_ui.py,isometric_graph.py,line_graph.py,polar_graph.py,tweak_graph.py}
 examples || die
fi
distutils-r1_python_prepare_all
}

python_install_all() {
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 04:18:09

  Modified: ChangeLog
  Added:rtf2xml-1.33-r1.ebuild
  Removed:  rtf2xml-1.33.ebuild
  Log:
  revbump; conversion -> distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.8  dev-python/rtf2xml/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   10 May 2012 16:01:35 -  1.7
+++ ChangeLog   7 Jan 2015 04:18:09 -   1.8
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/rtf2xml
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/ChangeLog,v 1.7 
2012/05/10 16:01:35 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/ChangeLog,v 1.8 
2015/01/07 04:18:09 idella4 Exp $
+
+*rtf2xml-1.33-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney  +rtf2xml-1.33-r1.ebuild,
+  -rtf2xml-1.33.ebuild:
+  revbump; conversion -> distutils-r1, rm old
 
   10 May 2012; Agostino Sarubbo  -rtf2xml-1.32.ebuild:
   Remove old
@@ -25,4 +31,3 @@
   28 May 2006; Radoslaw Stachowiak  +metadata.xml,
   +rtf2xml-1.32.ebuild:
   initial release, thanks to Andrew Ross work, #112960
-



1.1  dev-python/rtf2xml/rtf2xml-1.33-r1.ebuild

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

Index: rtf2xml-1.33-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/rtf2xml-1.33-r1.ebuild,v 
1.1 2015/01/07 04:18:09 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="Converts a Microsoft RTF file to structured XML"
HOMEPAGE="http://rtf2xml.sourceforge.net/";
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

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

DEPEND=""
RDEPEND=""

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






[gentoo-commits] gentoo-x86 commit in dev-lang/opendylan-bin: opendylan-bin-2014.1.ebuild ChangeLog

2015-01-06 Thread Patrick Lauer (patrick)
patrick 15/01/07 04:14:47

  Modified: ChangeLog
  Added:opendylan-bin-2014.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.8  dev-lang/opendylan-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   7 Jan 2014 05:28:34 -   1.7
+++ ChangeLog   7 Jan 2015 04:14:47 -   1.8
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/opendylan-bin
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/ChangeLog,v 1.7 
2014/01/07 05:28:34 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/ChangeLog,v 1.8 
2015/01/07 04:14:47 patrick Exp $
+
+*opendylan-bin-2014.1 (07 Jan 2015)
+
+  07 Jan 2015; Patrick Lauer  +opendylan-bin-2014.1.ebuild:
+  Bump
 
 *opendylan-bin-2013.2 (07 Jan 2014)
 



1.1  dev-lang/opendylan-bin/opendylan-bin-2014.1.ebuild

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

Index: opendylan-bin-2014.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/opendylan-bin-2014.1.ebuild,v 
1.1 2015/01/07 04:14:47 patrick Exp $
EAPI=5

DESCRIPTION="OpenDylan language runtime environment (prebuilt)"

MY_PN="opendylan"
MY_P="${MY_PN}-${PV}"
HOMEPAGE="http://opendylan.org";
SRC_URI="amd64? ( 
http://opendylan.org/downloads/${MY_PN}/${PV}/${MY_P}-x86_64-linux.tar.bz2 )
x86? ( 
http://opendylan.org/downloads/${MY_PN}/${PV}/${MY_P}-x86-linux.tar.bz2 )"
LICENSE="Opendylan"
SLOT="0"
KEYWORDS="~x86 ~amd64"

IUSE=""

DEPEND="dev-libs/boehm-gc"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${MY_P}

src_configure() { :; }
src_compile() { :; }

src_install() {
# this is a precompiled tarball
mkdir -p "${D}/opt/${MY_P}"
cp -ar "${S}"/* "${D}/opt/${MY_P}" || die "Failed to copy stuff"
mkdir -p "${D}/etc/env.d/opendylan"
echo "export PATH=/opt/opendylan-${PV}/bin:\$PATH" > 
"${D}/etc/env.d/opendylan/99-opendylan-bin" || die "Failed to add env settings"
}






[gentoo-commits] gentoo-x86 commit in app-admin/rex: rex-0.56.1.ebuild ChangeLog rex-0.46.ebuild rex-0.53.1.ebuild rex-0.52.1.ebuild rex-0.52.0.ebuild rex-0.51.2.ebuild

2015-01-06 Thread Patrick Lauer (patrick)
patrick 15/01/07 03:28:03

  Modified: ChangeLog
  Added:rex-0.56.1.ebuild
  Removed:  rex-0.46.ebuild rex-0.53.1.ebuild rex-0.52.1.ebuild
rex-0.52.0.ebuild rex-0.51.2.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.27 app-admin/rex/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rex/ChangeLog?rev=1.27&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rex/ChangeLog?rev=1.27&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rex/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/rex/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   30 Dec 2014 04:00:09 -  1.26
+++ ChangeLog   7 Jan 2015 03:28:03 -   1.27
@@ -1,6 +1,13 @@
 # ChangeLog for app-admin/rex
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/rex/ChangeLog,v 1.26 2014/12/30 
04:00:09 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/rex/ChangeLog,v 1.27 2015/01/07 
03:28:03 patrick Exp $
+
+*rex-0.56.1 (07 Jan 2015)
+
+  07 Jan 2015; Patrick Lauer  +rex-0.56.1.ebuild,
+  -rex-0.46.ebuild, -rex-0.51.2.ebuild, -rex-0.52.0.ebuild, -rex-0.52.1.ebuild,
+  -rex-0.53.1.ebuild:
+  Bump
 
 *rex-0.56.0 (30 Dec 2014)
 



1.1  app-admin/rex/rex-0.56.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rex/rex-0.56.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rex/rex-0.56.1.ebuild?rev=1.1&content-type=text/plain

Index: rex-0.56.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/rex/rex-0.56.1.ebuild,v 1.1 
2015/01/07 03:28:03 patrick Exp $

EAPI=5

MODULE_AUTHOR=JFRIED
MODULE_VERSION=0.53.1
MODULE_A=Rex-${PV}.tar.gz

inherit perl-module

DESCRIPTION="(R)?ex is a small script to ease the execution of remote commands"

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

RDEPEND="dev-perl/Net-SSH2"
DEPEND="${RDEPEND}
dev-perl/JSON-XS
dev-perl/XML-Simple
dev-perl/Digest-SHA1
dev-perl/Digest-HMAC
dev-perl/Expect
dev-perl/DBI
dev-perl/yaml
dev-perl/libwww-perl
dev-perl/String-Escape
dev-perl/List-MoreUtils
dev-perl/Parallel-ForkManager"

SRC_TEST="do"

S="${WORKDIR}/Rex-${PV}"






[gentoo-commits] gentoo-x86 commit in dev-python/ropeide: ropeide-1.5.1-r2.ebuild ChangeLog ropeide-1.5.1-r1.ebuild

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 02:59:28

  Modified: ChangeLog
  Added:ropeide-1.5.1-r2.ebuild
  Removed:  ropeide-1.5.1-r1.ebuild
  Log:
  revbump; conversion -> distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.6  dev-python/ropeide/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ropeide/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   22 Feb 2012 05:45:24 -  1.5
+++ ChangeLog   7 Jan 2015 02:59:28 -   1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/ropeide
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ropeide/ChangeLog,v 1.5 
2012/02/22 05:45:24 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ropeide/ChangeLog,v 1.6 
2015/01/07 02:59:28 idella4 Exp $
+
+*ropeide-1.5.1-r2 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney  +ropeide-1.5.1-r2.ebuild,
+  -ropeide-1.5.1-r1.ebuild:
+  revbump; conversion -> distutils-r1, rm old
 
   22 Feb 2012; Patrick Lauer  ropeide-1.5.1-r1.ebuild:
   Restricting pypy and jython
@@ -24,4 +30,3 @@
   +ropeide-1.5.1.ebuild:
   Initial commit. Bug #202700. Thanks Matsui Tetsushi 
   for the ebuild.
-



1.1  dev-python/ropeide/ropeide-1.5.1-r2.ebuild

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

Index: ropeide-1.5.1-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ropeide/ropeide-1.5.1-r2.ebuild,v 
1.1 2015/01/07 02:59:28 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1
PYTHON_REQ_USE="tk"

DESCRIPTION="Python refactoring IDE"
HOMEPAGE="http://rope.sourceforge.net/ropeide.html 
http://pypi.python.org/pypi/ropeide";
SRC_URI="mirror://sourceforge/rope/${P}.tar.gz"

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

DEPEND=">=dev-python/rope-0.8.4[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"

python_install_all() {
if use doc; then
dodoc docs/*.txt || die "dodoc failed"
fi
distutils-r1_python_install_all
}






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 02:48:51

  Modified: ChangeLog
  Added:rlcompleter2-0.98-r1.ebuild
  Log:
  revbump; conversion -> distutils-r1
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.14 dev-python/rlcompleter2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rlcompleter2/ChangeLog?rev=1.14&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rlcompleter2/ChangeLog?rev=1.14&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rlcompleter2/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rlcompleter2/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   22 Feb 2012 07:30:21 -  1.13
+++ ChangeLog   7 Jan 2015 02:48:51 -   1.14
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/rlcompleter2
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rlcompleter2/ChangeLog,v 1.13 
2012/02/22 07:30:21 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rlcompleter2/ChangeLog,v 1.14 
2015/01/07 02:48:51 idella4 Exp $
+
+*rlcompleter2-0.98-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney  +rlcompleter2-0.98-r1.ebuild:
+  revbump; conversion -> distutils-r1
 
   22 Feb 2012; Patrick Lauer  rlcompleter2-0.98.ebuild:
   Restricting jython properly
@@ -48,4 +53,3 @@
 
   29 Mar 2003; Jason Shoemaker  rlcompleter2-0.95.ebuild:
   Initial import. #17595
-



1.1  dev-python/rlcompleter2/rlcompleter2-0.98-r1.ebuild

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

Index: rlcompleter2-0.98-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/rlcompleter2/rlcompleter2-0.98-r1.ebuild,v 
1.1 2015/01/07 02:48:51 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="Python command line completion"
HOMEPAGE="http://codespeak.net/rlcompleter2/ 
http://pypi.python.org/pypi/rlcompleter2";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE=""

DEPEND=""
RDEPEND=""

pkg_postinst() {
ewarn "Please read the README, and follow instructions in order to"
ewarn "execute and configure rlcompleter2."
}






[gentoo-commits] gentoo-x86 commit in dev-python/pyxdg: ChangeLog pyxdg-0.25.ebuild

2015-01-06 Thread Mike Gilbert (floppym)
floppym 15/01/07 02:41:18

  Modified: ChangeLog
  Removed:  pyxdg-0.25.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.131dev-python/pyxdg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxdg/ChangeLog?rev=1.131&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxdg/ChangeLog?rev=1.131&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxdg/ChangeLog?r1=1.130&r2=1.131

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   21 Oct 2014 18:18:53 -  1.130
+++ ChangeLog   7 Jan 2015 02:41:18 -   1.131
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyxdg
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.130 
2014/10/21 18:18:53 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.131 
2015/01/07 02:41:18 floppym Exp $
+
+  07 Jan 2015; Mike Gilbert  -pyxdg-0.25.ebuild:
+  Remove old.
 
   21 Oct 2014; Markus Meier  pyxdg-0.25-r1.ebuild:
   arm stable, bug #498934






[gentoo-commits] proj/baselayout:master commit in: share.Linux/

2015-01-06 Thread William Hubbs
commit: 2ebb0d7b29132822e8bc6f9b67940541a6261f74
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jan  7 02:22:40 2015 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jan  7 02:22:40 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/baselayout.git;a=commit;h=2ebb0d7b

remove the uucp user

---
 share.Linux/passwd | 1 -
 share.Linux/shadow | 1 -
 2 files changed, 2 deletions(-)

diff --git a/share.Linux/passwd b/share.Linux/passwd
index 9f2f698..0476a79 100644
--- a/share.Linux/passwd
+++ b/share.Linux/passwd
@@ -7,7 +7,6 @@ sync:x:5:0:sync:/sbin:/bin/sync
 shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
 halt:x:7:0:halt:/sbin:/sbin/halt
 news:x:9:13:news:/var/spool/news:/bin/false
-uucp:x:10:14:uucp:/var/spool/uucp:/bin/false
 operator:x:11:0:operator:/root:/bin/bash
 portage:x:250:250:portage:/var/tmp/portage:/bin/false
 nobody:x:65534:65534:nobody:/var/empty:/bin/false

diff --git a/share.Linux/shadow b/share.Linux/shadow
index 1bc4ac1..278bf45 100644
--- a/share.Linux/shadow
+++ b/share.Linux/shadow
@@ -8,5 +8,4 @@ daemon:*:9797:0:
 adm:*:9797:0:
 lp:*:9797:0:
 news:*:9797:0:
-uucp:*:9797:0:
 nobody:*:9797:0:



[gentoo-commits] proj/baselayout:master commit in: share.Linux/

2015-01-06 Thread William Hubbs
commit: 18fe9e877b496980256f4a8b3251e416e1afca89
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jan  7 02:21:47 2015 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jan  7 02:21:47 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/baselayout.git;a=commit;h=18fe9e87

add the dialout group

---
 share.Linux/group | 1 +
 1 file changed, 1 insertion(+)

diff --git a/share.Linux/group b/share.Linux/group
index 65929fd..b5035ff 100644
--- a/share.Linux/group
+++ b/share.Linux/group
@@ -15,6 +15,7 @@ uucp::14:uucp
 console::17:
 audio::18:
 cdrom::19:
+dialout::20:
 tape::26:root
 video::27:root
 cdrw::80:



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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 01:53:00

  Modified: ChangeLog
  Added:reverend-0.4-r1.ebuild
  Removed:  reverend-0.4.ebuild
  Log:
  revbump; conversion -> distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/reverend/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/reverend/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   30 Nov 2009 02:22:26 -  1.2
+++ ChangeLog   7 Jan 2015 01:53:00 -   1.3
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/reverend
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reverend/ChangeLog,v 1.2 
2009/11/30 02:22:26 arfrever Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reverend/ChangeLog,v 1.3 
2015/01/07 01:53:00 idella4 Exp $
+
+*reverend-0.4-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney  +reverend-0.4-r1.ebuild,
+  -reverend-0.4.ebuild:
+  revbump; conversion -> distutils-r1, rm old
 
 *reverend-0.4 (30 Nov 2009)
 
@@ -13,4 +19,3 @@
   28 Nov 2008; Jesus Rivero 
   +files/reverend-0.3-email.patch, +metadata.xml, +reverend-0.3.ebuild:
   Initial commit. Thanks to David Guerizec for ebuild
-



1.1  dev-python/reverend/reverend-0.4-r1.ebuild

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

Index: reverend-0.4-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/reverend/reverend-0.4-r1.ebuild,v 
1.1 2015/01/07 01:53:00 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 pypy pypy3 )

inherit distutils-r1

MY_PN="Reverend"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Reverend - Simple Bayesian classifier"
HOMEPAGE="http://divmod.org/trac/wiki/DivmodReverend 
http://pypi.python.org/pypi/Reverend";
SRC_URI="mirror://sourceforge/reverend/${MY_P}.tar.gz 
mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"

DEPEND=""
RDEPEND=""

S="${WORKDIR}/${MY_P}"

python_install_all() {
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in www-plugins/chrome-binary-plugins: chrome-binary-plugins-41.0.2267.0_alpha1.ebuild ChangeLog chrome-binary-plugins-41.0.2251.0_alpha1.ebuild

2015-01-06 Thread Mike Gilbert (floppym)
floppym 15/01/07 00:23:04

  Modified: ChangeLog
  Added:chrome-binary-plugins-41.0.2267.0_alpha1.ebuild
  Removed:  chrome-binary-plugins-41.0.2251.0_alpha1.ebuild
  Log:
  Automated update.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.207www-plugins/chrome-binary-plugins/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?rev=1.207&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?rev=1.207&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?r1=1.206&r2=1.207

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -r1.206 -r1.207
--- ChangeLog   19 Dec 2014 04:27:45 -  1.206
+++ ChangeLog   7 Jan 2015 00:23:04 -   1.207
@@ -1,6 +1,13 @@
 # ChangeLog for www-plugins/chrome-binary-plugins
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v 1.206 
2014/12/19 04:27:45 floppym Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v 1.207 
2015/01/07 00:23:04 floppym Exp $
+
+*chrome-binary-plugins-41.0.2267.0_alpha1 (07 Jan 2015)
+
+  07 Jan 2015; Mike Gilbert 
+  +chrome-binary-plugins-41.0.2267.0_alpha1.ebuild,
+  -chrome-binary-plugins-41.0.2251.0_alpha1.ebuild:
+  Automated update.
 
 *chrome-binary-plugins-41.0.2251.0_alpha1 (19 Dec 2014)
 



1.1  
www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild?rev=1.1&content-type=text/plain

Index: chrome-binary-plugins-41.0.2267.0_alpha1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild,v
 1.1 2015/01/07 00:23:04 floppym Exp $

EAPI=5

inherit multilib unpacker

DESCRIPTION="Binary plugins from Google Chrome for use in Chromium"
HOMEPAGE="http://www.google.com/chrome";

case ${PV} in
*_alpha*|*)
SLOT="unstable"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV/_alpha/-}
;;
*_beta*)
SLOT="beta"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV/_beta/-}
;;
*_p*)
SLOT="stable"
CHROMEDIR="opt/google/chrome"
MY_PV=${PV/_p/-}
;;
*)
die "Invalid value for \${PV}: ${PV}"
;;
esac

MY_PN="google-chrome-${SLOT}"
MY_P="${MY_PN}_${MY_PV}"

if [[ ${PV} != * ]]; then
SRC_URI="
amd64? (

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

https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_i386.deb
)
"
KEYWORDS="~amd64 ~x86"
fi

LICENSE="google-chrome"
IUSE="+flash"
RESTRICT="bindist mirror strip"

for x in 0 beta stable unstable; do
if [[ ${SLOT} != ${x} ]]; then
RDEPEND+=" !${CATEGORY}/${PN}:${x}"
fi
done

S="${WORKDIR}/${CHROMEDIR}"
QA_PREBUILT="*"

pkg_nofetch() {
eerror "Please wait 24 hours and sync your portage tree before 
reporting fetch failures."
}

if [[ ${PV} == * ]]; then
src_unpack() {
local base="https://dl.google.com/linux/direct";
local debarch=${ARCH/x86/i386}
wget -O google-chrome.deb 
"${base}/google-chrome-${SLOT}_current_${debarch}.deb" || die
unpack_deb ./google-chrome.deb
}
fi

src_install() {
local version flapper

insinto /usr/$(get_libdir)/chromium-browser/

if use flash; then
doins -r PepperFlash

# Since this is a live ebuild, we're forced to, unfortuantely,
# dynamically construct the command line args for Chromium.
version=$(sed -n 's/.*"version": "\(.*\)",.*/\1/p' 
PepperFlash/manifest.json)

flapper="${ROOT}usr/$(get_libdir)/chromium-browser/PepperFlash/libpepflashplayer.so"
echo -n "CH

[gentoo-commits] gentoo-x86 commit in www-client/google-chrome-unstable: google-chrome-unstable-41.0.2267.0_p1.ebuild ChangeLog google-chrome-unstable-41.0.2251.0_p1.ebuild

2015-01-06 Thread Mike Gilbert (floppym)
floppym 15/01/07 00:22:50

  Modified: ChangeLog
  Added:google-chrome-unstable-41.0.2267.0_p1.ebuild
  Removed:  google-chrome-unstable-41.0.2251.0_p1.ebuild
  Log:
  Automated update.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.74 www-client/google-chrome-unstable/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   19 Dec 2014 04:28:25 -  1.73
+++ ChangeLog   7 Jan 2015 00:22:50 -   1.74
@@ -1,6 +1,13 @@
 # ChangeLog for www-client/google-chrome-unstable
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/ChangeLog,v 1.73 
2014/12/19 04:28:25 floppym Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/ChangeLog,v 1.74 
2015/01/07 00:22:50 floppym Exp $
+
+*google-chrome-unstable-41.0.2267.0_p1 (07 Jan 2015)
+
+  07 Jan 2015; Mike Gilbert 
+  +google-chrome-unstable-41.0.2267.0_p1.ebuild,
+  -google-chrome-unstable-41.0.2251.0_p1.ebuild:
+  Automated update.
 
 *google-chrome-unstable-41.0.2251.0_p1 (19 Dec 2014)
 



1.1  
www-client/google-chrome-unstable/google-chrome-unstable-41.0.2267.0_p1.ebuild

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

Index: google-chrome-unstable-41.0.2267.0_p1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/google-chrome-unstable-41.0.2267.0_p1.ebuild,v
 1.1 2015/01/07 00:22:50 floppym 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/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
gnome-base/gconf:2
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype:2
net-print/cups
sys-apps/dbus
sys-libs/libcap
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:2
>=x11-libs/libX11-1.5.0
x11-libs/libXcomposite
x11-libs/libXcursor
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
"

QA_PREBUILT="*"
S=${WORKDIR}
CHROME_HOME="opt/google/chrome${PN#google-chrome}"

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 to get icons on the Downloads page.

For KDE, the required package is kde-base/oxygen-icons.

For other desktop environments

[gentoo-commits] gentoo-x86 commit in dev-perl/Class-XSAccessor: Class-XSAccessor-1.190.0.ebuild ChangeLog

2015-01-06 Thread Mikle Kolyada (zlogene)
zlogene 15/01/07 00:07:16

  Modified: Class-XSAccessor-1.190.0.ebuild ChangeLog
  Log:
  Mark stable
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild?r1=1.1&r2=1.2

Index: Class-XSAccessor-1.190.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Class-XSAccessor-1.190.0.ebuild 26 Jul 2014 14:26:56 -  1.1
+++ Class-XSAccessor-1.190.0.ebuild 7 Jan 2015 00:07:16 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild,v
 1.1 2014/07/26 14:26:56 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild,v
 1.2 2015/01/07 00:07:16 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="Generate fast XS accessors without runtime compilation"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~ppc-aix ~ppc-macos ~x86-solaris"
+KEYWORDS="amd64 ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
 IUSE=""
 
 DEPEND="



1.26 dev-perl/Class-XSAccessor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   26 Jul 2014 14:31:29 -  1.25
+++ ChangeLog   7 Jan 2015 00:07:16 -   1.26
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Class-XSAccessor
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/ChangeLog,v 1.25 
2014/07/26 14:31:29 zlogene Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/ChangeLog,v 1.26 
2015/01/07 00:07:16 zlogene Exp $
+
+  07 Jan 2015; Mikle Kolyada 
+  Class-XSAccessor-1.190.0.ebuild:
+  Mark stable
 
   26 Jul 2014; Mikle Kolyada 
   -Class-XSAccessor-1.160.0.ebuild, Class-XSAccessor-1.180.0.ebuild:






[gentoo-commits] gentoo-x86 commit in app-admin/systemrescuecd-x86: systemrescuecd-x86-4.4.1.ebuild metadata.xml ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 23:57:06

  Added:systemrescuecd-x86-4.4.1.ebuild metadata.xml
ChangeLog
  Log:
  Introduce an ebuild to maintain a fresh copy of systemrescuecd-x86.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  
app-admin/systemrescuecd-x86/systemrescuecd-x86-4.4.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.4.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.4.1.ebuild?rev=1.1&content-type=text/plain

Index: systemrescuecd-x86-4.4.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.4.1.ebuild,v
 1.1 2015/01/06 23:57:06 mgorny Exp $

EAPI=5

DESCRIPTION="The .iso image of SystemRescueCD rescue disk, x86 variant"
HOMEPAGE="http://www.sysresccd.org/";
SRC_URI="mirror://sourceforge/systemrescuecd/sysresccd-${PN#*-}/${PV}/${P}.iso"

LICENSE="GPL-2"
SLOT="${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""

S=${WORKDIR}

RESTRICT="mirror"

src_install() {
insinto "/usr/share/${PN%-*}"
doins "${DISTDIR}/${P}.iso"
}

pkg_postinst() {
local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso

# no newer version? we're the newest!
if ! has_version ">${CATEGORY}/${PF}"; then
ln -f -s -v "${P}.iso" "${f}" || die
fi
}

pkg_postrm() {
# TODO: best_version is probably broken in portage, figure it out
local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
local newest_version=$(best_version "${CATEGORY}/${PN}")

if [[ ${newest_version} != ${CATEGORY}/${PF} ]]; then
# we're not the newest? update the symlink.
ln -f -s -v "${newest_version%-r*}.iso" "${f}" || die
elif [[ ! ${newest_version} ]]; then
# last version removed? clean up the symlink.
rm -v "${f}" || die
# TODO: remove the empty directory
fi
}



1.1  app-admin/systemrescuecd-x86/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

http://www.gentoo.org/dtd/metadata.dtd";>


mgo...@gentoo.org
Michał Górny





1.1  app-admin/systemrescuecd-x86/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for app-admin/systemrescuecd-x86
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog,v 1.1 
2015/01/06 23:57:06 mgorny Exp $

*systemrescuecd-x86-4.4.1 (06 Jan 2015)

  06 Jan 2015; Michał Górny  +metadata.xml,
  +systemrescuecd-x86-4.4.1.ebuild:
  Introduce an ebuild to maintain a fresh copy of systemrescuecd-x86.






[gentoo-commits] gentoo-x86 commit in app-admin/systemrescuecd-x86: - New directory

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 23:06:31

  Log:
  Directory /var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86 added to the 
repository



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/, gkeys-gen/, py2man/

2015-01-06 Thread Brian Dolbec
commit: 4c44549c625c6503b07eff3398e566252f551e47
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 22:13:45 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 22:35:46 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=4c44549c

gkeys/setup.py py2man import fix

The ebuild install was failing to find options.py. adding back an absolute 
import worked.

---
 gkeys-gen/setup.py | 7 +--
 gkeys/setup.py | 7 +--
 py2man/manpages.py | 2 +-
 3 files changed, 3 insertions(+), 13 deletions(-)

diff --git a/gkeys-gen/setup.py b/gkeys-gen/setup.py
index 15c3434..1512219 100755
--- a/gkeys-gen/setup.py
+++ b/gkeys-gen/setup.py
@@ -13,12 +13,7 @@ from gkeygen import __version__, __license__
 from gkeygen import Gkeys_Map
 from gkeygen.actions import Action_Map, Available_Actions
 
-try:
-from py2man import manpages
-except ImportError:
-print('creating py2man symlink')
-os.symlink('../py2man', 'py2man')
-from py2man import manpages
+from py2man import manpages
 
 
 # this affects the names of all the directories we do stuff with

diff --git a/gkeys/setup.py b/gkeys/setup.py
index fdb8e18..5a20738 100755
--- a/gkeys/setup.py
+++ b/gkeys/setup.py
@@ -13,12 +13,7 @@ from gkeys import __version__, __license__
 from gkeys import Gkeys_Map
 from gkeys.action_map import Action_Map, Available_Actions
 
-try:
-from py2man import manpages
-except ImportError:
-print('creating py2man symlink')
-os.symlink('../py2man', 'py2man')
-from py2man import manpages
+from py2man import manpages
 
 
 # this affects the names of all the directories we do stuff with

diff --git a/py2man/manpages.py b/py2man/manpages.py
index 8b87afa..9e75d2e 100644
--- a/py2man/manpages.py
+++ b/py2man/manpages.py
@@ -6,7 +6,7 @@ import codecs
 import os
 from datetime import datetime
 
-from options import LONG_OPTS, SHORT_OPTS
+from py2man.options import LONG_OPTS, SHORT_OPTS
 
 
 ActionStr = '.BR gkeys-%s (1),'



[gentoo-commits] gentoo-x86 commit in sys-cluster/libquo: libquo-1.2.2.ebuild ChangeLog

2015-01-06 Thread Christoph Junghans (ottxor)
ottxor  15/01/06 21:56:20

  Modified: ChangeLog
  Added:libquo-1.2.2.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C2000586)

Revision  ChangesPath
1.2  sys-cluster/libquo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libquo/ChangeLog?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libquo/ChangeLog?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libquo/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/libquo/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   19 Nov 2014 21:33:27 -  1.1
+++ ChangeLog   6 Jan 2015 21:56:20 -   1.2
@@ -1,6 +1,11 @@
 # ChangeLog for sys-cluster/libquo
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libquo/ChangeLog,v 1.1 
2014/11/19 21:33:27 ottxor Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libquo/ChangeLog,v 1.2 
2015/01/06 21:56:20 ottxor Exp $
+
+*libquo-1.2.2 (06 Jan 2015)
+
+  06 Jan 2015; Christoph Junghans  +libquo-1.2.2.ebuild:
+  version bump
 
 *libquo-1.2 (19 Nov 2014)
 



1.1  sys-cluster/libquo/libquo-1.2.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libquo/libquo-1.2.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libquo/libquo-1.2.2.ebuild?rev=1.1&content-type=text/plain

Index: libquo-1.2.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libquo/libquo-1.2.2.ebuild,v 1.1 
2015/01/06 21:56:20 ottxor Exp $

EAPI=5

inherit autotools-utils

DESCRIPTION="run-time tuning of process binding policies made easy"
HOMEPAGE="http://losalamos.github.io/libquo/";
SRC_URI="http://losalamos.github.io/${PN}/dists/${P}.tar.gz";

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="fortran"

DEPEND="
virtual/mpi[fortran?]
sys-process/numactl
sys-apps/hwloc[numa,xml]
"
RDEPEND="${DEPEND}"

AUTOTOOLS_IN_SOURCE_BUILD=1

src_configure() {
autotools-utils_src_configure CC=mpicc FC=$(usex fortran mpif90 false)
}






[gentoo-commits] proj/gentoo-keys:master commit in: py2man/

2015-01-06 Thread Brian Dolbec
commit: bc947e9170f14f6bb4f1b3780dad3661bd5d0131
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 18:24:36 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 21:19:31 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=bc947e91

py2man/manpages.py: set date once, debug fixes

---
 py2man/manpages.py | 25 +++--
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/py2man/manpages.py b/py2man/manpages.py
index cddd68f..8b87afa 100644
--- a/py2man/manpages.py
+++ b/py2man/manpages.py
@@ -2,6 +2,7 @@
 #-*- coding:utf-8 -*-
 
 
+import codecs
 import os
 from datetime import datetime
 
@@ -28,6 +29,7 @@ class ManPage(object):
 self.template = template
 self.path = docpath
 self.authors = authors
+self.date = datetime.strftime(datetime.today(),'%B %d, %Y')
 
 
 @staticmethod
@@ -110,16 +112,15 @@ class ManPage(object):
 return '\n'.join(output)
 
 
-def make_subpage(self, action, Action_Map, actions):
+def make_subpage(self, action, Action_Map, _actions):
 '''Create and saves one sub-command man page using the
 classes template definition setting'''
+actions = _actions[:]
 actions.remove(action)
-# remove the help group separators
-actions = [x for x in actions if not x.startswith("---")]
 data = {}
 data['prog'] = self.prog
 data['version'] = self.version
-data['date'] = datetime.strftime(datetime.today(),'%B %d, %Y')
+data['date'] = self.date
 data['authors'] = self.gen_brlist(self.authors)
 data['action'] = action
 data['actions'] = self.gen_actions(actions)
@@ -140,7 +141,7 @@ class ManPage(object):
 else:
 doc.append(line % data)
 filepath = os.path.join(self.path, "%s-%s.1" % (self.prog, action))
-with open(filepath, 'w', encoding='utf-8') as man:
+with codecs.open(filepath, 'w', 'utf-8') as man:
 man.write('\n'.join(doc))
 
 
@@ -153,15 +154,16 @@ class ManPage(object):
 @param actions: list of keys in Action_Map to generate pages for
 @param location: string, path to save the newly created man pages
 '''
-for action in actions:
-self.make_subpage(action, Action_Map, actions)
+_actions = [x for x in actions if not x.startswith('--')]
+for action in _actions[:]:
+self.make_subpage(action, Action_Map, _actions)
 
 
 def make_prog(self, prog_map):
 data = {}
 data['prog'] = self.prog
 data['version'] = self.version
-data['date'] = datetime.strftime(datetime.today(),'%B %d, %Y')
+data['date'] = self.date
 data['authors'] = self.gen_brlist(self.authors)
 data['actions'] = self.gen_actions(list(prog_map['sub-cmds']))
 data['options'] = self.gen_options(prog_map['options'])
@@ -170,12 +172,15 @@ class ManPage(object):
 data['sub-cmds'] = self.gen_subcmd(prog_map['sub-cmds'])
 doc = []
 for line in self.template.split('\n'):
+try:
 doc.append(line % data)
+except:
+print(line, data)
 filepath = os.path.join(self.path, "%s.1" % (self.prog))
-with open(filepath, 'w', encoding='utf-8') as man:
+with codecs.open(filepath, 'w', 'utf-8') as man:
 man.write('\n'.join(doc))
 
 def read_template(self, path, filename):
 filepath = os.path.join(path, filename)
-with open(filepath, 'r', encoding='utf-8') as template:
+with codecs.open(filepath, 'r', 'utf-8') as template:
 self.template = template.read()



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/, gkeys-gen/gkeygen/

2015-01-06 Thread Brian Dolbec
commit: 3b8f2bad274be6c6f55a19d715fb87c4ad2898bd
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 21:16:29 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 21:19:40 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=3b8f2bad

gkeys, gkeys-gen: set version to "0.1"

---
 gkeys-gen/gkeygen/__init__.py | 2 +-
 gkeys/gkeys/__init__.py   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gkeys-gen/gkeygen/__init__.py b/gkeys-gen/gkeygen/__init__.py
index 495f798..e990779 100644
--- a/gkeys-gen/gkeygen/__init__.py
+++ b/gkeys-gen/gkeygen/__init__.py
@@ -6,7 +6,7 @@ from collections import OrderedDict
 from gkeygen.actions import Action_Map, Available_Actions
 
 
-__version__ = 'Git'
+__version__ = '0.1'
 __license__ = 'GPLv2'
 
 

diff --git a/gkeys/gkeys/__init__.py b/gkeys/gkeys/__init__.py
index 7256297..503d359 100644
--- a/gkeys/gkeys/__init__.py
+++ b/gkeys/gkeys/__init__.py
@@ -8,7 +8,7 @@ from collections import OrderedDict
 from gkeys.action_map import Action_Map, Available_Actions
 
 
-__version__ = 'Git'
+__version__ = '0.1'
 __license__ = 'GPLv2'
 
 



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys-gen/gkeygen/

2015-01-06 Thread Brian Dolbec
commit: 284073e411a75c75efb0426ea444fc8783462bb5
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 21:15:32 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 21:19:40 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=284073e4

gkeysgen/actions.py: Add gen-key example

---
 gkeys-gen/gkeygen/actions.py | 50 +++-
 1 file changed, 49 insertions(+), 1 deletion(-)

diff --git a/gkeys-gen/gkeygen/actions.py b/gkeys-gen/gkeygen/actions.py
index 740d954..8f8c81a 100644
--- a/gkeys-gen/gkeygen/actions.py
+++ b/gkeys-gen/gkeygen/actions.py
@@ -35,7 +35,55 @@ Action_Map = OrderedDict({
 'options': ['spec', 'dest'],
 'desc': '''Generate a gpg key using a spec file''',
 'long_desc': '''Generate a gpg key using a spec file''',
-'example': '',
+'example': '''$ gkey-gen gen-key
+
+GPG key creator
+Spec file..: glep-63-recommended
+Homepage...: https://wiki.gentoo.org/wiki/GLEP:63
+
+Give your Full Name: Foo Barr
+Give your Email: f...@barr.net
+
+Review:
+ Full Name: Foo Barr
+ Email: f...@barr.net
+
+Continue?[y/n]: y
+
+* Creating gpg folder at /home/brian/gkeys-user/gpghome
+
+* Creating gpg.conf file at /home/brian/gkeys-user/gpghome
+
+
+
+< Generating GPG key >
+ 
+\   ^__^
+ \  (oo)\___
+(__)\   )\/
+||w |
+|| ||
+
+* Give the password for the key. (Pick a strong one)
+Please surf the internet, type on your keyboard, etc.
+This helps the random number generator work effectively
+
+Your new GLEP 63 based OpenPGP key has been created in 
/home/brian/gkeys-user/gpghome
+
+
+GPG key info:
+Full Name: Foo Barr,
+Email: f...@barr.net,
+Fingerprint: CF8F369903999538F79287497AD8F5FEF19A7A69
+
+
+In order to use your new key, place the new gpghome to your ~/.gnupg 
folder by running the following command:
+mv /home/brian/gkeys-user/gpghome ~/.gnupg
+Important: If you have another old key in ~/.gnupg please make sure you 
backup it up first.
+
+Please read the FAQ for post-generation steps that are available in:
+
https://wiki.gentoo.org/wiki/Project:Gentoo-keys/Generating_GLEP_63_based_OpenPGP_keys
+''',
 },
 'list-specs': {
 'func': 'list_specs',



[gentoo-commits] proj/gentoo-keys:master commit in: py2man/

2015-01-06 Thread Brian Dolbec
commit: b623e3b05f43513dea9919a7f2644c52a17f5fb0
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 18:26:03 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 21:19:39 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=b623e3b0

py2man/options.py: Add missed '1name' option

---
 py2man/options.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/py2man/options.py b/py2man/options.py
index 68134b0..87d19bf 100644
--- a/py2man/options.py
+++ b/py2man/options.py
@@ -52,6 +52,8 @@ The email address to search for or use.''',
 The nick of the user whose gkey seed is being added''',
 'name': '''.IP "-N \\fINAME\\fR, --name \\fINAME"
 The name of the user whose gkey seed is being added''',
+'1name': '''.IP "-N \\fINAME\\fR, --name \\fINAME"
+The name of the user whose gkey seed is being added''',
 'keydir': '''.IP "-r \\fIKEYDIR\\fR, --keydir \\fIKEYDIR"
 The key directory the key is to be installed to''',
 'signature': '''.IP "-s \\fISIGNATURE\\fR, --signature \\fISIGNATURE"



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/, gkeys-gen/gkeygen/, gkeys-gen/

2015-01-06 Thread Brian Dolbec
commit: 7bfa40a4b350767ec8e8d2812620bb8be6ce48a4
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 20:20:30 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 21:19:39 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=7bfa40a4

gkeys-gen: Setup.py updates for man page generation

---
 gkeys-gen/gkeygen/__init__.py | 20 +++
 gkeys-gen/setup.py| 80 ---
 gkeys/setup.py| 76 ++--
 3 files changed, 168 insertions(+), 8 deletions(-)

diff --git a/gkeys-gen/gkeygen/__init__.py b/gkeys-gen/gkeygen/__init__.py
index 7e8b64e..495f798 100644
--- a/gkeys-gen/gkeygen/__init__.py
+++ b/gkeys-gen/gkeygen/__init__.py
@@ -1,5 +1,25 @@
 #!/usr/bin/python
 # -*- coding: utf-8 -*-
 
+from collections import OrderedDict
+
+from gkeygen.actions import Action_Map, Available_Actions
+
+
 __version__ = 'Git'
 __license__ = 'GPLv2'
+
+
+subdata = OrderedDict()
+for cmd in Available_Actions:
+subdata[cmd] = Action_Map[cmd]['desc']
+
+Gkeys_Map = {
+'options': ['help', 'config', 'debug'],
+'desc': 'OpenPGP/GPG key generator tool',
+'long_desc': '''Gentoo Keys (gkeys) is a Python based project that aims to 
manage
+the GPG keys used for validation on users and Gentoo's infrastracutre servers.
+Gkeys-gen is a tool for generating OpnPGP/GPG keys according to a selected 
spec.''',
+'sub-cmds': subdata,
+'authors': ['Brian Dolbec ', 'Pavlos Ratis 
'],
+}

diff --git a/gkeys-gen/setup.py b/gkeys-gen/setup.py
index 063bff1..fc93bf0 100755
--- a/gkeys-gen/setup.py
+++ b/gkeys-gen/setup.py
@@ -1,11 +1,26 @@
 #!/usr/bin/env python
 
+
+import collections
 import os
 import sys
 
-from distutils.core import setup
+from distutils.core import setup, Command
+from distutils.command.build import build
+
 from gkeygen import __version__, __license__
 
+from gkeygen import Gkeys_Map
+from gkeygen.actions import Action_Map, Available_Actions
+
+try:
+from py2man import manpages
+except ImportError:
+print('creating py2man symlink')
+os.symlink('../py2man', 'py2man')
+from py2man import manpages
+
+
 # this affects the names of all the directories we do stuff with
 sys.path.insert(0, './')
 
@@ -18,10 +33,61 @@ except ImportError:
 EPREFIX=''
 
 
+class x_build(build):
+""" Build command with extra build_man call. """
+
+def run(self):
+build.run(self)
+self.run_command('build_man')
+
+
+class build_man(Command):
+""" Perform substitutions in manpages. """
+
+user_options = [
+]
+
+def initialize_options(self):
+self.build_base = None
+
+def finalize_options(self):
+self.set_undefined_options('build',
+('build_base', 'build_base'))
+
+def run(self):
+# create the main page
+basepath = os.path.dirname(__file__)
+docpath = os.path.join(basepath, 'doc')
+templatepath = os.path.dirname(manpages.__file__)
+man = manpages.ManPage('gkey-gen', __version__, None,
+docpath, Gkeys_Map['authors'])
+man.read_template(templatepath, 'command.template')
+man.make_prog(Gkeys_Map)
+man.read_template(templatepath, 'sub-command.template')
+man.make_subpages(Action_Map, Available_Actions)
+
+
+def get_manpages():
+linguas = os.environ.get('LINGUAS')
+if linguas is not None:
+linguas = linguas.split()
+
+for dirpath, dirnames, filenames in os.walk('doc'):
+groups = collections.defaultdict(list)
+for f in filenames:
+fn, suffix = f.rsplit('.', 1)
+groups[suffix].append(os.path.join(dirpath, f))
+
+topdir = dirpath[len('doc/'):]
+if not topdir or linguas is None or topdir in linguas:
+for g, mans in groups.items():
+yield [os.path.join('$mandir', topdir, 'man%s' % g), mans]
+
+
 setup(
-name='gkeygen',
+name='gkeys-gen',
 version=__version__,
-description="Gentoo gpg key management key generator",
+description="OpenPGP/GPG key generator",
 author='',
 author_email='',
 maintainer='Gentoo-Keys Team',
@@ -30,12 +96,16 @@ setup(
 download_url='',
 packages=['gkeygen'],
 scripts=['bin/gkey-gen'],
-data_files=(
+data_files=list(get_manpages()) + [
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys-gen.conf']),
-),
+],
 license=__license__,
 long_description=open('README.md').read(),
 keywords='gpg',
+cmdclass = {
+'build': x_build,
+'build_man': build_man,
+},
 classifiers=[
 'Development Status :: 3 - Alpha',
 'Intended Audience :: Developers, Users',

diff --git a/gkeys/setup.py b/gkeys/setup.py
index 23af045..d6b38af 100755
--- a/gkeys/setup.py
+++ b/gkeys/setup.py
@@ -1,11 +1,26 @@
 #!/usr/bin/env python
 
+
+import collections
 i

[gentoo-commits] proj/gentoo-keys:master commit in: gkeys-gen/, gkeys/

2015-01-06 Thread Brian Dolbec
commit: 3dfb104e8c4c2e7785727fb0c3f78a4f8a224c56
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 21:44:34 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 21:44:34 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=3dfb104e

gkeys, gkeys-gen: Fix man page installation

---
 gkeys-gen/setup.py | 22 +++---
 gkeys/setup.py | 22 +++---
 2 files changed, 6 insertions(+), 38 deletions(-)

diff --git a/gkeys-gen/setup.py b/gkeys-gen/setup.py
index fc93bf0..15c3434 100755
--- a/gkeys-gen/setup.py
+++ b/gkeys-gen/setup.py
@@ -1,12 +1,12 @@
 #!/usr/bin/env python
 
 
-import collections
 import os
 import sys
 
 from distutils.core import setup, Command
 from distutils.command.build import build
+from glob import glob
 
 from gkeygen import __version__, __license__
 
@@ -67,23 +67,6 @@ class build_man(Command):
 man.make_subpages(Action_Map, Available_Actions)
 
 
-def get_manpages():
-linguas = os.environ.get('LINGUAS')
-if linguas is not None:
-linguas = linguas.split()
-
-for dirpath, dirnames, filenames in os.walk('doc'):
-groups = collections.defaultdict(list)
-for f in filenames:
-fn, suffix = f.rsplit('.', 1)
-groups[suffix].append(os.path.join(dirpath, f))
-
-topdir = dirpath[len('doc/'):]
-if not topdir or linguas is None or topdir in linguas:
-for g, mans in groups.items():
-yield [os.path.join('$mandir', topdir, 'man%s' % g), mans]
-
-
 setup(
 name='gkeys-gen',
 version=__version__,
@@ -96,8 +79,9 @@ setup(
 download_url='',
 packages=['gkeygen'],
 scripts=['bin/gkey-gen'],
-data_files=list(get_manpages()) + [
+data_files=[
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys-gen.conf']),
+(os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'), 
glob('doc/*')),
 ],
 license=__license__,
 long_description=open('README.md').read(),

diff --git a/gkeys/setup.py b/gkeys/setup.py
index d6b38af..fdb8e18 100755
--- a/gkeys/setup.py
+++ b/gkeys/setup.py
@@ -1,12 +1,12 @@
 #!/usr/bin/env python
 
 
-import collections
 import os
 import sys
 
 from distutils.core import setup, Command
 from distutils.command.build import build
+from glob import glob
 
 from gkeys import __version__, __license__
 
@@ -67,23 +67,6 @@ class build_man(Command):
 man.make_subpages(Action_Map, Available_Actions)
 
 
-def get_manpages():
-linguas = os.environ.get('LINGUAS')
-if linguas is not None:
-linguas = linguas.split()
-
-for dirpath, dirnames, filenames in os.walk('doc'):
-groups = collections.defaultdict(list)
-for f in filenames:
-fn, suffix = f.rsplit('.', 1)
-groups[suffix].append(os.path.join(dirpath, f))
-
-topdir = dirpath[len('doc/'):]
-if not topdir or linguas is None or topdir in linguas:
-for g, mans in groups.items():
-yield [os.path.join('$mandir', topdir, 'man%s' % g), mans]
-
-
 setup(
 name='gkeys',
 version=__version__,
@@ -96,9 +79,10 @@ setup(
 download_url='',
 packages=['gkeys'],
 scripts=['bin/gkeys'],
-data_files=list(get_manpages()) + [
+data_files=[
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys.conf']),
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys.conf.sample']),
+(os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'), 
glob('doc/*')),
 ],
 license=__license__,
 long_description=open('README.md').read(),



[gentoo-commits] proj/gentoo-keys:master commit in: py2man/

2015-01-06 Thread Brian Dolbec
commit: 513395f66ae7bfb83736f6166b919f6713e4b5f6
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 18:22:41 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 18:22:41 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=513395f6

py2man/*.template: Fix missed 's' in %(actions)s

---
 py2man/command.template | 2 +-
 py2man/sub-command.template | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/py2man/command.template b/py2man/command.template
index cd69ff2..975a4bf 100644
--- a/py2man/command.template
+++ b/py2man/command.template
@@ -25,7 +25,7 @@ Please assign bug to  email alias.
 Gentoo Keys project is under GPL-2 License.
 
 .SH AUTHORS
-%(authors)
+%(authors)s
 
 .SH "SEE ALSO"
 .BR gkeys.conf (1),

diff --git a/py2man/sub-command.template b/py2man/sub-command.template
index 0a6c1a8..20010cb 100644
--- a/py2man/sub-command.template
+++ b/py2man/sub-command.template
@@ -27,7 +27,7 @@ Please assign bug to  email alias.
 Gentoo Keys project is under GPL-2 License.
 
 .SH AUTHORS
-%(authors)
+%(authors)s
 
 .SH "SEE ALSO"
 .BR gkeys (1),



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys-gen/gkeygen/

2015-01-06 Thread Brian Dolbec
commit: 038dee3c65047d6b076379612db9e7540aba92c9
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Jan  6 21:15:02 2015 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Jan  6 21:19:40 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=038dee3c

gkeygen/actions.py: Add list-specs action, example

---
 gkeys-gen/gkeygen/actions.py | 25 ++---
 1 file changed, 22 insertions(+), 3 deletions(-)

diff --git a/gkeys-gen/gkeygen/actions.py b/gkeys-gen/gkeygen/actions.py
index e118289..740d954 100644
--- a/gkeys-gen/gkeygen/actions.py
+++ b/gkeys-gen/gkeygen/actions.py
@@ -30,17 +30,28 @@ from gkeys.fileops import ensure_dirs
 
 
 Action_Map = OrderedDict({
-'gen-key':  {
+'gen-key': {
 'func': 'genkey',
 'options': ['spec', 'dest'],
 'desc': '''Generate a gpg key using a spec file''',
 'long_desc': '''Generate a gpg key using a spec file''',
 'example': '',
 },
+'list-specs': {
+'func': 'list_specs',
+'options': [],
+'desc': '''List spec file definitions (spec names) found in the 
config''',
+'long_desc': '''List spec file definitions (spec names) found in the 
config.
+The default-spec setting when the pkg was installed is set to 
glep-63-recommended.''',
+'example': '''$ gkey-gen list-specs
+
+ Gkey task results:
+Specs defined: glep-63,  default-spec,  glep-63-recommended
+''',
+},
 })
 
-Available_Actions = list(Action_Map)
-
+Available_Actions = ['gen-key', 'list-specs']
 
 LARRY = """
 
@@ -149,3 +160,11 @@ class Actions(object):
 key_properties = urlopen(url).read()
 return _unicode(key_properties.decode('utf-8')).format(name, email)
 
+
+def list_specs(self, args):
+'''List seed file definitions found in the config'''
+specs = list(self.config.get_key('spec'))
+return (True, {"Specs defined: %s\n"
+% (",  ".join(specs)): True})
+
+



[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: 666190ea1a94474f73c3e5efcb271432152c6767
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  6 21:44:11 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  6 21:44:11 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=666190ea

misc/elf-abi.c: cleanup comments

---
 misc/elf-abi/elf-abi.c | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index 3be6aae..81e5e16 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -78,13 +78,12 @@
 #define EM_PPC 20  /* ppc */
 #define EM_PPC64   21  /* ppc64 */
 #define EM_S39022  /* s390 */
-#define EM_SH  42  /* Hitachi SH */
-#define EM_SPARC32PLUS 18  /* sparc 32-bit */
-#define EM_SPARCV9 43  /* sparc 64-bit */
+#define EM_SH  42  /* sh */
+#define EM_SPARC32PLUS 18  /* sparc (32-bit) */
+#define EM_SPARCV9 43  /* sparc (64-bit) */
 #define EM_386 3   /* x86 */
 #define EM_X86_64  62  /* amd64 */
 
-/* The arm and mips ABI flags housed in e_flags */
 #define EF_MIPS_ABI2   0x0020  /* Mask for mips n32 ABI */
 #define EF_ARM_EABIMASK0XFF00  /* Mask for arm EABI - 
we dont' destinguish versions */
 
@@ -218,9 +217,12 @@ read_endian(int fd, size_t count, int endian)
uint8_t data;
uint64_t value = 0;
 
+   if (count > 8)
+   errx(1, "Max width exceeded in read_endian()");
+
for(i = 0; i < count; i++) {
if (read(fd, &data, 1) == -1)
-   errx(1, "read() ei_class failed");
+   errx(1, "read() in read_endian() failed");
if (endian)
value += data << 8 * (count-i-1);
else
@@ -243,7 +245,6 @@ main(int argc, char* argv[])
char magic[4];  /* magic number at the begining of the 
file */
uint8_t ei_class;   /* ei_class is one byte of e_ident[]
*/
uint8_t ei_data;/* ei_data is one byte of e_ident[] 
*/
-
uint16_t e_machine; /* Size is Elf32_Half or Elf64_Half.  
Both are 2 bytes. */
uint32_t e_flags;   /* Size is Elf32_Word or Elf64_Word.  
Both are 4 bytes. */
uint64_t e_machine_offset, e_flags_offset;  /* Wide enough for either 
32 or 64 bits.*/
@@ -261,7 +262,7 @@ main(int argc, char* argv[])
errx(1, "failed to open %s", argv[1]);
if (read(fd, magic, 4) == -1)
errx(1, "read() magic failed");
-   if (strncmp(magic, ELFMAG, 4) != 0)
+   if (strncmp(magic, ELFMAG, 4))
errx(1, "%s is not an ELF object", argv[1]);
 
/* 32 or 64 bits machine word size? */



[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Services_Amazon: PEAR-Services_Amazon-0.8.0.ebuild ChangeLog PEAR-Services_Amazon-0.7.1.ebuild PEAR-Services_Amazon-0.7.0.ebuild

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 21:37:06

  Modified: PEAR-Services_Amazon-0.8.0.ebuild ChangeLog
  Removed:  PEAR-Services_Amazon-0.7.1.ebuild
PEAR-Services_Amazon-0.7.0.ebuild
  Log:
  EAPI bump; drop old
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.3  
dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild?r1=1.2&r2=1.3

Index: PEAR-Services_Amazon-0.8.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- PEAR-Services_Amazon-0.8.0.ebuild   10 Aug 2014 20:55:11 -  1.2
+++ PEAR-Services_Amazon-0.8.0.ebuild   6 Jan 2015 21:37:06 -   1.3
@@ -1,6 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild,v
 1.2 2014/08/10 20:55:11 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild,v
 1.3 2015/01/06 21:37:06 grknight Exp $
+
+EAPI=5
 
 inherit php-pear-r1
 



1.16 dev-php/PEAR-Services_Amazon/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   10 Aug 2014 20:55:11 -  1.15
+++ ChangeLog   6 Jan 2015 21:37:06 -   1.16
@@ -1,6 +1,11 @@
 # ChangeLog for dev-php/PEAR-Services_Amazon
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v 
1.15 2014/08/10 20:55:11 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v 
1.16 2015/01/06 21:37:06 grknight Exp $
+
+  06 Jan 2015; Brian Evans 
+  -PEAR-Services_Amazon-0.7.0.ebuild, -PEAR-Services_Amazon-0.7.1.ebuild,
+  PEAR-Services_Amazon-0.8.0.ebuild:
+  EAPI bump; drop old
 
   10 Aug 2014; Sergei Trofimovich 
   PEAR-Services_Amazon-0.7.0.ebuild, PEAR-Services_Amazon-0.7.1.ebuild,






[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: cb2af57d4d0230dbb38f314c24f4118f9dbd679c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  6 21:35:38 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  6 21:35:38 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=cb2af57d

misc/elf-abi: fixup read_endian()

---
 misc/elf-abi/elf-abi.c | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index f4408cb..3be6aae 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -211,22 +211,23 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
 /* Elf object on a big endian (eg. if you are cross compiling), then you get 
the wrong */
 /* byte order.  If howerver, you read it natively, you get it right.  We'll 
wrap read()*/
 /* with our own version which reads one byte at a time and corrects this.  
*/
-ssize_t
-read_endian(int fd, void *buf, size_t count, int endian)
+uint64_t
+read_endian(int fd, size_t count, int endian)
 {
ssize_t i;
uint8_t data;
+   uint64_t value = 0;
 
for(i = 0; i < count; i++) {
if (read(fd, &data, 1) == -1)
errx(1, "read() ei_class failed");
if (endian)
-   ((uint8_t *)buf)[count-i-1] = data;
+   value += data << 8 * (count-i-1);
else
-   ((uint8_t *)buf)[i] = data;
+   value += data << 8 * i;
}
 
-   return count;
+   return value;
 }
 
 
@@ -296,11 +297,11 @@ main(int argc, char* argv[])
/* What is the abi? */
if (lseek(fd, e_machine_offset, SEEK_SET) == -1)
errx(1, "lseek() e_machine failed");
-   read_endian(fd, &e_machine, 2, endian);
+   e_machine = (uint16_t)read_endian(fd, 2, endian);
 
if (lseek(fd, e_flags_offset, SEEK_SET) == -1)
errx(1, "lseek() e_flags failed");
-   read_endian(fd, &e_flags, 4, endian);
+   e_flags = (uint32_t)read_endian(fd, 4, endian);
 
abi = get_abi(e_machine, width, e_flags);
printf("%s\n", abi);



[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Services_JSON: PEAR-Services_JSON-1.0.3.ebuild ChangeLog PEAR-Services_JSON-1.0.2.ebuild

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 21:21:50

  Modified: PEAR-Services_JSON-1.0.3.ebuild ChangeLog
  Removed:  PEAR-Services_JSON-1.0.2.ebuild
  Log:
  EAPI bump; drop old
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.2  dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild?r1=1.1&r2=1.2

Index: PEAR-Services_JSON-1.0.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PEAR-Services_JSON-1.0.3.ebuild 23 Apr 2011 15:17:00 -  1.1
+++ PEAR-Services_JSON-1.0.3.ebuild 6 Jan 2015 21:21:50 -   1.2
@@ -1,6 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild,v
 1.1 2011/04/23 15:17:00 olemarkus Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild,v
 1.2 2015/01/06 21:21:50 grknight Exp $
+
+EAPI=5
 
 inherit php-pear-r1
 



1.3  dev-php/PEAR-Services_JSON/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   23 Apr 2011 15:17:00 -  1.2
+++ ChangeLog   6 Jan 2015 21:21:50 -   1.3
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php/PEAR-Services_JSON
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/ChangeLog,v 1.2 
2011/04/23 15:17:00 olemarkus Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/ChangeLog,v 1.3 
2015/01/06 21:21:50 grknight Exp $
+
+  06 Jan 2015; Brian Evans 
+  -PEAR-Services_JSON-1.0.2.ebuild, PEAR-Services_JSON-1.0.3.ebuild:
+  EAPI bump; drop old
 
 *PEAR-Services_JSON-1.0.3 (23 Apr 2011)
 
@@ -12,4 +16,3 @@
   23 Mar 2010; Steve Dibb 
   +PEAR-Services_JSON-1.0.2.ebuild, +metadata.xml:
   Initial commit
-






[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/.kde-frameworks-5.6/, Documentation/package.unmask/, ...

2015-01-06 Thread Manuel Rüger
commit: 2ef290ffdf92cfc66e33ceb029ab8f4143a04178
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Jan  6 21:21:24 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Jan  6 21:21:24 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2ef290ff

[Documentation] Regenerate files

---
 .../.kde-frameworks-5.6/_HEADER_   |  2 +
 .../.kde-frameworks-5.6/kde-frameworks-5.6 |  1 +
 .../.kde-frameworks-5.6/more-deps  | 21 ++
 .../kde-frameworks-5.6.keywords| 84 ++
 Documentation/package.mask/kde-frameworks-5.6  | 63 
 .../package.unmask/.kde-frameworks-5.6/_HEADER_|  2 +
 .../.kde-frameworks-5.6/kde-frameworks-5.6 |  1 +
 Documentation/package.unmask/kde-frameworks-5.6| 63 
 8 files changed, 237 insertions(+)

diff --git a/Documentation/package.accept_keywords/.kde-frameworks-5.6/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.6/_HEADER_
new file mode 100644
index 000..6ad8769
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-frameworks-5.6/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to keyword/unkeyword the KDE Frameworks 5.6 release.
+# Edit Documentation/package.keywords/.kde-frameworks-5.6/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.6/kde-frameworks-5.6 
b/Documentation/package.accept_keywords/.kde-frameworks-5.6/kde-frameworks-5.6
new file mode 12
index 000..88a2174
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.6/kde-frameworks-5.6
@@ -0,0 +1 @@
+../../../sets/kde-frameworks-5.6
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.6/more-deps 
b/Documentation/package.accept_keywords/.kde-frameworks-5.6/more-deps
new file mode 100644
index 000..9871bac
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-frameworks-5.6/more-deps
@@ -0,0 +1,21 @@
+>=dev-libs/extra-cmake-modules-1.5.0
+>=kde-frameworks/kf-env-2
+>=dev-qt/designer-5.3.2:5
+>=dev-qt/qtconcurrent-5.3.2:5
+>=dev-qt/linguist-tools-5.3.2:5
+>=dev-qt/qtcore-5.3.2:5
+>=dev-qt/qtdbus-5.3.2:5
+>=dev-qt/qtdeclarative-5.3.2:5
+>=dev-qt/qtgui-5.3.2:5
+>=dev-qt/qtnetwork-5.3.2:5
+>=dev-qt/qtprintsupport-5.3.2:5
+>=dev-qt/qtquick1-5.3.2:5
+>=dev-qt/qtquickcontrols-5.3.2:5
+>=dev-qt/qtscript-5.3.2:5
+>=dev-qt/qtsql-5.3.2:5
+>=dev-qt/qtsvg-5.3.2:5
+>=dev-qt/qttest-5.3.2:5
+>=dev-qt/qtwebkit-5.3.2:5
+>=dev-qt/qtwidgets-5.3.2:5
+>=dev-qt/qtxml-5.3.2:5
+>=dev-qt/qtx11extras-5.3.2:5

diff --git a/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords
index 085d6bf..6032793 100644
--- a/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords
+++ b/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords
@@ -1 +1,85 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to keyword/unkeyword the KDE Frameworks 5.6 release.
+# Edit Documentation/package.keywords/.kde-frameworks-5.6/ files instead.
+=dev-libs/extra-cmake-modules-1.5.0
+>=kde-frameworks/kf-env-2
+>=dev-qt/designer-5.3.2:5
+>=dev-qt/qtconcurrent-5.3.2:5
+>=dev-qt/linguist-tools-5.3.2:5
+>=dev-qt/qtcore-5.3.2:5
+>=dev-qt/qtdbus-5.3.2:5
+>=dev-qt/qtdeclarative-5.3.2:5
+>=dev-qt/qtgui-5.3.2:5
+>=dev-qt/qtnetwork-5.3.2:5
+>=dev-qt/qtprintsupport-5.3.2:5
+>=dev-qt/qtquick1-5.3.2:5
+>=dev-qt/qtquickcontrols-5.3.2:5
+>=dev-qt/qtscript-5.3.2:5
+>=dev-qt/qtsql-5.3.2:5
+>=dev-qt/qtsvg-5.3.2:5
+>=dev-qt/qttest-5.3.2:5
+>=dev-qt/qtwebkit-5.3.2:5
+>=dev-qt/qtwidgets-5.3.2:5
+>=dev-qt/qtxml-5.3.2:5
+>=dev-qt/qtx11extras-5.3.2:5

diff --git a/Documentation/package.mask/kde-frameworks-5.6 
b/Documentation/package.mask/kde-frameworks-5.6
index 085d6bf..28cb2f3 100644
--- a/Documentation/package.mask/kde-frameworks-5.6
+++ b/Documentation/package.mask/kde-frameworks-5.6
@@ -1 +1,64 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to unmask the KDE Frameworks 5.6 release.
+# Edit Documentation/package.unmask/.kde-frameworks-5.6/ files instead.
+>=kde-frameworks/attica-5.6:5
+>=kde-frameworks/frameworkintegration-5.6:5
+>=kde-frameworks/kactivities-5.6:5
+>=kde-frameworks/kapidox-5.6:5
+>=kde-frameworks/karchive-5.6:5
+>=kde-frameworks/kauth-5.6:5
+>=kde-frameworks/kbookmarks-5.6:5
+>=kde-frameworks/kcmutils-5.6:5
+>=kde-frameworks/kcodecs-5.6:5
+>=kde-frameworks/kcompletion-5.6:5
+>=kde-frameworks/kconfig-5.6:5
+>=kde-frameworks/kconfigwidgets-5.6:5
+>=kde-frameworks/kcoreaddons-5.6:5
+>=kde-frameworks/kcrash-5.6:5
+>=kde-frameworks/kdbusaddons-5.6:5
+>=kde-frameworks/kdeclarative-5.6:5
+>=kde-frameworks/kded-5.6:5
+>=kde-frameworks/kdelibs4support-5.6:5
+>=kde-frameworks/kdesignerplugin-5.6:5
+>=kde-frameworks/kdesu-5.6:5
+>=kde-frameworks/kdewebkit-5.6:5
+>=kde-frameworks/kdnssd-5.6:5
+>=kde-frameworks/kd

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

2015-01-06 Thread Manuel Rüger
commit: b180ea0e40a6ff2ef03b105a5a571588d1d637fe
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Jan  6 21:14:40 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Jan  6 21:14:40 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b180ea0e

[sets] Update sets for frameworks 5.6

---
 sets/kde-frameworks |  2 ++
 sets/kde-frameworks-5.6 | 61 +
 2 files changed, 63 insertions(+)

diff --git a/sets/kde-frameworks b/sets/kde-frameworks
index aa4677c..3709d2c 100644
--- a/sets/kde-frameworks
+++ b/sets/kde-frameworks
@@ -42,6 +42,7 @@ kde-frameworks/knewstuff:5
 kde-frameworks/knotifications:5
 kde-frameworks/knotifyconfig:5
 kde-frameworks/kparts:5
+kde-frameworks/kpackage:5
 kde-frameworks/kplotting:5
 kde-frameworks/kpty:5
 kde-frameworks/kross:5
@@ -54,6 +55,7 @@ kde-frameworks/kwallet:5
 kde-frameworks/kwidgetsaddons:5
 kde-frameworks/kwindowsystem:5
 kde-frameworks/kxmlgui:5
+kde-frameworks/networkmanager-qt:5
 kde-frameworks/plasma:5
 kde-frameworks/solid:5
 kde-frameworks/sonnet:5

diff --git a/sets/kde-frameworks-5.6 b/sets/kde-frameworks-5.6
new file mode 100644
index 000..0042c0c
--- /dev/null
+++ b/sets/kde-frameworks-5.6
@@ -0,0 +1,61 @@
+

[gentoo-commits] proj/kde:master commit in: sets/, Documentation/maintainers/

2015-01-06 Thread Manuel Rüger
commit: 027d65f839af358d728370b4f1b0bcc13b9c27a5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Jan  6 21:16:14 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Jan  6 21:16:14 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=027d65f8

[Documentation] Add new frameworks release to the scripts.

---
 Documentation/maintainers/regenerate-files | 2 +-
 sets/kde-frameworks| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 9e0cf99..6873590 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -13,7 +13,7 @@ KDE_RELEASES="4.11 4.12 4.14"
 RELEASE=${RELEASE:-4.12} # current stable
 
 KF_RELEASES="5.5 5.6"
-KF_RELEASE=${KF_RELEASE:-5.5}
+KF_RELEASE=${KF_RELEASE:-5.6}
 
 PLASMA_RELEASES="5.1"
 PLASMA_RELEASE=${PLASMA_RELEASE:-5.1}

diff --git a/sets/kde-frameworks b/sets/kde-frameworks
index 3709d2c..e828ff2 100644
--- a/sets/kde-frameworks
+++ b/sets/kde-frameworks
@@ -41,8 +41,8 @@ kde-frameworks/kmediaplayer:5
 kde-frameworks/knewstuff:5
 kde-frameworks/knotifications:5
 kde-frameworks/knotifyconfig:5
-kde-frameworks/kparts:5
 kde-frameworks/kpackage:5
+kde-frameworks/kparts:5
 kde-frameworks/kplotting:5
 kde-frameworks/kpty:5
 kde-frameworks/kross:5



[gentoo-commits] gentoo-x86 commit in media-gfx/imagemagick: imagemagick-6.9.0.3.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 21:14:32

  Modified: imagemagick-6.9.0.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #534106).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.4  media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild

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

Index: imagemagick-6.9.0.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- imagemagick-6.9.0.3.ebuild  5 Jan 2015 15:13:12 -   1.3
+++ imagemagick-6.9.0.3.ebuild  6 Jan 2015 21:14:32 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild,v 1.3 
2015/01/05 15:13:12 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild,v 1.4 
2015/01/06 21:14:32 jer Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="imagemagick"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri 
jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript 
q32 q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
 
 RESTRICT="perl? ( userpriv )"



1.582media-gfx/imagemagick/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/ChangeLog?rev=1.582&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/ChangeLog?rev=1.582&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/ChangeLog?r1=1.581&r2=1.582

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v
retrieving revision 1.581
retrieving revision 1.582
diff -u -r1.581 -r1.582
--- ChangeLog   5 Jan 2015 15:13:12 -   1.581
+++ ChangeLog   6 Jan 2015 21:14:32 -   1.582
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/imagemagick
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.581 
2015/01/05 15:13:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.582 
2015/01/06 21:14:32 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers  imagemagick-6.9.0.3.ebuild:
+  Stable for HPPA (bug #534106).
 
   05 Jan 2015; Agostino Sarubbo  imagemagick-6.9.0.3.ebuild:
   Stable for x86, wrt bug #534106






[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: b92d4495d9ee7661b8c5b75648821291b5f5cbfd
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  6 20:43:01 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  6 20:43:01 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=b92d4495

misc/elf-abi: manually read little/big endian half or full words

When reading on a native system, read() transparently reads two
byte or four bytes in the correct byte order and returns the correct
value.  But if you read() a word in a big endian file from a little
endian system or vice versa, you get the wrong value.  We wrap
read() in read_endian() to compensate for this.

---
 misc/elf-abi/elf-abi.c | 133 +++--
 1 file changed, 84 insertions(+), 49 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index 5f47212..f4408cb 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -58,39 +58,62 @@
 #include 
 #include 
 
-/* We reorder the big endian EM_ numbers to avoid also reading endian 
information from
- * the Elf file.  For a mapping between common macine names and EM_ see 
.  For a
- * more complete mapping, see elfutil's machines[] defined in 
libebl/eblopenbackend.c.
+/* For a mapping between common macine names and EM_ number see .  For 
a more
+ * complete mapping, see elfutil's machines[] defined in 
libebl/eblopenbackend.c.
  */
 #defineELFMAG  "\177ELF"
 
 #define ELFCLASS32 1   /* 32-bit objects */
 #define ELFCLASS64 2   /* 64-bit objects */
+#define ELFDATA2LSB1   /* 2's complement, little endian */
+#define ELFDATA2MSB2   /* 2's complement, big endian */
 
 #define EM_ALPHA   0x9026  /* alpha */
 #define EM_ARM 40  /* arm */
 #define EM_AARCH64 183 /* arm64 */
-#define EM_PARISC_BE   0x0F00  /* hppa - big endian reordering of 
EM_PARISC = 15 */
+#define EM_PARISC  15  /* hppa */
 #define EM_IA_64   50  /* ia64 */
-#define EM_68K_BE  0x0400  /* m68k - big endian reordering of 
EM_68K = 4 */
-
+#define EM_68K 4   /* m68k */
 #define EM_MIPS8   /* mips */
-#define EM_MIPS_BE 0x800   /* mips - big endian reordering of 
EM_MIPS = 8 */
-
-#define EM_PPC_BE  0x1400  /* ppc - big endian reordering of 
EM_PPC = 20 */
-#define EM_PPC64_BE0x1500  /* ppc64 - bit endian reordering of 
EM_PPC64 = 21 */
-#define EM_S390_BE 0x1600  /* s390 - big endian reordering of 
EM_S390 */
+#define EM_PPC 20  /* ppc */
+#define EM_PPC64   21  /* ppc64 */
+#define EM_S39022  /* s390 */
 #define EM_SH  42  /* Hitachi SH */
-#define EM_SPARC32_BE  0x1200  /* sparc - big endian reordering of 
EM_SPARC32PLUS = 18 */
-#define EM_SPARC64_BE  0x2B00  /* sparc - big endian reordinger of 
EM_SPARCV9 = 43 */
+#define EM_SPARC32PLUS 18  /* sparc 32-bit */
+#define EM_SPARCV9 43  /* sparc 64-bit */
 #define EM_386 3   /* x86 */
 #define EM_X86_64  62  /* amd64 */
 
 /* The arm and mips ABI flags housed in e_flags */
-#define EF_MIPS_ABI2   0x0020  /* Mask for mips ABI */
-#define EF_MIPS_ABI2_BE0x2000  /* Mask for mips ABI */
+#define EF_MIPS_ABI2   0x0020  /* Mask for mips n32 ABI */
 #define EF_ARM_EABIMASK0XFF00  /* Mask for arm EABI - 
we dont' destinguish versions */
 
+int
+get_wordsize(uint8_t ei_class)
+{
+   switch (ei_class) {
+   case ELFCLASS32:
+   return 32;
+   case ELFCLASS64:
+   return 64;
+   default:
+   errx(1, "Unknown machine word size.");
+   }
+}
+
+int
+get_endian(uint8_t ei_data)
+{
+   switch (ei_data) {
+   case ELFDATA2LSB:
+   return 0;
+   case ELFDATA2MSB:
+   return 1;
+   default:
+   errx(1, "Unknown endian.");
+   }
+}
+
 
 char *
 get_abi(uint16_t e_machine, int width, uint32_t e_flags)
@@ -117,7 +140,7 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
return "arm_64";
 
/* m68k: We support only one 32-bit ABI. */
-   case EM_68K_BE:
+   case EM_68K:
return "m68k_32";
 
/* mips: We support o32, n32 and n64.  The first is 32-bits and 
the
@@ -132,33 +155,25 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
else
return "mips_o32";
 
-   case EM_MIPS_BE:
-   if (width == 6

[gentoo-commits] gentoo-x86 commit in dev-java/appframework: appframework-1.03-r3.ebuild ChangeLog appframework-1.03-r2.ebuild

2015-01-06 Thread Mikle Kolyada (zlogene)
zlogene 15/01/06 20:27:03

  Modified: appframework-1.03-r3.ebuild ChangeLog
  Removed:  appframework-1.03-r2.ebuild
  Log:
  amd64/x86 stable wrt bug #525010; Drop old.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  dev-java/appframework/appframework-1.03-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild?r1=1.2&r2=1.3

Index: appframework-1.03-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- appframework-1.03-r3.ebuild 10 Aug 2014 20:07:54 -  1.2
+++ appframework-1.03-r3.ebuild 6 Jan 2015 20:27:03 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild,v 1.2 
2014/08/10 20:07:54 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild,v 1.3 
2015/01/06 20:27:03 zlogene Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 COMMON_DEP="dev-java/swing-worker:0"
 



1.10 dev-java/appframework/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/appframework/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   10 Aug 2014 20:07:55 -  1.9
+++ ChangeLog   6 Jan 2015 20:27:03 -   1.10
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/appframework
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/appframework/ChangeLog,v 1.9 
2014/08/10 20:07:55 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/appframework/ChangeLog,v 1.10 
2015/01/06 20:27:03 zlogene Exp $
+
+  06 Jan 2015; Mikle Kolyada  -appframework-1.03-r2.ebuild,
+  appframework-1.03-r3.ebuild:
+  amd64/x86 stable wrt bug #525010; Drop old.
 
   10 Aug 2014; Sergei Trofimovich 
   appframework-1.03-r2.ebuild, appframework-1.03-r3.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/libevent: libevent-2.0.22.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 20:24:06

  Modified: libevent-2.0.22.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #535774).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.3  dev-libs/libevent/libevent-2.0.22.ebuild

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

Index: libevent-2.0.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libevent-2.0.22.ebuild  6 Jan 2015 13:36:05 -   1.2
+++ libevent-2.0.22.ebuild  6 Jan 2015 20:24:06 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.2 2015/01/06 13:36:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.3 2015/01/06 20:24:06 jer Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="debug +ssl static-libs test +threads"
 
 DEPEND="ssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )"



1.285dev-libs/libevent/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?rev=1.285&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?rev=1.285&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?r1=1.284&r2=1.285

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- ChangeLog   6 Jan 2015 13:36:05 -   1.284
+++ ChangeLog   6 Jan 2015 20:24:06 -   1.285
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.284 
2015/01/06 13:36:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.285 
2015/01/06 20:24:06 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers  libevent-2.0.22.ebuild:
+  Stable for HPPA (bug #535774).
 
   06 Jan 2015; Agostino Sarubbo  libevent-2.0.22.ebuild:
   Stable for amd64, wrt bug #535774






[gentoo-commits] gentoo-x86 commit in net-misc/packETH: packETH-1.8.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 20:21:05

  Modified: ChangeLog
  Added:packETH-1.8.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.23 net-misc/packETH/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/packETH/ChangeLog?rev=1.23&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/packETH/ChangeLog?rev=1.23&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/packETH/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/packETH/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   18 Jul 2014 20:17:37 -  1.22
+++ ChangeLog   6 Jan 2015 20:21:05 -   1.23
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/packETH
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/packETH/ChangeLog,v 1.22 
2014/07/18 20:17:37 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/packETH/ChangeLog,v 1.23 
2015/01/06 20:21:05 jer Exp $
+
+*packETH-1.8 (06 Jan 2015)
+
+  06 Jan 2015; Jeroen Roovers  +packETH-1.8.ebuild:
+  Version bump.
 
 *packETH-1.7.3 (18 Jul 2014)
 



1.1  net-misc/packETH/packETH-1.8.ebuild

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

Index: packETH-1.8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/packETH/packETH-1.8.ebuild,v 1.1 
2015/01/06 20:21:05 jer Exp $

EAPI=5
inherit autotools eutils

DESCRIPTION="Packet generator tool for ethernet"
HOMEPAGE="http://packeth.sourceforge.net/";
SRC_URI="mirror://sourceforge/packeth/${P}.tar.bz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"

RDEPEND="
dev-libs/glib:2
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
"
DEPEND="
virtual/pkgconfig
${RDEPEND}
"

src_prepare() {
epatch "${FILESDIR}"/${PN}-1.7.3-libs-and-flags.patch
eautoreconf
}

DOCS=( AUTHORS CHANGELOG README )






[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop/files: chrome-remote-desktop.rc chrome-remote-desktop.conf.d

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:15:37

  Added:chrome-remote-desktop.rc
chrome-remote-desktop.conf.d
  Log:
  Initial ebuild.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.1  
net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc?rev=1.1&content-type=text/plain

Index: chrome-remote-desktop.rc
===
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc,v
 1.1 2015/01/06 20:15:37 vapier Exp $

extra_started_commands="checkconfig reload"

CRD=/opt/google/chrome-remote-desktop/chrome-remote-desktop

depend() {
need net
use logger
}

checkconfig() {
local ret=0
if [ -z "${CHROME_REMOTING_USERS}" ] ; then
eerror "You must set CHROME_REMOTING_USERS in 
/etc/conf.d/${SVCNAME} first"
ret=1
else
local user
for user in ${CHROME_REMOTING_USERS} ; do
if ! id "${user}" >/dev/null ; then
eerror "Invalid user found in 
CHROME_REMOTING_USERS: ${user}"
ret=1
fi
done
fi
return ${ret}
}

for_users() {
local user ret msg log
msg=$1; shift

set -- -- "$@"
[ "${CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES+set}" = "set" ] \
&& set -- -e 
CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES="${CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES}"
 "$@"
: ${CHROME_REMOTE_DESKTOP_LOG_DIR:=/var/log}

for user in ${CHROME_REMOTING_USERS} ; do
ebegin "${msg} ${SVCNAME} for ${user}"

log="${CHROME_REMOTE_DESKTOP_LOG_DIR}/${SVCNAME}.${user}.log"
checkpath -f -m 0600 -o "${user}" "${log}"

# We need to background the app as it won't fork until the 
network
# (including DNS) is available.
start-stop-daemon \
-b \
-u "${user}" \
-x "${CRD}" \
-e "CHROME_REMOTE_DESKTOP_LOG_FILE=${log}" \
"$@"
eend $?
: $(( ret += $? ))
done

return ${ret}
}

start() {
checkconfig || return
for_users Starting --start
}

stop() {
for_users Stopping --stop
}

reload() {
for_users Reloading --reload
}



1.1  
net-misc/chrome-remote-desktop/files/chrome-remote-desktop.conf.d

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.conf.d?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.conf.d?rev=1.1&content-type=text/plain

Index: chrome-remote-desktop.conf.d
===
# /etc/conf.d/chrome-remote-desktop: config file for 
/etc/init.d/chrome-remote-desktop

# List of users to start Chrome Remote Desktop for.
CHROME_REMOTING_USERS=''

# Default resolutions to make available to the session.
#CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES='1600x1200,3840x1600'

# Directory to use for storing log files.
#CHROME_REMOTE_DESKTOP_LOG_DIR='/var/log'






[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop: metadata.xml chrome-remote-desktop-40.0.2214.44.ebuild ChangeLog

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:15:37

  Added:metadata.xml
chrome-remote-desktop-40.0.2214.44.ebuild ChangeLog
  Log:
  Initial ebuild.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.1  net-misc/chrome-remote-desktop/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

http://www.gentoo.org/dtd/metadata.dtd";>


 vap...@gentoo.org





1.1  
net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild?rev=1.1&content-type=text/plain

Index: chrome-remote-desktop-40.0.2214.44.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild,v
 1.1 2015/01/06 20:15:37 vapier Exp $

# Base URL: https://dl.google.com/linux/chrome-remote-desktop/deb/
# Fetch the Release file:
#  https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/Release
# Which gives you the Packages file:
#  
https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/main/binary-i386/Packages
#  
https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/main/binary-amd64/Packages
# And finally gives you the file name:
#  
pool/main/c/chrome-remote-desktop/chrome-remote-desktop_29.0.1547.32_amd64.deb
#
# Use curl to find the answer:
#  curl -q 
https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/main/binary-i386/Packages
 | grep ^Filename

EAPI="4"

inherit unpacker

DESCRIPTION="access remote computers via Chrome!"
PLUGIN_URL="https://chrome.google.com/remotedesktop";
HOMEPAGE="https://support.google.com/chrome/answer/1649523 ${PLUGIN_URL}"
BASE_URI="https://dl.google.com/linux/chrome-remote-desktop/deb/pool/main/c/${PN}/${PN}_${PV}";
SRC_URI="amd64? ( ${BASE_URI}_amd64.deb )
x86? ( ${BASE_URI}_i386.deb )"

LICENSE="google-chrome"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE=""

# All the libs this package links against.
RDEPEND="app-admin/sudo
dev-lang/python
>=dev-libs/expat-2
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
dev-python/psutil
gnome-base/gconf:2
media-libs/fontconfig
media-libs/freetype:2
sys-devel/gcc
sys-libs/glibc
sys-libs/pam
x11-libs/cairo
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXtst
x11-libs/pango"
# Settings we just need at runtime.
RDEPEND+="
x11-base/xorg-server[xvfb]"
DEPEND=""

S=${WORKDIR}

QA_PREBUILT="/opt/google/chrome-remote-desktop/*"

src_install() {
insinto /etc
doins -r etc/opt

insinto /opt
doins -r opt/google
chmod a+rx "${ED}"/opt/google/${PN}/* || die

dodir /etc/pam.d
dosym system-remote-login /etc/pam.d/${PN}

dodoc usr/share/doc/${PN}/changelog*

newinitd "${FILESDIR}"/${PN}.rc ${PN}
newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
}

pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]] ; then
elog "Two ways to launch the server:"
elog "(1) access an existing desktop"
elog "(a) install the Chrome plugin on the server & client:"
elog "${PLUGIN_URL}"
elog "(b) on the server, run the Chrome plugin & enable 
remote access"
elog "(c) on the client, connect to the server"
elog "(2) headless system"
elog "(a) install the Chrome plugin on the client:"
elog "${PLUGIN_URL}"
elog "(b) visit 
https://accounts.google.com/o/oauth2/auth?response_type=code&scope=https://www.googleapis.com/auth/chromoting+https://www.googleapis.com/auth/googletalk+https://www.googleapis.com/auth/userinfo.email&access_type=offline&redirect_uri=https://chromoting-auth.googleplex.com/auth&approval_prompt=force&client_id=440925447803-avn2sj1kc099s0r7v62je5s339mu0am1.apps.googleusercontent.com&hl=en&from_login=1&as=-760f476eeaec11b8&pli=1&authuser=0";
elog "(c) run the command mentioned on the

[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop: - New directory

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:08:49

  Log:
  Directory /var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop added to the 
repository



[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop/files: - New directory

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:08:50

  Log:
  Directory /var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop/files added 
to the repository



[gentoo-commits] gentoo-x86 commit in app-text/restview: restview-2.2.1.ebuild ChangeLog

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 20:00:07

  Modified: ChangeLog
  Added:restview-2.2.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.3  app-text/restview/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/restview/ChangeLog?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/restview/ChangeLog?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/restview/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   10 Dec 2014 19:14:11 -  1.2
+++ ChangeLog   6 Jan 2015 20:00:07 -   1.3
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/restview
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v 1.2 
2014/12/10 19:14:11 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v 1.3 
2015/01/06 20:00:07 radhermit Exp $
+
+*restview-2.2.1 (06 Jan 2015)
+
+  06 Jan 2015; Tim Harder  +restview-2.2.1.ebuild:
+  Version bump.
 
 *restview-2.2.0 (10 Dec 2014)
 



1.1  app-text/restview/restview-2.2.1.ebuild

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

Index: restview-2.2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/restview/restview-2.2.1.ebuild,v 
1.1 2015/01/06 20:00:07 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )

inherit distutils-r1

DESCRIPTION="reStructuredText viewer"
HOMEPAGE="https://mg.pov.lt/restview/";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

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

RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/docutils[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
test? ( dev-python/mock[${PYTHON_USEDEP}] )
"

DOCS=( README.rst CHANGES.rst )

python_test() {
esetup.py test
}






[gentoo-commits] gentoo-x86 commit in app-text/poppler: poppler-0.30.0.ebuild ChangeLog

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:54:02

  Modified: ChangeLog
  Added:poppler-0.30.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.441app-text/poppler/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/ChangeLog?rev=1.441&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/ChangeLog?rev=1.441&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/ChangeLog?r1=1.440&r2=1.441

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v
retrieving revision 1.440
retrieving revision 1.441
diff -u -r1.440 -r1.441
--- ChangeLog   3 Jan 2015 11:24:17 -   1.440
+++ ChangeLog   6 Jan 2015 19:54:02 -   1.441
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/poppler
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.440 
2015/01/03 11:24:17 tamiko Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.441 
2015/01/06 19:54:02 mrueg Exp $
+
+*poppler-0.30.0 (06 Jan 2015)
+
+  06 Jan 2015; Manuel Rüger  +poppler-0.30.0.ebuild:
+  Version bump.
 
   03 Jan 2015; Matthias Maier 
   +files/poppler-0.28.1-fix-multilib-configuration.patch, 
poppler-0.28.1.ebuild,



1.1  app-text/poppler/poppler-0.30.0.ebuild

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

Index: poppler-0.30.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.30.0.ebuild,v 1.1 
2015/01/06 19:54:02 mrueg Exp $

EAPI=5

inherit cmake-utils toolchain-funcs

if [[ "${PV}" == "" ]] ; then
inherit git-r3
EGIT_REPO_URI="git://git.freedesktop.org/git/${PN}/${PN}"
KEYWORDS=""
SLOT="0/"
else
SRC_URI="http://poppler.freedesktop.org/${P}.tar.xz";
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0/49"   # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so 
SOVERSION
fi

DESCRIPTION="PDF rendering library based on the xpdf-3.0 code base"
HOMEPAGE="http://poppler.freedesktop.org/";

LICENSE="GPL-2"
IUSE="cairo cjk curl cxx debug doc +introspection +jpeg jpeg2k +lcms png qt4 
qt5 tiff +utils"

# No test data provided
RESTRICT="test"

COMMON_DEPEND="
>=media-libs/fontconfig-2.6.0
>=media-libs/freetype-2.3.9
sys-libs/zlib
cairo? (
dev-libs/glib:2
>=x11-libs/cairo-1.10.0
introspection? ( >=dev-libs/gobject-introspection-1.32.1 )
)
curl? ( net-misc/curl )
jpeg? ( virtual/jpeg:0 )
jpeg2k? ( media-libs/openjpeg:0 )
lcms? ( media-libs/lcms:2 )
png? ( media-libs/libpng:0= )
qt4? (
dev-qt/qtcore:4
dev-qt/qtgui:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtxml:5
)
tiff? ( media-libs/tiff:0 )
"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
"
RDEPEND="${COMMON_DEPEND}
cjk? ( >=app-text/poppler-data-0.4.4 )
"

DOCS=(AUTHORS NEWS README README-XPDF TODO)

PATCHES=(
"${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch"
"${FILESDIR}/${PN}-0.28.1-respect-cflags.patch"
"${FILESDIR}/${PN}-0.28.1-fix-multilib-configuration.patch" )

src_configure() {
local mycmakeargs=(
-DBUILD_GTK_TESTS=OFF
-DBUILD_QT4_TESTS=OFF
-DBUILD_QT5_TESTS=OFF
-DBUILD_CPP_TESTS=OFF
-DENABLE_SPLASH=ON
-DENABLE_ZLIB=ON
-DENABLE_XPDF_HEADERS=ON
$(cmake-utils_use_enable curl LIBCURL)
$(cmake-utils_use_enable cxx CPP)
$(cmake-utils_use_enable jpeg2k LIBOPENJPEG)
$(cmake-utils_use_enable utils)
$(cmake-utils_use_with cairo)
$(cmake-utils_use_with introspection GObjectIntrospection)
$(cmake-utils_use_with jpeg)
$(cmake-utils_use_with png)
$(cmake-utils_use_with qt4)
$(cmake-utils_use_find_package qt5 Qt5Core)
$(cmake-utils_use_with tif

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

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:51:39

  Modified: ChangeLog
  Log:
  One more for portability.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.23 net-analyzer/nttcp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/ChangeLog?rev=1.23&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/ChangeLog?rev=1.23&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   6 Jan 2015 19:43:48 -   1.22
+++ ChangeLog   6 Jan 2015 19:51:39 -   1.23
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/nttcp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.22 
2015/01/06 19:43:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.23 
2015/01/06 19:51:39 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers 
+  files/nttcp-1.47-format-security.patch:
+  One more for portability.
 
 *nttcp-1.47-r3 (06 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in net-analyzer/nttcp/files: nttcp-1.47-format-security.patch

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:51:39

  Modified: nttcp-1.47-format-security.patch
  Log:
  One more for portability.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.4  net-analyzer/nttcp/files/nttcp-1.47-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?r1=1.3&r2=1.4

Index: nttcp-1.47-format-security.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nttcp-1.47-format-security.patch6 Jan 2015 19:43:48 -   1.3
+++ nttcp-1.47-format-security.patch6 Jan 2015 19:51:39 -   1.4
@@ -44,7 +44,7 @@
}
if (OptionLine[sizeof(OptionLine)-1] != '\0') {
 -  sprintf(MsgBuf, "%s: optionline longer than %d\n",
-+  sprintf(MsgBuf, "%s: optionline longer than %ld\n",
++  sprintf(MsgBuf, "%s: optionline longer than %zd\n",
  myname, sizeof(OptionLine)-1);
Exit(MsgBuf, 3);
}






[gentoo-commits] gentoo-x86 commit in net-misc/tor: tor-0.2.6.2_alpha-r1.ebuild ChangeLog tor-0.2.6.2_alpha.ebuild

2015-01-06 Thread Anthony G. Basile (blueness)
blueness15/01/06 19:50:52

  Modified: ChangeLog
  Added:tor-0.2.6.2_alpha-r1.ebuild
  Removed:  tor-0.2.6.2_alpha.ebuild
  Log:
  Remove libsystemd automagic, bug #535812
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.460net-misc/tor/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.460&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.460&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?r1=1.459&r2=1.460

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.459
retrieving revision 1.460
diff -u -r1.459 -r1.460
--- ChangeLog   3 Jan 2015 15:56:35 -   1.459
+++ ChangeLog   6 Jan 2015 19:50:52 -   1.460
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.459 2015/01/03 
15:56:35 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.460 2015/01/06 
19:50:52 blueness Exp $
+
+*tor-0.2.6.2_alpha-r1 (06 Jan 2015)
+
+  06 Jan 2015; Anthony G. Basile 
+  +tor-0.2.6.2_alpha-r1.ebuild, -tor-0.2.6.2_alpha.ebuild:
+  Remove libsystemd automagic, bug #535812
 
   03 Jan 2015; Anthony G. Basile  
tor-0.2.6.2_alpha.ebuild:
   Add epatch_user for testing alpha, bug #534244.



1.1  net-misc/tor/tor-0.2.6.2_alpha-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.6.2_alpha-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.6.2_alpha-r1.ebuild?rev=1.1&content-type=text/plain

Index: tor-0.2.6.2_alpha-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.6.2_alpha-r1.ebuild,v 
1.1 2015/01/06 19:50:52 blueness Exp $

EAPI="5"

inherit eutils flag-o-matic readme.gentoo systemd toolchain-funcs versionator 
user

MY_PV="$(replace_version_separator 4 -)"
MY_PF="${PN}-${MY_PV}"
DESCRIPTION="Anonymizing overlay network for TCP"
HOMEPAGE="http://www.torproject.org/";
SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz";
S="${WORKDIR}/${MY_PF}"

LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="-bufferevents nat-pmp scrypt seccomp selinux stats systemd tor-hardening 
transparent-proxy test upnp web"

DEPEND="dev-libs/openssl
sys-libs/zlib
dev-libs/libevent
bufferevents? ( dev-libs/libevent[ssl] )
nat-pmp? ( net-libs/libnatpmp )
scrypt? ( app-crypt/libscrypt )
seccomp? ( sys-libs/libseccomp )
upnp? ( net-libs/miniupnpc )"
RDEPEND="${DEPEND}
selinux? ( sec-policy/selinux-tor )"

pkg_setup() {
enewgroup tor
enewuser tor -1 -1 /var/lib/tor tor
}

src_prepare() {
epatch "${FILESDIR}"/${PN}-0.2.3.14_alpha-torrc.sample.patch
epatch_user
}

src_configure() {
# Upstream isn't sure of all the user provided CFLAGS that
# will break tor, but does recommend against -fstrict-aliasing.
# We'll filter-flags them here as we encounter them.
filter-flags -fstrict-aliasing

econf \
--disable-buf-freelists \
--enable-asciidoc \
--enable-mempools \
--docdir=/usr/share/doc/${PF} \
$(use_enable stats instrument-downloads) \
$(use_enable bufferevents) \
$(use_enable nat-pmp) \
$(use_enable scrypt libscrypt) \
$(use_enable seccomp) \
$(use_enable systemd) \
$(use_enable tor-hardening gcc-hardening) \
$(use_enable tor-hardening linker-hardening) \
$(use_enable transparent-proxy transparent) \
$(use_enable upnp) \
$(use_enable web tor2web-mode) \
$(use_enable test unittests) \
$(use_enable test coverage)
}

src_install() {
readme.gentoo_create_doc

newconfd "${FILESDIR}"/tor.confd tor
newinitd "${FILESDIR}"/tor.initd-r7 tor
systemd_dounit "${FILESDIR}/${PN}.service"
systemd_dotmpfilesd "${FILESDIR}/${PN}.conf"

emake DESTDIR="${D}" install

keepdir /var/lib/tor

dodoc README ChangeLog ReleaseNotes doc/HACKING

fperms 750 /var/lib/tor
fowners tor:tor /var/lib/tor

insinto /etc/tor/
newins "${FILESDIR}"/torrc-r1 torrc
}

pkg_postinst() {
 

[gentoo-commits] gentoo-x86 commit in dev-db/mysql-super-smack/files: mysql-super-smack-1.3-automake-1.13.patch

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 19:45:14

  Modified: mysql-super-smack-1.3-automake-1.13.patch
  Log:
  Fix parallel make for bug 425340
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.2  
dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch?r1=1.1&r2=1.2

Index: mysql-super-smack-1.3-automake-1.13.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mysql-super-smack-1.3-automake-1.13.patch   25 Jun 2014 23:08:37 -  
1.1
+++ mysql-super-smack-1.3-automake-1.13.patch   6 Jan 2015 19:45:14 -   
1.2
@@ -231,12 +231,13 @@
 diff -aurwN a/src/Makefile.am b/src/Makefile.am
 --- a/src/Makefile.am  2014-06-20 14:37:35.266956252 -0400
 +++ b/src/Makefile.am  2014-06-20 15:12:40.278227315 -0400
-@@ -16,7 +16,7 @@
+@@ -16,7 +16,8 @@
  
  # Process this file with automake to create Makefile.in
  
 -INCLUDES = @MYSQL_INCLUDE@ @PGSQL_INCLUDE@ @ORACLE_INCLUDE@
 +AM_CPPFLAGS = @MYSQL_INCLUDE@ @PGSQL_INCLUDE@ @ORACLE_INCLUDE@
++BUILT_SOURCES = super-smack-yacc.hh
  
  noinst_PROGRAMS=test-dictionary test-client test_tcp_client
  bin_PROGRAMS=super-smack super-smack-gen-data






[gentoo-commits] gentoo-x86 commit in dev-db/mysql-super-smack: mysql-super-smack-1.3-r3.ebuild mysql-super-smack-1.3-r2.ebuild ChangeLog

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 19:45:14

  Modified: mysql-super-smack-1.3-r3.ebuild
mysql-super-smack-1.3-r2.ebuild ChangeLog
  Log:
  Fix parallel make for bug 425340
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.5  dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild?r1=1.4&r2=1.5

Index: mysql-super-smack-1.3-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mysql-super-smack-1.3-r3.ebuild 28 Dec 2014 15:05:44 -  1.4
+++ mysql-super-smack-1.3-r3.ebuild 6 Jan 2015 19:45:14 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild,v
 1.4 2014/12/28 15:05:44 titanofold Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild,v
 1.5 2015/01/06 19:45:14 grknight Exp $
 
 EAPI=5
 WANT_AUTOMAKE="1.13"



1.10 dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild?r1=1.9&r2=1.10

Index: mysql-super-smack-1.3-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mysql-super-smack-1.3-r2.ebuild 28 Dec 2014 15:05:44 -  1.9
+++ mysql-super-smack-1.3-r2.ebuild 6 Jan 2015 19:45:14 -   1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v
 1.9 2014/12/28 15:05:44 titanofold Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v
 1.10 2015/01/06 19:45:14 grknight Exp $
 
 EAPI=2
 WANT_AUTOMAKE="1.4"



1.24 dev-db/mysql-super-smack/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/ChangeLog?rev=1.24&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/ChangeLog?rev=1.24&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   28 Dec 2014 15:05:44 -  1.23
+++ ChangeLog   6 Jan 2015 19:45:14 -   1.24
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/mysql-super-smack
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/ChangeLog,v 1.23 
2014/12/28 15:05:44 titanofold Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/ChangeLog,v 1.24 
2015/01/06 19:45:14 grknight Exp $
+
+  06 Jan 2015; Brian Evans 
+  files/mysql-super-smack-1.3-automake-1.13.patch,
+  mysql-super-smack-1.3-r2.ebuild, mysql-super-smack-1.3-r3.ebuild:
+  Fix parallel make for bug 425340
 
   28 Dec 2014; Aaron W. Swenson 
   mysql-super-smack-1.3-r2.ebuild, mysql-super-smack-1.3-r3.ebuild:






[gentoo-commits] gentoo-x86 commit in net-analyzer/nttcp: ChangeLog nttcp-1.47-r3.ebuild nttcp-1.47-r2.ebuild

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:43:48

  Modified: ChangeLog
  Added:nttcp-1.47-r3.ebuild
  Removed:  nttcp-1.47-r2.ebuild
  Log:
  Fix more format security warnings.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.22 net-analyzer/nttcp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/ChangeLog?rev=1.22&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/ChangeLog?rev=1.22&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   21 Jul 2014 15:26:31 -  1.21
+++ ChangeLog   6 Jan 2015 19:43:48 -   1.22
@@ -1,6 +1,12 @@
 # ChangeLog for net-analyzer/nttcp
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.21 
2014/07/21 15:26:31 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.22 
2015/01/06 19:43:48 jer Exp $
+
+*nttcp-1.47-r3 (06 Jan 2015)
+
+  06 Jan 2015; Jeroen Roovers  -nttcp-1.47-r2.ebuild,
+  +nttcp-1.47-r3.ebuild, files/nttcp-1.47-format-security.patch:
+  Fix more format security warnings.
 
   21 Jul 2014; Jeroen Roovers 
   files/nttcp-1.47-format-security.patch:



1.1  net-analyzer/nttcp/nttcp-1.47-r3.ebuild

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

Index: nttcp-1.47-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/nttcp-1.47-r3.ebuild,v 
1.1 2015/01/06 19:43:48 jer Exp $

EAPI=5
inherit eutils toolchain-funcs

DESCRIPTION="tool to test TCP and UDP throughput"
HOMEPAGE="http://www.leo.org/~elmar/nttcp/";
SRC_URI="http://www.leo.org/~elmar/nttcp/${P}.tar.gz";
LICENSE="public-domain"

SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc ~x86"

src_prepare() {
epatch "${FILESDIR}"/${P}-format-security.patch
}

src_compile() {
emake \
ARCH= \
CC="$(tc-getCC)" \
LFLAGS="${LDFLAGS}" \
OPT="${CFLAGS}"
}

src_install() {
dobin ${PN}
doman ${PN}.1
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/nttcp/files: nttcp-1.47-format-security.patch

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:43:48

  Modified: nttcp-1.47-format-security.patch
  Log:
  Fix more format security warnings.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.3  net-analyzer/nttcp/files/nttcp-1.47-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?r1=1.2&r2=1.3

Index: nttcp-1.47-format-security.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nttcp-1.47-format-security.patch21 Jul 2014 15:26:31 -  1.2
+++ nttcp-1.47-format-security.patch6 Jan 2015 19:43:48 -   1.3
@@ -9,3 +9,124 @@
  fMessage(stderr,s);
  exit(ret);
  }
+@@ -694,7 +694,7 @@
+ register int cnt;
+ if (opt.udp) {
+   struct sockaddr_in from;
+-  int len= sizeof(from);
++  socklen_t len= sizeof(from);
+cnt= recvfrom(fd, buf, count, 0, (struct sockaddr *)&from, &len);
+SysCalls++;
+ }
+@@ -1150,8 +1150,8 @@
+ int main(int argc, char *argv[]) {
+ 
+ struct sockaddr_in PeerAddr;
+-int  PeerAddrLeng;
+-char *DataPortFormat= "dataport: %d\n";
++socklen_t  PeerAddrLeng;
++const char DataPortFormat[]= "dataport: %d\n";
+ int DataPort;
+ struct sockaddr_in sinlh; /* for control socket on local host */
+ int  fd;  /* data socket to transport the data */
+@@ -1184,7 +1184,8 @@
+ } 
+ if (opt.inetd) {
+   /* we simulate inetd behaviour */
+-  int nsrv, srv, fromleng;
++  int nsrv, srv;
++  socklen_t fromleng;
+   struct sockaddr_in sinsrv;
+   struct sockaddr_in frominet;
+   if (opt.Verbose) {
+@@ -1285,7 +1286,7 @@
+   Exit(MsgBuf, 2);
+   }
+   if (OptionLine[sizeof(OptionLine)-1] != '\0') {
+-  sprintf(MsgBuf, "%s: optionline longer than %d\n",
++  sprintf(MsgBuf, "%s: optionline longer than %ld\n",
+ myname, sizeof(OptionLine)-1);
+   Exit(MsgBuf, 3);
+   }
+@@ -1308,7 +1309,7 @@
+   Peer[PeerCount].fin= stdin;
+   Peer[PeerCount].fout= stdout;
+   syslog(LOG_DEBUG,
+-"call from %.50 (=%.30s): done remote initial processing\n",
++"call from %.50s (=%.30s): done remote initial processing\n",
+ Peer[PeerCount].HostName, Peer[PeerCount].IPName);
+   PeerCount++;
+ }
+@@ -1617,7 +1618,7 @@
+   sinlh.sin_family = AF_INET;
+ #if defined(MULTICAST)
+   if (opt.MulticastChannel) {
+-  int ml, p, join_group;
++  int p, join_group;
+   struct ip_mreq mreq;
+   sinlh.sin_port = htons(opt.MulticastPort);
+   if (bind(fd, (struct sockaddr *)&sinlh, sizeof(sinlh)) < 0) {
+@@ -1640,7 +1641,6 @@
+   sprintf(MsgBuf, DataPortFormat, DEFAULT_PORT);
+ 
+   /* tell it our clients */
+-  ml= strlen(MsgBuf);
+   for (p=0; p

[gentoo-commits] gentoo-x86 commit in media-video/avidemux: avidemux-9999.ebuild avidemux-2.6.7.ebuild avidemux-2.6.5-r1.ebuild avidemux-2.6.5.ebuild avidemux-2.6.8.ebuild ChangeLog

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:41:55

  Modified: avidemux-.ebuild avidemux-2.6.7.ebuild
avidemux-2.6.5-r1.ebuild avidemux-2.6.5.ebuild
avidemux-2.6.8.ebuild ChangeLog
  Log:
  Update xvba dependency to use bundled vaapi in x11-drivers/ati-drivers. See 
bug #534710
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.6  media-video/avidemux/avidemux-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-.ebuild?r1=1.5&r2=1.6

Index: avidemux-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- avidemux-.ebuild10 Aug 2014 20:57:26 -  1.5
+++ avidemux-.ebuild6 Jan 2015 19:41:55 -   1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-.ebuild,v 
1.5 2014/08/10 20:57:26 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-.ebuild,v 
1.6 2015/01/06 19:41:55 mrueg Exp $
 
 EAPI="5"
 
@@ -33,8 +33,10 @@
opengl? ( virtual/opengl:0 )
qt4? ( >=dev-qt/qtgui-4.8.3:4 )
vaapi? ( x11-libs/libva:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-"
+   video_cards_fglrx? (
+   || ( >=x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )"
 RDEPEND="$DEPEND"
 PDEPEND="~media-libs/avidemux-plugins-${PV}:${SLOT}[opengl?,qt4?]"
 



1.3  media-video/avidemux/avidemux-2.6.7.ebuild

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

Index: avidemux-2.6.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avidemux-2.6.7.ebuild   10 Aug 2014 20:57:26 -  1.2
+++ avidemux-2.6.7.ebuild   6 Jan 2015 19:41:55 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild,v 1.2 
2014/08/10 20:57:26 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild,v 1.3 
2015/01/06 19:41:55 mrueg Exp $
 
 EAPI="5"
 
@@ -33,8 +33,10 @@
opengl? ( virtual/opengl:0 )
qt4? ( >=dev-qt/qtgui-4.8.3:4 )
vaapi? ( x11-libs/libva:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-"
+   video_cards_fglrx? (
+   || ( >=x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )"
 RDEPEND="$DEPEND"
 PDEPEND="~media-libs/avidemux-plugins-${PV}:${SLOT}[opengl?,qt4?]"
 



1.3  media-video/avidemux/avidemux-2.6.5-r1.ebuild

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

Index: avidemux-2.6.5-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avidemux-2.6.5-r1.ebuild10 Aug 2014 20:57:26 -  1.2
+++ avidemux-2.6.5-r1.ebuild6 Jan 2015 19:41:55 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild,v 1.2 
2014/08/10 20:57:26 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild,v 1.3 
2015/01/06 19:41:55 mrueg Exp $
 
 EAPI="5"
 
@@ -

[gentoo-commits] gentoo-x86 commit in media-libs/avidemux-core: avidemux-core-2.6.7.ebuild avidemux-core-2.6.8.ebuild avidemux-core-9999.ebuild avidemux-core-2.6.5.ebuild ChangeLog

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:39:11

  Modified: avidemux-core-2.6.7.ebuild
avidemux-core-2.6.8.ebuild
avidemux-core-.ebuild
avidemux-core-2.6.5.ebuild ChangeLog
  Log:
  Update xvba dependency to use bundled vaapi in x11-drivers/ati-drivers. See 
bug #534710
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.5  media-libs/avidemux-core/avidemux-core-2.6.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild?r1=1.4&r2=1.5

Index: avidemux-core-2.6.7.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- avidemux-core-2.6.7.ebuild  10 Aug 2014 21:07:42 -  1.4
+++ avidemux-core-2.6.7.ebuild  6 Jan 2015 19:39:11 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild,v 
1.4 2014/08/10 21:07:42 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild,v 
1.5 2015/01/06 19:39:11 mrueg Exp $
 
 EAPI="5"
 
@@ -36,8 +36,10 @@
xv? ( x11-libs/libXv:0 )
vaapi? ( x11-libs/libva:0 )
vdpau? ( x11-libs/libvdpau:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-"
+   video_cards_fglrx? (
+   || ( >=x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )"
 RDEPEND="
nls? ( virtual/libintl:0 )
$DEPEND



1.3  media-libs/avidemux-core/avidemux-core-2.6.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild?r1=1.2&r2=1.3

Index: avidemux-core-2.6.8.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avidemux-core-2.6.8.ebuild  10 Aug 2014 21:07:42 -  1.2
+++ avidemux-core-2.6.8.ebuild  6 Jan 2015 19:39:11 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild,v 
1.2 2014/08/10 21:07:42 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild,v 
1.3 2015/01/06 19:39:11 mrueg Exp $
 
 EAPI="5"
 
@@ -36,8 +36,10 @@
xv? ( x11-libs/libXv:0 )
vaapi? ( x11-libs/libva:0 )
vdpau? ( x11-libs/libvdpau:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-"
+   video_cards_fglrx? (
+   || ( >=x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )"
 RDEPEND="
$DEPEND
nls? ( virtual/libintl:0 )



1.9  media-libs/avidemux-core/avidemux-core-.ebuild

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

Index: avidemux-core-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- avidemux-core-.ebuild   10 Aug 2014 21:07:42 -  1.8
+++ avidemux-core-.ebuild   6 Jan 2015 19:39:11 -   1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-.ebuild,v 
1.8 2014/08/10 21:07:42 slyfox Exp $
+# $He

[gentoo-commits] gentoo-x86 commit in x11-libs/libva: libva-1.4.0.ebuild libva-1.4.1.ebuild libva-9999.ebuild libva-1.3.1.ebuild libva-1.5.0.ebuild ChangeLog

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:33:30

  Modified: libva-1.4.0.ebuild libva-1.4.1.ebuild
libva-.ebuild libva-1.3.1.ebuild
libva-1.5.0.ebuild ChangeLog
  Log:
  Update xvba dependency to use bundled vaapi in x11-drivers/ati-drivers. See 
bug #534710
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.2  x11-libs/libva/libva-1.4.0.ebuild

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

Index: libva-1.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libva-1.4.0.ebuild  24 Oct 2014 07:00:48 -  1.1
+++ libva-1.4.0.ebuild  6 Jan 2015 19:33:30 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.0.ebuild,v 1.1 
2014/10/24 07:00:48 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.0.ebuild,v 1.2 
2015/01/06 19:33:30 mrueg Exp $
 
 EAPI=5
 
@@ -52,7 +52,10 @@
virtual/pkgconfig"
 PDEPEND="video_cards_nvidia? ( 
>=x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
vdpau? ( >=x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
-   video_cards_fglrx? ( >=x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] 
)
+   video_cards_fglrx? (
+   || ( >=x11-drivers/ati-drivers-14.12-r3[${MULTILIB_USEDEP}]
+   >=x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] )
+   )
video_cards_intel? ( 
>=x11-libs/libva-intel-driver-1.2.2-r1[${MULTILIB_USEDEP}] )
"
 



1.2  x11-libs/libva/libva-1.4.1.ebuild

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

Index: libva-1.4.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libva-1.4.1.ebuild  27 Oct 2014 11:03:15 -  1.1
+++ libva-1.4.1.ebuild  6 Jan 2015 19:33:30 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.1.ebuild,v 1.1 
2014/10/27 11:03:15 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.1.ebuild,v 1.2 
2015/01/06 19:33:30 mrueg Exp $
 
 EAPI=5
 
@@ -52,7 +52,10 @@
virtual/pkgconfig"
 PDEPEND="video_cards_nvidia? ( 
>=x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
vdpau? ( >=x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
-   video_cards_fglrx? ( >=x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] 
)
+   video_cards_fglrx? (
+   || ( >=x11-drivers/ati-drivers-14.12-r3[${MULTILIB_USEDEP}]
+   >=x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] )
+   )
video_cards_intel? ( 
>=x11-libs/libva-intel-driver-1.2.2-r1[${MULTILIB_USEDEP}] )
"
 



1.23 x11-libs/libva/libva-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva/libva-.ebuild?rev=1.23&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva/libva-.ebuild?rev=1.23&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva/libva-.ebuild?r1=1.22&r2=1.23

Index: libva-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-.ebuild,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- libva-.ebuild   3 Nov 2014 10:25:21 -   1.22
+++ libva-.ebuild   6 Jan 2015 19:33:30 -   1.23
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-.ebuild,v 1.22 
2014/11/03 10:25:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva

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

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:26:12

  Modified: ChangeLog
  Added:ati-drivers-14.12-r3.ebuild
  Log:
  Proxy commit for Emil Karlson. Fixes bug #534710 and bug #534398.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

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

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v
retrieving revision 1.372
retrieving revision 1.373
diff -u -r1.372 -r1.373
--- ChangeLog   6 Jan 2015 18:37:08 -   1.372
+++ ChangeLog   6 Jan 2015 19:26:12 -   1.373
@@ -1,6 +1,11 @@
 # ChangeLog for x11-drivers/ati-drivers
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.372 
2015/01/06 18:37:08 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.373 
2015/01/06 19:26:12 mrueg Exp $
+
+*ati-drivers-14.12-r3 (06 Jan 2015)
+
+  06 Jan 2015; Manuel Rüger  +ati-drivers-14.12-r3.ebuild:
+  Proxy commit for Emil Karlson. Fixes bug #534710 and bug #534398.
 
   06 Jan 2015; Manuel Rüger  -ati-drivers-14.12-r1.ebuild,
   -ati-drivers-14.6_beta1.ebuild, -ati-drivers-14.9.ebuild:



1.1  x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild

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

Index: ati-drivers-14.12-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild,v 
1.1 2015/01/06 19:26:12 mrueg Exp $

EAPI=5

MULTILIB_COMPAT=( abi_x86_{32,64} )
inherit eutils multilib-build linux-info linux-mod toolchain-funcs versionator 
pax-utils

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

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

RESTRICT="bindist test fetch"

RDEPEND="
<=x11-base/xorg-server-1.16.49[-minimal]
>=app-admin/eselect-opengl-1.0.7
app-admin/eselect-opencl
sys-power/acpid
x11-apps/xauth
x11-libs/libX11
x11-libs/libXext
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
virtual/glu
!x11-libs/xvba-video
abi_x86_32? (
|| (
virtual/glu[abi_x86_32]
app-emulation/emul-linux-x86-opengl
)
|| (
(
x11-libs/libX11[abi_x86_32]
x11-libs/libXext[abi_x86_32]
x11-libs/libXinerama[abi_x86_32]
x11-libs/libXrandr[abi_x86_32]
x11-libs/libXrender[abi_x86_32]
)
app-emulation/emul-linux-x86-xlibs
)
)
qt4? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libXcursor
x11-libs/libXfixes
x11-libs/libXxf86vm
dev-qt/qtcore:4
dev-qt/qtgui:4[accessibility]
)
"
if [[ legacy != ${SLOT} ]]; then
RDEPEND="${RDEPEND}
!x11-drivers/ati-drivers:legacy"
else
RDEPEND="${RDEPEND}
!x11-drivers/ati-drivers:1"
fi

DEPEND="${RDEPEND}
x11-proto/inputproto
x11-proto/xf86miscproto
x11-proto/xf86vidmodeproto
x11-proto/xine

[gentoo-commits] gentoo-x86 commit in games-puzzle/xwelltris: xwelltris-1.0.1.ebuild ChangeLog

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 19:17:09

  Modified: xwelltris-1.0.1.ebuild ChangeLog
  Log:
  EAPI=5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.16 games-puzzle/xwelltris/xwelltris-1.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild?rev=1.16&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild?rev=1.16&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild?r1=1.15&r2=1.16

Index: xwelltris-1.0.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- xwelltris-1.0.1.ebuild  15 Mar 2008 04:34:31 -  1.15
+++ xwelltris-1.0.1.ebuild  6 Jan 2015 19:17:09 -   1.16
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild,v 1.15 
2008/03/15 04:34:31 mr_bones_ Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild,v 1.16 
2015/01/06 19:17:09 mr_bones_ Exp $
 
+EAPI=5
 inherit games
 
 DESCRIPTION="2.5D tetris like game"
@@ -13,26 +14,25 @@
 KEYWORDS="amd64 ppc x86"
 IUSE=""
 
-DEPEND="media-libs/libsdl
-   media-libs/sdl-image"
+DEPEND="media-libs/libsdl[video]
+   media-libs/sdl-image[gif]"
 
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
+src_prepare() {
sed -i \
-e '/INSTALL_PROGRAM/s/-s //' \
-   src/Make.common.in \
-   || die "sed Make.common.in failed"
+   src/Make.common.in || die
sed -i \
-e "/GLOBAL_SEARCH/s:\".*\":\"${GAMES_DATADIR}/${PN}\":" \
-   src/include/globals.h.in \
-   || die "sed globals.h.in failed"
+   src/include/globals.h.in || die
 }
 
-src_compile() {
+src_configure() {
# configure/build process is pretty messed up
-   egamesconf --with-sdl || die
-   emake -C src || die "emake failed"
+   egamesconf --with-sdl
+}
+
+src_compile() {
+   emake -C src
 }
 
 src_install() {
@@ -40,8 +40,7 @@
emake install \
INSTDIR="${D}/${GAMES_BINDIR}" \
INSTLIB="${D}/${GAMES_DATADIR}/${PN}" \
-   INSTMAN=/usr/share/man \
-   || die "emake install failed"
+   INSTMAN=/usr/share/man
dodoc AUTHORS Changelog README*
prepgamesdirs
 }



1.14 games-puzzle/xwelltris/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/ChangeLog?rev=1.14&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/ChangeLog?rev=1.14&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/xwelltris/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   15 Mar 2008 04:34:31 -  1.13
+++ ChangeLog   6 Jan 2015 19:17:09 -   1.14
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/xwelltris
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xwelltris/ChangeLog,v 1.13 
2008/03/15 04:34:31 mr_bones_ Exp $
+# Copyright 2000-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xwelltris/ChangeLog,v 1.14 
2015/01/06 19:17:09 mr_bones_ Exp $
+
+  06 Jan 2015; Michael Sterrett  xwelltris-1.0.1.ebuild:
+  EAPI=5
 
   15 Mar 2008; Michael Sterrett 
   xwelltris-1.0.1.ebuild:






[gentoo-commits] gentoo-x86 commit in games-puzzle/xlogical: xlogical-1.0.7.ebuild ChangeLog

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 19:07:52

  Modified: xlogical-1.0.7.ebuild ChangeLog
  Log:
  EAPI=5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.10 games-puzzle/xlogical/xlogical-1.0.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild?r1=1.9&r2=1.10

Index: xlogical-1.0.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xlogical-1.0.7.ebuild   21 Jul 2013 11:11:24 -  1.9
+++ xlogical-1.0.7.ebuild   6 Jan 2015 19:07:52 -   1.10
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild,v 1.9 
2013/07/21 11:11:24 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild,v 1.10 
2015/01/06 19:07:52 mr_bones_ Exp $
 
-EAPI=2
+EAPI=5
 inherit autotools versionator eutils games
 
 MY_PV=$(replace_version_separator 2 '-' )
@@ -17,7 +17,7 @@
 KEYWORDS="amd64 x86"
 IUSE="alt_gfx"
 
-RDEPEND="media-libs/libsdl
+RDEPEND="media-libs/libsdl[sound,video]
media-libs/sdl-image[jpeg]
media-libs/sdl-mixer[mod]"
 DEPEND="${RDEPEND}
@@ -39,18 +39,19 @@
epatch \
"${FILESDIR}"/${P}-gcc41.patch \
"${FILESDIR}"/${P}-gcc43.patch
+   mv configure.in configure.ac
eautoreconf
 }
 
 src_install() {
-   dogamesbin ${PN} || die
+   dogamesbin ${PN}
 
insinto "${GAMES_DATADIR}"/${PN}
-   doins -r ${PN}.{properties,levels} music sound images || die
+   doins -r ${PN}.{properties,levels} music sound images
find "${D}" -name "Makefile*" -exec rm -f '{}' +
 
insinto "${GAMES_STATEDIR}"/${PN}
-   doins ${PN}.scores || die
+   doins ${PN}.scores
fperms 0660 "${GAMES_STATEDIR}"/${PN}/${PN}.scores
 
dodoc AUTHORS ChangeLog NEWS README TODO



1.8  games-puzzle/xlogical/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   21 Jul 2013 11:11:24 -  1.7
+++ ChangeLog   6 Jan 2015 19:07:52 -   1.8
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/xlogical
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/ChangeLog,v 1.7 
2013/07/21 11:11:24 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/ChangeLog,v 1.8 
2015/01/06 19:07:52 mr_bones_ Exp $
+
+  06 Jan 2015; Michael Sterrett  xlogical-1.0.7.ebuild:
+  EAPI=5
 
   21 Jul 2013; Agostino Sarubbo  xlogical-1.0.7.ebuild:
   Stable for amd64, wrt bug #477426






[gentoo-commits] gentoo-x86 commit in games-puzzle/icebreaker: icebreaker-1.9.6.ebuild ChangeLog

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 18:56:45

  Modified: icebreaker-1.9.6.ebuild ChangeLog
  Log:
  use epatch
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.3  games-puzzle/icebreaker/icebreaker-1.9.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild?r1=1.2&r2=1.3

Index: icebreaker-1.9.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- icebreaker-1.9.6.ebuild 24 Jun 2013 20:45:12 -  1.2
+++ icebreaker-1.9.6.ebuild 6 Jan 2015 18:56:45 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild,v 1.2 
2013/06/24 20:45:12 tupone Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild,v 1.3 
2015/01/06 18:56:45 mr_bones_ Exp $
 
 EAPI=5
 inherit eutils games
@@ -18,10 +18,13 @@
media-libs/sdl-mixer"
 DEPEND="${RDEPEND}"
 
-PATCHES=( "${FILESDIR}"/${P}-ldflags.patch
-   "${FILESDIR}"/${P}-gentoo.patch
-   "${FILESDIR}"/${P}-parallell-install.patch
-   "${FILESDIR}"/${P}-ovfl.patch )
+src_prepare() {
+   epatch \
+   "${FILESDIR}"/${P}-ldflags.patch \
+   "${FILESDIR}"/${P}-gentoo.patch \
+   "${FILESDIR}"/${P}-parallell-install.patch \
+   "${FILESDIR}"/${P}-ovfl.patch
+}
 
 src_compile() {
emake \



1.19 games-puzzle/icebreaker/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/ChangeLog?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/ChangeLog?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/icebreaker/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   24 Jun 2013 20:45:12 -  1.18
+++ ChangeLog   6 Jan 2015 18:56:45 -   1.19
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/icebreaker
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/icebreaker/ChangeLog,v 1.18 
2013/06/24 20:45:12 tupone Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/icebreaker/ChangeLog,v 1.19 
2015/01/06 18:56:45 mr_bones_ Exp $
+
+  06 Jan 2015; Michael Sterrett  icebreaker-1.9.6.ebuild:
+  use epatch
 
   24 Jun 2013; Tupone Alfredo  icebreaker-1.9.6.ebuild,
   +files/icebreaker-1.9.6-ovfl.patch:
@@ -88,4 +91,3 @@
   files/digest-icebreaker-1.2.1 :
 
   New game
-






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/metastructure/herds: herds.xml

2015-01-06 Thread Marc Schiffbauer (mschiff)
mschiff 15/01/06 18:49:08

  Modified: herds.xml
  Log:
  added myself to net-mail

Revision  ChangesPath
1.1134   xml/htdocs/proj/en/metastructure/herds/herds.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1134&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1134&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?r1=1.1133&r2=1.1134

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1133
retrieving revision 1.1134
diff -u -r1.1133 -r1.1134
--- herds.xml   30 Dec 2014 16:14:28 -  1.1133
+++ herds.xml   6 Jan 2015 18:49:08 -   1.1134
@@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
 
-   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1133 
2014/12/30 16:14:28 mjo Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1134 
2015/01/06 18:49:08 mschiff Exp $
 
 -->
 
@@ -775,6 +775,10 @@
 e...@gentoo.org
 Eray Aslan
   
+  
+msch...@gentoo.org
+Marc Schiffbauer
+  
 
 
   wxwidgets






[gentoo-commits] gentoo-x86 commit in net-analyzer/ippl: metadata.xml ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 18:40:04

  Modified: metadata.xml ChangeLog
  Log:
  Remove short .
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.2  net-analyzer/ippl/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ippl/metadata.xml?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ippl/metadata.xml?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ippl/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ippl/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml9 Jul 2004 20:15:07 -   1.1
+++ metadata.xml6 Jan 2015 18:40:04 -   1.2
@@ -2,5 +2,4 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 
 netmon
-A daemon which logs TCP/UDP/ICMP packets
 



1.27 net-analyzer/ippl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ippl/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   12 Jul 2014 18:04:05 -  1.26
+++ ChangeLog   6 Jan 2015 18:40:04 -   1.27
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/ippl
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ippl/ChangeLog,v 1.26 
2014/07/12 18:04:05 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ippl/ChangeLog,v 1.27 
2015/01/06 18:40:04 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers  metadata.xml:
+  Remove short .
 
 *ippl-1.4.14-r4 (12 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in net-analyzer/cryptcat: cryptcat-1.2.1-r2.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 18:37:46

  Modified: cryptcat-1.2.1-r2.ebuild ChangeLog
  Log:
  Update HOMEPAGE.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.2  net-analyzer/cryptcat/cryptcat-1.2.1-r2.ebuild

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

Index: cryptcat-1.2.1-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/cryptcat/cryptcat-1.2.1-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cryptcat-1.2.1-r2.ebuild10 Jul 2014 22:14:41 -  1.1
+++ cryptcat-1.2.1-r2.ebuild6 Jan 2015 18:37:46 -   1.2
@@ -1,12 +1,12 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/cryptcat/cryptcat-1.2.1-r2.ebuild,v 1.1 
2014/07/10 22:14:41 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/cryptcat/cryptcat-1.2.1-r2.ebuild,v 1.2 
2015/01/06 18:37:46 jer Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs
 
 DESCRIPTION="netcat clone extended with twofish encryption"
-HOMEPAGE="http://farm9.org/Cryptcat/";
+HOMEPAGE="http://cryptcat.sourceforge.net/";
 SRC_URI="mirror://sourceforge/${PN}/${PN}-unix-${PV}.tar"
 
 LICENSE="GPL-2"



1.24 net-analyzer/cryptcat/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cryptcat/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   10 Jul 2014 22:14:41 -  1.23
+++ ChangeLog   6 Jan 2015 18:37:46 -   1.24
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/cryptcat
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cryptcat/ChangeLog,v 1.23 
2014/07/10 22:14:41 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cryptcat/ChangeLog,v 1.24 
2015/01/06 18:37:46 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers  cryptcat-1.2.1-r2.ebuild:
+  Update HOMEPAGE.
 
 *cryptcat-1.2.1-r2 (10 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in x11-drivers/ati-drivers: ChangeLog ati-drivers-14.6_beta1.ebuild ati-drivers-14.9.ebuild ati-drivers-14.12-r1.ebuild

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 18:37:08

  Modified: ChangeLog
  Removed:  ati-drivers-14.6_beta1.ebuild
ati-drivers-14.9.ebuild ati-drivers-14.12-r1.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

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

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v
retrieving revision 1.371
retrieving revision 1.372
diff -u -r1.371 -r1.372
--- ChangeLog   5 Jan 2015 13:31:00 -   1.371
+++ ChangeLog   6 Jan 2015 18:37:08 -   1.372
@@ -1,6 +1,10 @@
 # ChangeLog for x11-drivers/ati-drivers
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.371 
2015/01/05 13:31:00 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.372 
2015/01/06 18:37:08 mrueg Exp $
+
+  06 Jan 2015; Manuel Rüger  -ati-drivers-14.12-r1.ebuild,
+  -ati-drivers-14.6_beta1.ebuild, -ati-drivers-14.9.ebuild:
+  Remove old.
 
 *ati-drivers-14.12-r2 (05 Jan 2015)
 






[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: a306769b5d55e5ee95f206930352de15e760140c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  6 18:23:45 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  6 18:23:45 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=a306769b

misc/elf-abi: sort out mips

---
 misc/elf-abi/elf-abi.c | 26 --
 1 file changed, 16 insertions(+), 10 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index 13ec542..5f47212 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -74,8 +74,8 @@
 #define EM_IA_64   50  /* ia64 */
 #define EM_68K_BE  0x0400  /* m68k - big endian reordering of 
EM_68K = 4 */
 
-#define EM_MIPS 8  /* MIPS R3000 big-endian */
-#define EM_MIPS_RS3_LE 10  /* MIPS R3000 little-endian */
+#define EM_MIPS8   /* mips */
+#define EM_MIPS_BE 0x800   /* mips - big endian reordering of 
EM_MIPS = 8 */
 
 #define EM_PPC_BE  0x1400  /* ppc - big endian reordering of 
EM_PPC = 20 */
 #define EM_PPC64_BE0x1500  /* ppc64 - bit endian reordering of 
EM_PPC64 = 21 */
@@ -83,12 +83,12 @@
 #define EM_SH  42  /* Hitachi SH */
 #define EM_SPARC32_BE  0x1200  /* sparc - big endian reordering of 
EM_SPARC32PLUS = 18 */
 #define EM_SPARC64_BE  0x2B00  /* sparc - big endian reordinger of 
EM_SPARCV9 = 43 */
-#define EM_386  3  /* x86 */
+#define EM_386 3   /* x86 */
 #define EM_X86_64  62  /* amd64 */
 
 /* The arm and mips ABI flags housed in e_flags */
-#define EF_MIPS_ABI0xF000  /* Mask for mips ABI */
-#define E_MIPS_ABI_O32 0x1000  /* Value for o32
*/
+#define EF_MIPS_ABI2   0x0020  /* Mask for mips ABI */
+#define EF_MIPS_ABI2_BE0x2000  /* Mask for mips ABI */
 #define EF_ARM_EABIMASK0XFF00  /* Mask for arm EABI - 
we dont' destinguish versions */
 
 
@@ -123,15 +123,23 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
/* mips: We support o32, n32 and n64.  The first is 32-bits and 
the
 * latter two are 64-bit ABIs.
 */
-   case EM_MIPS_RS3_LE:
case EM_MIPS:
if (width == 64)
return "mips_n64";
else
-   if ((e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
-   return "mips_o32";
+   if (e_flags & EF_MIPS_ABI2)
+   return "mips_n32";
else
+   return "mips_o32";
+
+   case EM_MIPS_BE:
+   if (width == 64)
+   return "mips_n64";
+   else
+   if (e_flags & EF_MIPS_ABI2_BE)
return "mips_n32";
+   else
+   return "mips_o32";
 
/* ia64: We support only one 64-bit ABI. */
case EM_IA_64:
@@ -253,8 +261,6 @@ main(int argc, char* argv[])
err(1, "lseek() e_machine failed");
if (read(fd, &e_machine, 2) == -1)
err(1, "read() e_machine failed");
-   printf("%x\n", e_machine);
-   printf("%d\n", e_machine);
 
if (lseek(fd, e_flags_offset, SEEK_SET) == -1)
err(1, "lseek() e_flags failed");



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

2015-01-06 Thread Emil Karlson
commit: de91c1301eedb830d7dd9d0781ebe23b3e3df4fc
Author: Emil Karlson  gmail  com>
AuthorDate: Tue Jan  6 18:08:08 2015 +
Commit: Emil Karlson  gmail  com>
CommitDate: Tue Jan  6 18:08:08 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=de91c130

x11-drivers/ati-drivers: make bundled libva driver installation optional

---
 x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild | 6 +++---
 x11-drivers/ati-drivers/metadata.xml| 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild 
b/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild
index 2b31c43..f2d4694 100644
--- a/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild
+++ b/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild
@@ -17,7 +17,7 @@ 
DRIVERS_URI="mirror://gentoo/amd-catalyst-omega-14.12-linux-run-installers.zip"
 
XVBA_SDK_URI="http://developer.amd.com/wordpress/media/2012/10/xvba-sdk-0.74-404001.tar.gz";
 SRC_URI="${DRIVERS_URI} ${XVBA_SDK_URI}"
 FOLDER_PREFIX="common/"
-IUSE="debug +modules qt4 static-libs pax_kernel"
+IUSE="debug +modules qt4 static-libs pax_kernel +internal-va-driver"
 
 LICENSE="AMD GPL-2 QPL-1.0"
 KEYWORDS="-* ~amd64 ~x86"
@@ -36,7 +36,7 @@ RDEPEND="
x11-libs/libXrandr
x11-libs/libXrender
virtual/glu
-   !x11-libs/xvba-video
+   internal-va-driver? ( !x11-libs/xvba-video )
abi_x86_32? (
|| (
virtual/glu[abi_x86_32]
@@ -559,7 +559,7 @@ src_install-libs() {
doheader xvba_sdk/include/amdxvba.h
 
# VA-API internal wrapper
-   dosym /usr/$(get_libdir)/libXvBAW.so.1.0 
/usr/$(get_libdir)/va/drivers/fglrx_drv_video.so
+   use internal-va-driver && dosym /usr/$(get_libdir)/libXvBAW.so.1.0 
/usr/$(get_libdir)/va/drivers/fglrx_drv_video.so
 
if use pax_kernel; then
pax-mark m "${D}"/usr/lib*/opengl/ati/lib/libGL.so.1.2 || die 
"pax-mark failed"

diff --git a/x11-drivers/ati-drivers/metadata.xml 
b/x11-drivers/ati-drivers/metadata.xml
index dc12ac1..6574c13 100644
--- a/x11-drivers/ati-drivers/metadata.xml
+++ b/x11-drivers/ati-drivers/metadata.xml
@@ -13,5 +13,6 @@
Build the kernel modules
Do a potentially dangerous 
binary search and replace to disable watermark
Enable pax kernel specific 
patches
+   Install bundled libva driver to 
replace x11-libs/xvba-video

 



[gentoo-commits] proj/x11:master commit in: x11-base/xorg-server/, x11-base/xorg-server/files/

2015-01-06 Thread Chi-Thanh Christopher Nguyen
commit: 43090b8b8196f06d1205776a4831dc83dc1e6282
Author: Chi-Thanh Christopher Nguyen  gentoo  org>
AuthorDate: Tue Jan  6 18:04:52 2015 +
Commit: Chi-Thanh Christopher Nguyen  cs  tu-berlin 
 de>
CommitDate: Tue Jan  6 18:04:52 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=43090b8b

x11-base/xorg-server: make ia64 patch apply again

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

---
 .../files/xorg-server-1.17-ia64-fix_inx_outx.patch | 59 ++
 x11-base/xorg-server/xorg-server-.ebuild   |  1 +
 2 files changed, 60 insertions(+)

diff --git 
a/x11-base/xorg-server/files/xorg-server-1.17-ia64-fix_inx_outx.patch 
b/x11-base/xorg-server/files/xorg-server-1.17-ia64-fix_inx_outx.patch
new file mode 100644
index 000..84485c9
--- /dev/null
+++ b/x11-base/xorg-server/files/xorg-server-1.17-ia64-fix_inx_outx.patch
@@ -0,0 +1,59 @@
+diff --git a/hw/xfree86/common/compiler.h b/hw/xfree86/common/compiler.h
+index 1653574..fe881ee 100644
+--- a/hw/xfree86/common/compiler.h
 b/hw/xfree86/common/compiler.h
+@@ -286,6 +286,54 @@ extern _X_EXPORT unsigned int inl(unsigned int port);
+ #include 
+ #endif  /* __NetBSD__ */
+ 
++#elif defined(linux) && defined(__ia64__)
++/* for Linux on ia64, we use the LIBC _inx/_outx routines */
++/* note that the appropriate setup via "ioperm" needs to be done */
++/*  *before* any inx/outx is done. */
++
++extern _X_EXPORT void _outb(unsigned char val, unsigned long port);
++extern _X_EXPORT void _outw(unsigned short val, unsigned long port);
++extern _X_EXPORT void _outl(unsigned int val, unsigned long port);
++extern _X_EXPORT unsigned int _inb(unsigned long port);
++extern _X_EXPORT unsigned int _inw(unsigned long port);
++extern _X_EXPORT unsigned int _inl(unsigned long port);
++
++static __inline__ void
++outb(unsigned long port, unsigned char val)
++{
++_outb(val, port);
++}
++
++static __inline__ void
++outw(unsigned long port, unsigned short val)
++{
++_outw(val, port);
++}
++
++static __inline__ void
++outl(unsigned long port, unsigned int val)
++{
++_outl(val, port);
++}
++
++static __inline__ unsigned int
++inb(unsigned long port)
++{
++return _inb(port);
++}
++
++static __inline__ unsigned int
++inw(unsigned long port)
++{
++return _inw(port);
++}
++
++static __inline__ unsigned int
++inl(unsigned long port)
++{
++return _inl(port);
++}
++
+ #elif defined(__amd64__)
+ 
+ #include 

diff --git a/x11-base/xorg-server/xorg-server-.ebuild 
b/x11-base/xorg-server/xorg-server-.ebuild
index ec31957..25e94ef 100644
--- a/x11-base/xorg-server/xorg-server-.ebuild
+++ b/x11-base/xorg-server/xorg-server-.ebuild
@@ -131,6 +131,7 @@ REQUIRED_USE="!minimal? (
 
 PATCHES=(
"${UPSTREAMED_PATCHES[@]}"
+   "${FILESDIR}"/${PN}-1.17-ia64-fix_inx_outx.patch
"${FILESDIR}"/${PN}-1.12-unloadsubmodule.patch
 )
 



[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-2.1.1-r1.ebuild ChangeLog

2015-01-06 Thread Kristian Fiskerstrand (k_f)
k_f 15/01/06 17:54:26

  Modified: gnupg-2.1.1-r1.ebuild ChangeLog
  Log:
  Gnupg 2.1 require the internal dirmngr to be used and provide this by default 
so we make this a blocker
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xFC3B17DE05E136A0!)

Revision  ChangesPath
1.2  app-crypt/gnupg/gnupg-2.1.1-r1.ebuild

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

Index: gnupg-2.1.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnupg-2.1.1-r1.ebuild   31 Dec 2014 18:27:16 -  1.1
+++ gnupg-2.1.1-r1.ebuild   6 Jan 2015 17:54:26 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.1-r1.ebuild,v 1.1 
2014/12/31 18:27:16 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.1-r1.ebuild,v 1.2 
2015/01/06 17:54:26 k_f Exp $
 
 EAPI="5"
 
@@ -30,7 +30,8 @@
readline? ( sys-libs/readline )
smartcard? ( usb? ( virtual/libusb:0 ) )
"
-COMMON_DEPEND_BINS="|| ( app-crypt/pinentry app-crypt/pinentry-qt )"
+COMMON_DEPEND_BINS="|| ( app-crypt/pinentry app-crypt/pinentry-qt )
+  !app-crypt/dirmngr"
 
 # Existence of executables is checked during configuration.
 DEPEND="${COMMON_DEPEND_LIBS}



1.563app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.563&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.563&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.562&r2=1.563

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.562
retrieving revision 1.563
diff -u -r1.562 -r1.563
--- ChangeLog   31 Dec 2014 18:27:16 -  1.562
+++ ChangeLog   6 Jan 2015 17:54:26 -   1.563
@@ -1,6 +1,10 @@
 # ChangeLog for app-crypt/gnupg
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.562 
2014/12/31 18:27:16 alonbl Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.563 
2015/01/06 17:54:26 k_f Exp $
+
+  06 Jan 2015; Kristian Fiskerstrand  gnupg-2.1.1-r1.ebuild:
+  Gnupg 2.1 require the internal dirmngr to be used and provide this by default
+  so we make this a blocker
 
 *gnupg-2.0.26-r3 (31 Dec 2014)
 *gnupg-2.1.1-r1 (31 Dec 2014)






[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: 51e620eef945c3af2c2d8c92fedbacb99ba55d3d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  6 17:27:12 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  6 17:27:12 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=51e620ee

misc/elf-abi: sort out EM numbers for gentoo -- except mips

---
 misc/elf-abi/elf-abi.c | 116 +++--
 1 file changed, 55 insertions(+), 61 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index fb53391..13ec542 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -58,50 +58,38 @@
 #include 
 #include 
 
-/* We steal this from  but don't include it so as to not increase our 
dependancies. */
+/* We reorder the big endian EM_ numbers to avoid also reading endian 
information from
+ * the Elf file.  For a mapping between common macine names and EM_ see 
.  For a
+ * more complete mapping, see elfutil's machines[] defined in 
libebl/eblopenbackend.c.
+ */
 #defineELFMAG  "\177ELF"
 
 #define ELFCLASS32 1   /* 32-bit objects */
 #define ELFCLASS64 2   /* 64-bit objects */
 
-#define EM_SPARC2  /* SUN SPARC */
-#define EM_386  3  /* Intel 80386 */
-#define EM_68K  4  /* Motorola m68k family */
+#define EM_ALPHA   0x9026  /* alpha */
+#define EM_ARM 40  /* arm */
+#define EM_AARCH64 183 /* arm64 */
+#define EM_PARISC_BE   0x0F00  /* hppa - big endian reordering of 
EM_PARISC = 15 */
+#define EM_IA_64   50  /* ia64 */
+#define EM_68K_BE  0x0400  /* m68k - big endian reordering of 
EM_68K = 4 */
+
 #define EM_MIPS 8  /* MIPS R3000 big-endian */
 #define EM_MIPS_RS3_LE 10  /* MIPS R3000 little-endian */
-#define EM_PARISC  15  /* HPPA */
-#define EM_SPARC32PLUS 18  /* Sun's "v8plus" */
-#define EM_PPC 20  /* PowerPC */
-#define EM_PPC64   21  /* PowerPC 64-bit */
-#define EM_S39022  /* IBM S390 */
-#define EM_ARM 40  /* ARM */
-#define EM_FAKE_ALPHA  41  /* Digital Alpha */
-#define EM_SH  42  /* Hitachi SH */
-#define EM_SPARCV9 43  /* SPARC v9 64-bit */
-#define EM_IA_64   50  /* Intel Merced */
-#define EM_X86_64  62  /* AMD x86-64 architecture */
-#define EM_AARCH64 183 /* ARM AARCH64 */
-#define EM_ALPHA   0x9026  /* Unofficial, but needed in Gentoo */
-#define EM_HPPA0x0F00  /* Unofficial, but needed in 
Gentoo */
 
-#define EF_MIPS_ABI0xF000
-#define E_MIPS_ABI_O32 0x1000
+#define EM_PPC_BE  0x1400  /* ppc - big endian reordering of 
EM_PPC = 20 */
+#define EM_PPC64_BE0x1500  /* ppc64 - bit endian reordering of 
EM_PPC64 = 21 */
+#define EM_S390_BE 0x1600  /* s390 - big endian reordering of 
EM_S390 */
+#define EM_SH  42  /* Hitachi SH */
+#define EM_SPARC32_BE  0x1200  /* sparc - big endian reordering of 
EM_SPARC32PLUS = 18 */
+#define EM_SPARC64_BE  0x2B00  /* sparc - big endian reordinger of 
EM_SPARCV9 = 43 */
+#define EM_386  3  /* x86 */
+#define EM_X86_64  62  /* amd64 */
 
-#define EF_ARM_EABIMASK0XFF00
-
-
-int
-get_wordsize(uint8_t ei_class)
-{
-   switch (ei_class) {
-   case ELFCLASS32:
-   return 32;
-   case ELFCLASS64:
-   return 64;
-   default:
-   return 0;
-   }
-}
+/* The arm and mips ABI flags housed in e_flags */
+#define EF_MIPS_ABI0xF000  /* Mask for mips ABI */
+#define E_MIPS_ABI_O32 0x1000  /* Value for o32
*/
+#define EF_ARM_EABIMASK0XFF00  /* Mask for arm EABI - 
we dont' destinguish versions */
 
 
 char *
@@ -115,21 +103,8 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
 
/* alpha: We support only one 64-bit ABI. */
case EM_ALPHA:
-   case EM_FAKE_ALPHA:
return "alpha_64";
 
-   /* amd64 + x86: We support X86-64, X86-X32, and X86-32 ABI. The 
first
-* two are 64-bit ABIs and the third is 32-bit.  All three will 
run on
-* amd64 architecture, but only the 32-bit will run on the x86 
family.
-*/
-   case EM_X86_64:
-   if (width == 64)
-   return "x86_64";
-   else
-   return "x86_x32";
-   case EM_386:
-   return "x86_

[gentoo-commits] gentoo-x86 commit in media-plugins/vdr-rpihddevice: metadata.xml ChangeLog vdr-rpihddevice-0.0.10.ebuild

2015-01-06 Thread Joerg Bornkessel (hd_brummy)
hd_brummy15/01/06 16:39:25

  Added:metadata.xml ChangeLog
vdr-rpihddevice-0.0.10.ebuild
  Log:
  initial commit, taken from vdr-devel overlay
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
34C2808A)

Revision  ChangesPath
1.1  media-plugins/vdr-rpihddevice/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rpihddevice/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rpihddevice/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

http://www.gentoo.org/dtd/metadata.dtd";>

media-tv

v...@gentoo.org
Gentoo VDR Project





1.1  media-plugins/vdr-rpihddevice/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rpihddevice/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rpihddevice/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for media-plugins/vdr-rpihddevice
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-rpihddevice/ChangeLog,v 
1.1 2015/01/06 16:39:25 hd_brummy Exp $

*vdr-rpihddevice-0.0.10 (06 Jan 2015)

  06 Jan 2015; Joerg Bornkessel 
  +vdr-rpihddevice-0.0.10.ebuild, +metadata.xml:
  initial commit, taken from vdr-devel overlay




1.1  media-plugins/vdr-rpihddevice/vdr-rpihddevice-0.0.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rpihddevice/vdr-rpihddevice-0.0.10.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rpihddevice/vdr-rpihddevice-0.0.10.ebuild?rev=1.1&content-type=text/plain

Index: vdr-rpihddevice-0.0.10.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-plugins/vdr-rpihddevice/vdr-rpihddevice-0.0.10.ebuild,v
 1.1 2015/01/06 16:39:25 hd_brummy Exp $

EAPI=5

inherit vdr-plugin-2

VERSION="1817" #every bump, new version

DESCRIPTION="VDR Plugin: Output Device for Raspberry Pi"
HOMEPAGE="http://projects.vdr-developer.org/projects/plg-rpihddevice";
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"

KEYWORDS="~arm"
SLOT="0"
LICENSE="GPL-2"
IUSE=""

DEPEND=">=media-video/vdr-2
>=media-libs/raspberrypi-userland-0_pre20140117
virtual/ffmpeg"
RDEPEND="${DEPEND}"






[gentoo-commits] gentoo-x86 commit in media-plugins/vdr-rpihddevice: - New directory

2015-01-06 Thread Joerg Bornkessel (hd_brummy)
hd_brummy15/01/06 16:36:59

  Log:
  Directory /var/cvsroot/gentoo-x86/media-plugins/vdr-rpihddevice added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-python/keyring: ChangeLog keyring-3.7.ebuild

2015-01-06 Thread JosA MarAa Alonso (nimiux)
nimiux  15/01/06 16:18:19

  Modified: ChangeLog keyring-3.7.ebuild
  Log:
  Stable for amd64 wrt bug #524690
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.18 dev-python/keyring/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/ChangeLog?rev=1.18&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/ChangeLog?rev=1.18&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/keyring/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   6 Dec 2014 11:37:37 -   1.17
+++ ChangeLog   6 Jan 2015 16:18:19 -   1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/keyring
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/ChangeLog,v 1.17 
2014/12/06 11:37:37 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/ChangeLog,v 1.18 
2015/01/06 16:18:19 nimiux Exp $
+
+  06 Jan 2015; Chema Alonso  keyring-3.7.ebuild:
+  Stable for amd64 wrt bug #524690
 
 *keyring-4.0 (06 Dec 2014)
 



1.5  dev-python/keyring/keyring-3.7.ebuild

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

Index: keyring-3.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/keyring/keyring-3.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- keyring-3.7.ebuild  28 Nov 2014 10:48:30 -  1.4
+++ keyring-3.7.ebuild  6 Jan 2015 16:18:19 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/keyring-3.7.ebuild,v 1.4 
2014/11/28 10:48:30 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/keyring-3.7.ebuild,v 1.5 
2015/01/06 16:18:19 nimiux Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} python{3_2,3_3,3_4} pypy pypy2_0)
@@ -11,7 +11,7 @@
 SRC_URI="mirror://pypi/k/${PN}/${P}.zip"
 
 LICENSE="PSF-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SLOT="0"
 IUSE="test"
 






[gentoo-commits] gentoo-x86 commit in media-video/mkvtoolnix: ChangeLog mkvtoolnix-7.5.0.ebuild

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 16:21:49

  Modified: ChangeLog mkvtoolnix-7.5.0.ebuild
  Log:
  Add build support for ruby-2.2 (bug #535738).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.212media-video/mkvtoolnix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?rev=1.212&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?rev=1.212&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?r1=1.211&r2=1.212

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog   5 Jan 2015 01:44:26 -   1.211
+++ ChangeLog   6 Jan 2015 16:21:49 -   1.212
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/mkvtoolnix
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.211 
2015/01/05 01:44:26 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.212 
2015/01/06 16:21:49 radhermit Exp $
+
+  06 Jan 2015; Tim Harder  mkvtoolnix-7.5.0.ebuild:
+  Add build support for ruby-2.2 (bug #535738).
 
 *mkvtoolnix-7.5.0 (05 Jan 2015)
 



1.2  media-video/mkvtoolnix/mkvtoolnix-7.5.0.ebuild

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

Index: mkvtoolnix-7.5.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-7.5.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mkvtoolnix-7.5.0.ebuild 5 Jan 2015 01:44:26 -   1.1
+++ mkvtoolnix-7.5.0.ebuild 6 Jan 2015 16:21:49 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-7.5.0.ebuild,v 1.1 
2015/01/05 01:44:26 radhermit Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-7.5.0.ebuild,v 1.2 
2015/01/06 16:21:49 radhermit Exp $
 
 EAPI=5
 WX_GTK_VER="3.0"
@@ -23,7 +23,7 @@
 
 # hacks to avoid using the ruby eclasses since this requires something similar
 # to the python-any-r1 eclass for ruby which currently doesn't exist
-RUBY_IMPLS=( ruby21 ruby20 )
+RUBY_IMPLS=( ruby22 ruby21 ruby20 )
 RUBY_BDEPS="$(for ruby_impl in "${RUBY_IMPLS[@]}"; do
echo "( $(ruby_atom ${ruby_impl}) virtual/rubygems:${ruby_impl} )"; 
done)"
 






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

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 16:15:05

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

Revision  ChangesPath
1.131media-gfx/pngcrush/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   27 Nov 2014 07:49:15 -  1.130
+++ ChangeLog   6 Jan 2015 16:15:05 -   1.131
@@ -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.130 
2014/11/27 07:49:15 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.131 
2015/01/06 16:15:05 radhermit Exp $
+
+*pngcrush-1.7.82 (06 Jan 2015)
+
+  06 Jan 2015; Tim Harder  +pngcrush-1.7.82.ebuild:
+  Version bump.
 
 *pngcrush-1.7.81 (27 Nov 2014)
 



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

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

Index: pngcrush-1.7.82.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.82.ebuild,v 
1.1 2015/01/06 16:15:05 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-libs/exiftool: ChangeLog exiftool-9.79.ebuild

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 16:14:43

  Modified: ChangeLog
  Added:exiftool-9.79.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.154media-libs/exiftool/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/exiftool/ChangeLog?rev=1.154&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/exiftool/ChangeLog?rev=1.154&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/exiftool/ChangeLog?r1=1.153&r2=1.154

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/exiftool/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog   14 Dec 2014 06:10:36 -  1.153
+++ ChangeLog   6 Jan 2015 16:14:43 -   1.154
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/exiftool
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/exiftool/ChangeLog,v 1.153 
2014/12/14 06:10:36 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/exiftool/ChangeLog,v 1.154 
2015/01/06 16:14:43 radhermit Exp $
+
+*exiftool-9.79 (06 Jan 2015)
+
+  06 Jan 2015; Tim Harder  +exiftool-9.79.ebuild:
+  Version bump.
 
 *exiftool-9.78 (14 Dec 2014)
 



1.1  media-libs/exiftool/exiftool-9.79.ebuild

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

Index: exiftool-9.79.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/exiftool/exiftool-9.79.ebuild,v 
1.1 2015/01/06 16:14:43 radhermit Exp $

EAPI=5

MY_PN=Image-ExifTool
MY_P=${MY_PN}-${PV}
inherit perl-module

DESCRIPTION="Read and write meta information in image, audio and video files"
HOMEPAGE="http://www.sno.phy.queensu.ca/~phil/exiftool/ ${HOMEPAGE}"
SRC_URI="http://www.sno.phy.queensu.ca/~phil/exiftool/${MY_P}.tar.gz";

SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos"

SRC_TEST="do"

src_install() {
perl-module_src_install
dohtml -r html/
}






[gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.9.ebuild

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 16:11:29

  Modified: ChangeLog
  Added:links-2.9.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.204www-client/links/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/links/ChangeLog?rev=1.204&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/links/ChangeLog?rev=1.204&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/links/ChangeLog?r1=1.203&r2=1.204

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.203
retrieving revision 1.204
diff -u -r1.203 -r1.204
--- ChangeLog   7 Feb 2014 23:55:36 -   1.203
+++ ChangeLog   6 Jan 2015 16:11:29 -   1.204
@@ -1,6 +1,11 @@
 # ChangeLog for www-client/links
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.203 
2014/02/07 23:55:36 creffett Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.204 
2015/01/06 16:11:29 radhermit Exp $
+
+*links-2.9 (06 Jan 2015)
+
+  06 Jan 2015; Tim Harder  +links-2.9.ebuild:
+  Version bump.
 
   07 Feb 2014; Chris Reffett  metadata.xml:
   Remove unused USE description



1.1  www-client/links/links-2.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/links/links-2.9.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/links/links-2.9.ebuild?rev=1.1&content-type=text/plain

Index: links-2.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.9.ebuild,v 1.1 
2015/01/06 16:11:29 radhermit Exp $

EAPI=5
inherit autotools eutils fdo-mime

DEBIAN_REVISION=2.9-2

DESCRIPTION="A fast and lightweight web browser running in both graphics and 
text mode"
HOMEPAGE="http://links.twibright.com/";
SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2

mirror://debian/pool/main/${PN:0:1}/${PN}2/${PN}2_${DEBIAN_REVISION}.debian.tar.xz"

LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~x64-solaris ~x86-solaris"
IUSE="bzip2 directfb fbcon gpm ipv6 jpeg livecd lzma ssl suid svga tiff unicode 
X zlib"

GRAPHICS_DEPEND="media-libs/libpng:0="

RDEPEND=">=sys-libs/ncurses-5.7-r7
bzip2? ( app-arch/bzip2 )
directfb? (
${GRAPHICS_DEPEND}
dev-libs/DirectFB
)
fbcon? ( ${GRAPHICS_DEPEND} )
gpm? ( sys-libs/gpm )
jpeg? ( virtual/jpeg:0 )
livecd? (
${GRAPHICS_DEPEND}
sys-libs/gpm
virtual/jpeg:0
)
lzma? ( app-arch/xz-utils )
ssl? ( dev-libs/openssl:0 )
svga? (
${GRAPHICS_DEPEND}
media-libs/svgalib
)
tiff? ( media-libs/tiff:0 )
X? (
${GRAPHICS_DEPEND}
x11-libs/libXext
)
zlib? ( sys-libs/zlib )"

DEPEND="${RDEPEND}
virtual/pkgconfig
fbcon? ( virtual/os-headers )
livecd? ( virtual/os-headers )"

REQUIRED_USE="!livecd? ( fbcon? ( gpm ) )
svga? ( suid )"

DOCS=( AUTHORS BRAILLE_HOWTO ChangeLog KEYS NEWS README SITES )

src_prepare() {
epatch "${WORKDIR}"/debian/patches/verify-ssl-certs-510417.diff

if use unicode; then
pushd intl >/dev/null
./gen-intl || die
./synclang || die
popd >/dev/null
fi

# error: conditional "am__fastdepCXX" was never defined (for 
eautoreconf)
sed -i \
-e '/AC_PROG_CXX/s:dnl ::' \
-e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
configure.in || die #467020

# Upstream configure produced by broken autoconf-2.13. This also fixes
# toolchain detection.
eautoreconf #131440 and #103483#c23
}

src_configure() {
local myconf

if use livecd; then
export ac_cv_lib_gpm_Gpm_Open=yes
myconf+=' --with-fb --with-libjpeg'
else
export ac_cv_lib_gpm_Gpm_Open=$(usex gpm)
fi

if use X || use fbcon || use directfb || use svga || use livecd; then
myconf+=' --enable-graphics'
fi

econf \
 

[gentoo-commits] gentoo-x86 commit in dev-python/pytest-runner: ChangeLog pytest-runner-2.1.2.ebuild

2015-01-06 Thread JosA MarAa Alonso (nimiux)
nimiux  15/01/06 16:01:54

  Modified: ChangeLog pytest-runner-2.1.2.ebuild
  Log:
  Stable for amd64 wrt bug #535358
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.10 dev-python/pytest-runner/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-runner/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-runner/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest-runner/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest-runner/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   6 Dec 2014 11:37:11 -   1.9
+++ ChangeLog   6 Jan 2015 16:01:54 -   1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest-runner
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest-runner/ChangeLog,v 1.9 
2014/12/06 11:37:11 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest-runner/ChangeLog,v 1.10 
2015/01/06 16:01:54 nimiux Exp $
+
+  06 Jan 2015; Chema Alonso  pytest-runner-2.1.2.ebuild:
+  Stable for amd64 wrt bug #535358
 
 *pytest-runner-2.1.2 (06 Dec 2014)
 



1.2  dev-python/pytest-runner/pytest-runner-2.1.2.ebuild

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

Index: pytest-runner-2.1.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/pytest-runner/pytest-runner-2.1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pytest-runner-2.1.2.ebuild  6 Dec 2014 11:37:11 -   1.1
+++ pytest-runner-2.1.2.ebuild  6 Jan 2015 16:01:54 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pytest-runner/pytest-runner-2.1.2.ebuild,v 
1.1 2014/12/06 11:37:11 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pytest-runner/pytest-runner-2.1.2.ebuild,v 
1.2 2015/01/06 16:01:54 nimiux Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI="mirror://pypi/p/${PN}/${P}.zip"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SLOT="0"
 IUSE=""
 






[gentoo-commits] gentoo-x86 commit in app-misc/reptyr: ChangeLog reptyr-0.6.ebuild

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 15:57:59

  Modified: ChangeLog
  Added:reptyr-0.6.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.14 app-misc/reptyr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/ChangeLog?rev=1.14&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/ChangeLog?rev=1.14&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/reptyr/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   28 Jul 2013 10:53:25 -  1.13
+++ ChangeLog   6 Jan 2015 15:57:59 -   1.14
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/reptyr
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/ChangeLog,v 1.13 2013/07/28 
10:53:25 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/ChangeLog,v 1.14 2015/01/06 
15:57:59 radhermit Exp $
+
+*reptyr-0.6 (06 Jan 2015)
+
+  06 Jan 2015; Tim Harder  +reptyr-0.6.ebuild:
+  Version bump.
 
   28 Jul 2013; Justin Lecher  -reptyr-0.4.ebuild,
   metadata.xml:



1.1  app-misc/reptyr/reptyr-0.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/reptyr-0.6.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/reptyr-0.6.ebuild?rev=1.1&content-type=text/plain

Index: reptyr-0.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/reptyr-0.6.ebuild,v 1.1 
2015/01/06 15:57:59 radhermit Exp $

EAPI=5

inherit toolchain-funcs flag-o-matic vcs-snapshot

DESCRIPTION="A utility to attach a running program to a new terminal"
HOMEPAGE="https://github.com/nelhage/reptyr";
SRC_URI="https://github.com/nelhage/${PN}/archive/${P}.tar.gz";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"

RESTRICT="test"

src_prepare() {
# respect CFLAGS
sed -i '/^override/d' Makefile || die
}

src_compile() {
append-cppflags -D_GNU_SOURCE
emake CC=$(tc-getCC) CFLAGS="${CFLAGS}"
}

src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
dodoc ChangeLog NOTES README.md
}






[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: c51a1996485f2836677d1a829e314e2a1fd85327
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  6 15:14:56 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  6 15:14:56 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=c51a1996

misc/elf-abi: add logic for mips abis

---
 misc/elf-abi/elf-abi.c | 147 -
 1 file changed, 85 insertions(+), 62 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index 0a271ba..fb53391 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -7,25 +7,21 @@
  *
  * Supported identifiers:
  *
- * alpha_{32,64}
- * arm_{32,64}
- * hppa_{32,64}
- * ia_{32,64}
- * m68k_{32,64}
+ * alpha_64
+ * arm_{oabi,eabi}
+ * arm_64
+ * hppa_32
+ * ia_64
+ * m68k_32
  * mips_{n32,n64,o32}
  * ppc_{32,64}
  * s390_{32,64}
- * sh_{32,64}
+ * sh_32
  * sparc_{32,64}
  * x86_{32,x32,64}
  *
  * NOTES:
  *
- * * The ABIs referenced by some of the above *_32 and *_64 identifiers
- *   may be imaginary, but they are listed anyway, since the goal is to
- *   establish a naming convention that is as consistent and uniform as
- *   possible.
- *
  * * The Elf header's e_ident[EI_OSABI] byte is completely ignored,
  *   since OS-independence is one of the goals. The assumption is that,
  *   for given installation, we are only interested in tracking multilib
@@ -85,19 +81,13 @@
 #define EM_IA_64   50  /* Intel Merced */
 #define EM_X86_64  62  /* AMD x86-64 architecture */
 #define EM_AARCH64 183 /* ARM AARCH64 */
-#define EM_ALPHA   0x9026
+#define EM_ALPHA   0x9026  /* Unofficial, but needed in Gentoo */
+#define EM_HPPA0x0F00  /* Unofficial, but needed in 
Gentoo */
 
-#define EF_MIPS_ABI2   32
-#define EF_MIPS_ABI_ON32   64
-/*
-E_MIPS_ABI_O32 = 0x1000
-E_MIPS_ABI_O64 = 0x2000
-E_MIPS_ABI_EABI32  = 0x3000
-E_MIPS_ABI_EABI64  = 0x4000
-*/
+#define EF_MIPS_ABI0xF000
+#define E_MIPS_ABI_O32 0x1000
 
-#define EF_ARM_NEW_ABI 0x80
-#define EF_ARM_OLD_ABI 0x100
+#define EF_ARM_EABIMASK0XFF00
 
 
 int
@@ -117,44 +107,100 @@ get_wordsize(uint8_t ei_class)
 char *
 get_abi(uint16_t e_machine, int width, uint32_t e_flags)
 {
+   /* The following arrives at the abstract ABI name by a process of 
elimination based on the assumption
+* that we are only interested in the ABIs supported in Gentoo.  If a 
new ABIs is added, you need to
+* rethink the logic to avoid false positives/negatives.
+*/
switch(e_machine) {
+
+   /* alpha: We support only one 64-bit ABI. */
case EM_ALPHA:
case EM_FAKE_ALPHA:
-   return "alpha";
+   return "alpha_64";
+
+   /* amd64 + x86: We support X86-64, X86-X32, and X86-32 ABI. The 
first
+* two are 64-bit ABIs and the third is 32-bit.  All three will 
run on
+* amd64 architecture, but only the 32-bit will run on the x86 
family.
+*/
case EM_X86_64:
-   return "amd64";
+   if (width == 64)
+   return "x86_64";
+   else
+   return "x86_x32";
+   case EM_386:
+   return "x86_32";
+
+   /* arm: We support two 32-bit ABIs, eabi and oabi. */
case EM_ARM:
-   return "arm";
+   if (e_flags & EF_ARM_EABIMASK)
+   return "arm_eabi";
+   else
+   return "arm_oabi";
+
+   /* arm64: We support only one 64-bit ABI. */
case EM_AARCH64:
-   return "arm64";
+   return "arm_64";
+
+   /* m68k: We support only one 32-bit ABI. */
case EM_68K:
-   return "m68k";
+   return "m68k_32";
+
+   /* mips: We support o32, n32 and n64.  The first is 32-bits and 
the
+* latter two are 64-bit ABIs.
+*/
case EM_MIPS_RS3_LE:
case EM_MIPS:
-   return "mips";
+   if (width == 64)
+   return "mips_n64";
+   else
+   if ((e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
+   return "mips_o32";
+   else
+   return "mips_n32";
+
+   /* ia64: We support only one 64-bit ABI. */
case EM_IA_64:
-   

[gentoo-commits] gentoo-x86 commit in x11-libs/libXaw: libXaw-1.0.12.ebuild ChangeLog

2015-01-06 Thread Pacho Ramos (pacho)
pacho   15/01/06 14:29:54

  Modified: libXaw-1.0.12.ebuild ChangeLog
  Log:
  Fix build with gcc -Werror=format-security, bug #512404
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.12 x11-libs/libXaw/libXaw-1.0.12.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild?r1=1.11&r2=1.12

Index: libXaw-1.0.12.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libXaw-1.0.12.ebuild18 Jun 2014 21:04:57 -  1.11
+++ libXaw-1.0.12.ebuild6 Jan 2015 14:29:54 -   1.12
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild,v 1.11 
2014/06/18 21:04:57 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild,v 1.12 
2015/01/06 14:29:54 pacho Exp $
 
 EAPI=5
 
@@ -22,6 +22,11 @@
>=x11-proto/xextproto-7.2.1-r1[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"
 
+PATCHES=(
+   # Fix build with gcc -Werror=format-security (from 'master')
+   "${FILESDIR}"/${P}-format-security.patch
+)
+
 src_configure() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable deprecated xaw6)



1.131x11-libs/libXaw/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libXaw/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   18 Jun 2014 21:04:57 -  1.130
+++ ChangeLog   6 Jan 2015 14:29:54 -   1.131
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/libXaw
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/ChangeLog,v 1.130 
2014/06/18 21:04:57 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/ChangeLog,v 1.131 
2015/01/06 14:29:54 pacho Exp $
+
+  06 Jan 2015; Pacho Ramos 
+  +files/libXaw-1.0.12-format-security.patch, libXaw-1.0.12.ebuild:
+  Fix build with gcc -Werror=format-security, bug #512404
 
   18 Jun 2014; Michał Górny  libXaw-1.0.11-r2.ebuild,
   libXaw-1.0.12.ebuild:






[gentoo-commits] gentoo-x86 commit in x11-libs/libXaw/files: libXaw-1.0.12-format-security.patch

2015-01-06 Thread Pacho Ramos (pacho)
pacho   15/01/06 14:29:54

  Added:libXaw-1.0.12-format-security.patch
  Log:
  Fix build with gcc -Werror=format-security, bug #512404
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.1  x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch?rev=1.1&content-type=text/plain

Index: libXaw-1.0.12-format-security.patch
===
>From ec7d7c303385a6bdb0833a5aaae96be697cca7ab Mon Sep 17 00:00:00 2001
From: Adam Jackson 
Date: Thu, 21 Nov 2013 11:43:55 -0500
Subject: Fix build with gcc -Werror=format-security

DisplayList.c:290:4: error: format not a string literal and no format
arguments [-Werror=format-security]

Signed-off-by: Adam Jackson 

diff --git a/src/DisplayList.c b/src/DisplayList.c
index 3e99df4..0581bf7 100644
--- a/src/DisplayList.c
+++ b/src/DisplayList.c
@@ -287,7 +287,7 @@ _XawDisplayList *XawCreateDisplayList(String string, Screen 
*screen,
}
   if (fp)
{
- snprintf(cname, fp - fname + 1, fname);
+ snprintf(cname, fp - fname + 1, "%s", fname);
  memmove(fname, fp + 1, strlen(fp));
  lc = cname[0] ? XawGetDisplayListClass(cname) : xlibc;
  if (!lc)
-- 
cgit v0.10.2







[gentoo-commits] gentoo-x86 commit in x11-wm/stumpwm: stumpwm-0.9.9.ebuild metadata.xml ChangeLog

2015-01-06 Thread JosA MarAa Alonso (nimiux)
nimiux  15/01/06 13:42:30

  Modified: stumpwm-0.9.9.ebuild metadata.xml ChangeLog
  Log:
  Update flags in metadata
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.4  x11-wm/stumpwm/stumpwm-0.9.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?r1=1.3&r2=1.4

Index: stumpwm-0.9.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- stumpwm-0.9.9.ebuild6 Jan 2015 13:27:35 -   1.3
+++ stumpwm-0.9.9.ebuild6 Jan 2015 13:42:30 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.3 
2015/01/06 13:27:35 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.4 
2015/01/06 13:42:30 nimiux Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="doc clisp ecl +sbcl emacs"
+IUSE="doc emacs clisp ecl +sbcl"
 
 RESTRICT="strip mirror"
 



1.8  x11-wm/stumpwm/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml23 Dec 2014 22:28:11 -  1.7
+++ metadata.xml6 Jan 2015 13:42:30 -   1.8
@@ -21,6 +21,8 @@
   while it's running. That's right. With a 100% Common Lisp window manager 
there's no stopping the hacks. Just re-eval and GO!
 
 
+  Include documentation
+  Add support for GNU Emacs
   Use CLISP for the runtime
   Use SCL for the runtime
   Use SBCL for the runtime



1.13 x11-wm/stumpwm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/ChangeLog?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/ChangeLog?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   6 Jan 2015 13:27:35 -   1.12
+++ ChangeLog   6 Jan 2015 13:42:30 -   1.13
@@ -1,6 +1,10 @@
 # ChangeLog for x11-wm/stumpwm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.12 2015/01/06 
13:27:35 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.13 2015/01/06 
13:42:30 nimiux Exp $
+
+  06 Jan 2015; Chema Alonso  stumpwm-0.9.9.ebuild,
+  metadata.xml:
+  Update flags in metadata
 
   06 Jan 2015; Chema Alonso  stumpwm-0.9.9.ebuild:
   Fix bug 534592. Use require instead of asdf:load-op






[gentoo-commits] gentoo-x86 commit in dev-libs/libevent: libevent-2.0.22.ebuild ChangeLog

2015-01-06 Thread Agostino Sarubbo (ago)
ago 15/01/06 13:36:05

  Modified: libevent-2.0.22.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #535774
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.2  dev-libs/libevent/libevent-2.0.22.ebuild

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

Index: libevent-2.0.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libevent-2.0.22.ebuild  6 Jan 2015 10:39:56 -   1.1
+++ libevent-2.0.22.ebuild  6 Jan 2015 13:36:05 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.1 2015/01/06 10:39:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.2 2015/01/06 13:36:05 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="debug +ssl static-libs test +threads"
 
 DEPEND="ssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )"



1.284dev-libs/libevent/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?rev=1.284&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?rev=1.284&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/ChangeLog?r1=1.283&r2=1.284

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.283
retrieving revision 1.284
diff -u -r1.283 -r1.284
--- ChangeLog   6 Jan 2015 10:44:32 -   1.283
+++ ChangeLog   6 Jan 2015 13:36:05 -   1.284
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.283 
2015/01/06 10:44:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.284 
2015/01/06 13:36:05 ago Exp $
+
+  06 Jan 2015; Agostino Sarubbo  libevent-2.0.22.ebuild:
+  Stable for amd64, wrt bug #535774
 
   06 Jan 2015; Jeroen Roovers  -libevent-2.0.21-r2.ebuild,
   -libevent-2.1.4-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/remoteobjects: remoteobjects-99999999.ebuild ChangeLog

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/06 13:32:56

  Modified: remoteobjects-.ebuild ChangeLog
  Log:
  conversion -> distutils-r1
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.4  dev-python/remoteobjects/remoteobjects-.ebuild

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

Index: remoteobjects-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/remoteobjects/remoteobjects-.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- remoteobjects-.ebuild   21 Sep 2011 08:46:37 -  1.3
+++ remoteobjects-.ebuild   6 Jan 2015 13:32:56 -   1.4
@@ -1,14 +1,11 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/remoteobjects/remoteobjects-.ebuild,v
 1.3 2011/09/21 08:46:37 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/remoteobjects/remoteobjects-.ebuild,v
 1.4 2015/01/06 13:32:56 idella4 Exp $
 
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-DISTUTILS_SRC_TEST="nosetests"
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
 
-inherit distutils
+inherit distutils-r1
 
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://github.com/LegNeato/${PN}.git
@@ -22,17 +19,20 @@
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS=""
-IUSE=""
+IUSE="test"
 
-RDEPEND="dev-python/simplejson
-   dev-python/httplib2"
+RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]
+   dev-python/httplib2[${PYTHON_USEDEP}]"
 DEPEND="${DEPEND}
-   dev-python/setuptools
-   test? ( dev-python/mox )"
-
-src_prepare() {
-   distutils_src_prepare
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/mox[${PYTHON_USEDEP}] )"
 
+python_prepare_all() {
# Disable failing tests.
sed -e "s/test_get_bad_encoding/_&/" -i tests/test_http.py
+   distutils-r1_python_prepare_all
+}
+
+pthon_test() {
+   nosetests || die "tests failed"
 }



1.4  dev-python/remoteobjects/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/remoteobjects/ChangeLog?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/remoteobjects/ChangeLog?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/remoteobjects/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/remoteobjects/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   21 Sep 2011 08:46:37 -  1.3
+++ ChangeLog   6 Jan 2015 13:32:56 -   1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/remoteobjects
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/remoteobjects/ChangeLog,v 1.3 
2011/09/21 08:46:37 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/remoteobjects/ChangeLog,v 1.4 
2015/01/06 13:32:56 idella4 Exp $
+
+  06 Jan 2015; Ian Delaney  remoteobjects-.ebuild:
+  conversion -> distutils-r1
 
   21 Sep 2011; Michał Górny 
   remoteobjects-.ebuild:






[gentoo-commits] gentoo-x86 commit in x11-wm/stumpwm: stumpwm-0.9.9.ebuild ChangeLog

2015-01-06 Thread JosA MarAa Alonso (nimiux)
nimiux  15/01/06 13:27:35

  Modified: stumpwm-0.9.9.ebuild ChangeLog
  Log:
  Fix bug 534592. Use require instead of asdf:load-op
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.3  x11-wm/stumpwm/stumpwm-0.9.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?r1=1.2&r2=1.3

Index: stumpwm-0.9.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- stumpwm-0.9.9.ebuild24 Dec 2014 12:04:04 -  1.2
+++ stumpwm-0.9.9.ebuild6 Jan 2015 13:27:35 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.2 
2014/12/24 12:04:04 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.3 
2015/01/06 13:27:35 nimiux Exp $
 
 EAPI=5
 
@@ -12,17 +12,17 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="doc clisp ecl +sbcl emacs"
 
 RESTRICT="strip mirror"
 
 RDEPEND="dev-lisp/cl-ppcre
+   sbcl?  ( >=dev-lisp/sbcl-1.0.32 )
sbcl? ( >=dev-lisp/clx-0.7.4 )
!sbcl? ( !clisp? ( !ecl? ( >=dev-lisp/sbcl-1.0.32 ) ) )
!sbcl? ( !clisp? (  ecl? ( >=dev-lisp/ecls-10.4.1 ) ) )
!sbcl? (  clisp? ( >=dev-lisp/clisp-2.44[X,new-clx] ) )
-   sbcl?  ( >=dev-lisp/sbcl-1.0.32 )
emacs? ( virtual/emacs app-emacs/slime )"
 DEPEND="${RDEPEND}
sys-apps/texinfo
@@ -32,6 +32,7 @@
 
 get_lisp() {
local lisp
+
for lisp in "$@" ; do
use ${lisp} && echo ${lisp} && return
done
@@ -41,16 +42,21 @@
local pdffile="${PN}.pdf"
 
texi2pdf -o "${pdffile}" "${PN}.texi.in" && dodoc "${pdffile}" || die
-   cp "${FILESDIR}"/README.Gentoo . && sed -i "s:@VERSION@:${PV}:" 
README.Gentoo || die
+   cp "${FILESDIR}/README.Gentoo" . && sed -i "s:@VERSION@:${PV}:" 
README.Gentoo || die
dodoc AUTHORS NEWS README.md README.Gentoo
-   doinfo ${PN}.info
+   doinfo "${PN}.info"
docinto examples ; dodoc sample-stumpwmrc.lisp
 }
 
 src_prepare() {
# Upstream didn't change the version before packaging
sed -i "${S}/${PN}.asd" -e 's/:version "0.9.8"/:version "0.9.9"/' || die
+   # Bug 534592. Does not build with asdf:oos, using require to load the 
package
+   sed -i "${S}/load-${PN}.lisp.in" -e "s/asdf:oos 'asdf:load-op/require/" 
|| die
eautoreconf
+}
+
+src_configure() {
econf --with-lisp=$(get_lisp sbcl clisp ecl)
 }
 



1.12 x11-wm/stumpwm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/ChangeLog?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/ChangeLog?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   24 Dec 2014 12:04:04 -  1.11
+++ ChangeLog   6 Jan 2015 13:27:35 -   1.12
@@ -1,6 +1,9 @@
 # ChangeLog for x11-wm/stumpwm
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.11 2014/12/24 
12:04:04 ulm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.12 2015/01/06 
13:27:35 nimiux Exp $
+
+  06 Jan 2015; Chema Alonso  stumpwm-0.9.9.ebuild:
+  Fix bug 534592. Use require instead of asdf:load-op
 
   24 Dec 2014; Ulrich Müller  stumpwm-0.9.9.ebuild:
   Fix typo in variable name.






[gentoo-commits] gentoo-x86 commit in app-vim/vimpress: vimpress-3.2.0.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 13:12:40

  Modified: vimpress-3.2.0.ebuild ChangeLog
  Log:
  Convert to python-single-r1, enforce a match on Python version used by vim.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  app-vim/vimpress/vimpress-3.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild?r1=1.3&r2=1.4

Index: vimpress-3.2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vimpress-3.2.0.ebuild   4 Dec 2012 11:23:31 -   1.3
+++ vimpress-3.2.0.ebuild   6 Jan 2015 13:12:40 -   1.4
@@ -1,10 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild,v 
1.3 2012/12/04 11:23:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild,v 
1.4 2015/01/06 13:12:40 mgorny Exp $
 
 EAPI=4
+PYTHON_COMPAT=( python2_7 )
 
-inherit vim-plugin
+inherit python-single-r1 vim-plugin
 
 DESCRIPTION="vim plugin: manage wordpress blogs from vim"
 HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3510";
@@ -12,8 +13,9 @@
 KEYWORDS="amd64 x86"
 IUSE=""
 
-RDEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )
-   || ( dev-lang/python:2.7 dev-lang/python:2.6 )
+RDEPEND="|| ( app-editors/vim[python,${PYTHON_USEDEP}] 
app-editors/gvim[python,${PYTHON_USEDEP}] )
+   ${PYTHON_DEPS}
dev-python/markdown"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 VIM_PLUGIN_HELPFILES="${PN}.txt"



1.9  app-vim/vimpress/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimpress/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimpress/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimpress/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/vimpress/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   4 Dec 2012 11:23:31 -   1.8
+++ ChangeLog   6 Jan 2015 13:12:40 -   1.9
@@ -1,6 +1,9 @@
 # ChangeLog for app-vim/vimpress
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/ChangeLog,v 1.8 2012/12/04 
11:23:31 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/ChangeLog,v 1.9 2015/01/06 
13:12:40 mgorny Exp $
+
+  06 Jan 2015; Michał Górny  vimpress-3.2.0.ebuild:
+  Convert to python-single-r1, enforce a match on Python version used by vim.
 
   04 Dec 2012;  vimpress-3.2.0.ebuild:
   Stable for x86, wrt bug #441132
@@ -32,4 +35,3 @@
   10 Jun 2011; Tim Harder  +vimpress-2.1.0.ebuild,
   +metadata.xml:
   Initial import.
-






[gentoo-commits] gentoo-x86 commit in app-vim/vimcalc: vimcalc-1.3-r1.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 13:04:37

  Modified: ChangeLog
  Added:vimcalc-1.3-r1.ebuild
  Log:
  Convert to python-single-r1, enforce a match on Python version used by vim.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  app-vim/vimcalc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   11 Dec 2011 09:15:29 -  1.4
+++ ChangeLog   6 Jan 2015 13:04:37 -   1.5
@@ -1,6 +1,11 @@
 # ChangeLog for app-vim/vimcalc
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.4 2011/12/11 
09:15:29 phajdan.jr Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.5 2015/01/06 
13:04:37 mgorny Exp $
+
+*vimcalc-1.3-r1 (06 Jan 2015)
+
+  06 Jan 2015; Michał Górny  +vimcalc-1.3-r1.ebuild:
+  Convert to python-single-r1, enforce a match on Python version used by vim.
 
   11 Dec 2011; Pawel Hajdan jr  vimcalc-1.3.ebuild:
   x86 stable wrt bug #393145
@@ -16,4 +21,3 @@
   04 May 2011; Tim Harder  +vimcalc-1.3.ebuild,
   +metadata.xml:
   Initial import.
-



1.1  app-vim/vimcalc/vimcalc-1.3-r1.ebuild

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

Index: vimcalc-1.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/vimcalc-1.3-r1.ebuild,v 1.1 
2015/01/06 13:04:37 mgorny Exp $

EAPI="4"
PYTHON_COMPAT=( python{2_7,3_3,3_4} )

inherit python-single-r1 vim-plugin

DESCRIPTION="vim plugin: provides an interactive calculator inside vim"
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3329";
SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=15317 -> 
${P}.zip"
LICENSE="vim"
KEYWORDS="~amd64 ~x86"
IUSE=""

VIM_PLUGIN_HELPFILES="vimcalc"

DEPEND="app-arch/unzip"
RDEPEND="|| ( app-editors/vim[python,${PYTHON_USEDEP}] 
app-editors/gvim[python,${PYTHON_USEDEP}] )
${PYTHON_DEPS}"
REQUIRED_USE=${PYTHON_REQUIRED_USE}

S="${WORKDIR}/${PN}-v${PV}"

src_prepare() {
# Remove .DS_Store files that should not be installed
find -type f -name '.DS*' -delete
}






  1   2   >