[gentoo-commits] gentoo-x86 commit in net-dns/dnsmasq: dnsmasq-2.75.ebuild ChangeLog dnsmasq-2.74.ebuild

2015-07-30 Thread Patrick McLean (chutzpah)
chutzpah15/07/30 23:55:17

  Modified: ChangeLog
  Added:dnsmasq-2.75.ebuild
  Removed:  dnsmasq-2.74.ebuild
  Log:
  Version bump, remove previous version.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.281net-dns/dnsmasq/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v
retrieving revision 1.280
retrieving revision 1.281
diff -u -r1.280 -r1.281
--- ChangeLog   28 Jul 2015 23:06:39 -  1.280
+++ ChangeLog   30 Jul 2015 23:55:17 -  1.281
@@ -1,6 +1,12 @@
 # ChangeLog for net-dns/dnsmasq
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.280 
2015/07/28 23:06:39 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.281 
2015/07/30 23:55:17 chutzpah Exp $
+
+*dnsmasq-2.75 (30 Jul 2015)
+
+  30 Jul 2015; Patrick McLean chutz...@gentoo.org +dnsmasq-2.75.ebuild,
+  -dnsmasq-2.74.ebuild:
+  Version bump, remove previous version.
 
 *dnsmasq-2.74 (28 Jul 2015)
 



1.1  net-dns/dnsmasq/dnsmasq-2.75.ebuild

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

Index: dnsmasq-2.75.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.75.ebuild,v 1.1 
2015/07/30 23:55:17 chutzpah Exp $

EAPI=5

inherit eutils toolchain-funcs flag-o-matic user systemd

DESCRIPTION=Small forwarding DNS server
HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/doc.html;
SRC_URI=http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz;

LICENSE=|| ( GPL-2 GPL-3 )
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd
IUSE=auth-dns conntrack dbus +dhcp dhcp-tools dnssec idn +inotify ipv6 lua nls 
script selinux static tftp
DM_LINGUAS=de es fi fr id it no pl pt_BR ro
for dm_lingua in ${DM_LINGUAS}; do
IUSE+= linguas_${dm_lingua}
done

CDEPEND=dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
lua? (
|| (
dev-lang/lua:0
dev-lang/lua:5.1
)
)
conntrack? ( net-libs/libnetfilter_conntrack )
nls? (
sys-devel/gettext
net-dns/libidn
)


DEPEND=${CDEPEND}
app-arch/xz-utils
dnssec? (
dev-libs/nettle[gmp]
static? (
dev-libs/nettle[static-libs(+)]
)
)
virtual/pkgconfig

RDEPEND=${CDEPEND}
dnssec? (
!static? (
dev-libs/nettle[gmp]
)
)
selinux? ( sec-policy/selinux-dnsmasq )


REQUIRED_USE=dhcp-tools? ( dhcp )
lua? ( script )

use_have() {
local useflag no_only uword
if [[ $1 == '-n' ]]; then
no_only=1
shift
fi
useflag=${1}
shift

uword=${1:-${useflag}}
shift

while [[ ${uword} ]]; do
uword=${uword^^*}

if ! use ${useflag}; then
echo -n  -DNO_${uword}
elif [[ -z ${no_only} ]]; then
echo -n  -DHAVE_${uword}
fi
uword=${1}
shift
done
}

pkg_pretend() {
if use static; then
einfo Only sys-libs/gmp and dev-libs/nettle are statically 
linked.
use dnssec || einfo Thus, ${P}[!dnssec,static] makes no sense; 
the static USE flag is ignored.
fi
}

pkg_setup() {
enewgroup dnsmasq
enewuser dnsmasq -1 -1 /dev/null dnsmasq
}

src_prepare() {
sed -i -r 's:lua5.[0-9]+:lua:' Makefile
sed -i s:%%PREFIX%%:${EPREFIX}/usr: dnsmasq.conf.example
}

src_configure() {
COPTS=$(use_have -n auth-dns auth)
COPTS+=$(use_have conntrack)
COPTS+=$(use_have dbus)
COPTS+=$(use_have idn)
COPTS+=$(use_have -n inotify)
COPTS+=$(use_have -n dhcp dhcp dhcp6)
COPTS+=$(use_have -n ipv6 ipv6 dhcp6)
COPTS+=$(use_have lua luascript)
 

[gentoo-commits] gentoo-x86 commit in net-dns/dnsmasq: dnsmasq-2.75.ebuild

2015-07-30 Thread Patrick McLean (chutzpah)
chutzpah15/07/30 23:58:16

  Modified: dnsmasq-2.75.ebuild
  Log:
  Amend previous commit to use :* for the lua dependency.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  net-dns/dnsmasq/dnsmasq-2.75.ebuild

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

Index: dnsmasq-2.75.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.75.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dnsmasq-2.75.ebuild 30 Jul 2015 23:55:17 -  1.1
+++ dnsmasq-2.75.ebuild 30 Jul 2015 23:58:16 -  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/net-dns/dnsmasq/dnsmasq-2.75.ebuild,v 1.1 
2015/07/30 23:55:17 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.75.ebuild,v 1.2 
2015/07/30 23:58:16 chutzpah Exp $
 
 EAPI=5
 
@@ -21,12 +21,7 @@
 
 CDEPEND=dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
-   lua? (
-   || (
-   dev-lang/lua:0
-   dev-lang/lua:5.1
-   )
-   )
+   lua? ( dev-lang/lua:* )
conntrack? ( net-libs/libnetfilter_conntrack )
nls? (
sys-devel/gettext






[gentoo-commits] gentoo-x86 commit in net-dns/dnsmasq: dnsmasq-2.74.ebuild ChangeLog dnsmasq-2.73.ebuild dnsmasq-2.72.ebuild dnsmasq-2.72-r1.ebuild

2015-07-28 Thread Patrick McLean (chutzpah)
chutzpah15/07/28 23:06:39

  Modified: ChangeLog
  Added:dnsmasq-2.74.ebuild
  Removed:  dnsmasq-2.73.ebuild dnsmasq-2.72.ebuild
dnsmasq-2.72-r1.ebuild
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.280net-dns/dnsmasq/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v
retrieving revision 1.279
retrieving revision 1.280
diff -u -r1.279 -r1.280
--- ChangeLog   24 Jul 2015 09:37:10 -  1.279
+++ ChangeLog   28 Jul 2015 23:06:39 -  1.280
@@ -1,6 +1,12 @@
 # ChangeLog for net-dns/dnsmasq
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.279 
2015/07/24 09:37:10 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.280 
2015/07/28 23:06:39 chutzpah Exp $
+
+*dnsmasq-2.74 (28 Jul 2015)
+
+  28 Jul 2015; Patrick McLean chutz...@gentoo.org +dnsmasq-2.74.ebuild,
+  -dnsmasq-2.72-r1.ebuild, -dnsmasq-2.72.ebuild, -dnsmasq-2.73.ebuild:
+  Version bump, remove old.
 
   24 Jul 2015; Mikle Kolyada zlog...@gentoo.org dnsmasq-2.72-r2.ebuild:
   ia64 stable wrt bug #547966



1.1  net-dns/dnsmasq/dnsmasq-2.74.ebuild

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

Index: dnsmasq-2.74.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.74.ebuild,v 1.1 
2015/07/28 23:06:39 chutzpah Exp $

EAPI=5

inherit eutils toolchain-funcs flag-o-matic user systemd

DESCRIPTION=Small forwarding DNS server
HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/doc.html;
SRC_URI=http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz;

LICENSE=|| ( GPL-2 GPL-3 )
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd
IUSE=auth-dns conntrack dbus +dhcp dhcp-tools dnssec idn +inotify ipv6 lua nls 
script selinux static tftp
DM_LINGUAS=de es fi fr id it no pl pt_BR ro
for dm_lingua in ${DM_LINGUAS}; do
IUSE+= linguas_${dm_lingua}
done

CDEPEND=dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
lua? (
|| (
dev-lang/lua:0
dev-lang/lua:5.1
)
)
conntrack? ( net-libs/libnetfilter_conntrack )
nls? (
sys-devel/gettext
net-dns/libidn
)


DEPEND=${CDEPEND}
app-arch/xz-utils
dnssec? (
dev-libs/nettle[gmp]
static? (
dev-libs/nettle[static-libs(+)]
)
)
virtual/pkgconfig

RDEPEND=${CDEPEND}
dnssec? (
!static? (
dev-libs/nettle[gmp]
)
)
selinux? ( sec-policy/selinux-dnsmasq )


REQUIRED_USE=dhcp-tools? ( dhcp )
lua? ( script )

use_have() {
local useflag no_only uword
if [[ $1 == '-n' ]]; then
no_only=1
shift
fi
useflag=${1}
shift

uword=${1:-${useflag}}
shift

while [[ ${uword} ]]; do
uword=${uword^^*}

if ! use ${useflag}; then
echo -n  -DNO_${uword}
elif [[ -z ${no_only} ]]; then
echo -n  -DHAVE_${uword}
fi
uword=${1}
shift
done
}

pkg_pretend() {
if use static; then
einfo Only sys-libs/gmp and dev-libs/nettle are statically 
linked.
use dnssec || einfo Thus, ${P}[!dnssec,static] makes no sense; 
the static USE flag is ignored.
fi
}

pkg_setup() {
enewgroup dnsmasq
enewuser dnsmasq -1 -1 /dev/null dnsmasq
}

src_prepare() {
sed -i -r 's:lua5.[0-9]+:lua:' Makefile
sed -i s:%%PREFIX%%:${EPREFIX}/usr: dnsmasq.conf.example
}

src_configure() {
COPTS=$(use_have -n auth-dns auth)
COPTS+=$(use_have conntrack)
COPTS+=$(use_have dbus)
COPTS+=$(use_have idn)

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.14.1-r1.ebuild ChangeLog ganeti-2.14.1.ebuild

2015-07-28 Thread Patrick McLean (chutzpah)
chutzpah15/07/28 22:03:05

  Modified: ChangeLog
  Added:ganeti-2.14.1-r1.ebuild
  Removed:  ganeti-2.14.1.ebuild
  Log:
  Revision bump, move some dependencies from test-deps to build-deps.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.107app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.107view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.107content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.106r2=1.107

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog   22 Jul 2015 01:46:48 -  1.106
+++ ChangeLog   28 Jul 2015 22:03:05 -  1.107
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.106 
2015/07/22 01:46:48 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.107 
2015/07/28 22:03:05 chutzpah Exp $
+
+*ganeti-2.14.1-r1 (28 Jul 2015)
+
+  28 Jul 2015; Patrick McLean chutz...@gentoo.org +ganeti-2.14.1-r1.ebuild,
+  -ganeti-2.14.1.ebuild:
+  Revision bump, move some dependencies from test-deps to build-deps.
 
 *ganeti-2.14.1 (22 Jul 2015)
 



1.1  app-emulation/ganeti/ganeti-2.14.1-r1.ebuild

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

Index: ganeti-2.14.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.14.1-r1.ebuild,v 1.1 
2015/07/28 22:03:05 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user autotools bash-completion-r1 python-single-r1 versionator

MY_PV=${PV/_rc/~rc}
MY_PV=${MY_PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} =~ [9]{4,} ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
GIT_DEPEND=dev-python/docutils
=dev-python/sphinx-1.2*[${PYTHON_USEDEP}]
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${MY_P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://www.ganeti.org/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc ) ${PYTHON_REQUIRED_USE}

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6*:0=
dev-haskell/cabal:0=
dev-haskell/cabal-install:0=
=dev-haskell/deepseq-1.3.0.0:0=
=dev-haskell/mtl-2.1.1:0=
=dev-haskell/old-time-1.1.0.0:0=
=dev-haskell/random-1.0.1.1:0=
haskell-daemons? ( =dev-haskell/text-0.11.1.13:0= )
=dev-haskell/transformers-0.3.0.0:0=

=dev-haskell/attoparsec-0.10.1.1:0=
dev-haskell/attoparsec-0.13:0
=dev-haskell/base64-bytestring-1.0.0.1:0=
dev-haskell/base64-bytestring-1.1:0=
=dev-haskell/crypto-4.2.4:0=
dev-haskell/crypto-4.3:0=
=dev-haskell/curl-1.3.7:0=
dev-haskell/curl-1.4:0=
=dev-haskell/hinotify-0.3.2:0=
dev-haskell/hinotify-0.4:0=
=dev-haskell/hslogger-1.1.4:0=
dev-haskell/hslogger-1.3:0=
=dev-haskell/json-0.5:0=
dev-haskell/json-0.9:0=
=dev-haskell/lens-3.10:0=
 

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.14.1.ebuild ChangeLog

2015-07-21 Thread Patrick McLean (chutzpah)
chutzpah15/07/22 01:46:48

  Modified: ChangeLog
  Added:ganeti-2.14.1.ebuild
  Log:
  Version bump, should also fix bugs 552482 and 548972.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.106app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.106view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.106content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.105r2=1.106

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog   9 May 2015 08:05:41 -   1.105
+++ ChangeLog   22 Jul 2015 01:46:48 -  1.106
@@ -1,6 +1,11 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.105 
2015/05/09 08:05:41 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.106 
2015/07/22 01:46:48 chutzpah Exp $
+
+*ganeti-2.14.1 (22 Jul 2015)
+
+  22 Jul 2015; Patrick McLean chutz...@gentoo.org +ganeti-2.14.1.ebuild:
+  Version bump, should also fix bugs 552482 and 548972.
 
 *ganeti-2.13.0-r2 (09 May 2015)
 *ganeti-2.12.3-r2 (09 May 2015)



1.1  app-emulation/ganeti/ganeti-2.14.1.ebuild

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

Index: ganeti-2.14.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.14.1.ebuild,v 
1.1 2015/07/22 01:46:48 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user autotools bash-completion-r1 python-single-r1 versionator

MY_PV=${PV/_rc/~rc}
MY_PV=${MY_PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} =~ [9]{4,} ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
GIT_DEPEND=dev-python/docutils
=dev-python/sphinx-1.2*[${PYTHON_USEDEP}]
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${MY_P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://www.ganeti.org/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc ) ${PYTHON_REQUIRED_USE}

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6*:0=
dev-haskell/cabal:0=
dev-haskell/cabal-install:0=
=dev-haskell/deepseq-1.3.0.0:0=
=dev-haskell/mtl-2.1.1:0=
=dev-haskell/old-time-1.1.0.0:0=
=dev-haskell/random-1.0.1.1:0=
haskell-daemons? ( =dev-haskell/text-0.11.1.13:0= )
=dev-haskell/transformers-0.3.0.0:0=

=dev-haskell/attoparsec-0.10.1.1:0=
dev-haskell/attoparsec-0.13:0
=dev-haskell/base64-bytestring-1.0.0.1:0=
dev-haskell/base64-bytestring-1.1:0=
=dev-haskell/crypto-4.2.4:0=
dev-haskell/crypto-4.3:0=
=dev-haskell/curl-1.3.7:0=
dev-haskell/curl-1.4:0=
=dev-haskell/hinotify-0.3.2:0=
dev-haskell/hinotify-0.4:0=
=dev-haskell/hslogger-1.1.4:0=
dev-haskell/hslogger-1.3:0=
=dev-haskell/json-0.5:0=
dev-haskell/json-0.9:0=
=dev-haskell/lens-3.10:0=
dev-haskell/lens-4.8:0=
=dev-haskell/lifted-base-0.2.0.3:0=

[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-2015.5.3.ebuild ChangeLog salt-2015.5.2.ebuild salt-2014.1.13.ebuild salt-2015.5.0.ebuild

2015-07-07 Thread Patrick McLean (chutzpah)
chutzpah15/07/07 23:20:43

  Modified: ChangeLog
  Added:salt-2015.5.3.ebuild
  Removed:  salt-2015.5.2.ebuild salt-2014.1.13.ebuild
salt-2015.5.0.ebuild
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.66 app-admin/salt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   4 Jun 2015 21:51:36 -   1.65
+++ ChangeLog   7 Jul 2015 23:20:43 -   1.66
@@ -1,6 +1,13 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.65 2015/06/04 
21:51:36 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.66 2015/07/07 
23:20:43 chutzpah Exp $
+
+*salt-2015.5.3 (07 Jul 2015)
+
+  07 Jul 2015; Patrick McLean chutz...@gentoo.org +salt-2015.5.3.ebuild,
+  -files/salt-2015.5.2-timezone-test-gentoo.patch, -salt-2014.1.13.ebuild,
+  -salt-2015.5.0.ebuild, -salt-2015.5.2.ebuild:
+  Version bump, remove old.
 
 *salt-2015.5.2 (04 Jun 2015)
 



1.1  app-admin/salt/salt-2015.5.3.ebuild

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

Index: salt-2015.5.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2015.5.3.ebuild,v 1.1 
2015/07/07 23:20:43 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit eutils systemd vim-plugin distutils-r1

DESCRIPTION=Salt is a remote execution and configuration manager
HOMEPAGE=http://saltstack.org/;
SALT_VIM_HASH=20695f68e5895e5ae2b5884b78f5a2cd29897b05

if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI=git://github.com/${PN}stack/${PN}.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

SRC_URI+= vim-syntax? ( 
https://github.com/${PN}stack/${PN}-vim/archive/${SALT_VIM_HASH}.tar.gz - 
salt-vim-20141109.tar.gz )

LICENSE=Apache-2.0
SLOT=0
IUSE=cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql neutron 
nova
IUSE+= openssl redis selinux test timelib raet +zeromq vim-syntax

RDEPEND=sys-apps/pciutils
dev-python/jinja[${PYTHON_USEDEP}]
=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/markupsafe[${PYTHON_USEDEP}]
=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
=www-servers/tornado-4.0[${PYTHON_USEDEP}]
libcloud? ( =dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] )
mako? ( dev-python/mako[${PYTHON_USEDEP}] )
ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] )
raet? (
=dev-python/libnacl-1.0.0[${PYTHON_USEDEP}]
=dev-python/ioflo-1.1.7[${PYTHON_USEDEP}]
=dev-python/raet-0.6.0[${PYTHON_USEDEP}]
)
zeromq? (
=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
=dev-python/m2crypto-0.22.3[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
cherrypy? ( =dev-python/cherrypy-3.2.2[${PYTHON_USEDEP}] )
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
selinux? ( sec-policy/selinux-salt )
timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
nova? ( =dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
neutron? ( =dev-python/python-neutronclient-2.3.6[${PYTHON_USEDEP}] )
gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pip[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
  

[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: salt-2014.1.5-tests-nonroot.patch salt-2014.1.2-tests-nonroot.patch salt-2014.1.5-minion-error.patch

2015-07-07 Thread Patrick McLean (chutzpah)
chutzpah15/07/07 23:21:33

  Removed:  salt-2014.1.5-tests-nonroot.patch
salt-2014.1.2-tests-nonroot.patch
salt-2014.1.5-minion-error.patch
  Log:
  Remove old patches.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)



[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: salt-2015.5.2-timezone-test-gentoo.patch

2015-07-07 Thread Patrick McLean (chutzpah)
chutzpah15/07/07 23:20:43

  Removed:  salt-2015.5.2-timezone-test-gentoo.patch
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)



[gentoo-commits] gentoo-x86 commit in app-admin/salt: ChangeLog

2015-07-07 Thread Patrick McLean (chutzpah)
chutzpah15/07/07 23:21:33

  Modified: ChangeLog
  Log:
  Remove old patches.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.67 app-admin/salt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   7 Jul 2015 23:20:43 -   1.66
+++ ChangeLog   7 Jul 2015 23:21:33 -   1.67
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.66 2015/07/07 
23:20:43 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.67 2015/07/07 
23:21:33 chutzpah Exp $
+
+  07 Jul 2015; Patrick McLean chutz...@gentoo.org
+  -files/salt-2014.1.2-tests-nonroot.patch,
+  -files/salt-2014.1.5-minion-error.patch,
+  -files/salt-2014.1.5-tests-nonroot.patch:
+  Remove old patches.
 
 *salt-2015.5.3 (07 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in net-misc/openssh: openssh-6.9_p1-r1.ebuild ChangeLog openssh-6.9_p1.ebuild

2015-07-01 Thread Patrick McLean (chutzpah)
chutzpah15/07/01 22:53:26

  Modified: ChangeLog
  Added:openssh-6.9_p1-r1.ebuild
  Removed:  openssh-6.9_p1.ebuild
  Log:
  Revision bump, add the updated X509 patch, drop 5.9_p1-r0 ebuild.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.563net-misc/openssh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.562
retrieving revision 1.563
diff -u -r1.562 -r1.563
--- ChangeLog   1 Jul 2015 20:55:01 -   1.562
+++ ChangeLog   1 Jul 2015 22:53:26 -   1.563
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.562 
2015/07/01 20:55:01 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.563 
2015/07/01 22:53:26 chutzpah Exp $
+
+*openssh-6.9_p1-r1 (01 Jul 2015)
+
+  01 Jul 2015; Patrick McLean chutz...@gentoo.org
+  +files/openssh-6.9_p1-x509-warnings.patch, +openssh-6.9_p1-r1.ebuild,
+  -openssh-6.9_p1.ebuild:
+  Revision bump, add the updated X509 patch, drop 5.9_p1-r0 ebuild.
 
 *openssh-6.9_p1 (01 Jul 2015)
 



1.1  net-misc/openssh/openssh-6.9_p1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.9_p1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.9_p1-r1.ebuild?rev=1.1content-type=text/plain

Index: openssh-6.9_p1-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/openssh/openssh-6.9_p1-r1.ebuild,v 
1.1 2015/07/01 22:53:26 chutzpah Exp $

EAPI=4
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH=${PN}-6.9p1-hpnssh14v5.tar.xz
LDAP_PATCH=${PN}-lpk-6.8p1-0.3.14.patch.xz
X509_VER=8.4 X509_PATCH=${PN}-6.9p1+x509-${X509_VER}.diff.gz

DESCRIPTION=Port of OpenBSD's free SSH release
HOMEPAGE=http://www.openssh.org/;
SRC_URI=mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${PN}-6.8_p1-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~polynomial-c/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? ( 
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}


LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
# Probably want to drop ssl defaulting to on in a future version.
IUSE=bindist debug ${HPN_PATCH:++}hpn kerberos kernel_linux ldap ldns libedit 
pam +pie sctp selinux skey ssh1 +ssl static X X509
REQUIRED_USE=pie? ( !static )
ssh1? ( ssl )
static? ( !kerberos !pam )
X509? ( !ldap ssl )

LIB_DEPEND=sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( =sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( =sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
ssl? (
=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
)
=sys-libs/zlib-1.2.3[static-libs(+)]
RDEPEND=
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
DEPEND=${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgconfig
virtual/os-headers
sys-devel/autoconf
RDEPEND=${RDEPEND}
pam? ( =sys-auth/pambase-20081028 )
userland_GNU? ( virtual/shadow )
X? ( x11-apps/xauth )

S=${WORKDIR}/${PARCH}


[gentoo-commits] gentoo-x86 commit in net-misc/openssh/files: openssh-6.9_p1-x509-warnings.patch

2015-07-01 Thread Patrick McLean (chutzpah)
chutzpah15/07/01 22:53:26

  Added:openssh-6.9_p1-x509-warnings.patch
  Log:
  Revision bump, add the updated X509 patch, drop 5.9_p1-r0 ebuild.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  net-misc/openssh/files/openssh-6.9_p1-x509-warnings.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.9_p1-x509-warnings.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.9_p1-x509-warnings.patch?rev=1.1content-type=text/plain

Index: openssh-6.9_p1-x509-warnings.patch
===
diff -ur openssh-6.9p1.orig/sshconnect2.c openssh-6.9p1/sshconnect2.c
--- openssh-6.9p1.orig/sshconnect2.c2015-07-01 14:56:26.766316866 -0700
+++ openssh-6.9p1/sshconnect2.c 2015-07-01 14:59:22.828692366 -0700
@@ -1404,7 +1404,7 @@
 static int
 get_allowed_keytype(Key *k) {
char *pattern;
-   char *alg;
+   const char *alg;
 
if (k-type == KEY_RSA1 || k-type == KEY_UNSPEC)
return KEY_UNSPEC;
diff -ur openssh-6.9p1.orig/x509_nm_cmp.c openssh-6.9p1/x509_nm_cmp.c
--- openssh-6.9p1.orig/x509_nm_cmp.c2015-07-01 14:56:26.129311890 -0700
+++ openssh-6.9p1/x509_nm_cmp.c 2015-07-01 14:59:14.086624068 -0700
@@ -133,7 +133,7 @@
tag = M_ASN1_STRING_type(in);
if (tag != V_ASN1_UTF8STRING) {
/*OpenSSL method surprisingly require non-const(!?) 
ASN1_STRING!*/
-   return(ASN1_STRING_to_UTF8(out, in));
+   return(ASN1_STRING_to_UTF8(out, (ASN1_STRING *) in));
}
 
l = M_ASN1_STRING_length(in);






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

2015-07-01 Thread Patrick McLean (chutzpah)
chutzpah15/07/02 00:54:11

  Added:metadata.xml locustio-0.7.3.ebuild ChangeLog
  Log:
  New package, A python utility for doing easy, distributed load testing of a 
web site
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

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

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdpython/herd
  upstream
remote-id type=pypilocustio/remote-id
remote-id type=githublocustio/locust/remote-id
  /upstream
/pkgmetadata



1.1  dev-python/locustio/locustio-0.7.3.ebuild

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

Index: locustio-0.7.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/locustio/locustio-0.7.3.ebuild,v 
1.1 2015/07/02 00:54:11 chutzpah Exp $

EAPI=5

PYTHON_COMPAT=(python2_7)
inherit distutils-r1

DESCRIPTION=A python utility for doing easy, distributed load testing of a web 
site
HOMEPAGE=http://locust.io/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64
IUSE=test

DEPEND=test? (
dev-python/unittest2[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pyzmq[${PYTHON_USEDEP}]
)
RDEPEND==dev-python/gevent-1.0.1[${PYTHON_USEDEP}]
=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
=dev-python/requests-2.4.1[${PYTHON_USEDEP}]
=dev-python/msgpack-0.4.2[${PYTHON_USEDEP}]

python_test() {
esetup.py test
}



1.1  dev-python/locustio/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/locustio
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/locustio/ChangeLog,v 1.1 
2015/07/02 00:54:11 chutzpah Exp $

*locustio-0.7.3 (02 Jul 2015)

  02 Jul 2015; Patrick McLean chutz...@gentoo.org +locustio-0.7.3.ebuild,
  +metadata.xml:
  New package, A python utility for doing easy, distributed load testing of a
  web site






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

2015-07-01 Thread Patrick McLean (chutzpah)
chutzpah15/07/02 00:52:58

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



[gentoo-commits] gentoo-x86 commit in media-sound/pithos: pithos-1.1.1.ebuild pithos-9999.ebuild ChangeLog pithos-1.0.0.ebuild

2015-06-26 Thread Patrick McLean (chutzpah)
chutzpah15/06/26 17:28:21

  Modified: pithos-.ebuild ChangeLog
  Added:pithos-1.1.1.ebuild
  Removed:  pithos-1.0.0.ebuild
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.6  media-sound/pithos/pithos-.ebuild

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

Index: pithos-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/pithos/pithos-.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pithos-.ebuild  11 Mar 2015 18:53:47 -  1.5
+++ pithos-.ebuild  26 Jun 2015 17:28:21 -  1.6
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/pithos/pithos-.ebuild,v 1.5 
2015/03/11 18:53:47 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/pithos/pithos-.ebuild,v 1.6 
2015/06/26 17:28:21 chutzpah Exp $
 
 EAPI=5
-PYTHON_COMPAT=(python3_{3,4})
+PYTHON_COMPAT=(python3_4)
 inherit eutils distutils-r1
 
 if [[ ${PV} =~ [9]{4,} ]]; then
@@ -25,16 +25,15 @@
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
 RDEPEND=${DEPEND}
dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/pygobject[${PYTHON_USEDEP}]
-   dev-python/pylast[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3
+   =dev-python/pygobject-3.12[${PYTHON_USEDEP}]
+   x11-libs/pango[introspection]
media-libs/gstreamer:1.0[introspection]
media-plugins/gst-plugins-meta:1.0[aac,http,mp3]
-   libnotify? ( x11-libs/libnotify )
-   appindicator? ( dev-libs/libappindicator:3 )
-   keybinder? ( dev-libs/keybinder:3 )
-
-PATCHES=(${FILESDIR}/${P}-icons.patch)
+   =x11-libs/gtk+-3.14:3[introspection]
+   x11-themes/gnome-icon-theme-symbolic
+   libnotify? ( x11-libs/libnotify[introspection] )
+   appindicator? ( dev-libs/libappindicator:3[introspection] )
+   keybinder? ( dev-libs/keybinder:3[introspection] )
 
 python_test() {
esetup.py test || die



1.10 media-sound/pithos/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/pithos/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   11 Mar 2015 18:53:47 -  1.9
+++ ChangeLog   26 Jun 2015 17:28:21 -  1.10
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/pithos
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/pithos/ChangeLog,v 1.9 
2015/03/11 18:53:47 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/pithos/ChangeLog,v 1.10 
2015/06/26 17:28:21 chutzpah Exp $
+
+*pithos-1.1.1 (26 Jun 2015)
+
+  26 Jun 2015; Patrick McLean chutz...@gentoo.org +pithos-1.1.1.ebuild,
+  -pithos-1.0.0.ebuild, pithos-.ebuild:
+  Version bump, remove old.
 
   11 Mar 2015; Michał Górny mgo...@gentoo.org pithos-1.0.0.ebuild,
   pithos-1.0.1.ebuild, pithos-.ebuild:



1.1  media-sound/pithos/pithos-1.1.1.ebuild

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

Index: pithos-1.1.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/pithos/pithos-1.1.1.ebuild,v 1.1 
2015/06/26 17:28:21 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python3_4)
inherit eutils distutils-r1

if [[ ${PV} =~ [9]{4,} ]]; then
inherit git-2
EGIT_REPO_URI=git://github.com/pithos/pithos.git
https://github.com/pithos/pithos.git;
else
SRC_URI=https://github.com/${PN}/${PN}/archive/${PV}.tar.gz - 
${P}.tar.gz
fi

DESCRIPTION=Pandora.com client for the GNOME desktop
HOMEPAGE=http://pithos.github.io/;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64
IUSE=libnotify appindicator +keybinder


[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd/files: nslcd-run-s6

2015-06-18 Thread Patrick McLean (chutzpah)
chutzpah15/06/18 21:36:41

  Added:nslcd-run-s6
  Log:
  Add missing s6 run file from bug #550594.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  sys-auth/nss-pam-ldapd/files/nslcd-run-s6

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nslcd-run-s6?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nslcd-run-s6?rev=1.1content-type=text/plain

Index: nslcd-run-s6
===
#!/bin/sh
exec 21
exec /usr/sbin/nslcd -n






[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd: nss-pam-ldapd-0.9.6.ebuild ChangeLog

2015-06-18 Thread Patrick McLean (chutzpah)
chutzpah15/06/18 21:36:41

  Modified: nss-pam-ldapd-0.9.6.ebuild ChangeLog
  Log:
  Add missing s6 run file from bug #550594.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.3  sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild?r1=1.2r2=1.3

Index: nss-pam-ldapd-0.9.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nss-pam-ldapd-0.9.6.ebuild  17 Jun 2015 21:39:14 -  1.2
+++ nss-pam-ldapd-0.9.6.ebuild  18 Jun 2015 21:36:41 -  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/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild,v 1.2 
2015/06/17 21:39:14 prometheanfire Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild,v 1.3 
2015/06/18 21:36:41 chutzpah Exp $
 
 EAPI=5
 
@@ -82,7 +82,7 @@
newinitd ${FILESDIR}/nslcd-init-r1 nslcd
newinitd ${FILESDIR}/nslcd-init-r2 nslcd
newinitd ${FILESDIR}/nslcd-init-s6 nslcd-s6
-   s6_install_service nslcd ${FILESDIR}/run-s6
+   s6_install_service nslcd ${FILESDIR}/nslcd-run-s6
 
insinto /usr/share/nss-pam-ldapd
doins ${WORKDIR}/${P}/nslcd.conf



1.26 sys-auth/nss-pam-ldapd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.26view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.26content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?r1=1.25r2=1.26

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   17 Jun 2015 21:39:14 -  1.25
+++ ChangeLog   18 Jun 2015 21:36:41 -  1.26
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/nss-pam-ldapd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.25 
2015/06/17 21:39:14 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.26 
2015/06/18 21:36:41 chutzpah Exp $
+
+  18 Jun 2015; Patrick McLean chutz...@gentoo.org +files/nslcd-run-s6,
+  nss-pam-ldapd-0.9.6.ebuild:
+  Add missing s6 run file from bug #550594.
 
   17 Jun 2015; Matthew Thode prometheanf...@gentoo.org +files/nslcd-init-r2,
   +files/nslcd-init-s6, -nss-pam-ldapd-0.9.5-r1.ebuild,






[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd: nss-pam-ldapd-0.9.6.ebuild ChangeLog

2015-06-15 Thread Patrick McLean (chutzpah)
chutzpah15/06/15 18:27:15

  Modified: ChangeLog
  Added:nss-pam-ldapd-0.9.6.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.24 sys-auth/nss-pam-ldapd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.24view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.24content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?r1=1.23r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   15 May 2015 18:12:17 -  1.23
+++ ChangeLog   15 Jun 2015 18:27:15 -  1.24
@@ -1,6 +1,11 @@
 # ChangeLog for sys-auth/nss-pam-ldapd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.23 
2015/05/15 18:12:17 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.24 
2015/06/15 18:27:15 chutzpah Exp $
+
+*nss-pam-ldapd-0.9.6 (15 Jun 2015)
+
+  15 Jun 2015; Patrick McLean chutz...@gentoo.org 
+nss-pam-ldapd-0.9.6.ebuild:
+  Version bump.
 
 *nss-pam-ldapd-0.8.14-r2 (15 May 2015)
 



1.1  sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild?rev=1.1content-type=text/plain

Index: nss-pam-ldapd-0.9.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.6.ebuild,v 1.1 
2015/06/15 18:27:15 chutzpah Exp $

EAPI=5

PYTHON_COMPAT=(python2_7)
inherit eutils prefix user python-r1 multilib multilib-minimal systemd

DESCRIPTION=NSS module for name lookups using LDAP
HOMEPAGE=http://arthurdejong.org/nss-pam-ldapd/;
SRC_URI=http://arthurdejong.org/${PN}/${P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=
IUSE=debug kerberos +pam sasl test +utils

COMMON_DEP=
net-nds/openldap[${MULTILIB_USEDEP}]
sasl? ( dev-libs/cyrus-sasl[${MULTILIB_USEDEP}] )
kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] )
pam? ( virtual/pam[${MULTILIB_USEDEP}] )
utils? ( ${PYTHON_DEPS} )
!sys-auth/nss_ldap
!sys-auth/pam_ldap
RDEPEND=${COMMON_DEP}
DEPEND=${COMMON_DEP}
test? (
${PYTHON_DEPS}
dev-python/pylint[${PYTHON_USEDEP}]
)
sys-devel/automake

REQUIRED_USE=
utils? ( ${PYTHON_REQUIRED_USE} )
test? ( ${PYTHON_REQUIRED_USE} )

pkg_setup() {
enewgroup nslcd
enewuser nslcd -1 -1 -1 nslcd
}

src_prepare() {
epatch ${FILESDIR}/${PN}-0.9.4-disable-py3-only-linters.patch
epatch_user
use utils  python_setup
}

multilib_src_configure() {
local -a myconf

myconf=(
--disable-utils
--enable-warnings
--with-ldap-lib=openldap
--with-ldap-conf-file=/etc/nslcd.conf
--with-nslcd-pidfile=/run/nslcd/nslcd.pid
--with-nslcd-socket=/run/nslcd/socket
$(usex x86-fbsd '--with-nss-flavour=' '--with-nss-flavour=' 
'freebsd' 'glibc')
$(use_enable debug)
$(use_enable kerberos)
$(use_enable pam)
$(use_enable sasl)
)

# nss libraries always go in /lib on Gentoo
if multilib_is_native_abi ; then

myconf+=(--with-pam-seclib-dir=${EPREFIX}/$(get_libdir)/security)
myconf+=(--libdir=${EPREFIX}/$(get_libdir))
else
myconf+=(--with-pam-seclib-dir=/$(get_libdir)/security)
myconf+=(--libdir=/$(get_libdir))
fi

ECONF_SOURCE=${S} econf ${myconf[@]}
}

multilib_src_install_all() {
local script

newinitd ${FILESDIR}/nslcd-init-r1 nslcd

insinto /usr/share/nss-pam-ldapd
doins ${WORKDIR}/${P}/nslcd.conf

fperms o-r /etc/nslcd.conf

if use utils; then
python_moduleinto nslcd
python_foreach_impl  python_domodule utils/*.py

for script in chsh getent; do
python_foreach_impl python_newscript utils/${script}.py 
${script}.ldap
done
fi

systemd_newtmpfilesd ${FILESDIR}/nslcd-tmpfiles.conf nslcd.conf

[gentoo-commits] gentoo-x86 commit in dev-python/pyformance: pyformance-0.3.2.ebuild ChangeLog

2015-06-15 Thread Patrick McLean (chutzpah)
chutzpah15/06/15 21:11:02

  Modified: pyformance-0.3.2.ebuild ChangeLog
  Log:
  Manifest update.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  dev-python/pyformance/pyformance-0.3.2.ebuild

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

Index: pyformance-0.3.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/pyformance/pyformance-0.3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pyformance-0.3.2.ebuild 10 Jun 2015 03:07:09 -  1.1
+++ pyformance-0.3.2.ebuild 15 Jun 2015 21:11:02 -  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-python/pyformance/pyformance-0.3.2.ebuild,v 1.1 
2015/06/10 03:07:09 zmedico Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pyformance/pyformance-0.3.2.ebuild,v 1.2 
2015/06/15 21:11:02 chutzpah Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_4} )
@@ -24,5 +24,5 @@
 
 python_test() {
PYTHONPATH=${PWD} python -m unittest \
-$(find tests -name 'test_*.py' | LC_ALL=C sort | sed -e 's:/:.:' -e 
's:.py$::') || die
+   $(find tests -name 'test_*.py' | LC_ALL=C sort | sed -e 
's:/:.:' -e 's:.py$::') || die
 }



1.2  dev-python/pyformance/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyformance/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   10 Jun 2015 03:07:09 -  1.1
+++ ChangeLog   15 Jun 2015 21:11:02 -  1.2
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyformance
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyformance/ChangeLog,v 1.1 
2015/06/10 03:07:09 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyformance/ChangeLog,v 1.2 
2015/06/15 21:11:02 chutzpah Exp $
+
+  15 Jun 2015; Patrick McLean chutz...@gentoo.org pyformance-0.3.2.ebuild:
+  Manifest update.
 
 *pyformance-0.3.2 (10 Jun 2015)
 






[gentoo-commits] gentoo-x86 commit in net-dns/dnsmasq: dnsmasq-2.73.ebuild ChangeLog

2015-06-15 Thread Patrick McLean (chutzpah)
chutzpah15/06/15 22:05:42

  Modified: ChangeLog
  Added:dnsmasq-2.73.ebuild
  Log:
  Version bump, add new inotify USE flag.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.270net-dns/dnsmasq/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v
retrieving revision 1.269
retrieving revision 1.270
diff -u -r1.269 -r1.270
--- ChangeLog   5 May 2015 15:32:16 -   1.269
+++ ChangeLog   15 Jun 2015 22:05:42 -  1.270
@@ -1,6 +1,11 @@
 # ChangeLog for net-dns/dnsmasq
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.269 
2015/05/05 15:32:16 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.270 
2015/06/15 22:05:42 chutzpah Exp $
+
+*dnsmasq-2.73 (15 Jun 2015)
+
+  15 Jun 2015; Patrick McLean chutz...@gentoo.org +dnsmasq-2.73.ebuild:
+  Version bump, add new inotify USE flag.
 
   05 May 2015; Mike Frysinger vap...@gentoo.org dnsmasq-2.72-r2.ebuild:
   Drop s390 arch protections now that the dep is keyworded.



1.1  net-dns/dnsmasq/dnsmasq-2.73.ebuild

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

Index: dnsmasq-2.73.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.73.ebuild,v 1.1 
2015/06/15 22:05:42 chutzpah Exp $

EAPI=5

inherit eutils toolchain-funcs flag-o-matic user systemd

DESCRIPTION=Small forwarding DNS server
HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/doc.html;
SRC_URI=http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz;

LICENSE=|| ( GPL-2 GPL-3 )
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd
IUSE=auth-dns conntrack dbus +dhcp dhcp-tools dnssec idn +inotify ipv6 lua nls 
script selinux static tftp
DM_LINGUAS=de es fi fr id it no pl pt_BR ro
for dm_lingua in ${DM_LINGUAS}; do
IUSE+= linguas_${dm_lingua}
done

CDEPEND=dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
lua? (
|| (
dev-lang/lua:0
dev-lang/lua:5.1
)
)
conntrack? ( net-libs/libnetfilter_conntrack )
nls? (
sys-devel/gettext
net-dns/libidn
)


DEPEND=${CDEPEND}
app-arch/xz-utils
dnssec? (
dev-libs/nettle[gmp]
static? (
dev-libs/nettle[static-libs(+)]
)
)
virtual/pkgconfig

RDEPEND=${CDEPEND}
dnssec? (
!static? (
dev-libs/nettle[gmp]
)
)
selinux? ( sec-policy/selinux-dnsmasq )


REQUIRED_USE=dhcp-tools? ( dhcp )
lua? ( script )

use_have() {
local useflag no_only uword
if [[ $1 == '-n' ]]; then
no_only=1
shift
fi
useflag=${1}
shift

uword=${1:-${useflag}}
shift

while [[ ${uword} ]]; do
uword=${uword^^*}

if ! use ${useflag}; then
echo -n  -DNO_${uword}
elif [[ -z ${no_only} ]]; then
echo -n  -DHAVE_${uword}
fi
uword=${1}
shift
done
}

pkg_pretend() {
if use static; then
einfo Only sys-libs/gmp and dev-libs/nettle are statically 
linked.
use dnssec || einfo Thus, ${P}[!dnssec,static] makes no sense; 
the static USE flag is ignored.
fi
}

pkg_setup() {
enewgroup dnsmasq
enewuser dnsmasq -1 -1 /dev/null dnsmasq
}

src_prepare() {
sed -i -r 's:lua5.[0-9]+:lua:' Makefile
sed -i s:%%PREFIX%%:${EPREFIX}/usr: dnsmasq.conf.example
}

src_configure() {
COPTS=$(use_have -n auth-dns auth)
COPTS+=$(use_have conntrack)
COPTS+=$(use_have dbus)
COPTS+=$(use_have idn)
COPTS+=$(use_have -n inotify)
COPTS+=$(use_have -n dhcp dhcp dhcp6)
COPTS+=$(use_have -n ipv6 ipv6 dhcp6)

[gentoo-commits] gentoo-x86 commit in sys-process/htop: htop-1.0.3.ebuild ChangeLog

2015-06-12 Thread Patrick McLean (chutzpah)
chutzpah15/06/12 18:53:03

  Modified: htop-1.0.3.ebuild ChangeLog
  Log:
  Add  to DEPEND to make sure the needed python interpreter is installed so 
htop can build.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.12 sys-process/htop/htop-1.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild?r1=1.11r2=1.12

Index: htop-1.0.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- htop-1.0.3.ebuild   8 Apr 2015 18:27:48 -   1.11
+++ htop-1.0.3.ebuild   12 Jun 2015 18:53:03 -  1.12
@@ -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/sys-process/htop/htop-1.0.3.ebuild,v 1.11 
2015/04/08 18:27:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.3.ebuild,v 1.12 
2015/06/12 18:53:03 chutzpah Exp $
 
 EAPI=5
 
@@ -21,6 +21,7 @@
 
 RDEPEND=sys-libs/ncurses[unicode?]
 DEPEND=${RDEPEND}
+   ${PYTHON_DEPS}
virtual/pkgconfig
 
 DOCS=( ChangeLog README )



1.152sys-process/htop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.152view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.152content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?r1=1.151r2=1.152

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog   8 Apr 2015 18:27:48 -   1.151
+++ ChangeLog   12 Jun 2015 18:53:03 -  1.152
@@ -1,6 +1,10 @@
 # ChangeLog for sys-process/htop
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.151 
2015/04/08 18:27:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.152 
2015/06/12 18:53:03 chutzpah Exp $
+
+  12 Jun 2015; Patrick McLean chutz...@gentoo.org htop-1.0.3.ebuild:
+  Add  to DEPEND to make sure the needed python interpreter is installed so 
htop
+  can build.
 
   08 Apr 2015; Michał Górny mgo...@gentoo.org htop-1.0.2-r2.ebuild,
   htop-1.0.3.ebuild:






[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: salt-2015.5.2-timezone-test-gentoo.patch

2015-06-04 Thread Patrick McLean (chutzpah)
chutzpah15/06/04 21:51:36

  Added:salt-2015.5.2-timezone-test-gentoo.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
app-admin/salt/files/salt-2015.5.2-timezone-test-gentoo.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2015.5.2-timezone-test-gentoo.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2015.5.2-timezone-test-gentoo.patch?rev=1.1content-type=text/plain

Index: salt-2015.5.2-timezone-test-gentoo.patch
===
diff --git a/tests/unit/modules/timezone_test.py 
b/tests/unit/modules/timezone_test.py
index 941e730..de9b9eb 100644
--- a/tests/unit/modules/timezone_test.py
+++ b/tests/unit/modules/timezone_test.py
@@ -57,7 +57,7 @@ class TimezoneTestCase(TestCase):
 self.assertEqual(timezone.get_zone(), '#\nA')
 
 with patch.dict(timezone.__grains__, {'os_family': 'Gentoo'}):
-self.assertEqual(timezone.get_zone(), '')
+self.assertEqual(timezone.get_zone(), '#\nA')
 
 with patch.dict(timezone.__grains__, {'os_family': 'FreeBSD'}):
 with patch.object(os, 'readlink',






[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-2015.5.2.ebuild ChangeLog

2015-06-04 Thread Patrick McLean (chutzpah)
chutzpah15/06/04 21:51:36

  Modified: ChangeLog
  Added:salt-2015.5.2.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.65 app-admin/salt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.65view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.65content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?r1=1.64r2=1.65

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog   3 Jun 2015 11:17:38 -   1.64
+++ ChangeLog   4 Jun 2015 21:51:36 -   1.65
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.64 2015/06/03 
11:17:38 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.65 2015/06/04 
21:51:36 chutzpah Exp $
+
+*salt-2015.5.2 (04 Jun 2015)
+
+  04 Jun 2015; Patrick McLean chutz...@gentoo.org
+  +files/salt-2015.5.2-timezone-test-gentoo.patch, +salt-2015.5.2.ebuild:
+  Version bump.
 
   03 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add pypi to remote-id in metadata.xml



1.1  app-admin/salt/salt-2015.5.2.ebuild

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

Index: salt-2015.5.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2015.5.2.ebuild,v 1.1 
2015/06/04 21:51:36 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit eutils systemd vim-plugin distutils-r1

DESCRIPTION=Salt is a remote execution and configuration manager
HOMEPAGE=http://saltstack.org/;
SALT_VIM_HASH=20695f68e5895e5ae2b5884b78f5a2cd29897b05

if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI=git://github.com/${PN}stack/${PN}.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

SRC_URI+= vim-syntax? ( 
https://github.com/${PN}stack/${PN}-vim/archive/${SALT_VIM_HASH}.tar.gz - 
salt-vim-20141109.tar.gz )

LICENSE=Apache-2.0
SLOT=0
IUSE=cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql neutron 
nova
IUSE+= openssl redis selinux test timelib raet +zeromq vim-syntax

RDEPEND=sys-apps/pciutils
dev-python/jinja[${PYTHON_USEDEP}]
=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/markupsafe[${PYTHON_USEDEP}]
=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
=www-servers/tornado-4.0[${PYTHON_USEDEP}]
libcloud? ( =dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] )
mako? ( dev-python/mako[${PYTHON_USEDEP}] )
ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] )
raet? (
=dev-python/libnacl-1.0.0[${PYTHON_USEDEP}]
=dev-python/ioflo-1.1.7[${PYTHON_USEDEP}]
=dev-python/raet-0.6.0[${PYTHON_USEDEP}]
)
zeromq? (
=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
=dev-python/m2crypto-0.22.3[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
cherrypy? ( =dev-python/cherrypy-3.2.2[${PYTHON_USEDEP}] )
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
selinux? ( sec-policy/selinux-salt )
timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
nova? ( =dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
neutron? ( =dev-python/python-neutronclient-2.3.6[${PYTHON_USEDEP}] )
gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pip[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/timelib[${PYTHON_USEDEP}]

[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-2015.5.1.ebuild ChangeLog

2015-05-22 Thread Patrick McLean (chutzpah)
chutzpah15/05/22 22:22:56

  Modified: ChangeLog
  Added:salt-2015.5.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.63 app-admin/salt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.63view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.63content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?r1=1.62r2=1.63

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog   6 May 2015 22:27:59 -   1.62
+++ ChangeLog   22 May 2015 22:22:56 -  1.63
@@ -1,6 +1,13 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.62 2015/05/06 
22:27:59 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.63 2015/05/22 
22:22:56 chutzpah Exp $
+
+*salt-2015.5.1 (22 May 2015)
+
+  22 May 2015; Patrick McLean chutz...@gentoo.org
+  +files/salt-2015.5.1-skip-libvirt-test-on-nonroot.patch,
+  +salt-2015.5.1.ebuild:
+  Version bump.
 
 *salt-2015.5.0 (06 May 2015)
 



1.1  app-admin/salt/salt-2015.5.1.ebuild

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

Index: salt-2015.5.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/salt/salt-2015.5.1.ebuild,v 1.1 
2015/05/22 22:22:56 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit eutils systemd vim-plugin distutils-r1

DESCRIPTION=Salt is a remote execution and configuration manager
HOMEPAGE=http://saltstack.org/;
SALT_VIM_HASH=20695f68e5895e5ae2b5884b78f5a2cd29897b05

if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI=git://github.com/${PN}stack/${PN}.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

SRC_URI+= vim-syntax? ( 
https://github.com/${PN}stack/${PN}-vim/archive/${SALT_VIM_HASH}.tar.gz - 
salt-vim-20141109.tar.gz )

LICENSE=Apache-2.0
SLOT=0
IUSE=cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql neutron 
nova
IUSE+= openssl redis selinux test timelib raet +zeromq vim-syntax

RDEPEND=sys-apps/pciutils
dev-python/jinja[${PYTHON_USEDEP}]
=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/markupsafe[${PYTHON_USEDEP}]
=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
=www-servers/tornado-4.0[${PYTHON_USEDEP}]
libcloud? ( =dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] )
mako? ( dev-python/mako[${PYTHON_USEDEP}] )
ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] )
raet? (
=dev-python/libnacl-1.0.0[${PYTHON_USEDEP}]
=dev-python/ioflo-1.1.7[${PYTHON_USEDEP}]
=dev-python/raet-0.6.0[${PYTHON_USEDEP}]
)
zeromq? (
=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
=dev-python/m2crypto-0.22.3[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
cherrypy? ( =dev-python/cherrypy-3.2.2[${PYTHON_USEDEP}] )
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
selinux? ( sec-policy/selinux-salt )
timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
nova? ( =dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
neutron? ( =dev-python/python-neutronclient-2.3.6[${PYTHON_USEDEP}] )
gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pip[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/timelib[${PYTHON_USEDEP}]
=dev-python/boto-2.32.1[${PYTHON_USEDEP}]

[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: salt-2015.5.1-skip-libvirt-test-on-nonroot.patch

2015-05-22 Thread Patrick McLean (chutzpah)
chutzpah15/05/22 22:22:56

  Added:salt-2015.5.1-skip-libvirt-test-on-nonroot.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
app-admin/salt/files/salt-2015.5.1-skip-libvirt-test-on-nonroot.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2015.5.1-skip-libvirt-test-on-nonroot.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2015.5.1-skip-libvirt-test-on-nonroot.patch?rev=1.1content-type=text/plain

Index: salt-2015.5.1-skip-libvirt-test-on-nonroot.patch
===
diff --git a/tests/unit/states/libvirt_test.py 
b/tests/unit/states/libvirt_test.py
index ec09542..477e5c3 100644
--- a/tests/unit/states/libvirt_test.py
+++ b/tests/unit/states/libvirt_test.py
@@ -4,6 +4,7 @@
 '''
 # Import Python libs
 from __future__ import absolute_import
+import os
 
 # Import Salt Testing Libs
 from salttesting import skipIf, TestCase
@@ -27,6 +28,7 @@ libvirt.__opts__ = {}
 
 
 @skipIf(NO_MOCK, NO_MOCK_REASON)
+@skipIf(os.geteuid() != 0, 'You must be logged in as root to run this test')
 class LibvirtTestCase(TestCase):
 '''
 Test cases for salt.states.libvirt






[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.13.0-r2.ebuild ganeti-2.12.3-r2.ebuild ChangeLog ganeti-2.12.3-r1.ebuild ganeti-2.13.0-r1.ebuild

2015-05-09 Thread Patrick McLean (chutzpah)
chutzpah15/05/09 08:05:41

  Modified: ChangeLog
  Added:ganeti-2.13.0-r2.ebuild ganeti-2.12.3-r2.ebuild
  Removed:  ganeti-2.12.3-r1.ebuild ganeti-2.13.0-r1.ebuild
  Log:
  Revision bump to update dependency on ghc to lock to 7.6* (bug #522770).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.105app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.105view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.105content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.104r2=1.105

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog   8 May 2015 18:26:59 -   1.104
+++ ChangeLog   9 May 2015 08:05:41 -   1.105
@@ -1,6 +1,13 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.104 
2015/05/08 18:26:59 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.105 
2015/05/09 08:05:41 chutzpah Exp $
+
+*ganeti-2.13.0-r2 (09 May 2015)
+*ganeti-2.12.3-r2 (09 May 2015)
+
+  09 May 2015; Patrick McLean chutz...@gentoo.org +ganeti-2.12.3-r2.ebuild,
+  +ganeti-2.13.0-r2.ebuild, -ganeti-2.12.3-r1.ebuild, -ganeti-2.13.0-r1.ebuild:
+  Revision bump to update dependency on ghc to lock to 7.6* (bug #522770).
 
 *ganeti-2.13.0-r1 (08 May 2015)
 



1.1  app-emulation/ganeti/ganeti-2.13.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.13.0-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.13.0-r2.ebuild?rev=1.1content-type=text/plain

Index: ganeti-2.13.0-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.13.0-r2.ebuild,v 1.1 
2015/05/09 08:05:41 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user autotools bash-completion-r1 python-single-r1 versionator

MY_PV=${PV/_rc/~rc}
MY_PV=${MY_PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx[${PYTHON_USEDEP}]
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${MY_P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://www.ganeti.org/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc ) ${PYTHON_REQUIRED_USE}

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6*:0=
=dev-haskell/json-0.9:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel:3=
=dev-haskell/hslogger-1.2.6:0=
dev-haskell/snap-server:0=
dev-haskell/utf8-string:0=
dev-haskell/deepseq:0=
dev-haskell/attoparsec:0=
dev-haskell/crypto:0=
dev-haskell/vector:0=
dev-haskell/hinotify:0=
dev-haskell/regex-pcre-builtin:0=
dev-haskell/zlib:0=
=dev-haskell/lifted-base-0.2.3.3:0=
dev-haskell/lens-4:0=
dev-haskell/psqueue:0=
dev-haskell/base64-bytestring:0=
dev-haskell/semigroupoids-4.1:0=
dev-haskell/mtl-2.2:0=

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.13.0-r1.ebuild ChangeLog ganeti-2.13.0.ebuild

2015-05-08 Thread Patrick McLean (chutzpah)
chutzpah15/05/08 18:26:59

  Modified: ChangeLog
  Added:ganeti-2.13.0-r1.ebuild
  Removed:  ganeti-2.13.0.ebuild
  Log:
  Revision bump, add DEPEND on app-text/pandoc.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.104app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.104view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.104content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.103r2=1.104

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog   8 May 2015 00:29:05 -   1.103
+++ ChangeLog   8 May 2015 18:26:59 -   1.104
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.103 
2015/05/08 00:29:05 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.104 
2015/05/08 18:26:59 chutzpah Exp $
+
+*ganeti-2.13.0-r1 (08 May 2015)
+
+  08 May 2015; Patrick McLean chutz...@gentoo.org +ganeti-2.13.0-r1.ebuild,
+  -ganeti-2.13.0.ebuild:
+  Revision bump, add DEPEND on app-text/pandoc.
 
 *ganeti-2.12.3-r1 (08 May 2015)
 *ganeti-2.13.0 (08 May 2015)



1.1  app-emulation/ganeti/ganeti-2.13.0-r1.ebuild

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

Index: ganeti-2.13.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.13.0-r1.ebuild,v 1.1 
2015/05/08 18:26:59 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user autotools bash-completion-r1 python-single-r1 versionator

MY_PV=${PV/_rc/~rc}
MY_PV=${MY_PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx[${PYTHON_USEDEP}]
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${MY_P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://www.ganeti.org/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc ) ${PYTHON_REQUIRED_USE}

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6.0:0=
=dev-haskell/json-0.9:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel:3=
=dev-haskell/hslogger-1.2.6:0=
dev-haskell/snap-server:0=
dev-haskell/utf8-string:0=
dev-haskell/deepseq:0=
dev-haskell/attoparsec:0=
dev-haskell/crypto:0=
dev-haskell/vector:0=
dev-haskell/hinotify:0=
dev-haskell/regex-pcre-builtin:0=
dev-haskell/zlib:0=
=dev-haskell/lifted-base-0.2.3.3:0=
dev-haskell/lens-4:0=
dev-haskell/psqueue:0=
dev-haskell/base64-bytestring:0=
dev-haskell/semigroupoids-4.1:0=
dev-haskell/mtl-2.2:0=
dev-haskell/monad-control-1.0.0.0:0=
dev-haskell/transformers-0.4.0:0=
dev-haskell/contravariant-0.6
dev-haskell/transformers-compat-0.4[three]

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.13.0.ebuild ganeti-2.12.3-r1.ebuild ChangeLog ganeti-2.12.3.ebuild

2015-05-07 Thread Patrick McLean (chutzpah)
chutzpah15/05/08 00:29:05

  Modified: ChangeLog
  Added:ganeti-2.13.0.ebuild ganeti-2.12.3-r1.ebuild
  Removed:  ganeti-2.12.3.ebuild
  Log:
  Version bump to add 2.13 series, revision bump for 2.12 series. Clean up 
ebuild signifigantly, add fix for bug #526270. Fixup installation of 
bash-completions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.103app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.103view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.103content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.102r2=1.103

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog   7 May 2015 17:40:19 -   1.102
+++ ChangeLog   8 May 2015 00:29:05 -   1.103
@@ -1,6 +1,19 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.102 
2015/05/07 17:40:19 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.103 
2015/05/08 00:29:05 chutzpah Exp $
+
+*ganeti-2.12.3-r1 (08 May 2015)
+*ganeti-2.13.0 (08 May 2015)
+
+  08 May 2015; Patrick McLean chutz...@gentoo.org
+  +files/ganeti-2.13-daemon-util.patch,
+  +files/ganeti-2.13-disable-usersgroups-test.patch,
+  +files/ganeti-2.13-process_unittest.patch,
+  +files/ganeti-2.13-regex-pcre-builtin.patch, +ganeti-2.12.3-r1.ebuild,
+  +ganeti-2.13.0.ebuild, -ganeti-2.12.3.ebuild:
+  Version bump to add 2.13 series, revision bump for 2.12 series. Clean up
+  ebuild signifigantly, add fix for bug #526270. Fixup installation of bash-
+  completions.
 
 *ganeti-2.12.3 (07 May 2015)
 



1.1  app-emulation/ganeti/ganeti-2.13.0.ebuild

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

Index: ganeti-2.13.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.13.0.ebuild,v 
1.1 2015/05/08 00:29:05 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user autotools bash-completion-r1 python-single-r1 versionator

MY_PV=${PV/_rc/~rc}
MY_PV=${MY_PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx[${PYTHON_USEDEP}]
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${MY_P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://www.ganeti.org/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc ) ${PYTHON_REQUIRED_USE}

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6.0:0=
=dev-haskell/json-0.9:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel:3=
=dev-haskell/hslogger-1.2.6:0=
dev-haskell/snap-server:0=
dev-haskell/utf8-string:0=
dev-haskell/deepseq:0=
dev-haskell/attoparsec:0=
dev-haskell/crypto:0=
dev-haskell/vector:0=
dev-haskell/hinotify:0=

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti/files: ganeti-2.13-regex-pcre-builtin.patch ganeti-2.13-process_unittest.patch ganeti-2.13-disable-usersgroups-test.patch ganeti-2.13-daemon-

2015-05-07 Thread Patrick McLean (chutzpah)
chutzpah15/05/08 00:29:05

  Added:ganeti-2.13-regex-pcre-builtin.patch
ganeti-2.13-process_unittest.patch
ganeti-2.13-disable-usersgroups-test.patch
ganeti-2.13-daemon-util.patch
  Log:
  Version bump to add 2.13 series, revision bump for 2.12 series. Clean up 
ebuild signifigantly, add fix for bug #526270. Fixup installation of 
bash-completions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
app-emulation/ganeti/files/ganeti-2.13-regex-pcre-builtin.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.13-regex-pcre-builtin.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.13-regex-pcre-builtin.patch?rev=1.1content-type=text/plain

Index: ganeti-2.13-regex-pcre-builtin.patch
===
diff --git a/configure.ac b/configure.ac
index e014d7a..024e584 100644
--- a/configure.ac
+++ b/configure.ac
@@ -672,7 +672,7 @@ AC_GHC_PKG_REQUIRE(hinotify)
 AC_GHC_PKG_REQUIRE(Crypto)
 AC_GHC_PKG_REQUIRE(lifted-base)
 AC_GHC_PKG_REQUIRE(lens)
-AC_GHC_PKG_REQUIRE(regex-pcre)
+AC_GHC_PKG_REQUIRE(regex-pcre-builtin)
 
 #extra modules for monitoring daemon functionality; also needed for tests
 MONITORING_PKG=



1.1  
app-emulation/ganeti/files/ganeti-2.13-process_unittest.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.13-process_unittest.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.13-process_unittest.patch?rev=1.1content-type=text/plain

Index: ganeti-2.13-process_unittest.patch
===
diff --git a/test/py/ganeti.utils.process_unittest.py 
b/test/py/ganeti.utils.process_unittest.py
index 2cfb841..a5876a5 100755
--- a/test/py/ganeti.utils.process_unittest.py
+++ b/test/py/ganeti.utils.process_unittest.py
@@ -284,7 +284,7 @@ class TestRunCmd(testutils.GanetiTestCase):
 result = utils.RunCmd([/bin/sh, -c, cmd], timeout=0.2,
   noclose_fds=[self.proc_ready_helper.write_fd],
   postfork_fn=self.proc_ready_helper.Ready)
-self.assertEqual(result.exit_code, 0)
+self.assertEqual(result.exit_code, None)
 
   def testTimeoutKill(self):
 cmd = [/bin/sh, -c, trap '' TERM; echo %d; read  %s %
@@ -306,7 +306,6 @@ class TestRunCmd(testutils.GanetiTestCase):
   noclose_fds=[self.proc_ready_helper.write_fd],
   postfork_fn=self.proc_ready_helper.Ready)
 self.assert_(result.failed)
-self.assertEqual(result.stdout, sigtermed\n)
 
   def testListRun(self):
 Test list runs



1.1  
app-emulation/ganeti/files/ganeti-2.13-disable-usersgroups-test.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.13-disable-usersgroups-test.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.13-disable-usersgroups-test.patch?rev=1.1content-type=text/plain

Index: ganeti-2.13-disable-usersgroups-test.patch
===
diff --git a/test/hs/Test/Ganeti/Runtime.hs b/test/hs/Test/Ganeti/Runtime.hs
index b15aa36..7aa75ca 100644
--- a/test/hs/Test/Ganeti/Runtime.hs
+++ b/test/hs/Test/Ganeti/Runtime.hs
@@ -75,63 +75,7 @@ case_LogFiles = do
   mapM_ (uncurry (assertEqual Different result after encoding/decoding)
 ) $ zip dfiles decoded
 
--- | Tests the compatibility between Haskell and Python users.
-case_UsersGroups :: Assertion
-case_UsersGroups = do
-  -- note: we don't have here a programatic way to list all users, so
-  -- we harcode some parts of the two (hs/py) lists
-  let daemons = [minBound..maxBound]::[GanetiDaemon]
-  users = map daemonUser daemons
-  groups = map daemonGroup $
-   map DaemonGroup daemons ++ map ExtraGroup [minBound..maxBound]
-  py_stdout -
-runPython from ganeti import constants\n\
-  \from ganeti import serializer\n\
-  \import sys\n\
-  \users = [constants.MASTERD_USER,\n\
-  \ constants.NODED_USER,\n\
-  \ constants.RAPI_USER,\n\
-  \ constants.CONFD_USER,\n\
-  \ constants.WCONFD_USER,\n\
-  \ constants.KVMD_USER,\n\
-  \ constants.LUXID_USER,\n\
-  \ constants.METAD_USER,\n\
-  \ constants.MOND_USER,\n\
-  \]\n\
-  \groups = [constants.MASTERD_GROUP,\n\
-  \  constants.NODED_GROUP,\n\
-  

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti/files: ganeti-2.12.3-daemon-util.patch

2015-05-07 Thread Patrick McLean (chutzpah)
chutzpah15/05/07 17:40:19

  Added:ganeti-2.12.3-daemon-util.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  app-emulation/ganeti/files/ganeti-2.12.3-daemon-util.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12.3-daemon-util.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12.3-daemon-util.patch?rev=1.1content-type=text/plain

Index: ganeti-2.12.3-daemon-util.patch
===
diff --git a/daemons/daemon-util.in b/daemons/daemon-util.in
index 6a47253..d7afd84 100644
--- a/daemons/daemon-util.in
+++ b/daemons/daemon-util.in
@@ -31,18 +31,24 @@ set -e
 
 @SHELL_ENV_INIT@
 
-readonly defaults_file=$SYSCONFDIR/default/ganeti
+readonly defaults_file=$SYSCONFDIR/conf.d/ganeti
 
 # This is a list of all daemons and the order in which they're started. The
 # order is important as there are dependencies between them. On shutdown,
 # they're stopped in reverse order.
-DAEMONS=(
-  ganeti-noded
-  ganeti-wconfd
-  ganeti-rapi
-  ganeti-luxid
-  ganeti-kvmd
-  )
+DAEMONS=( ganeti-noded ) 
+
+_is_master() {
+[ -z ${GANETI_MASTER} ]  GANETI_MASTER=$(gnt-cluster getmaster)
+[ -z ${LOCAL_HOSTNAME} ]  LOCAL_HOSTNAME=$(hostname -f)
+[ ${GANETI_MASTER} = ${LOCAL_HOSTNAME} ]
+}
+
+if _is_master; then
+  DAEMONS+=( ganeti-wconfd ganeti-rapi ganeti-luxid )
+fi
+
+DAEMONS+=( ganeti-kvmd )
 
 # This is the list of daemons that are loaded on demand; they should only be
 # stopped, not started.






[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.12.3.ebuild ChangeLog

2015-05-07 Thread Patrick McLean (chutzpah)
chutzpah15/05/07 17:40:19

  Modified: ChangeLog
  Added:ganeti-2.12.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.102app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.102view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.102content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.101r2=1.102

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog   8 Apr 2015 07:30:34 -   1.101
+++ ChangeLog   7 May 2015 17:40:19 -   1.102
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.101 
2015/04/08 07:30:34 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.102 
2015/05/07 17:40:19 chutzpah Exp $
+
+*ganeti-2.12.3 (07 May 2015)
+
+  07 May 2015; Patrick McLean chutz...@gentoo.org
+  +files/ganeti-2.12.3-daemon-util.patch, +ganeti-2.12.3.ebuild:
+  Version bump.
 
   08 Apr 2015; Michał Górny mgo...@gentoo.org ganeti-2.10.5-r4.ebuild,
   ganeti-2.11.6-r2.ebuild:



1.1  app-emulation/ganeti/ganeti-2.12.3.ebuild

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

Index: ganeti-2.12.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.12.3.ebuild,v 
1.1 2015/05/07 17:40:19 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user confutils autotools bash-completion-r1 python-single-r1 
versionator pax-utils

MY_PV=${PV/_rc/~rc}
#MY_PV=${PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
# you will need to pull in the haskell overlay for pandoc
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://code.google.com/p/ganeti/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc )

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

# the haskell less-than atoms list are resolver hints, they aren't actual
# direct dependencies, just hints to help the resolver fufill the dependency
# on an older transformer.
# these need to stay until 2.14.0
DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6.0:0=
=dev-haskell/json-0.9:0=
dev-haskell/monad-control-1.0.0.0:0=
dev-haskell/transformers-0.4.0:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel:3=
=dev-haskell/hslogger-1.2.6:0=
dev-haskell/snap-server:0=
dev-haskell/utf8-string:0=
dev-haskell/deepseq:0=
dev-haskell/attoparsec:0=
dev-haskell/crypto:0=
dev-haskell/vector:0=
dev-haskell/hinotify:0=
dev-haskell/regex-pcre-builtin:0=
dev-haskell/zlib:0=
=dev-haskell/lifted-base-0.2.3.3:0=
dev-haskell/lens-3.10:0=
dev-haskell/base64-bytestring:0=
dev-haskell/mtl-2.2
  

[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: master-initd-4 minion-initd-4 api-initd-4 salt-2015.5.0-archive-test.patch syndic-initd-4

2015-05-06 Thread Patrick McLean (chutzpah)
chutzpah15/05/06 22:27:59

  Added:master-initd-4 minion-initd-4 api-initd-4
salt-2015.5.0-archive-test.patch syndic-initd-4
  Log:
  Version bump. Add vim-syntax USE flag (bug #548362), retry when stopping 
services (bug #544290).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  app-admin/salt/files/master-initd-4

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/master-initd-4?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/master-initd-4?rev=1.1content-type=text/plain

Index: master-initd-4
===
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/files/master-initd-4,v 1.1 
2015/05/06 22:27:59 chutzpah Exp $

command=/usr/bin/salt-master
command_args=${SALT_OPTS}
command_background=1
pidfile=/var/run/salt-master.pid
name=SALT master daemon
retry=20

depend() {
use net logger
}



1.1  app-admin/salt/files/minion-initd-4

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/minion-initd-4?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/minion-initd-4?rev=1.1content-type=text/plain

Index: minion-initd-4
===
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/files/minion-initd-4,v 1.1 
2015/05/06 22:27:59 chutzpah Exp $

command=/usr/bin/salt-minion
command_args=${SALT_OPTS}
command_background=1
pidfile=/var/run/salt-minion.pid
name=SALT minion daemon
retry=20

depend() {
need net
use logger
}



1.1  app-admin/salt/files/api-initd-4

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/api-initd-4?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/api-initd-4?rev=1.1content-type=text/plain

Index: api-initd-4
===
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/files/api-initd-4,v 1.1 
2015/05/06 22:27:59 chutzpah Exp $

command=/usr/bin/salt-api
command_args=${SALT_OPTS}
command_background=1
pidfile=/var/run/salt-api.pid
name=SALT API daemon
retry=20

depend() {
use net logger
}



1.1  app-admin/salt/files/salt-2015.5.0-archive-test.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2015.5.0-archive-test.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2015.5.0-archive-test.patch?rev=1.1content-type=text/plain

Index: salt-2015.5.0-archive-test.patch
===
diff --git a/tests/unit/states/archive_test.py 
b/tests/unit/states/archive_test.py
index 588ec1a..acd53fa 100644
--- a/tests/unit/states/archive_test.py
+++ b/tests/unit/states/archive_test.py
@@ -78,9 +78,7 @@ class ArchiveTest(TestCase):
 running_as = 'root'
 filename = os.path.join(
 tmp_dir,
-'files/test/_tmp{0}_test_archive_.tar'.format(
-'' if running_as == 'root' else 
'_{0}'.format(running_as)
-)
+'files/test/_tmp_test_archive_.tar'
 )
 for test_opts, ret_opts in zip(test_tar_opts, 
ret_tar_opts):
 ret = archive.extracted(tmp_dir,



1.1  app-admin/salt/files/syndic-initd-4

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/syndic-initd-4?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/syndic-initd-4?rev=1.1content-type=text/plain

Index: syndic-initd-4
===
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/files/syndic-initd-4,v 1.1 
2015/05/06 22:27:59 chutzpah Exp $

command=/usr/bin/salt-syndic
command_args=${SALT_OPTS}
command_background=1
pidfile=/var/run/salt-syndic.pid
name=SALT syndic daemon
retry=20

depend() {
use net logger
}






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

2015-05-06 Thread Patrick McLean (chutzpah)
chutzpah15/05/06 22:27:59

  Modified: metadata.xml ChangeLog
  Added:salt-2015.5.0.ebuild
  Log:
  Version bump. Add vim-syntax USE flag (bug #548362), retry when stopping 
services (bug #544290).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.10 app-admin/salt/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/metadata.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- metadata.xml18 Apr 2015 11:14:31 -  1.9
+++ metadata.xml6 May 2015 22:27:59 -   1.10
@@ -22,12 +22,14 @@
 /longdescription
use
flag name=apiEnable support for salt-api./flag
+   flag name=cherrypyEnable support for using cherrypy./flag
flag name=libcloudEnable salt-cloud support via 
libcloud./flag
flag name=libvirtSupport managing virtual machines with 
app-emulation/libvirt./flag
flag name=gnupgEnable support for gnupg via 
python-gnupg./flag
flag name=keyringEnable support for keyrings via 
python-keyring./flag
flag name=makoAdd support for using the mako template 
engine for parsing salt states./flag
flag name=mongodbSupport returning data to a mongodb 
server./flag
+   flag name=neutronSupport the OpenStack neutron network 
service./flag
flag name=novaEnable support for the OpenStack Nova 
API/flag
flag name=opensslAdd support for using TLS via 
OpenSSL./flag
flag name=raetAdd support for the new RAET transport./flag



1.62 app-admin/salt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.62view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.62content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?r1=1.61r2=1.62

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   21 Apr 2015 22:25:07 -  1.61
+++ ChangeLog   6 May 2015 22:27:59 -   1.62
@@ -1,6 +1,15 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.61 2015/04/21 
22:25:07 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.62 2015/05/06 
22:27:59 chutzpah Exp $
+
+*salt-2015.5.0 (06 May 2015)
+
+  06 May 2015; Patrick McLean chutz...@gentoo.org +files/api-initd-4,
+  +files/master-initd-4, +files/minion-initd-4,
+  +files/salt-2015.5.0-archive-test.patch, +files/syndic-initd-4,
+  +salt-2015.5.0.ebuild, metadata.xml:
+  Version bump. Add vim-syntax USE flag (bug #548362), retry when stopping
+  services (bug #544290).
 
 *salt-2014.7.5 (21 Apr 2015)
 



1.1  app-admin/salt/salt-2015.5.0.ebuild

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

Index: salt-2015.5.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2015.5.0.ebuild,v 1.1 
2015/05/06 22:27:59 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit eutils systemd vim-plugin distutils-r1

DESCRIPTION=Salt is a remote execution and configuration manager
HOMEPAGE=http://saltstack.org/;
SALT_VIM_HASH=20695f68e5895e5ae2b5884b78f5a2cd29897b05

if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI=git://github.com/${PN}stack/${PN}.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

SRC_URI+= vim-syntax? ( 
https://github.com/${PN}stack/${PN}-vim/archive/${SALT_VIM_HASH}.tar.gz - 
salt-vim-20141109.tar.gz )

LICENSE=Apache-2.0
SLOT=0
IUSE=cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql neutron 
nova
IUSE+= openssl redis selinux test timelib raet +zeromq vim-syntax

RDEPEND=sys-apps/pciutils

[gentoo-commits] gentoo-x86 commit in dev-python/ioflo: ioflo-1.2.1.ebuild ChangeLog

2015-05-06 Thread Patrick McLean (chutzpah)
chutzpah15/05/06 21:03:40

  Modified: ChangeLog
  Added:ioflo-1.2.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.4  dev-python/ioflo/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ioflo/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   8 Mar 2015 23:50:53 -   1.3
+++ ChangeLog   6 May 2015 21:03:40 -   1.4
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/ioflo
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ioflo/ChangeLog,v 1.3 2015/03/08 
23:50:53 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ioflo/ChangeLog,v 1.4 2015/05/06 
21:03:40 chutzpah Exp $
+
+*ioflo-1.2.1 (06 May 2015)
+
+  06 May 2015; Patrick McLean chutz...@gentoo.org +ioflo-1.2.1.ebuild:
+  Version bump.
 
   08 Mar 2015; Pacho Ramos pa...@gentoo.org ioflo-1.0.2.ebuild:
   x86 stable, bug 540290



1.1  dev-python/ioflo/ioflo-1.2.1.ebuild

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

Index: ioflo-1.2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ioflo/ioflo-1.2.1.ebuild,v 1.1 
2015/05/06 21:03:40 chutzpah Exp $

EAPI=5

PYTHON_COMPAT=(python{2_7,3_4})
inherit distutils-r1

DESCRIPTION=Automated Reasoning Engine and Flow Based Programming Framework
HOMEPAGE=https://github.com/ioflo/ioflo/;
SRC_URI=https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz

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

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

python_test() {
${EPYTHON} -c from ioflo import test; test.run()
}






[gentoo-commits] gentoo-x86 commit in dev-python/raet: raet-0.6.1.ebuild ChangeLog

2015-05-06 Thread Patrick McLean (chutzpah)
chutzpah15/05/06 21:31:23

  Modified: ChangeLog
  Added:raet-0.6.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  dev-python/raet/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/raet/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   13 Nov 2014 00:55:17 -  1.1
+++ ChangeLog   6 May 2015 21:31:23 -   1.2
@@ -1,10 +1,14 @@
 # ChangeLog for dev-python/raet
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/raet/ChangeLog,v 1.1 2014/11/13 
00:55:17 chutzpah Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/raet/ChangeLog,v 1.2 2015/05/06 
21:31:23 chutzpah Exp $
+
+*raet-0.6.1 (06 May 2015)
+
+  06 May 2015; Patrick McLean chutz...@gentoo.org +raet-0.6.1.ebuild:
+  Version bump.
 
 *raet-0.3.8 (13 Nov 2014)
 
   13 Nov 2014; Patrick McLean chutz...@gentoo.org +raet-0.3.8.ebuild,
   +metadata.xml:
   New package, Reliable Asynchronous Event Transport Protocol
-



1.1  dev-python/raet/raet-0.6.1.ebuild

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

Index: raet-0.6.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/raet/raet-0.6.1.ebuild,v 1.1 
2015/05/06 21:31:23 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python{2_7,3_4})
inherit distutils-r1

DESCRIPTION=Reliable Asynchronous Event Transport Protocol
HOMEPAGE=https://github.com/saltstack/raet;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

RDEPEND==dev-python/six-1.6.1[${PYTHON_USEDEP}]
=dev-python/libnacl-1.4.0[${PYTHON_USEDEP}]
=dev-python/ioflo-1.2.1[${PYTHON_USEDEP}]
python_targets_python2_7? ( 
=dev-python/enum34-1.0.4[$(python_gen_usedep 'python2*')] )
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/unittest2[${PYTHON_USEDEP}] )

python_test() {
pushd ${BUILD_DIR}/lib
${EPYTHON} ${PN}/test/__init__.py || die tests failed for ${EPYTHON}
popd
}






[gentoo-commits] gentoo-x86 commit in net-dns/dnsmasq: dnsmasq-2.72-r2.ebuild ChangeLog

2015-04-29 Thread Patrick McLean (chutzpah)
chutzpah15/04/29 17:26:40

  Modified: ChangeLog
  Added:dnsmasq-2.72-r2.ebuild
  Log:
  Revision bump, allow lua to come from either slot 0 or slot 5.1 (bug #548104)
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.266net-dns/dnsmasq/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -r1.265 -r1.266
--- ChangeLog   28 Apr 2015 18:16:54 -  1.265
+++ ChangeLog   29 Apr 2015 17:26:40 -  1.266
@@ -1,6 +1,11 @@
 # ChangeLog for net-dns/dnsmasq
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.265 
2015/04/28 18:16:54 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.266 
2015/04/29 17:26:40 chutzpah Exp $
+
+*dnsmasq-2.72-r2 (29 Apr 2015)
+
+  29 Apr 2015; Patrick McLean chutz...@gentoo.org +dnsmasq-2.72-r2.ebuild:
+  Revision bump, allow lua to come from either slot 0 or slot 5.1 (bug #548104)
 
 *dnsmasq-2.72-r1 (28 Apr 2015)
 



1.1  net-dns/dnsmasq/dnsmasq-2.72-r2.ebuild

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

Index: dnsmasq-2.72-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.72-r2.ebuild,v 1.1 
2015/04/29 17:26:40 chutzpah Exp $

EAPI=5

inherit eutils toolchain-funcs flag-o-matic user systemd

DESCRIPTION=Small forwarding DNS server
HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/;
SRC_URI=http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz;

LICENSE=|| ( GPL-2 GPL-3 )
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd
IUSE=auth-dns conntrack dbus +dhcp dhcp-tools dnssec idn ipv6 lua nls script 
selinux static tftp
DM_LINGUAS=de es fi fr id it no pl pt_BR ro
for dm_lingua in ${DM_LINGUAS}; do
IUSE+= linguas_${dm_lingua}
done

CDEPEND=dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
lua? (
|| (
dev-lang/lua:0
dev-lang/lua:5.1
)
)
conntrack? ( !s390? ( net-libs/libnetfilter_conntrack ) )
nls? (
sys-devel/gettext
net-dns/libidn
)


DEPEND=${CDEPEND}
app-arch/xz-utils
dnssec? (
dev-libs/nettle[gmp]
static? (
dev-libs/nettle[static-libs(+)]
)
)
virtual/pkgconfig

RDEPEND=${CDEPEND}
dnssec? (
!static? (
dev-libs/nettle[gmp]
)
)
selinux? ( sec-policy/selinux-dnsmasq )


REQUIRED_USE=dhcp-tools? ( dhcp )
lua? ( script )
s390? ( !conntrack )

use_have() {
local useflag no_only uword
if [[ $1 == '-n' ]]; then
no_only=1
shift
fi
useflag=${1}
shift

uword=${1:-${useflag}}
shift

while [[ ${uword} ]]; do
uword=${uword^^*}

if ! use ${useflag}; then
echo -n  -DNO_${uword}
elif [[ -z ${no_only} ]]; then
echo -n  -DHAVE_${uword}
fi
uword=${1}
shift
done
}

pkg_pretend() {
if use static; then
einfo Only sys-libs/gmp and dev-libs/nettle are statically 
linked.
use dnssec || einfo Thus, ${P}[!dnssec,static] makes no sense; 
the static USE flag is ignored.
fi
}

pkg_setup() {
enewgroup dnsmasq
enewuser dnsmasq -1 -1 /dev/null dnsmasq
}

src_prepare() {
sed -i -r 's:lua5.[0-9]+:lua:' Makefile
sed -i s:%%PREFIX%%:${EPREFIX}/usr: dnsmasq.conf.example

epatch 
${FILESDIR}/${P}-Fix-crash-on-receipt-of-certain-malformed-DNS-requests.patch
epatch 
${FILESDIR}/${P}-Fix-crash-caused-by-looking-up-servers.bind-when-many-servers-defined.patch
}

src_configure() {
COPTS=$(use_have -n auth-dns auth)

[gentoo-commits] gentoo-x86 commit in net-dns/dnsmasq/files: dnsmasq-2.72-Fix-crash-on-receipt-of-certain-malformed-DNS-requests.patch dnsmasq-2.72-Fix-crash-caused-by-looking-up-servers.bind-when-man

2015-04-28 Thread Patrick McLean (chutzpah)
chutzpah15/04/28 18:16:54

  Added:   

dnsmasq-2.72-Fix-crash-on-receipt-of-certain-malformed-DNS-requests.patch

dnsmasq-2.72-Fix-crash-caused-by-looking-up-servers.bind-when-many-servers-defined.patch
  Log:
  Revision bump, pull in a couple of crasher fixes from upstream including one 
that could lead to an information leak (bug #547966). Update dependency on lua 
to include slot operator. Clean out a couple of old versions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
net-dns/dnsmasq/files/dnsmasq-2.72-Fix-crash-on-receipt-of-certain-malformed-DNS-requests.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnsmasq/files/dnsmasq-2.72-Fix-crash-on-receipt-of-certain-malformed-DNS-requests.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnsmasq/files/dnsmasq-2.72-Fix-crash-on-receipt-of-certain-malformed-DNS-requests.patch?rev=1.1content-type=text/plain

Index: dnsmasq-2.72-Fix-crash-on-receipt-of-certain-malformed-DNS-requests.patch
===
commit ad4a8ff7d9097008d7623df8543df435bfddeac8
Author: Simon Kelley si...@thekelleys.org.uk
Date:   Thu Apr 9 21:48:00 2015 +0100

Fix crash on receipt of certain malformed DNS requests.

diff --git a/src/rfc1035.c b/src/rfc1035.c
index 7a07b0c..a995ab5 100644
--- a/src/rfc1035.c
+++ b/src/rfc1035.c
@@ -1198,7 +1198,10 @@ unsigned int extract_request(struct dns_header *header, 
size_t qlen, char *name,
 size_t setup_reply(struct dns_header *header, size_t qlen,
struct all_addr *addrp, unsigned int flags, unsigned long ttl)
 {
-  unsigned char *p = skip_questions(header, qlen);
+  unsigned char *p;
+
+  if (!(p = skip_questions(header, qlen)))
+return 0;
   
   /* clear authoritative and truncated flags, set QR flag */
   header-hb3 = (header-hb3  ~(HB3_AA | HB3_TC)) | HB3_QR;
@@ -1214,7 +1217,7 @@ size_t setup_reply(struct dns_header *header, size_t qlen,
 SET_RCODE(header, NOERROR); /* empty domain */
   else if (flags == F_NXDOMAIN)
 SET_RCODE(header, NXDOMAIN);
-  else if (p  flags == F_IPV4)
+  else if (flags == F_IPV4)
 { /* we know the address */
   SET_RCODE(header, NOERROR);
   header-ancount = htons(1);
@@ -1222,7 +1225,7 @@ size_t setup_reply(struct dns_header *header, size_t qlen,
   add_resource_record(header, NULL, NULL, sizeof(struct dns_header), p, 
ttl, NULL, T_A, C_IN, 4, addrp);
 }
 #ifdef HAVE_IPV6
-  else if (p  flags == F_IPV6)
+  else if (flags == F_IPV6)
 {
   SET_RCODE(header, NOERROR);
   header-ancount = htons(1);



1.1  
net-dns/dnsmasq/files/dnsmasq-2.72-Fix-crash-caused-by-looking-up-servers.bind-when-many-servers-defined.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnsmasq/files/dnsmasq-2.72-Fix-crash-caused-by-looking-up-servers.bind-when-many-servers-defined.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnsmasq/files/dnsmasq-2.72-Fix-crash-caused-by-looking-up-servers.bind-when-many-servers-defined.patch?rev=1.1content-type=text/plain

Index: 
dnsmasq-2.72-Fix-crash-caused-by-looking-up-servers.bind-when-many-servers-defined.patch
===
commit 04b0ac05377936d121a36873bb63d492cde292c9
Author: Simon Kelley si...@thekelleys.org.uk
Date:   Mon Apr 6 17:19:13 2015 +0100

Fix crash caused by looking up servers.bind when many servers defined.

diff --git a/src/cache.c b/src/cache.c
index d7bea57..178d654 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -1367,7 +1367,7 @@ int cache_make_stat(struct txt_record *t)
}
port = prettyprint_addr(serv-addr, daemon-addrbuff);
lenp = p++; /* length */
-   bytes_avail = (p - buff) + bufflen;
+   bytes_avail = bufflen - (p - buff );
bytes_needed = snprintf(p, bytes_avail, %s#%d %u %u, 
daemon-addrbuff, port, queries, failed_queries);
if (bytes_needed = bytes_avail)
  {
@@ -1381,7 +1381,7 @@ int cache_make_stat(struct txt_record *t)
lenp = p - 1;
buff = new;
bufflen = newlen;
-   bytes_avail = (p - buff) + bufflen;
+   bytes_avail =  bufflen - (p - buff );
bytes_needed = snprintf(p, bytes_avail, %s#%d %u %u, 
daemon-addrbuff, port, queries, failed_queries);
  }
*lenp = bytes_needed;






[gentoo-commits] gentoo-x86 commit in net-dns/dnsmasq: dnsmasq-2.72-r1.ebuild ChangeLog dnsmasq-2.71-r1.ebuild dnsmasq-2.71.ebuild

2015-04-28 Thread Patrick McLean (chutzpah)
chutzpah15/04/28 18:16:54

  Modified: ChangeLog
  Added:dnsmasq-2.72-r1.ebuild
  Removed:  dnsmasq-2.71-r1.ebuild dnsmasq-2.71.ebuild
  Log:
  Revision bump, pull in a couple of crasher fixes from upstream including one 
that could lead to an information leak (bug #547966). Update dependency on lua 
to include slot operator. Clean out a couple of old versions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.265net-dns/dnsmasq/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- ChangeLog   4 Dec 2014 08:32:02 -   1.264
+++ ChangeLog   28 Apr 2015 18:16:54 -  1.265
@@ -1,6 +1,16 @@
 # ChangeLog for net-dns/dnsmasq
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.264 
2014/12/04 08:32:02 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/ChangeLog,v 1.265 
2015/04/28 18:16:54 chutzpah Exp $
+
+*dnsmasq-2.72-r1 (28 Apr 2015)
+
+  28 Apr 2015; Patrick McLean chutz...@gentoo.org +dnsmasq-2.72-r1.ebuild, 
+fi
+  
les/dnsmasq-2.72-Fix-crash-caused-by-looking-up-servers.bind-when-many-servers
+  -defined.patch, 
+files/dnsmasq-2.72-Fix-crash-on-receipt-of-certain-malformed-
+  DNS-requests.patch, -dnsmasq-2.71-r1.ebuild, -dnsmasq-2.71.ebuild:
+  Revision bump, pull in a couple of crasher fixes from upstream including one
+  that could lead to an information leak (bug #547966). Update dependency on 
lua
+  to include slot operator. Clean out a couple of old versions.
 
   04 Dec 2014; Agostino Sarubbo a...@gentoo.org dnsmasq-2.72.ebuild:
   Stable for ppc64, wrt bug #527536



1.1  net-dns/dnsmasq/dnsmasq-2.72-r1.ebuild

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

Index: dnsmasq-2.72-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.72-r1.ebuild,v 1.1 
2015/04/28 18:16:54 chutzpah Exp $

EAPI=5

inherit eutils toolchain-funcs flag-o-matic user systemd

DESCRIPTION=Small forwarding DNS server
HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/;
SRC_URI=http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz;

LICENSE=|| ( GPL-2 GPL-3 )
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd
IUSE=auth-dns conntrack dbus +dhcp dhcp-tools dnssec idn ipv6 lua nls script 
selinux static tftp
DM_LINGUAS=de es fi fr id it no pl pt_BR ro
for dm_lingua in ${DM_LINGUAS}; do
IUSE+= linguas_${dm_lingua}
done

CDEPEND=dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
lua? ( dev-lang/lua:0 )
conntrack? ( !s390? ( net-libs/libnetfilter_conntrack ) )
nls? (
sys-devel/gettext
net-dns/libidn
)


DEPEND=${CDEPEND}
app-arch/xz-utils
dnssec? (
dev-libs/nettle[gmp]
static? (
dev-libs/nettle[static-libs(+)]
)
)
virtual/pkgconfig

RDEPEND=${CDEPEND}
dnssec? (
!static? (
dev-libs/nettle[gmp]
)
)
selinux? ( sec-policy/selinux-dnsmasq )


REQUIRED_USE=dhcp-tools? ( dhcp )
lua? ( script )
s390? ( !conntrack )

use_have() {
local useflag no_only uword
if [[ $1 == '-n' ]]; then
no_only=1
shift
fi
useflag=${1}
shift

uword=${1:-${useflag}}
shift

while [[ ${uword} ]]; do
uword=${uword^^*}

if ! use ${useflag}; then
echo -n  -DNO_${uword}
elif [[ -z ${no_only} ]]; then
echo -n  -DHAVE_${uword}
fi
uword=${1}
shift
done
}

pkg_pretend() {
if use static; then
einfo Only sys-libs/gmp and dev-libs/nettle are statically 
linked.

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

2015-04-23 Thread Patrick McLean (chutzpah)
chutzpah15/04/23 20:42:53

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



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

2015-04-23 Thread Patrick McLean (chutzpah)
chutzpah15/04/23 20:45:25

  Added:ldap3-0.9.8.2.ebuild metadata.xml ChangeLog
  Log:
  New package, a strictly RFC 4511 conforming LDAP V3 pure Python client
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  dev-python/ldap3/ldap3-0.9.8.2.ebuild

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

Index: ldap3-0.9.8.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ldap3/ldap3-0.9.8.2.ebuild,v 1.1 
2015/04/23 20:45:25 chutzpah Exp $

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

inherit distutils-r1

DESCRIPTION=A strictly RFC 4511 conforming LDAP V3 pure Python client
HOMEPAGE=https://github.com/cannatag/ldap3;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=LGPL-3
SLOT=0
KEYWORDS=~amd64
IUSE=test

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



1.1  dev-python/ldap3/metadata.xml

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
herdpython/herd
longdescription lang=en
ldap3 is a strictly RFC 4511 conforming LDAP V3 pure Python 
client. The same codebase works with Python, Python 3, PyPy and PyPy3.
This project was formerly named python3-ldap. The name has been 
changed to avoid confusion with the python-ldap library.
/longdescription
/pkgmetadata



1.1  dev-python/ldap3/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/ldap3
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ldap3/ChangeLog,v 1.1 2015/04/23 
20:45:25 chutzpah Exp $

*ldap3-0.9.8.2 (23 Apr 2015)

  23 Apr 2015; Patrick McLean chutz...@gentoo.org +ldap3-0.9.8.2.ebuild,
  +metadata.xml:
  Initial version of ldap3.







[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: salt-2014.7.5-archive-test.patch

2015-04-21 Thread Patrick McLean (chutzpah)
chutzpah15/04/21 22:25:07

  Added:salt-2014.7.5-archive-test.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  app-admin/salt/files/salt-2014.7.5-archive-test.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2014.7.5-archive-test.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2014.7.5-archive-test.patch?rev=1.1content-type=text/plain

Index: salt-2014.7.5-archive-test.patch
===
diff --git a/tests/unit/states/archive_test.py 
b/tests/unit/states/archive_test.py
index a7f3005..bb0bc45 100644
--- a/tests/unit/states/archive_test.py
+++ b/tests/unit/states/archive_test.py
@@ -78,9 +78,7 @@ class ArchiveTest(TestCase):
 running_as = 'root'
 filename = os.path.join(
 tmp_dir,
-'files/test/_tmp{0}_test_archive.tar'.format(
-'' if running_as == 'root' else 
'_{0}'.format(running_as)
-)
+'files/test/_tmp_test_archive.tar'
 )
 for test_opts, ret_opts in zip(test_tar_opts, 
ret_tar_opts):
 ret = archive.extracted(tmp_dir,






[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-2014.7.5.ebuild ChangeLog

2015-04-21 Thread Patrick McLean (chutzpah)
chutzpah15/04/21 22:25:07

  Modified: ChangeLog
  Added:salt-2014.7.5.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.61 app-admin/salt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog   18 Apr 2015 11:14:31 -  1.60
+++ ChangeLog   21 Apr 2015 22:25:07 -  1.61
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.60 2015/04/18 
11:14:31 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.61 2015/04/21 
22:25:07 chutzpah Exp $
+
+*salt-2014.7.5 (21 Apr 2015)
+
+  21 Apr 2015; Patrick McLean chutz...@gentoo.org
+  +files/salt-2014.7.5-archive-test.patch, +salt-2014.7.5.ebuild:
+  Version bump.
 
   18 Apr 2015; Manuel Rüger mr...@gentoo.org metadata.xml:
   Remove unused USEflag desc from metadata.



1.1  app-admin/salt/salt-2014.7.5.ebuild

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

Index: salt-2014.7.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.7.5.ebuild,v 1.1 
2015/04/21 22:25:07 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit eutils distutils-r1 systemd

DESCRIPTION=Salt is a remote execution and configuration manager
HOMEPAGE=http://saltstack.org/;

if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI=git://github.com/${PN}stack/${PN}.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

LICENSE=Apache-2.0
SLOT=0
IUSE=api ldap libcloud libvirt gnupg keyring mako mongodb mysql nova
IUSE+= openssl redis selinux timelib raet +zeromq test

RDEPEND=sys-apps/pciutils
dev-python/jinja[${PYTHON_USEDEP}]
=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/markupsafe[${PYTHON_USEDEP}]
=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
libcloud? ( =dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] )
mako? ( dev-python/mako[${PYTHON_USEDEP}] )
ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] )
raet? (
dev-python/libnacl[${PYTHON_USEDEP}]
dev-python/ioflo[${PYTHON_USEDEP}]
dev-python/raet[${PYTHON_USEDEP}]
)
zeromq? (
=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
=dev-python/m2crypto-0.22.3[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
api? (
|| (
dev-python/cherrypy[${PYTHON_USEDEP}]
www-servers/tornado[${PYTHON_USEDEP}]
)
)
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
selinux? ( sec-policy/selinux-salt )
timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
nova? ( =dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pip[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
dev-python/timelib[${PYTHON_USEDEP}]
=dev-python/SaltTesting-2015.2.16[${PYTHON_USEDEP}]
${RDEPEND}
)

DOCS=(README.rst AUTHORS)

REQUIRED_USE=|| ( raet zeromq )

PATCHES=(
${FILESDIR}/${PN}-2014.7.1-remove-pydsl-includes-test.patch
${FILESDIR}/${PN}-2014.7.5-archive-test.patch
)

python_prepare() {
# this test fails because 

[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-2014.1.13.ebuild ChangeLog salt-2014.7.2.ebuild salt-2014.7.0.ebuild

2015-04-17 Thread Patrick McLean (chutzpah)
chutzpah15/04/17 21:29:28

  Modified: salt-2014.1.13.ebuild ChangeLog
  Removed:  salt-2014.7.2.ebuild salt-2014.7.0.ebuild
  Log:
  Remove old 2014.7 versions, unkeyword 2014.1.13 for security bug #546904.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.4  app-admin/salt/salt-2014.1.13.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-2014.1.13.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-2014.1.13.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-2014.1.13.ebuild?r1=1.3r2=1.4

Index: salt-2014.1.13.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.1.13.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- salt-2014.1.13.ebuild   8 Apr 2015 07:30:35 -   1.3
+++ salt-2014.1.13.ebuild   17 Apr 2015 21:29:28 -  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/app-admin/salt/salt-2014.1.13.ebuild,v 1.3 
2015/04/08 07:30:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.1.13.ebuild,v 1.4 
2015/04/17 21:29:28 chutzpah Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
KEYWORDS=
 else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
-   KEYWORDS=~x86 ~amd64
+   KEYWORDS=
 fi
 
 LICENSE=Apache-2.0



1.59 app-admin/salt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.59view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.59content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?r1=1.58r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   8 Apr 2015 07:30:35 -   1.58
+++ ChangeLog   17 Apr 2015 21:29:28 -  1.59
@@ -1,6 +1,10 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.58 2015/04/08 
07:30:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.59 2015/04/17 
21:29:28 chutzpah Exp $
+
+  17 Apr 2015; Patrick McLean chutz...@gentoo.org -salt-2014.7.0.ebuild,
+  -salt-2014.7.2.ebuild, salt-2014.1.13.ebuild:
+  Remove old 2014.7 versions, unkeyword 2014.1.13 for security bug #546904.
 
   08 Apr 2015; Michał Górny mgo...@gentoo.org salt-2014.1.13.ebuild:
   Remove old Python implementations






[gentoo-commits] gentoo-x86 commit in net-misc/openssh: openssh-6.8_p1-r4.ebuild ChangeLog

2015-04-06 Thread Patrick McLean (chutzpah)
chutzpah15/04/06 20:29:53

  Modified: ChangeLog
  Added:openssh-6.8_p1-r4.ebuild
  Log:
  Revision bump, bump the X509 patch to version 8.3.1.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.558net-misc/openssh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.557
retrieving revision 1.558
diff -u -r1.557 -r1.558
--- ChangeLog   25 Mar 2015 21:06:03 -  1.557
+++ ChangeLog   6 Apr 2015 20:29:53 -   1.558
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.557 
2015/03/25 21:06:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.558 
2015/04/06 20:29:53 chutzpah Exp $
+
+*openssh-6.8_p1-r4 (06 Apr 2015)
+
+  06 Apr 2015; Patrick McLean chutz...@gentoo.org +openssh-6.8_p1-r4.ebuild:
+  Revision bump, bump the X509 patch to version 8.3.1.
 
 *openssh-6.8_p1-r3 (25 Mar 2015)
 



1.1  net-misc/openssh/openssh-6.8_p1-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r4.ebuild?rev=1.1content-type=text/plain

Index: openssh-6.8_p1-r4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r4.ebuild,v 
1.1 2015/04/06 20:29:53 chutzpah Exp $

EAPI=4
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH=${PN}-6.8p1-r4-hpnssh14v5.tar.xz
LDAP_PATCH=${PN}-lpk-6.8p1-0.3.14.patch.xz
X509_VER=8.3.1 X509_PATCH=${PARCH}+x509-${X509_VER}.diff.gz

DESCRIPTION=Port of OpenBSD's free SSH release
HOMEPAGE=http://www.openssh.org/;
SRC_URI=mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${P}-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~vapier/dist/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? (
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH}
mirror://gentoo/${P}-x509-${X509_VER}-glue.patch.xz
)}


LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
# Probably want to drop ssh1/ssl defaulting to on in a future version.
IUSE=bindist debug ${HPN_PATCH:++}hpn kerberos kernel_linux ldap ldns libedit 
pam +pie sctp selinux skey +ssh1 +ssl static X X509
REQUIRED_USE=pie? ( !static )
ssh1? ( ssl )
static? ( !kerberos !pam )
X509? ( !ldap ssl )

LIB_DEPEND=sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( =sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( =sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
ssl? (
=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
)
=sys-libs/zlib-1.2.3[static-libs(+)]
RDEPEND=
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
DEPEND=${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgconfig
virtual/os-headers
sys-devel/autoconf
RDEPEND=${RDEPEND}
pam? ( =sys-auth/pambase-20081028 )
userland_GNU? ( virtual/shadow )
X? ( x11-apps/xauth )

S=${WORKDIR}/${PARCH}

pkg_setup() {
# this sucks, but i'd rather have people 

[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd/files: nslcd.service nslcd-tmpfiles.conf

2015-04-06 Thread Patrick McLean (chutzpah)
chutzpah15/04/07 01:04:53

  Added:nslcd.service nslcd-tmpfiles.conf
  Log:
  Revision bump, add systemd service files (bug #545780). Remove old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  sys-auth/nss-pam-ldapd/files/nslcd.service

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nslcd.service?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nslcd.service?rev=1.1content-type=text/plain

Index: nslcd.service
===
--- nss-pam-ldapd-0.9.5.ebuild
+++ nss-pam-ldapd-0.9.5.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=(python2_7)
-inherit eutils prefix user python-r1 multilib multilib-minimal
+inherit eutils prefix user python-r1 multilib multilib-minimal systemd
 
 DESCRIPTION=NSS module for name lookups using LDAP
 HOMEPAGE=http://arthurdejong.org/nss-pam-ldapd/;
@@ -94,6 +94,9 @@
python_foreach_impl python_newscript utils/${script}.py 
${script}.ldap
done
fi
+
+   systemd_newtmpfilesd ${FILESDIR}/nslcd-tmpfiles.conf nslcd.conf
+   systemd_dounit ${FILESDIR}/nslcd.service
 }
 
 multilib_src_test() {



1.1  sys-auth/nss-pam-ldapd/files/nslcd-tmpfiles.conf

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nslcd-tmpfiles.conf?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nslcd-tmpfiles.conf?rev=1.1content-type=text/plain

Index: nslcd-tmpfiles.conf
===
d /run/nslcd 0755 nslcd nslcd -






[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd: metadata.xml nss-pam-ldapd-0.9.5-r1.ebuild ChangeLog nss-pam-ldapd-0.9.5.ebuild nss-pam-ldapd-0.9.4-r1.ebuild nss-pam-ldapd-0.9.4.ebuild n

2015-04-06 Thread Patrick McLean (chutzpah)
chutzpah15/04/07 01:04:53

  Modified: metadata.xml ChangeLog
  Added:nss-pam-ldapd-0.9.5-r1.ebuild
  Removed:  nss-pam-ldapd-0.9.5.ebuild
nss-pam-ldapd-0.9.4-r1.ebuild
nss-pam-ldapd-0.9.4.ebuild
nss-pam-ldapd-0.9.4-r2.ebuild
  Log:
  Revision bump, add systemd service files (bug #545780). Remove old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.6  sys-auth/nss-pam-ldapd/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml12 Mar 2015 18:00:38 -  1.5
+++ metadata.xml7 Apr 2015 01:04:53 -   1.6
@@ -7,20 +7,20 @@
   /maintainer
   maintainer
 emailchutz...@gentoo.org/email
-   namePatrick McLean/name
+namePatrick McLean/name
   /maintainer
   use
-   flag name=utilsInstall the command-line utilities/flag
+flag name=utilsInstall the command-line utilities/flag
   /use
   longdescription lang=en
-   Provides a Name Service Switch (NSS) module that allows your LDAP
-   server to provide user account, group, host name, alias, 
netgroup, and
-   basically any other information that you would normally get 
from /etc
-   flat files or NIS. It also provides a Pluggable Authentication 
Module
-   (PAM) to do authentication to an LDAP server.
+Provides a Name Service Switch (NSS) module that allows your LDAP
+server to provide user account, group, host name, alias, netgroup, and
+basically any other information that you would normally get from /etc
+flat files or NIS. It also provides a Pluggable Authentication Module
+(PAM) to do authentication to an LDAP server.
 
-   This is implemented using thin NSS and PAM modules which 
delegate to a
-   dedicated service (nslcd) that queries the LDAP server with 
persistent
-   connections, authentication, attribute translation, etc.
-   /longdescription
+This is implemented using thin NSS and PAM modules which delegate to a
+dedicated service (nslcd) that queries the LDAP server with persistent
+connections, authentication, attribute translation, etc.
+  /longdescription
 /pkgmetadata



1.21 sys-auth/nss-pam-ldapd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.21view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.21content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?r1=1.20r2=1.21

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   30 Mar 2015 19:01:38 -  1.20
+++ ChangeLog   7 Apr 2015 01:04:53 -   1.21
@@ -1,6 +1,14 @@
 # ChangeLog for sys-auth/nss-pam-ldapd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.20 
2015/03/30 19:01:38 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.21 
2015/04/07 01:04:53 chutzpah Exp $
+
+*nss-pam-ldapd-0.9.5-r1 (07 Apr 2015)
+
+  07 Apr 2015; Patrick McLean chutz...@gentoo.org +files/nslcd-tmpfiles.conf,
+  +files/nslcd.service, +nss-pam-ldapd-0.9.5-r1.ebuild,
+  -nss-pam-ldapd-0.9.4-r1.ebuild, -nss-pam-ldapd-0.9.4-r2.ebuild,
+  -nss-pam-ldapd-0.9.4.ebuild, -nss-pam-ldapd-0.9.5.ebuild, metadata.xml:
+  Revision bump, add systemd service files (bug #545780). Remove old.
 
 *nss-pam-ldapd-0.9.5 (30 Mar 2015)
 



1.1  sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.5-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.5-r1.ebuild?rev=1.1content-type=text/plain

Index: nss-pam-ldapd-0.9.5-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 

[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd: nss-pam-ldapd-0.9.5.ebuild ChangeLog

2015-03-30 Thread Patrick McLean (chutzpah)
chutzpah15/03/30 19:01:38

  Modified: ChangeLog
  Added:nss-pam-ldapd-0.9.5.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.20 sys-auth/nss-pam-ldapd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.20view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.20content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?r1=1.19r2=1.20

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   11 Mar 2015 22:32:36 -  1.19
+++ ChangeLog   30 Mar 2015 19:01:38 -  1.20
@@ -1,6 +1,11 @@
 # ChangeLog for sys-auth/nss-pam-ldapd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.19 
2015/03/11 22:32:36 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.20 
2015/03/30 19:01:38 chutzpah Exp $
+
+*nss-pam-ldapd-0.9.5 (30 Mar 2015)
+
+  30 Mar 2015; Patrick McLean chutz...@gentoo.org 
+nss-pam-ldapd-0.9.5.ebuild:
+  Version bump.
 
   11 Mar 2015; Patrick McLean chutz...@gentoo.org
   nss-pam-ldapd-0.9.4-r2.ebuild:



1.1  sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.5.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.5.ebuild?rev=1.1content-type=text/plain

Index: nss-pam-ldapd-0.9.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.5.ebuild,v 1.1 
2015/03/30 19:01:38 chutzpah Exp $

EAPI=5

PYTHON_COMPAT=(python2_7)
inherit eutils prefix user python-r1 multilib multilib-minimal

DESCRIPTION=NSS module for name lookups using LDAP
HOMEPAGE=http://arthurdejong.org/nss-pam-ldapd/;
SRC_URI=http://arthurdejong.org/${PN}/${P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=
IUSE=debug kerberos +pam sasl test +utils

COMMON_DEP=
net-nds/openldap[${MULTILIB_USEDEP}]
sasl? ( dev-libs/cyrus-sasl[${MULTILIB_USEDEP}] )
kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] )
pam? ( virtual/pam[${MULTILIB_USEDEP}] )
utils? ( ${PYTHON_DEPS} )
!sys-auth/nss_ldap
!sys-auth/pam_ldap
RDEPEND=${COMMON_DEP}
DEPEND=${COMMON_DEP}
test? (
${PYTHON_DEPS}
dev-python/pylint[${PYTHON_USEDEP}]
)
sys-devel/automake

REQUIRED_USE=
utils? ( ${PYTHON_REQUIRED_USE} )
test? ( ${PYTHON_REQUIRED_USE} )

pkg_setup() {
enewgroup nslcd
enewuser nslcd -1 -1 -1 nslcd
}

src_prepare() {
epatch ${FILESDIR}/${PN}-0.9.4-disable-py3-only-linters.patch
epatch_user
use utils  python_setup
}

multilib_src_configure() {
local -a myconf

myconf=(
--disable-utils
--enable-warnings
--with-ldap-lib=openldap
--with-ldap-conf-file=/etc/nslcd.conf
--with-nslcd-pidfile=/run/nslcd/nslcd.pid
--with-nslcd-socket=/run/nslcd/socket
$(usex x86-fbsd '--with-nss-flavour=' '--with-nss-flavour=' 
'freebsd' 'glibc')
$(use_enable debug)
$(use_enable kerberos)
$(use_enable pam)
$(use_enable sasl)
)

# nss libraries always go in /lib on Gentoo
if multilib_is_native_abi ; then

myconf+=(--with-pam-seclib-dir=${EPREFIX}/$(get_libdir)/security)
myconf+=(--libdir=${EPREFIX}/$(get_libdir))
else
myconf+=(--with-pam-seclib-dir=/$(get_libdir)/security)
myconf+=(--libdir=/$(get_libdir))
fi

ECONF_SOURCE=${S} econf ${myconf[@]}
}

multilib_src_install_all() {
local script

newinitd ${FILESDIR}/nslcd-init-r1 nslcd

insinto /usr/share/nss-pam-ldapd
doins nslcd.conf

fperms o-r /etc/nslcd.conf

if use utils; then
python_moduleinto nslcd
python_foreach_impl  python_domodule utils/*.py

for script in chsh getent; do
python_foreach_impl python_newscript utils/${script}.py 
${script}.ldap
done
fi
}

multilib_src_test() {
python_foreach_impl emake check
}


[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-2014.7.4.ebuild ChangeLog

2015-03-30 Thread Patrick McLean (chutzpah)
chutzpah15/03/30 22:36:49

  Modified: ChangeLog
  Added:salt-2014.7.4.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.57 app-admin/salt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.57view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.57content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?r1=1.56r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   17 Feb 2015 20:08:27 -  1.56
+++ ChangeLog   30 Mar 2015 22:36:49 -  1.57
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.56 2015/02/17 
20:08:27 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.57 2015/03/30 
22:36:49 chutzpah Exp $
+
+*salt-2014.7.4 (30 Mar 2015)
+
+  30 Mar 2015; Patrick McLean chutz...@gentoo.org +salt-2014.7.4.ebuild:
+  Version bump.
 
   17 Feb 2015; Patrick McLean chutz...@gentoo.org -salt-2014.7.0-r1.ebuild,
   -salt-2014.7.1.ebuild:



1.1  app-admin/salt/salt-2014.7.4.ebuild

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

Index: salt-2014.7.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.7.4.ebuild,v 1.1 
2015/03/30 22:36:49 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit eutils distutils-r1 systemd

DESCRIPTION=Salt is a remote execution and configuration manager
HOMEPAGE=http://saltstack.org/;

if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI=git://github.com/${PN}stack/${PN}.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

LICENSE=Apache-2.0
SLOT=0
IUSE=api ldap libcloud libvirt gnupg keyring mako mongodb mysql nova
IUSE+= openssl redis selinux timelib raet +zeromq test

RDEPEND=sys-apps/pciutils
dev-python/jinja[${PYTHON_USEDEP}]
=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/markupsafe[${PYTHON_USEDEP}]
=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
libcloud? ( =dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] )
mako? ( dev-python/mako[${PYTHON_USEDEP}] )
ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] )
raet? (
dev-python/libnacl[${PYTHON_USEDEP}]
dev-python/ioflo[${PYTHON_USEDEP}]
dev-python/raet[${PYTHON_USEDEP}]
)
zeromq? (
=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
=dev-python/m2crypto-0.22.3[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
api? (
|| (
dev-python/cherrypy[${PYTHON_USEDEP}]
www-servers/tornado[${PYTHON_USEDEP}]
)
)
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
selinux? ( sec-policy/selinux-salt )
timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
nova? ( =dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pip[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
dev-python/timelib[${PYTHON_USEDEP}]
=dev-python/SaltTesting-2015.2.16[${PYTHON_USEDEP}]
${RDEPEND}
)

DOCS=(README.rst AUTHORS)

REQUIRED_USE=|| ( raet zeromq )

PATCHES=(
${FILESDIR}/${PN}-2014.7.1-remove-pydsl-includes-test.patch
)

python_prepare() {
# this test fails because it trys to pip install distribute
rm tests/unit/{modules,states}/zcbuildout_test.py
}


[gentoo-commits] gentoo-x86 commit in net-misc/openssh: openssh-6.8_p1-r1.ebuild ChangeLog

2015-03-19 Thread Patrick McLean (chutzpah)
chutzpah15/03/19 17:03:00

  Modified: ChangeLog
  Added:openssh-6.8_p1-r1.ebuild
  Log:
  Revision bump, re-enable X509 USE flag.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.546net-misc/openssh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.545
retrieving revision 1.546
diff -u -r1.545 -r1.546
--- ChangeLog   18 Mar 2015 20:24:48 -  1.545
+++ ChangeLog   19 Mar 2015 17:02:59 -  1.546
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.545 
2015/03/18 20:24:48 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.546 
2015/03/19 17:02:59 chutzpah Exp $
+
+*openssh-6.8_p1-r1 (19 Mar 2015)
+
+  19 Mar 2015; Patrick McLean chutz...@gentoo.org
+  +files/openssh-6.8_p1-sctp-x509-glue.patch, +openssh-6.8_p1-r1.ebuild:
+  Revision bump, re-enable X509 USE flag.
 
 *openssh-6.8_p1 (18 Mar 2015)
 



1.1  net-misc/openssh/openssh-6.8_p1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r1.ebuild?rev=1.1content-type=text/plain

Index: openssh-6.8_p1-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/openssh/openssh-6.8_p1-r1.ebuild,v 
1.1 2015/03/19 17:02:59 chutzpah Exp $

EAPI=4
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH=${PN}-6.8p1-hpnssh14v5.tar.xz
LDAP_PATCH=${PN}-lpk-6.7p1-0.3.14.patch.xz
X509_VER=8.3 X509_PATCH=${PARCH}+x509-${X509_VER}.diff.gz

DESCRIPTION=Port of OpenBSD's free SSH release
HOMEPAGE=http://www.openssh.org/;
SRC_URI=mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${P}-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~vapier/dist/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? (
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH}
mirror://gentoo/${P}-x509-glue.patch.xz
)}


LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
# Probably want to drop ssh1/ssl defaulting to on in a future version.
IUSE=bindist ${HPN_PATCH:++}hpn kerberos kernel_linux ldap ldns libedit pam 
+pie sctp selinux skey +ssh1 +ssl static X X509
REQUIRED_USE=pie? ( !static )
ssh1? ( ssl )
static? ( !kerberos !pam )

LIB_DEPEND=sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( =sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( =sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
ssl? (
=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
)
=sys-libs/zlib-1.2.3[static-libs(+)]
RDEPEND=
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
DEPEND=${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgconfig
virtual/os-headers
sys-devel/autoconf
RDEPEND=${RDEPEND}
pam? ( =sys-auth/pambase-20081028 )
userland_GNU? ( virtual/shadow )
X? ( x11-apps/xauth )

S=${WORKDIR}/${PARCH}

pkg_setup() {
# this sucks, but i'd rather have people unable to `emerge -u openssh`
   

[gentoo-commits] gentoo-x86 commit in net-misc/openssh/files: openssh-6.8_p1-sctp-x509-glue.patch

2015-03-19 Thread Patrick McLean (chutzpah)
chutzpah15/03/19 17:02:59

  Added:openssh-6.8_p1-sctp-x509-glue.patch
  Log:
  Revision bump, re-enable X509 USE flag.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  net-misc/openssh/files/openssh-6.8_p1-sctp-x509-glue.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.8_p1-sctp-x509-glue.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.8_p1-sctp-x509-glue.patch?rev=1.1content-type=text/plain

Index: openssh-6.8_p1-sctp-x509-glue.patch
===
--- openssh-6.8_p1-sctp.patch.orig  2015-03-18 17:52:40.563506822 -0700
+++ openssh-6.8_p1-sctp.patch   2015-03-18 18:14:30.919753194 -0700
@@ -184,34 +184,6 @@
int port;   /* Port to connect. */
int address_family;
int connection_attempts;/* Max attempts (seconds) before
 a/scp.1
-+++ b/scp.1
-@@ -19,7 +19,7 @@
- .Sh SYNOPSIS
- .Nm scp
- .Bk -words
--.Op Fl 12346BCpqrv
-+.Op Fl 12346BCpqrvz
- .Op Fl c Ar cipher
- .Op Fl F Ar ssh_config
- .Op Fl i Ar identity_file
-@@ -178,6 +178,7 @@ For full details of the options listed b
- .It ServerAliveCountMax
- .It StrictHostKeyChecking
- .It TCPKeepAlive
-+.It Transport
- .It UpdateHostKeys
- .It UsePrivilegedPort
- .It User
-@@ -218,6 +219,8 @@ and
- to print debugging messages about their progress.
- This is helpful in
- debugging connection, authentication, and configuration problems.
-+.It Fl z
-+Use the SCTP protocol for connection instead of TCP which is the default.
- .El
- .Sh EXIT STATUS
- .Ex -std scp
 --- a/scp.c
 +++ b/scp.c
 @@ -395,7 +395,11 @@ main(int argc, char **argv)
@@ -471,34 +443,6 @@
int protocol;   /* Supported protocol versions. */
struct ForwardOptions fwd_opts; /* forwarding options */
SyslogFacility log_facility;/* Facility for system logging. */
 a/ssh.1
-+++ b/ssh.1
-@@ -43,7 +43,7 @@
- .Sh SYNOPSIS
- .Nm ssh
- .Bk -words
--.Op Fl 1246AaCfGgKkMNnqsTtVvXxYy
-+.Op Fl 1246AaCfGgKkMNnqsTtVvXxYyz
- .Op Fl b Ar bind_address
- .Op Fl c Ar cipher_spec
- .Op Fl D Oo Ar bind_address : Oc Ns Ar port
-@@ -473,6 +473,7 @@ For full details of the options listed b
- .It StreamLocalBindUnlink
- .It StrictHostKeyChecking
- .It TCPKeepAlive
-+.It Transport
- .It Tunnel
- .It TunnelDevice
- .It UsePrivilegedPort
-@@ -665,6 +666,8 @@ Trusted X11 forwardings are not subjecte
- controls.
- .It Fl y
- Send log information using the
-+.It Fl z
-+Use the SCTP protocol for connection instead of TCP which is the default.
- .Xr syslog 3
- system module.
- By default this information is sent to stderr.
 --- a/ssh.c
 +++ b/ssh.c
 @@ -194,12 +194,17 @@ extern int muxserver_sock;
@@ -520,13 +464,11 @@
 [-D [bind_address:]port] [-E log_file] [-e escape_char]\n
 [-F configfile] [-I pkcs11] [-i identity_file]\n
 [-L [bind_address:]port:host:hostport] [-l login_name] [-m 
mac_spec]\n
-@@ -506,7 +512,7 @@ main(int ac, char **av)
-   argv0 = av[0];
+@@ -506,4 +512,4 @@ main(int ac, char **av)
  
-  again:
--  while ((opt = getopt(ac, av, 1246ab:c:e:fgi:kl:m:no:p:qstvx
-+  while ((opt = getopt(ac, av, 1246ab:c:e:fgi:kl:m:no:p:qstvx SCTP_OPT
-   ACD:E:F:GI:KL:MNO:PQ:R:S:TVw:W:XYy)) != -1) {
+-  while ((opt = getopt(ac, av, 1246ab:c:de:fgi:kl:m:no:p:qstvx
++  while ((opt = getopt(ac, av, 1246ab:c:de:fgi:kl:m:no:p:qstvx SCTP_OPT
+   ACD:E:F: ENGCONFIG I:KL:MNO:PQ:R:S:TVw:W:XYy)) != -1) {
switch (opt) {
case '1':
 @@ -732,6 +738,11 @@ main(int ac, char **av)






[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti/files: ganeti-2.12-daemon-util.patch ganeti-2.12-cfgupgrade-state.patch

2015-03-13 Thread Patrick McLean (chutzpah)
chutzpah15/03/13 18:53:31

  Modified: ganeti-2.12-daemon-util.patch
  Added:ganeti-2.12-cfgupgrade-state.patch
  Log:
  Revision bump, remove gnt-masterd from daemon-util patch, add code to 
cfgupgrade to handle 'disk_state_static' and 'hv_state_static' in the cluster 
config (bug #542628).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch?r1=1.1r2=1.2

Index: ganeti-2.12-daemon-util.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ganeti-2.12-daemon-util.patch   6 Mar 2015 01:25:05 -   1.1
+++ ganeti-2.12-daemon-util.patch   13 Mar 2015 18:53:31 -  1.2
@@ -1,5 +1,5 @@
 diff --git a/daemons/daemon-util.in b/daemons/daemon-util.in
-index 6a47253..7eec363 100644
+index 6a47253..5d7c4cf 100644
 --- a/daemons/daemon-util.in
 +++ b/daemons/daemon-util.in
 @@ -31,18 +31,24 @@ set -e
@@ -19,7 +19,7 @@
 -  ganeti-luxid
 -  ganeti-kvmd
 -  )
-+DAEMONS=( ganeti-noded ganeti-wconfd ) 
++DAEMONS=( ganeti-noded ) 
 +
 +_is_master() {
 +[ -z ${ganeti_master} ]  ganeti_master=$(gnt-cluster getmaster)
@@ -28,7 +28,7 @@
 +}
 +
 +if _is_master; then
-+  DAEMONS+=( ganeti-masterd ganeti-rapi ganeti-luxid )
++  DAEMONS+=( ganeti-wconfd ganeti-rapi ganeti-luxid )
 +fi
 +
 +DAEMONS+=( ganeti-kvmd )



1.1  
app-emulation/ganeti/files/ganeti-2.12-cfgupgrade-state.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-cfgupgrade-state.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-cfgupgrade-state.patch?rev=1.1content-type=text/plain

Index: ganeti-2.12-cfgupgrade-state.patch
===
diff --git a/tools/cfgupgrade b/tools/cfgupgrade
index c8dfdec..0f886b2 100755
--- a/tools/cfgupgrade
+++ b/tools/cfgupgrade
@@ -169,6 +169,10 @@ def UpgradeCluster(config_data):
 cluster.get(zeroing_image, )
   cluster[compression_tools] = \
 cluster.get(compression_tools, constants.IEC_DEFAULT_TOOLS)
+  cluster[hv_state_static] = \
+cluster.get(hv_state_static, {})
+  cluster[disk_state_static] = \
+cluster.get(disk_state_static, {})
   if enabled_user_shutdown not in cluster:
 cluster[enabled_user_shutdown] = False
 






[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.12.1-r3.ebuild ChangeLog ganeti-2.12.1-r2.ebuild

2015-03-13 Thread Patrick McLean (chutzpah)
chutzpah15/03/13 18:53:31

  Modified: ChangeLog
  Added:ganeti-2.12.1-r3.ebuild
  Removed:  ganeti-2.12.1-r2.ebuild
  Log:
  Revision bump, remove gnt-masterd from daemon-util patch, add code to 
cfgupgrade to handle 'disk_state_static' and 'hv_state_static' in the cluster 
config (bug #542628).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.100app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.100view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.100content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.99r2=1.100

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog   7 Mar 2015 00:13:58 -   1.99
+++ ChangeLog   13 Mar 2015 18:53:31 -  1.100
@@ -1,6 +1,15 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.99 
2015/03/07 00:13:58 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.100 
2015/03/13 18:53:31 chutzpah Exp $
+
+*ganeti-2.12.1-r3 (13 Mar 2015)
+
+  13 Mar 2015; Patrick McLean chutz...@gentoo.org
+  +files/ganeti-2.12-cfgupgrade-state.patch, +ganeti-2.12.1-r3.ebuild,
+  -ganeti-2.12.1-r2.ebuild, files/ganeti-2.12-daemon-util.patch:
+  Revision bump, remove gnt-masterd from daemon-util patch, add code to
+  cfgupgrade to handle 'disk_state_static' and 'hv_state_static' in the cluster
+  config (bug #542628).
 
 *ganeti-2.12.1-r2 (07 Mar 2015)
 



1.1  app-emulation/ganeti/ganeti-2.12.1-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.12.1-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.12.1-r3.ebuild?rev=1.1content-type=text/plain

Index: ganeti-2.12.1-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.12.1-r3.ebuild,v 1.1 
2015/03/13 18:53:31 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user confutils autotools bash-completion-r1 python-single-r1 
versionator pax-utils

MY_PV=${PV/_rc/~rc}
#MY_PV=${PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
# you will need to pull in the haskell overlay for pandoc
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://code.google.com/p/ganeti/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc )

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

# the haskell less-than atoms list are resolver hints, they aren't actual
# direct dependencies, just hints to help the resolver fufill the dependency
# on an older transformer.
# these need to stay until 2.14.0
DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6.0:0=
=dev-haskell/json-0.9:0=
dev-haskell/monad-control-1.0.0.0:0=
dev-haskell/transformers-0.4.0:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel:3=
=dev-haskell/hslogger-1.2.6:0=
dev-haskell/snap-server:0=

[gentoo-commits] gentoo-x86 commit in dev-python/docker-py: docker-py-1.1.0.ebuild ChangeLog

2015-03-13 Thread Patrick McLean (chutzpah)
chutzpah15/03/13 22:31:49

  Modified: ChangeLog
  Added:docker-py-1.1.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.18 dev-python/docker-py/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   6 Mar 2015 22:17:08 -   1.17
+++ ChangeLog   13 Mar 2015 22:31:49 -  1.18
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/docker-py
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v 1.17 
2015/03/06 22:17:08 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v 1.18 
2015/03/13 22:31:49 chutzpah Exp $
+
+*docker-py-1.1.0 (13 Mar 2015)
+
+  13 Mar 2015; Patrick McLean chutz...@gentoo.org +docker-py-1.1.0.ebuild:
+  Version bump.
 
   06 Mar 2015; Pacho Ramos pa...@gentoo.org docker-py-0.7.1.ebuild:
   amd64 stable, bug 540290



1.1  dev-python/docker-py/docker-py-1.1.0.ebuild

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

Index: docker-py-1.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/docker-py/docker-py-1.1.0.ebuild,v 1.1 
2015/03/13 22:31:49 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_{3,4}})

inherit distutils-r1

DESCRIPTION=Python client for Docker.
HOMEPAGE=https://github.com/docker/docker-py;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64
IUSE=doc test

DEPEND=
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( =dev-python/mkdocs-0.9[${PYTHON_USEDEP}] )
test? (
=dev-python/coverage-3.7.1
=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
)

RDEPEND=
=dev-python/requests-2.5*[${PYTHON_USEDEP}]
=dev-python/requests-2.5.3[${PYTHON_USEDEP}]
=dev-python/six-1.3.0[${PYTHON_USEDEP}]
$(python_gen_cond_dep 
'=dev-python/websocket-client-0.11.0[${PYTHON_USEDEP}]' python2_7)


python_compile_all() {
use doc  mkdocs build
}

python_test() {
${PYTHON} tests/test.py || die tests failed under ${EPYTHON}
}

python_install_all() {
use doc  local HTML_DOCS=( site/. )

distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-vcs/tig: tig-2.1.ebuild ChangeLog

2015-03-12 Thread Patrick McLean (chutzpah)
chutzpah15/03/13 04:56:35

  Modified: ChangeLog
  Added:tig-2.1.ebuild
  Log:
  Version bump, install example configs from contrib.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.37 dev-vcs/tig/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   8 Nov 2014 04:56:25 -   1.36
+++ ChangeLog   13 Mar 2015 04:56:35 -  1.37
@@ -1,6 +1,11 @@
 # ChangeLog for dev-vcs/tig
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.36 2014/11/08 
04:56:25 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.37 2015/03/13 
04:56:35 chutzpah Exp $
+
+*tig-2.1 (13 Mar 2015)
+
+  13 Mar 2015; Patrick McLean chutz...@gentoo.org +tig-2.1.ebuild:
+  Version bump, install example configs from contrib.
 
   08 Nov 2014; Tim Harder radher...@gentoo.org -tig-1.2.1.ebuild,
   -tig-2.0.2.ebuild:



1.1  dev-vcs/tig/tig-2.1.ebuild

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

Index: tig-2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-2.1.ebuild,v 1.1 2015/03/13 
04:56:35 chutzpah Exp $

EAPI=5

inherit bash-completion-r1 toolchain-funcs

DESCRIPTION=Tig: text mode interface for git
HOMEPAGE=http://jonas.nitro.dk/tig/;
SRC_URI=http://jonas.nitro.dk/tig/releases/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos
IUSE=unicode

DEPEND=sys-libs/ncurses[unicode?]
sys-libs/readline:0
RDEPEND=${DEPEND}
dev-vcs/git

src_prepare() {
# pre-generated manpages are in the root directory
sed -i '/^MANDOC/s#doc/##g' Makefile || die
}

src_configure() {
econf $(use_with unicode ncursesw)
}

src_compile() {
emake V=1
}

src_test() {
# workaround parallel test failures
emake -j1 test
}

src_install() {
emake DESTDIR=${D} install install-doc-man
dohtml manual.html README.html NEWS.html
newbashcomp contrib/tig-completion.bash ${PN}

docinto examples
dodoc contrib/*.tigrc
}






[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd: nss-pam-ldapd-0.9.4-r2.ebuild ChangeLog

2015-03-11 Thread Patrick McLean (chutzpah)
chutzpah15/03/11 22:32:36

  Modified: nss-pam-ldapd-0.9.4-r2.ebuild ChangeLog
  Log:
  Split dependencies into COMMON_DEP so RDEPEND won't have test deps.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.4-r2.ebuild

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

Index: nss-pam-ldapd-0.9.4-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.4-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nss-pam-ldapd-0.9.4-r2.ebuild   11 Mar 2015 22:29:56 -  1.1
+++ nss-pam-ldapd-0.9.4-r2.ebuild   11 Mar 2015 22:32:36 -  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/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.4-r2.ebuild,v 
1.1 2015/03/11 22:29:56 chutzpah Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.4-r2.ebuild,v 
1.2 2015/03/11 22:32:36 chutzpah Exp $
 
 EAPI=5
 
@@ -16,19 +16,20 @@
 KEYWORDS=
 IUSE=debug kerberos +pam sasl test +utils
 
-RDEPEND=
+COMMON_DEP=
net-nds/openldap[${MULTILIB_USEDEP}]
sasl? ( dev-libs/cyrus-sasl[${MULTILIB_USEDEP}] )
kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] )
pam? ( virtual/pam[${MULTILIB_USEDEP}] )
utils? ( ${PYTHON_DEPS} )
+   !sys-auth/nss_ldap
+   !sys-auth/pam_ldap
+RDEPEND=${COMMON_DEP}
+DEPEND=${COMMON_DEP}
test? (
${PYTHON_DEPS}
dev-python/pylint[${PYTHON_USEDEP}]
)
-   !sys-auth/nss_ldap
-   !sys-auth/pam_ldap
-DEPEND=${RDEPEND}
sys-devel/automake
 
 REQUIRED_USE=



1.19 sys-auth/nss-pam-ldapd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   11 Mar 2015 22:29:56 -  1.18
+++ ChangeLog   11 Mar 2015 22:32:36 -  1.19
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/nss-pam-ldapd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.18 
2015/03/11 22:29:56 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/ChangeLog,v 1.19 
2015/03/11 22:32:36 chutzpah Exp $
+
+  11 Mar 2015; Patrick McLean chutz...@gentoo.org
+  nss-pam-ldapd-0.9.4-r2.ebuild:
+  Split dependencies into COMMON_DEP so RDEPEND won't have test deps.
 
 *nss-pam-ldapd-0.9.4-r2 (11 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-auth/nss-pam-ldapd/files: nss-pam-ldapd-0.9.4-disable-py3-only-linters.patch

2015-03-11 Thread Patrick McLean (chutzpah)
chutzpah15/03/11 22:29:56

  Added:nss-pam-ldapd-0.9.4-disable-py3-only-linters.patch
  Log:
  Revision bump, add utils USE flag to control installation of userspace 
utilities written in python. Use python-r1 eclass to install python code rather 
than the automake-based internal code.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
sys-auth/nss-pam-ldapd/files/nss-pam-ldapd-0.9.4-disable-py3-only-linters.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nss-pam-ldapd-0.9.4-disable-py3-only-linters.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss-pam-ldapd/files/nss-pam-ldapd-0.9.4-disable-py3-only-linters.patch?rev=1.1content-type=text/plain

Index: nss-pam-ldapd-0.9.4-disable-py3-only-linters.patch
===
diff --git a/tests/pylint.rc b/tests/pylint.rc
index 7f0bc13..b66d018 100644
--- a/tests/pylint.rc
+++ b/tests/pylint.rc
@@ -19,7 +19,7 @@ enable=
 # can either give multiple identifier separated by comma (,) or put this option
 # multiple time (only on the command line, not in the configuration file where
 # it should appear only once).
-disable=E1101
+disable=E1101,E1608,E1606,E1601
 
 
 [REPORTS]






[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.12.1-r2.ebuild ChangeLog ganeti-2.12.1-r1.ebuild

2015-03-06 Thread Patrick McLean (chutzpah)
chutzpah15/03/07 00:13:58

  Modified: ChangeLog
  Added:ganeti-2.12.1-r2.ebuild
  Removed:  ganeti-2.12.1-r1.ebuild
  Log:
  Revision bump, update distributive less-than dep to 4.4.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.99 app-emulation/ganeti/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog   6 Mar 2015 18:27:43 -   1.98
+++ ChangeLog   7 Mar 2015 00:13:58 -   1.99
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.98 
2015/03/06 18:27:43 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.99 
2015/03/07 00:13:58 chutzpah Exp $
+
+*ganeti-2.12.1-r2 (07 Mar 2015)
+
+  07 Mar 2015; Patrick McLean chutz...@gentoo.org +ganeti-2.12.1-r2.ebuild,
+  -ganeti-2.12.1-r1.ebuild:
+  Revision bump, update distributive less-than dep to 4.4.
 
 *ganeti-2.12.1-r1 (06 Mar 2015)
 



1.1  app-emulation/ganeti/ganeti-2.12.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.12.1-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.12.1-r2.ebuild?rev=1.1content-type=text/plain

Index: ganeti-2.12.1-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.12.1-r2.ebuild,v 1.1 
2015/03/07 00:13:58 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user confutils autotools bash-completion-r1 python-single-r1 
versionator pax-utils

MY_PV=${PV/_rc/~rc}
#MY_PV=${PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
# you will need to pull in the haskell overlay for pandoc
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://code.google.com/p/ganeti/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc )

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

# the haskell less-than atoms list are resolver hints, they aren't actual
# direct dependencies, just hints to help the resolver fufill the dependency
# on an older transformer.
# these need to stay until 2.14.0
DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6.0:0=
=dev-haskell/json-0.9:0=
dev-haskell/monad-control-1.0.0.0:0=
dev-haskell/transformers-0.4.0:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel:3=
=dev-haskell/hslogger-1.2.6:0=
dev-haskell/snap-server:0=
dev-haskell/utf8-string:0=
dev-haskell/deepseq:0=
dev-haskell/attoparsec:0=
dev-haskell/crypto:0=
dev-haskell/vector:0=
dev-haskell/hinotify:0=
dev-haskell/regex-pcre-builtin:0=
dev-haskell/zlib:0=
=dev-haskell/lifted-base-0.2.3.3:0=
dev-haskell/lens-3.10:0=
 

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.12.1-r1.ebuild ChangeLog ganeti-2.12.1.ebuild

2015-03-06 Thread Patrick McLean (chutzpah)
chutzpah15/03/06 18:27:43

  Modified: ChangeLog
  Added:ganeti-2.12.1-r1.ebuild
  Removed:  ganeti-2.12.1.ebuild
  Log:
  Revision bump, the haskell dependencies are runtime deps as well as build 
time.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.98 app-emulation/ganeti/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog   6 Mar 2015 01:25:05 -   1.97
+++ ChangeLog   6 Mar 2015 18:27:43 -   1.98
@@ -1,6 +1,13 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.97 
2015/03/06 01:25:05 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.98 
2015/03/06 18:27:43 chutzpah Exp $
+
+*ganeti-2.12.1-r1 (06 Mar 2015)
+
+  06 Mar 2015; Patrick McLean chutz...@gentoo.org +ganeti-2.12.1-r1.ebuild,
+  -ganeti-2.12.1.ebuild:
+  Revision bump, the haskell dependencies are runtime deps as well as build
+  time.
 
 *ganeti-2.11.6-r2 (06 Mar 2015)
 *ganeti-2.10.5-r4 (06 Mar 2015)



1.1  app-emulation/ganeti/ganeti-2.12.1-r1.ebuild

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

Index: ganeti-2.12.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.12.1-r1.ebuild,v 1.1 
2015/03/06 18:27:43 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
use test  PYTHON_REQ_USE=ipv6

inherit eutils user confutils autotools bash-completion-r1 python-single-r1 
versionator pax-utils

MY_PV=${PV/_rc/~rc}
#MY_PV=${PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
# you will need to pull in the haskell overlay for pandoc
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://code.google.com/p/ganeti/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc )

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

# the haskell less-than atoms list are resolver hints, they aren't actual
# direct dependencies, just hints to help the resolver fufill the dependency
# on an older transformer.
# these need to stay until 2.14.0
DEPEND=
dev-libs/openssl:0
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/bitarray[${PYTHON_USEDEP}]
net-analyzer/arping
net-analyzer/fping
net-misc/bridge-utils
net-misc/curl[ssl]
net-misc/openssh
net-misc/socat
sys-apps/iproute2
sys-fs/lvm2
=sys-apps/baselayout-2.0
=dev-lang/ghc-7.6.0:0=
=dev-haskell/json-0.9:0=
dev-haskell/monad-control-1.0.0.0:0=
dev-haskell/transformers-0.4.0:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel:3=
=dev-haskell/hslogger-1.2.6:0=
dev-haskell/snap-server:0=
dev-haskell/utf8-string:0=
dev-haskell/deepseq:0=
dev-haskell/attoparsec:0=
dev-haskell/crypto:0=
dev-haskell/vector:0=
dev-haskell/hinotify:0=
dev-haskell/regex-pcre-builtin:0=
dev-haskell/zlib:0=
   

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ganeti-2.10.5-r4.ebuild metadata.xml ganeti-2.12.1.ebuild ganeti-2.11.6-r2.ebuild ChangeLog ganeti-2.11.2-r3.ebuild ganeti-2.11.5-r1.ebuild

2015-03-05 Thread Patrick McLean (chutzpah)
chutzpah15/03/06 01:25:05

  Modified: metadata.xml ChangeLog
  Added:ganeti-2.10.5-r4.ebuild ganeti-2.12.1.ebuild
ganeti-2.11.6-r2.ebuild
  Removed:  ganeti-2.11.2-r3.ebuild ganeti-2.11.5-r1.ebuild
ganeti-2.9.5.ebuild ganeti-2.11.6-r1.ebuild
ganeti-2.10.5-r3.ebuild ganeti-2.7.2.ebuild
  Log:
  Version bump. Revision bump on 2.11.6 and 2.10.5 to update dependencies to be 
more specific (makes repoman happy). Clean out old versions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.12 app-emulation/ganeti/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/metadata.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- metadata.xml29 Aug 2014 20:52:43 -  1.11
+++ metadata.xml6 Mar 2015 01:25:05 -   1.12
@@ -30,7 +30,6 @@
flag name='multiple-users'Enable support for running VMs as 
different users./flag
flag name='monitoring'Enable the ganeti monitoring 
daemon/flag
flag name='rbd'Enable rados block device support via 
sys-cluster/ceph/flag
-   flag name='sharedstorage'Enable Shared Storage support/flag
flag name='xen'Enable Xen support/flag
/use
 /pkgmetadata



1.97 app-emulation/ganeti/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog   17 Nov 2014 09:56:40 -  1.96
+++ ChangeLog   6 Mar 2015 01:25:05 -   1.97
@@ -1,6 +1,25 @@
 # ChangeLog for app-emulation/ganeti
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.96 
2014/11/17 09:56:40 pinkbyte Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.97 
2015/03/06 01:25:05 chutzpah Exp $
+
+*ganeti-2.11.6-r2 (06 Mar 2015)
+*ganeti-2.10.5-r4 (06 Mar 2015)
+*ganeti-2.12.1 (06 Mar 2015)
+
+  06 Mar 2015; Patrick McLean chutz...@gentoo.org
+  +files/ganeti-2.12-daemon-util.patch,
+  +files/ganeti-2.12-qemu-enable-kvm.patch,
+  +files/ganeti-2.12-start-stop-daemon-args.patch,
+  +files/ganeti-2.12-tests.patch, +ganeti-2.10.5-r4.ebuild,
+  +ganeti-2.11.6-r2.ebuild, +ganeti-2.12.1.ebuild,
+  -files/ganeti-2.0.3-gentoo-brctl-path.patch,
+  -files/ganeti-2.5-gentoo-start-stop-daemon.patch,
+  -files/ganeti-2.6-fix-tests.patch, -files/ganeti-2.9-automake-1.13.patch,
+  -ganeti-2.10.5-r3.ebuild, -ganeti-2.11.2-r3.ebuild, -ganeti-2.11.5-r1.ebuild,
+  -ganeti-2.11.6-r1.ebuild, -ganeti-2.7.2.ebuild, -ganeti-2.9.5.ebuild,
+  metadata.xml:
+  Version bump. Revision bump on 2.11.6 and 2.10.5 to update dependencies to be
+  more specific (makes repoman happy). Clean out old versions.
 
 *ganeti-2.11.6-r1 (17 Nov 2014)
 



1.1  app-emulation/ganeti/ganeti-2.10.5-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.10.5-r4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ganeti-2.10.5-r4.ebuild?rev=1.1content-type=text/plain

Index: ganeti-2.10.5-r4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.10.5-r4.ebuild,v 1.1 
2015/03/06 01:25:05 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_{6,7})
use test  PYTHON_REQ_USE=ipv6

inherit eutils confutils autotools bash-completion-r1 python-single-r1 
versionator

MY_PV=${PV/_rc/~rc}
#MY_PV=${PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
   

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti/files: ganeti-2.12-qemu-enable-kvm.patch ganeti-2.12-daemon-util.patch ganeti-2.12-start-stop-daemon-args.patch ganeti-2.12-tests.patch ganet

2015-03-05 Thread Patrick McLean (chutzpah)
chutzpah15/03/06 01:25:05

  Added:ganeti-2.12-qemu-enable-kvm.patch
ganeti-2.12-daemon-util.patch
ganeti-2.12-start-stop-daemon-args.patch
ganeti-2.12-tests.patch
  Removed:  ganeti-2.0.3-gentoo-brctl-path.patch
ganeti-2.9-automake-1.13.patch
ganeti-2.5-gentoo-start-stop-daemon.patch
ganeti-2.6-fix-tests.patch
  Log:
  Version bump. Revision bump on 2.11.6 and 2.10.5 to update dependencies to be 
more specific (makes repoman happy). Clean out old versions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
app-emulation/ganeti/files/ganeti-2.12-qemu-enable-kvm.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-qemu-enable-kvm.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-qemu-enable-kvm.patch?rev=1.1content-type=text/plain

Index: ganeti-2.12-qemu-enable-kvm.patch
===
diff --git a/lib/hypervisor/hv_kvm/__init__.py 
b/lib/hypervisor/hv_kvm/__init__.py
index d0c42c4..e6d3bcf 100644
--- a/lib/hypervisor/hv_kvm/__init__.py
+++ b/lib/hypervisor/hv_kvm/__init__.py
@@ -1061,6 +1061,7 @@ class KVMHypervisor(hv_base.BaseHypervisor):
 pidfile = self._InstancePidFile(instance.name)
 kvm = hvp[constants.HV_KVM_PATH]
 kvm_cmd = [kvm]
+kvm_cmd.extend([-enable-kvm])
 # used just by the vnc server, if enabled
 kvm_cmd.extend([-name, instance.name])
 kvm_cmd.extend([-m, instance.beparams[constants.BE_MAXMEM]])



1.1  app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch?rev=1.1content-type=text/plain

Index: ganeti-2.12-daemon-util.patch
===
diff --git a/daemons/daemon-util.in b/daemons/daemon-util.in
index 6a47253..7eec363 100644
--- a/daemons/daemon-util.in
+++ b/daemons/daemon-util.in
@@ -31,18 +31,24 @@ set -e
 
 @SHELL_ENV_INIT@
 
-readonly defaults_file=$SYSCONFDIR/default/ganeti
+readonly defaults_file=$SYSCONFDIR/conf.d/ganeti
 
 # This is a list of all daemons and the order in which they're started. The
 # order is important as there are dependencies between them. On shutdown,
 # they're stopped in reverse order.
-DAEMONS=(
-  ganeti-noded
-  ganeti-wconfd
-  ganeti-rapi
-  ganeti-luxid
-  ganeti-kvmd
-  )
+DAEMONS=( ganeti-noded ganeti-wconfd ) 
+
+_is_master() {
+[ -z ${ganeti_master} ]  ganeti_master=$(gnt-cluster getmaster)
+[ -z ${local_hostname} ]  local_hostname=$(hostname -f)
+[ ${ganeti_master} = ${local_hostname} ]
+}
+
+if _is_master; then
+  DAEMONS+=( ganeti-masterd ganeti-rapi ganeti-luxid )
+fi
+
+DAEMONS+=( ganeti-kvmd )
 
 # This is the list of daemons that are loaded on demand; they should only be
 # stopped, not started.



1.1  
app-emulation/ganeti/files/ganeti-2.12-start-stop-daemon-args.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-start-stop-daemon-args.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.12-start-stop-daemon-args.patch?rev=1.1content-type=text/plain

Index: ganeti-2.12-start-stop-daemon-args.patch
===
diff --git a/daemons/daemon-util.in b/daemons/daemon-util.in
index 6a47253..11eb9d1 100644
--- a/daemons/daemon-util.in
+++ b/daemons/daemon-util.in
@@ -294,10 +294,11 @@ start() {
   @PKGLIBDIR@/ensure-dirs
 
   if type -p start-stop-daemon /dev/null; then
-start-stop-daemon --start --quiet --oknodo \
+start-stop-daemon --start --quiet \
   --pidfile $pidfile \
-  --startas $daemonexec \
-  --chuid $usergroup \
+  --exec $daemonexec \
+  --user $usergroup \
+  --wait 300 \
   -- $args $@
   else
 # TODO: Find a way to start daemon with a group, until then the group must
@@ -323,7 +324,7 @@ stop() {
   if use_systemctl; then
 systemctl stop ${name}.service
   elif type -p start-stop-daemon /dev/null; then
-start-stop-daemon --stop --quiet --oknodo --retry 30 \
+start-stop-daemon --stop --quiet --retry 30 \
   --pidfile $pidfile
   else
 _ignore_error killproc -p $pidfile $name
@@ -409,8 +410,8 @@ rotate_logs() {
   local daemonexec=$(_daemon_executable $name)
 
   if type -p start-stop-daemon /dev/null; then
-start-stop-daemon --stop --signal HUP --quiet \
-  

[gentoo-commits] gentoo-x86 commit in net-misc/openssh: openssh-6.7_p1-r4.ebuild ChangeLog

2015-02-27 Thread Patrick McLean (chutzpah)
chutzpah15/02/27 22:06:53

  Modified: ChangeLog
  Added:openssh-6.7_p1-r4.ebuild
  Log:
  Add patch to fix crasher bug triggered on hardened x86_64 machines with 
USE=X509 and ancient clients.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.544net-misc/openssh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.543
retrieving revision 1.544
diff -u -r1.543 -r1.544
--- ChangeLog   31 Jan 2015 18:05:34 -  1.543
+++ ChangeLog   27 Feb 2015 22:06:53 -  1.544
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.543 
2015/01/31 18:05:34 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.544 
2015/02/27 22:06:53 chutzpah Exp $
+
+*openssh-6.7_p1-r4 (27 Feb 2015)
+
+  27 Feb 2015; Patrick McLean chutz...@gentoo.org
+  +files/openssh-6.7_p1-xmalloc-include.patch, +openssh-6.7_p1-r4.ebuild:
+  Add patch to fix crasher bug triggered on hardened x86_64 machines with
+  USE=X509 and ancient clients.
 
   31 Jan 2015; Lars Wendler polynomia...@gentoo.org
   -openssh-6.6_p1-r1.ebuild, -openssh-6.6.1_p1-r4.ebuild,



1.1  net-misc/openssh/openssh-6.7_p1-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r4.ebuild?rev=1.1content-type=text/plain

Index: openssh-6.7_p1-r4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r4.ebuild,v 
1.1 2015/02/27 22:06:53 chutzpah Exp $

EAPI=4
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH=${PN}-6.7p1-hpnssh14v5.tar.xz
LDAP_PATCH=${PN}-lpk-6.7p1-0.3.14.patch.xz
X509_VER=8.2 X509_PATCH=${PARCH}+x509-${X509_VER}.diff.gz

DESCRIPTION=Port of OpenBSD's free SSH release
HOMEPAGE=http://www.openssh.org/;
SRC_URI=mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${P}-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~vapier/dist/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? ( 
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}


LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
IUSE=bindist ${HPN_PATCH:++}hpn kerberos kernel_linux ldap ldns libedit pam 
+pie sctp selinux skey static X X509
REQUIRED_USE=pie? ( !static )

LIB_DEPEND=sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( =sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( =sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
=sys-libs/zlib-1.2.3[static-libs(+)]
RDEPEND=
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
DEPEND=${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgconfig
virtual/os-headers
sys-devel/autoconf
RDEPEND=${RDEPEND}
pam? ( =sys-auth/pambase-20081028 )
userland_GNU? ( virtual/shadow )
X? ( x11-apps/xauth )

S=${WORKDIR}/${PARCH}

pkg_setup() {
# this sucks, but i'd rather have people unable to `emerge -u openssh`
# than not be able to log in to their 

[gentoo-commits] gentoo-x86 commit in net-misc/openssh/files: openssh-6.7_p1-xmalloc-include.patch

2015-02-27 Thread Patrick McLean (chutzpah)
chutzpah15/02/27 22:06:53

  Added:openssh-6.7_p1-xmalloc-include.patch
  Log:
  Add patch to fix crasher bug triggered on hardened x86_64 machines with 
USE=X509 and ancient clients.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  net-misc/openssh/files/openssh-6.7_p1-xmalloc-include.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.7_p1-xmalloc-include.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.7_p1-xmalloc-include.patch?rev=1.1content-type=text/plain

Index: openssh-6.7_p1-xmalloc-include.patch
===
diff -ur openssh-6.7p1.orig/ssh-rsa.c openssh-6.7p1/ssh-rsa.c
--- openssh-6.7p1.orig/ssh-rsa.c2015-02-24 14:52:54.512197868 -0800
+++ openssh-6.7p1/ssh-rsa.c 2015-02-27 11:48:54.173951646 -0800
@@ -34,6 +34,7 @@
 #include sshkey.h
 #include digest.h
 #include evp-compat.h
+#include xmalloc.h
 
 /*NOTE: Do not define USE_LEGACY_RSA_... if build
   is with FIPS capable OpenSSL */






[gentoo-commits] gentoo-x86 commit in app-admin/salt: ChangeLog salt-2014.7.1.ebuild salt-2014.7.0-r1.ebuild

2015-02-17 Thread Patrick McLean (chutzpah)
chutzpah15/02/17 20:08:27

  Modified: ChangeLog
  Removed:  salt-2014.7.1.ebuild salt-2014.7.0-r1.ebuild
  Log:
  Actually clean out old versions.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.56 app-admin/salt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   17 Feb 2015 20:07:03 -  1.55
+++ ChangeLog   17 Feb 2015 20:08:27 -  1.56
@@ -1,6 +1,10 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.55 2015/02/17 
20:07:03 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.56 2015/02/17 
20:08:27 chutzpah Exp $
+
+  17 Feb 2015; Patrick McLean chutz...@gentoo.org -salt-2014.7.0-r1.ebuild,
+  -salt-2014.7.1.ebuild:
+  Actually clean out old versions.
 
 *salt-2014.7.2 (17 Feb 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-python/SaltTesting: SaltTesting-2015.2.16.ebuild ChangeLog SaltTesting-0.5.3.ebuild SaltTesting-0.5.2.ebuild SaltTesting-2014.4.24.ebuild

2015-02-17 Thread Patrick McLean (chutzpah)
chutzpah15/02/17 19:05:50

  Modified: ChangeLog
  Added:SaltTesting-2015.2.16.ebuild
  Removed:  SaltTesting-0.5.3.ebuild SaltTesting-0.5.2.ebuild
SaltTesting-2014.4.24.ebuild
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.6  dev-python/SaltTesting/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/SaltTesting/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   16 Jan 2015 22:19:33 -  1.5
+++ ChangeLog   17 Feb 2015 19:05:50 -  1.6
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/SaltTesting
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/SaltTesting/ChangeLog,v 1.5 
2015/01/16 22:19:33 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/SaltTesting/ChangeLog,v 1.6 
2015/02/17 19:05:50 chutzpah Exp $
+
+*SaltTesting-2015.2.16 (17 Feb 2015)
+
+  17 Feb 2015; Patrick McLean chutz...@gentoo.org
+  +SaltTesting-2015.2.16.ebuild, -SaltTesting-0.5.2.ebuild,
+  -SaltTesting-0.5.3.ebuild, -SaltTesting-2014.4.24.ebuild:
+  Version bump, remove old.
 
 *SaltTesting-2014.8.5 (16 Jan 2015)
 



1.1  dev-python/SaltTesting/SaltTesting-2015.2.16.ebuild

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

Index: SaltTesting-2015.2.16.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/SaltTesting/SaltTesting-2015.2.16.ebuild,v 
1.1 2015/02/17 19:05:50 chutzpah Exp $

EAPI=5

PYTHON_COMPAT=(python2_7)

inherit eutils distutils-r1

DESCRIPTION=Required testing tools needed in the several Salt Stack projects
HOMEPAGE=http://saltstack.org/;

if [[ ${PV} == * ]]; then
inherit git-2
EGIT_REPO_URI=git://github.com/saltstack/salt-testing.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

LICENSE=Apache-2.0
SLOT=0

DEPEND==dev-python/requests-2.4.2
RDEPEND=${DEPEND}






[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-9999.ebuild salt-2014.7.2.ebuild ChangeLog

2015-02-17 Thread Patrick McLean (chutzpah)
chutzpah15/02/17 20:07:03

  Modified: salt-.ebuild ChangeLog
  Added:salt-2014.7.2.ebuild
  Log:
  Version bump, clean out old versions, sync .
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.17 app-admin/salt/salt-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?r1=1.16r2=1.17

Index: salt-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/salt-.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- salt-.ebuild16 Jan 2015 22:56:46 -  1.16
+++ salt-.ebuild17 Feb 2015 20:07:03 -  1.17
@@ -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/app-admin/salt/salt-.ebuild,v 1.16 
2015/01/16 22:56:46 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-.ebuild,v 1.17 
2015/02/17 20:07:03 chutzpah Exp $
 
 EAPI=5
 PYTHON_COMPAT=(python2_7)
@@ -45,7 +45,7 @@
)
zeromq? (
=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
-   dev-python/m2crypto[${PYTHON_USEDEP}]
+   =dev-python/m2crypto-0.22.3[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
api? (
@@ -67,7 +67,7 @@
dev-python/pip[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
dev-python/timelib[${PYTHON_USEDEP}]
-   =dev-python/SaltTesting-2014.8.5[${PYTHON_USEDEP}]
+   =dev-python/SaltTesting-2015.2.16[${PYTHON_USEDEP}]
${RDEPEND}
)
 
@@ -99,5 +99,6 @@
 
# using ${T} for the TMPDIR makes some tests needs paths that exceed 
PATH_MAX
USE_SETUPTOOLS=1 SHELL=/bin/bash TMPDIR=/tmp \
-   ./tests/runtests.py --unit-tests --no-report --verbose || die 
testing failed
+   ${EPYTHON} tests/runtests.py \
+   --unit-tests --no-report --verbose || die testing failed
 }



1.55 app-admin/salt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.55view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.55content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?r1=1.54r2=1.55

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog   16 Jan 2015 22:56:46 -  1.54
+++ ChangeLog   17 Feb 2015 20:07:03 -  1.55
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.54 2015/01/16 
22:56:46 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.55 2015/02/17 
20:07:03 chutzpah Exp $
+
+*salt-2014.7.2 (17 Feb 2015)
+
+  17 Feb 2015; Patrick McLean chutz...@gentoo.org +salt-2014.7.2.ebuild,
+  salt-.ebuild:
+  Version bump, clean out old versions, sync .
 
 *salt-2014.7.1 (16 Jan 2015)
 



1.1  app-admin/salt/salt-2014.7.2.ebuild

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

Index: salt-2014.7.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.7.2.ebuild,v 1.1 
2015/02/17 20:07:03 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit eutils distutils-r1 systemd

DESCRIPTION=Salt is a remote execution and configuration manager
HOMEPAGE=http://saltstack.org/;

if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI=git://github.com/${PN}stack/${PN}.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

LICENSE=Apache-2.0
SLOT=0
IUSE=api ldap libcloud libvirt gnupg keyring mako mongodb mysql nova
IUSE+= openssl redis selinux timelib raet +zeromq test

RDEPEND=sys-apps/pciutils
dev-python/jinja[${PYTHON_USEDEP}]

[gentoo-commits] gentoo-x86 commit in app-arch/hardlink: hardlink-0.3.0.ebuild ChangeLog

2015-02-03 Thread Patrick McLean (chutzpah)
chutzpah15/02/03 23:22:01

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

Revision  ChangesPath
1.13 app-arch/hardlink/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/hardlink/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   6 Mar 2014 10:27:24 -   1.12
+++ ChangeLog   3 Feb 2015 23:22:01 -   1.13
@@ -1,6 +1,11 @@
 # ChangeLog for app-arch/hardlink
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/hardlink/ChangeLog,v 1.12 
2014/03/06 10:27:24 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/hardlink/ChangeLog,v 1.13 
2015/02/03 23:22:01 chutzpah Exp $
+
+*hardlink-0.3.0 (03 Feb 2015)
+
+  03 Feb 2015; Patrick McLean chutz...@gentoo.org +hardlink-0.3.0.ebuild:
+  Version bump.
 
   06 Mar 2014; Agostino Sarubbo a...@gentoo.org hardlink-0.2.0.ebuild:
   Stable for ppc64, wrt bug #476042



1.1  app-arch/hardlink/hardlink-0.3.0.ebuild

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

Index: hardlink-0.3.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/hardlink/hardlink-0.3.0.ebuild,v 
1.1 2015/02/03 23:22:01 chutzpah Exp $

EAPI=4
inherit toolchain-funcs

DESCRIPTION=A tool which replaces copies of a file with hardlinks
HOMEPAGE=http://jak-linux.org/projects/hardlink/;
SRC_URI=http://jak-linux.org/projects/${PN}/${PN}_${PV}.tar.xz;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
IUSE=

RDEPEND=dev-libs/libpcre
DEPEND=${RDEPEND}
virtual/pkgconfig

DOCS=README ${T}/README.rsync

src_prepare() {
sed -i -e '/^CF/s:?=:+=:' -e '/^CF/s:-O2 -g::' Makefile || die

cat -EOF  ${T}/README.rsync
http://hardlinkpy.googlecode.com/svn/trunk/hardlink.py has regex 
'^\..*\.\?{6,6}$'
for excluding rsync temporary files by default.

To accomplish same with this version, you can use following syntax:
# hardlink -x '^\..*\.\?{6,6}$'

This was discussed at http://bugs.gentoo.org/416613
EOF
}

src_compile() {
tc-export CC
emake
}






[gentoo-commits] gentoo-x86 commit in net-misc/lldpd: metadata.xml lldpd-0.7.13.ebuild ChangeLog lldpd-0.7.9-r3.ebuild

2015-01-31 Thread Patrick McLean (chutzpah)
chutzpah15/01/31 08:05:54

  Modified: metadata.xml ChangeLog
  Added:lldpd-0.7.13.ebuild
  Removed:  lldpd-0.7.9-r3.ebuild
  Log:
  Version bump, clean out old version.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

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

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/lldpd/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml22 Sep 2014 18:09:19 -  1.5
+++ metadata.xml31 Jan 2015 08:05:54 -  1.6
@@ -26,7 +26,6 @@
flag name='edp'Enable Extreme Discovery Protocol/flag
flag name='fdp'Enable Foundry Discovery Protocol/flag
flag name='jansson'Enable JSON output via Jansson/flag
-   flag name='json'Enable JSON output via Jansson/flag
flag name='json-c'Enable JSON output via json-c/flag
flag name='lldpmed'Enable LLDP-MED extension/flag
flag name='seccomp'Enable use of libseccomp for system call 
filtering/flag



1.27 net-misc/lldpd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/lldpd/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   26 Jan 2015 09:42:29 -  1.26
+++ ChangeLog   31 Jan 2015 08:05:54 -  1.27
@@ -1,6 +1,14 @@
 # ChangeLog for net-misc/lldpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/lldpd/ChangeLog,v 1.26 2015/01/26 
09:42:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/lldpd/ChangeLog,v 1.27 2015/01/31 
08:05:54 chutzpah Exp $
+
+*lldpd-0.7.13 (31 Jan 2015)
+
+  31 Jan 2015; Patrick McLean chutz...@gentoo.org +lldpd-0.7.13.ebuild,
+  -files/lldpd-0.7.9-dont-fork-after-making-pidfile.patch,
+  -files/lldpd-0.7.9-seccomp-add-syscalls.patch, -files/lldpd-initd-3,
+  -lldpd-0.7.9-r3.ebuild, metadata.xml:
+  Version bump, clean out old version.
 
   26 Jan 2015; Agostino Sarubbo a...@gentoo.org lldpd-0.7.11-r3.ebuild:
   Stable for x86, wrt bug #535606



1.1  net-misc/lldpd/lldpd-0.7.13.ebuild

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

Index: lldpd-0.7.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/lldpd/lldpd-0.7.13.ebuild,v 1.1 
2015/01/31 08:05:54 chutzpah Exp $

EAPI=5

inherit eutils user systemd bash-completion-r1 autotools

DESCRIPTION=Implementation of IEEE 802.1ab (LLDP)
HOMEPAGE=http://vincentbernat.github.com/lldpd/;
SRC_URI=http://media.luffy.cx/files/${PN}/${P}.tar.gz;

LICENSE=ISC
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=cdp doc +dot1 +dot3 edp fdp graph jansson json-c +lldpmed seccomp sonmp
snmp static-libs readline xml zsh-completion

RDEPEND==dev-libs/libevent-2.0.5
snmp? ( net-analyzer/net-snmp[extensible(+)] )
xml? ( dev-libs/libxml2 )
jansson? ( dev-libs/jansson )
json-c? ( dev-libs/json-c )
seccomp? ( sys-libs/libseccomp )
zsh-completion? ( app-shells/zsh )
DEPEND=${RDEPEND}
virtual/pkgconfig
doc? (
graph? ( app-doc/doxygen[dot] )
!graph? ( app-doc/doxygen )
)

REQUIRED_USE=graph? ( doc ) json-c? ( !jansson )

PATCHES=(
${FILESDIR}/${PN}-0.7.11-zsh-completion-dir.patch
${FILESDIR}/${PN}-0.7.11-bash-completion-dir.patch
)

pkg_setup() {
ebegin Creating lldpd user and group
enewgroup ${PN}
enewuser ${PN} -1 -1 -1 ${PN}
eend $?
}

src_prepare() {
epatch ${PATCHES[@]}
epatch_user
eautoreconf
elibtoolize
}

src_configure() 

[gentoo-commits] gentoo-x86 commit in net-misc/lldpd/files: lldpd-0.7.9-dont-fork-after-making-pidfile.patch lldpd-initd-3 lldpd-0.7.9-seccomp-add-syscalls.patch

2015-01-31 Thread Patrick McLean (chutzpah)
chutzpah15/01/31 08:05:54

  Removed:  lldpd-0.7.9-dont-fork-after-making-pidfile.patch
lldpd-initd-3
lldpd-0.7.9-seccomp-add-syscalls.patch
  Log:
  Version bump, clean out old version.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)



[gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g/files: ntfs3g-2014.2.15-dont-put-things-in-root.patch

2015-01-30 Thread Patrick McLean (chutzpah)
chutzpah15/01/30 22:09:08

  Modified: ntfs3g-2014.2.15-dont-put-things-in-root.patch
  Log:
  Update dont-put-things-in-root patch to build properly with USE=-ntfsprogs 
(bug #538230).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  
sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch?r1=1.1r2=1.2

Index: ntfs3g-2014.2.15-dont-put-things-in-root.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ntfs3g-2014.2.15-dont-put-things-in-root.patch  29 Jan 2015 08:20:05 
-  1.1
+++ ntfs3g-2014.2.15-dont-put-things-in-root.patch  30 Jan 2015 22:09:08 
-  1.2
@@ -1,12 +1,13 @@
 diff -ur ntfs-3g_ntfsprogs-2014.2.15.orig/ntfsprogs/Makefile.am 
ntfs-3g_ntfsprogs-2014.2.15/ntfsprogs/Makefile.am
 --- ntfs-3g_ntfsprogs-2014.2.15.orig/ntfsprogs/Makefile.am 2015-01-29 
00:12:51.786936314 -0800
 +++ ntfs-3g_ntfsprogs-2014.2.15/ntfsprogs/Makefile.am  2015-01-29 
00:13:59.156442369 -0800
-@@ -140,8 +140,7 @@
+@@ -140,8 +140,8 @@
  # mkfs.ntfs[.8] hard link
  
  install-exec-hook:
 -  $(INSTALL) -d $(DESTDIR)/sbin
 -  $(LN_S) -f $(sbindir)/mkntfs $(DESTDIR)/sbin/mkfs.ntfs
++  $(INSTALL) -d $(DESTDIR)/$(sbindir)
 +  $(LN_S) -f mkntfs $(DESTDIR)/$(sbindir)/mkfs.ntfs
  
  install-data-hook:
@@ -14,13 +15,14 @@
 diff -ur ntfs-3g_ntfsprogs-2014.2.15.orig/src/Makefile.am 
ntfs-3g_ntfsprogs-2014.2.15/src/Makefile.am
 --- ntfs-3g_ntfsprogs-2014.2.15.orig/src/Makefile.am   2015-01-29 
00:12:51.789936248 -0800
 +++ ntfs-3g_ntfsprogs-2014.2.15/src/Makefile.am2015-01-29 
00:14:00.570411008 -0800
-@@ -68,9 +68,8 @@
+@@ -68,9 +68,9 @@
  
  if ENABLE_MOUNT_HELPER
  install-exec-local:   install-rootbinPROGRAMS
 -  $(MKDIR_P) $(DESTDIR)/sbin
 -  $(LN_S) -f $(rootbindir)/ntfs-3g $(DESTDIR)/sbin/mount.ntfs-3g
 -  $(LN_S) -f $(rootbindir)/lowntfs-3g $(DESTDIR)/sbin/mount.lowntfs-3g
++  $(MKDIR_P) $(DESTDIR)/$(sbindir)
 +  $(LN_S) -f ../bin/ntfs-3g $(DESTDIR)/$(sbindir)/mount.ntfs-3g
 +  $(LN_S) -f ../bin/lowntfs-3g $(DESTDIR)/$(sbindir)/mount.lowntfs-3g
  endif






[gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog

2015-01-30 Thread Patrick McLean (chutzpah)
chutzpah15/01/30 22:09:08

  Modified: ChangeLog
  Log:
  Update dont-put-things-in-root patch to build properly with USE=-ntfsprogs 
(bug #538230).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.161sys-fs/ntfs3g/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.161view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.161content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ChangeLog?r1=1.160r2=1.161

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- ChangeLog   29 Jan 2015 08:20:05 -  1.160
+++ ChangeLog   30 Jan 2015 22:09:08 -  1.161
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/ntfs3g
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.160 2015/01/29 
08:20:05 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.161 2015/01/30 
22:09:08 chutzpah Exp $
+
+  30 Jan 2015; Patrick McLean chutz...@gentoo.org
+  files/ntfs3g-2014.2.15-dont-put-things-in-root.patch:
+  Update dont-put-things-in-root patch to build properly with USE=-ntfsprogs
+  (bug #538230).
 
 *ntfs3g-2014.2.15-r1 (29 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g/files: ntfs3g-2014.2.15-dont-put-things-in-root.patch ntfs3g-2014.2.15-update-fuse-lite-to-support-ioctls.patch ntfs3g-2014.2.15-fix-fstrim-applied-

2015-01-29 Thread Patrick McLean (chutzpah)
chutzpah15/01/29 08:20:05

  Added:ntfs3g-2014.2.15-dont-put-things-in-root.patch

ntfs3g-2014.2.15-update-fuse-lite-to-support-ioctls.patch
ntfs3g-2014.2.15-fix-fstrim-applied-to-partitons.patch
ntfs3g-2014.2.15-implement-fstrim.patch
  Log:
  Revision bump, add upstream patches to support fstrim. Make sure everything 
is in /usr/{s,}bin rather than making some symlinks in /{s,}bin. Set LD to make 
sure to use the bfd linker, even when the system linker is set to gold (bug 
#450024)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-dont-put-things-in-root.patch?rev=1.1content-type=text/plain

Index: ntfs3g-2014.2.15-dont-put-things-in-root.patch
===
diff -ur ntfs-3g_ntfsprogs-2014.2.15.orig/ntfsprogs/Makefile.am 
ntfs-3g_ntfsprogs-2014.2.15/ntfsprogs/Makefile.am
--- ntfs-3g_ntfsprogs-2014.2.15.orig/ntfsprogs/Makefile.am  2015-01-29 
00:12:51.786936314 -0800
+++ ntfs-3g_ntfsprogs-2014.2.15/ntfsprogs/Makefile.am   2015-01-29 
00:13:59.156442369 -0800
@@ -140,8 +140,7 @@
 # mkfs.ntfs[.8] hard link
 
 install-exec-hook:
-   $(INSTALL) -d $(DESTDIR)/sbin
-   $(LN_S) -f $(sbindir)/mkntfs $(DESTDIR)/sbin/mkfs.ntfs
+   $(LN_S) -f mkntfs $(DESTDIR)/$(sbindir)/mkfs.ntfs
 
 install-data-hook:
$(INSTALL) -d $(DESTDIR)$(man8dir)
diff -ur ntfs-3g_ntfsprogs-2014.2.15.orig/src/Makefile.am 
ntfs-3g_ntfsprogs-2014.2.15/src/Makefile.am
--- ntfs-3g_ntfsprogs-2014.2.15.orig/src/Makefile.am2015-01-29 
00:12:51.789936248 -0800
+++ ntfs-3g_ntfsprogs-2014.2.15/src/Makefile.am 2015-01-29 00:14:00.570411008 
-0800
@@ -68,9 +68,8 @@
 
 if ENABLE_MOUNT_HELPER
 install-exec-local:install-rootbinPROGRAMS
-   $(MKDIR_P) $(DESTDIR)/sbin
-   $(LN_S) -f $(rootbindir)/ntfs-3g $(DESTDIR)/sbin/mount.ntfs-3g
-   $(LN_S) -f $(rootbindir)/lowntfs-3g $(DESTDIR)/sbin/mount.lowntfs-3g
+   $(LN_S) -f ../bin/ntfs-3g $(DESTDIR)/$(sbindir)/mount.ntfs-3g
+   $(LN_S) -f ../bin/lowntfs-3g $(DESTDIR)/$(sbindir)/mount.lowntfs-3g
 endif
 
 install-data-local:install-man8
@@ -80,7 +79,7 @@
 uninstall-local:
$(RM) -f $(DESTDIR)$(man8dir)/mount.ntfs-3g.8
 if ENABLE_MOUNT_HELPER
-   $(RM) -f $(DESTDIR)/sbin/mount.ntfs-3g 
$(DESTDIR)/sbin/mount.lowntfs-3g
+   $(RM) -f $(DESTDIR)/$(sbindir)/mount.ntfs-3g 
$(DESTDIR)/$(sbindir)/mount.lowntfs-3g
 endif
 
 endif # ENABLE_NTFS_3G



1.1  
sys-fs/ntfs3g/files/ntfs3g-2014.2.15-update-fuse-lite-to-support-ioctls.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-update-fuse-lite-to-support-ioctls.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/files/ntfs3g-2014.2.15-update-fuse-lite-to-support-ioctls.patch?rev=1.1content-type=text/plain

Index: ntfs3g-2014.2.15-update-fuse-lite-to-support-ioctls.patch
===
diff -ur ntfs-3g_ntfsprogs-2014.2.15/include/fuse-lite/fuse_common.h 
ntfs-3g_ntfsprogs-2014.2.15.new/include/fuse-lite/fuse_common.h
--- ntfs-3g_ntfsprogs-2014.2.15/include/fuse-lite/fuse_common.h 2014-02-15 
14:07:52.0 +
+++ ntfs-3g_ntfsprogs-2014.2.15.new/include/fuse-lite/fuse_common.h 
2014-07-31 13:47:17.401904166 +0100
@@ -49,6 +49,22 @@
 #endif
 
 #define FUSE_CAP_BIG_WRITES(1  5)
+#define FUSE_CAP_IOCTL_DIR (1  11)
+
+/**
+ * Ioctl flags
+ *
+ * FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine
+ * FUSE_IOCTL_UNRESTRICTED: not restricted to well-formed ioctls, retry allowed
+ * FUSE_IOCTL_RETRY: retry with new iovecs
+ * FUSE_IOCTL_DIR: is a directory 
+ */
+#define FUSE_IOCTL_COMPAT  (1  0)
+#define FUSE_IOCTL_UNRESTRICTED (1  1)
+#define FUSE_IOCTL_RETRY   (1  2)
+#define FUSE_IOCTL_DIR (1  4)
+
+#define FUSE_IOCTL_MAX_IOV 256
 
 /**
  * Information about open files
diff -ur ntfs-3g_ntfsprogs-2014.2.15/include/fuse-lite/fuse.h 
ntfs-3g_ntfsprogs-2014.2.15.new/include/fuse-lite/fuse.h
--- ntfs-3g_ntfsprogs-2014.2.15/include/fuse-lite/fuse.h2014-02-15 
14:07:52.0 +
+++ ntfs-3g_ntfsprogs-2014.2.15.new/include/fuse-lite/fuse.h2014-07-31 
13:47:17.401904166 +0100
@@ -420,9 +420,27 @@
 * Introduced in version 2.6
 */
int (*bmap) (const char *, size_t blocksize, uint64_t *idx);
-   unsigned int flag_nullpath_ok : 1;
  
/**
+* Ioctl
+*
+* flags will have FUSE_IOCTL_COMPAT set 

[gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2014.2.15-r1.ebuild

2015-01-29 Thread Patrick McLean (chutzpah)
chutzpah15/01/29 08:20:05

  Modified: ChangeLog
  Added:ntfs3g-2014.2.15-r1.ebuild
  Log:
  Revision bump, add upstream patches to support fstrim. Make sure everything 
is in /usr/{s,}bin rather than making some symlinks in /{s,}bin. Set LD to make 
sure to use the bfd linker, even when the system linker is set to gold (bug 
#450024)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.160sys-fs/ntfs3g/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog   13 Apr 2014 15:02:30 -  1.159
+++ ChangeLog   29 Jan 2015 08:20:05 -  1.160
@@ -1,6 +1,19 @@
 # ChangeLog for sys-fs/ntfs3g
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.159 2014/04/13 
15:02:30 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.160 2015/01/29 
08:20:05 chutzpah Exp $
+
+*ntfs3g-2014.2.15-r1 (29 Jan 2015)
+
+  29 Jan 2015; Patrick McLean chutz...@gentoo.org
+  +ntfs3g-2014.2.15-r1.ebuild,
+  +files/ntfs3g-2014.2.15-dont-put-things-in-root.patch,
+  +files/ntfs3g-2014.2.15-fix-fstrim-applied-to-partitons.patch,
+  +files/ntfs3g-2014.2.15-implement-fstrim.patch,
+  +files/ntfs3g-2014.2.15-update-fuse-lite-to-support-ioctls.patch:
+  Revision bump, add upstream patches to support fstrim. Make sure everything
+  is in /usr/{s,}bin rather than making some symlinks in /{s,}bin. Set LD to
+  make sure to use the bfd linker, even when the system linker is set to gold
+  (bug #450024)
 
   13 Apr 2014; Mike Frysinger vap...@gentoo.org
   +files/ntfs3g-2014.2.15-no-split-usr.patch, ntfs3g-2014.2.15.ebuild:



1.1  sys-fs/ntfs3g/ntfs3g-2014.2.15-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2014.2.15-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2014.2.15-r1.ebuild?rev=1.1content-type=text/plain

Index: ntfs3g-2014.2.15-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2014.2.15-r1.ebuild,v 
1.1 2015/01/29 08:20:05 chutzpah Exp $

EAPI=5
inherit eutils linux-info udev autotools

MY_PN=${PN/3g/-3g}
MY_P=${MY_PN}_ntfsprogs-${PV}

DESCRIPTION=Open source read-write NTFS driver that runs under FUSE
HOMEPAGE=http://www.tuxera.com/community/ntfs-3g-download/;
SRC_URI=http://tuxera.com/opensource/${MY_P}.tgz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux 
~x86-linux
IUSE=acl debug +external-fuse ntfsdecrypt +ntfsprogs static-libs suid xattr

RDEPEND=!sys-apps/util-linux-2.20.1-r2
!sys-fs/ntfsprogs
ntfsdecrypt? (
=dev-libs/libgcrypt-1.2.2:0
=net-libs/gnutls-1.4.4
)
external-fuse? ( =sys-fs/fuse-2.8.0 )
DEPEND=${RDEPEND}
sys-apps/attr
virtual/pkgconfig

S=${WORKDIR}/${MY_P}

DOCS=AUTHORS ChangeLog CREDITS README

PATCHES=(
${FILESDIR}/${PN}-2014.2.15-no-split-usr.patch
${FILESDIR}/${PN}-2014.2.15-dont-put-things-in-root.patch
${FILESDIR}/${P}-update-fuse-lite-to-support-ioctls.patch
${FILESDIR}/${P}-implement-fstrim.patch
${FILESDIR}/${P}-fix-fstrim-applied-to-partitons.patch
)

pkg_setup() {
if use external-fuse  use kernel_linux; then
if kernel_is lt 2 6 9; then
die Your kernel is too old.
fi
CONFIG_CHECK=~FUSE_FS
FUSE_FS_WARNING=You need to have FUSE module built to use 
ntfs-3g
linux-info_pkg_setup
fi
}

src_prepare() {
epatch ${PATCHES[@]}
eautoreconf
elibtoolize
}

src_configure() {
LD=$(tc-getLD).bfd econf \
--prefix=${EPREFIX}/usr \
--exec-prefix=${EPREFIX}/usr \
--docdir=${EPREFIX}/usr/share/doc/${PF} \
$(use_enable debug) \
--enable-ldscript \
--disable-ldconfig \
$(use_enable acl posix-acls) \
$(use_enable xattr xattr-mappings) \
$(use_enable 

[gentoo-commits] gentoo-x86 commit in dev-util/trace-cmd: ChangeLog trace-cmd-2.5.1.ebuild metadata.xml Manifest

2015-01-26 Thread Patrick McLean (chutzpah)
chutzpah15/01/27 02:56:08

  Added:ChangeLog trace-cmd-2.5.1.ebuild metadata.xml
Manifest
  Log:
  New package, User-space front-end for Ftrace
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  dev-util/trace-cmd/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-util/trace-cmd
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/ChangeLog,v 1.1 
2015/01/27 02:56:08 chutzpah Exp $

*trace-cmd-2.5.1 (27 Jan 2015)

  27 Jan 2015; Patrick McLean chutz...@gentoo.org +trace-cmd-2.5.1.ebuild,
  +files/trace-cmd-2.5.1-makefile.patch, +metadata.xml:
  Initial version.




1.1  dev-util/trace-cmd/trace-cmd-2.5.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/trace-cmd/trace-cmd-2.5.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/trace-cmd/trace-cmd-2.5.1.ebuild?rev=1.1content-type=text/plain

Index: trace-cmd-2.5.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/trace-cmd-2.5.1.ebuild,v 
1.1 2015/01/27 02:56:08 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit toolchain-funcs python-single-r1

DESCRIPTION=User-space front-end for Ftrace
HOMEPAGE=https://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git;
SRC_URI=mirror://gentoo/${P}.tar.xz

LICENSE=GPL-2 LGPL-2.1
SLOT=0
KEYWORDS=~amd64
IUSE=doc gtk python udis86

RDEPEND=python? ( ${PYTHON_DEPS} )
udis86? ( dev-libs/udis86 )
gtk? (
${PYTHON_DEPS}
dev-python/pygtk:2[${PYTHON_USEDEP}]
)
DEPEND=${RDEPEND}
sys-kernel/linux-headers
python? (
virtual/pkgconfig
dev-lang/swig
)
gtk? ( virtual/pkgconfig )
doc? ( app-text/asciidoc )

src_prepare() {
epatch ${FILESDIR}/${P}-makefile.patch
epatch_user
}

src_configure() {
MAKEOPTS+= V=1 prefix=/usr libdir=$(get_libdir) CC=$(tc-getCC) 
AR=$(tc-getAR)

if use python; then
MAKEOPTS+= PYTHON_VERS=${EPYTHON//python/python-}
MAKEOPTS+= python_dir=$(python_get_sitedir)/${PN}
else
MAKEOPTS+= NO_PYTHON=1
fi

use udis86 || MAKEOPTS+= NO_UDIS86=1
}

src_compile() {
emake all_cmd
use doc  emake doc
use gtk  emake -j1 gui
}

src_install() {
emake DESTDIR=${D} install
use doc  emake DESTDIR=${D} install_doc
use gtk  emake DESTDIR=${D} install_gui
}



1.1  dev-util/trace-cmd/metadata.xml

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailchutz...@gentoo.org/email
namePatrick McLean/name
/maintainer
use
flag name=udis86Enable support for dev-libs/udis86 
disassembler library/flag
/use
/pkgmetadata



1.1  dev-util/trace-cmd/Manifest

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

Index: Manifest
===
AUX trace-cmd-2.5.1-makefile.patch 1152 SHA256 
991083db0f9a4ec10fbcd18a4d5b002faf8eec3ac592a09ef1b2d290fff74275 SHA512 
e74742d3c050f9e7bdb566a82a5212e6474b34ee6fc46e9ffa313ad3f2c323f55b63521ec857ae44f39ef168135fcdf733314fb3e04709e51f03ef7aed99c416
 WHIRLPOOL 
02e21d94c957110bf9fa0c309d3e1ac86323c30f6ef70d7d82bd2f62ea5deb9a28f66026e61dc2b47f64e4599e0fb24fbf2b36a1b317bdb82d2c81953f2654d8
DIST trace-cmd-2.5.1.tar.xz 1577148 SHA256 
591aa00ff90a60fa2bce8637392126623511fd7629a771c7e3276137b31b3966 SHA512 
2280eefa130a3914c34798f8bd4097a55f7f4fa4632b3d26ee1317bba54625d259ac61c6576dd3051fb2be48fb593fa54a4203d1828b7fec5fd196de00491ea2
 WHIRLPOOL 

[gentoo-commits] gentoo-x86 commit in dev-util/trace-cmd/files: trace-cmd-2.5.1-makefile.patch

2015-01-26 Thread Patrick McLean (chutzpah)
chutzpah15/01/27 02:56:09

  Added:trace-cmd-2.5.1-makefile.patch
  Log:
  New package, User-space front-end for Ftrace
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  dev-util/trace-cmd/files/trace-cmd-2.5.1-makefile.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/trace-cmd/files/trace-cmd-2.5.1-makefile.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/trace-cmd/files/trace-cmd-2.5.1-makefile.patch?rev=1.1content-type=text/plain

Index: trace-cmd-2.5.1-makefile.patch
===
diff --git a/Makefile b/Makefile
index 186e245..9127f23 100644
--- a/Makefile
+++ b/Makefile
@@ -58,7 +58,7 @@ plugin_dir = $(HOME)/.trace-cmd/plugins
 python_dir = $(HOME)/.trace-cmd/python
 else
 plugin_dir = $(prefix)/$(libdir)/trace-cmd/plugins
-python_dir = $(prefix)/$(libdir)/trace-cmd/python
+python_dir ?= $(prefix)/$(libdir)/trace-cmd/python
 PLUGIN_DIR = -DPLUGIN_DIR=$(plugin_dir)
 PYTHON_DIR = -DPYTHON_DIR=$(python_dir)
 PLUGIN_DIR_SQ = '$(subst ','\'',$(PLUGIN_DIR))'
@@ -98,8 +98,11 @@ endif # NO_PYTHON
 test-build = $(if $(shell sh -c 'echo $(1) | \
$(CC) -o /dev/null -c -x c -  /dev/null 21  echo y'), $2)
 
+ifndef NO_UDIS86
 # have udis86 disassembler library?
-udis86-flags := $(call test-build,\#include udis86.h,-DHAVE_UDIS86 -ludis86)
+udis86-flags := -DHAVE_UDIS86
+udis86-ldflags := -ludis86
+endif # NO_UDIS86
 
 define BLK_TC_FLUSH_SOURCE
 #include linux/blktrace_api.h
@@ -242,6 +245,7 @@ endif
 # Append required CFLAGS
 override CFLAGS += $(CONFIG_FLAGS) $(INCLUDES) $(PLUGIN_DIR_SQ)
 override CFLAGS += $(udis86-flags) $(blk-flags)
+override LDFLAGS += $(udis86-ldflags)
 
 ifeq ($(VERBOSE),1)
   Q =






[gentoo-commits] gentoo-x86 commit in dev-util/trace-cmd/files: - New directory

2015-01-26 Thread Patrick McLean (chutzpah)
chutzpah15/01/27 02:50:36

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-util/trace-cmd/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-util/trace-cmd: - New directory

2015-01-26 Thread Patrick McLean (chutzpah)
chutzpah15/01/27 02:49:56

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-util/trace-cmd added to the repository



[gentoo-commits] gentoo-x86 commit in dev-util/trace-cmd: trace-cmd-2.5.1.ebuild ChangeLog

2015-01-26 Thread Patrick McLean (chutzpah)
chutzpah15/01/27 03:13:47

  Modified: trace-cmd-2.5.1.ebuild ChangeLog
  Log:
  Add linux-info check for TRACING, FTRACE and BLK_DEV_IO_TRACE.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  dev-util/trace-cmd/trace-cmd-2.5.1.ebuild

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

Index: trace-cmd-2.5.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/trace-cmd-2.5.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- trace-cmd-2.5.1.ebuild  27 Jan 2015 02:56:08 -  1.1
+++ trace-cmd-2.5.1.ebuild  27 Jan 2015 03:13:47 -  1.2
@@ -1,11 +1,11 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/trace-cmd-2.5.1.ebuild,v 
1.1 2015/01/27 02:56:08 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/trace-cmd-2.5.1.ebuild,v 
1.2 2015/01/27 03:13:47 chutzpah Exp $
 
 EAPI=5
 PYTHON_COMPAT=(python2_7)
 
-inherit toolchain-funcs python-single-r1
+inherit eutils toolchain-funcs linux-info python-single-r1
 
 DESCRIPTION=User-space front-end for Ftrace
 HOMEPAGE=https://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git;
@@ -31,13 +31,23 @@
gtk? ( virtual/pkgconfig )
doc? ( app-text/asciidoc )
 
+CONFIG_CHECK=
+   ~TRACING
+   ~FTRACE
+   ~BLK_DEV_IO_TRACE
+
+pkg_setup() {
+   linux-info_pkg_setup
+   python-single-r1_pkg_setup
+}
+
 src_prepare() {
epatch ${FILESDIR}/${P}-makefile.patch
epatch_user
 }
 
 src_configure() {
-   MAKEOPTS+= V=1 prefix=/usr libdir=$(get_libdir) CC=$(tc-getCC) 
AR=$(tc-getAR)
+   MAKEOPTS+= prefix=/usr libdir=$(get_libdir) CC=$(tc-getCC) 
AR=$(tc-getAR)
 
if use python; then
MAKEOPTS+= PYTHON_VERS=${EPYTHON//python/python-}



1.2  dev-util/trace-cmd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/trace-cmd/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/trace-cmd/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/trace-cmd/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   27 Jan 2015 02:56:08 -  1.1
+++ ChangeLog   27 Jan 2015 03:13:47 -  1.2
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/trace-cmd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/ChangeLog,v 1.1 
2015/01/27 02:56:08 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/trace-cmd/ChangeLog,v 1.2 
2015/01/27 03:13:47 chutzpah Exp $
+
+  27 Jan 2015; Patrick McLean chutz...@gentoo.org trace-cmd-2.5.1.ebuild:
+  Add linux-info check for TRACING, FTRACE and BLK_DEV_IO_TRACE.
 
 *trace-cmd-2.5.1 (27 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-python/python-iptables: ChangeLog python-iptables-0.7.0.ebuild

2015-01-21 Thread Patrick McLean (chutzpah)
chutzpah15/01/22 02:21:40

  Modified: ChangeLog
  Added:python-iptables-0.7.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.11 dev-python/python-iptables/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   1 Nov 2014 14:26:29 -   1.10
+++ ChangeLog   22 Jan 2015 02:21:40 -  1.11
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-iptables
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.10 
2014/11/01 14:26:29 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.11 
2015/01/22 02:21:40 chutzpah Exp $
+
+*python-iptables-0.7.0 (22 Jan 2015)
+
+  22 Jan 2015; Patrick McLean chutz...@gentoo.org
+  +python-iptables-0.7.0.ebuild:
+  Version bump.
 
 *python-iptables-0.5.0 (01 Nov 2014)
 



1.1  dev-python/python-iptables/python-iptables-0.7.0.ebuild

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

Index: python-iptables-0.7.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/python-iptables/python-iptables-0.7.0.ebuild,v
 1.1 2015/01/22 02:21:40 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1

DESCRIPTION=Python bindings for iptables
HOMEPAGE=https://github.com/ldx/python-iptables;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=doc

DEPEND=net-firewall/iptables
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
RDEPEND=${DEPEND}

# tests manipulate live iptables rules, so disable them by default
RESTRICT=test

python_prepare_all() {
# Prevent un-needed d'loading during doc build
sed -e s/, 'sphinx.ext.intersphinx'// -i doc/conf.py || die
distutils-r1_python_prepare_all
}

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

python_test() {
${PYTHON} test.py || die tests fail with ${EPYTHON}
}

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






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

2015-01-19 Thread Patrick McLean (chutzpah)
chutzpah15/01/19 21:19:41

  Modified: metadata.xml ChangeLog
  Log:
  Add myself as maintainer
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.3  sys-auth/pam-script/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam-script/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml19 Jan 2015 16:51:01 -  1.2
+++ metadata.xml19 Jan 2015 21:19:41 -  1.3
@@ -2,6 +2,7 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailmaintainer-nee...@gentoo.org/email
+   emailchutz...@gentoo.org/email
+   namePatrick McLean/name
/maintainer
 /pkgmetadata



1.6  sys-auth/pam-script/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam-script/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   19 Jan 2015 16:51:01 -  1.5
+++ ChangeLog   19 Jan 2015 21:19:41 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/pam-script
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam-script/ChangeLog,v 1.5 
2015/01/19 16:51:01 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam-script/ChangeLog,v 1.6 
2015/01/19 21:19:41 chutzpah Exp $
+
+  19 Jan 2015; Patrick McLean chutz...@gentoo.org metadata.xml:
+  Add myself as maintainer
 
   19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
   Drop myself from metadata.
@@ -21,4 +24,3 @@
   30 Nov 2012; Tim Harder radher...@gentoo.org +pam-script-1.1.6.ebuild,
   +metadata.xml:
   Initial import, ebuild by me (bug #70064).
-






[gentoo-commits] gentoo-x86 commit in sys-fs/s3ql: metadata.xml ChangeLog

2015-01-19 Thread Patrick McLean (chutzpah)
chutzpah15/01/19 21:24:57

  Modified: metadata.xml ChangeLog
  Log:
  Add myself as maintainer
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.4  sys-fs/s3ql/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/s3ql/metadata.xml?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/s3ql/metadata.xml?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/s3ql/metadata.xml?r1=1.3r2=1.4

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/s3ql/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml19 Jan 2015 16:44:52 -  1.3
+++ metadata.xml19 Jan 2015 21:24:57 -  1.4
@@ -2,7 +2,8 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailmaintainer-nee...@gentoo.org/email
+   emailchutz...@gentoo.org/email
+   namePatrick McLean/name
/maintainer
use
flag name=contribInstall additional contributed 
scripts/flag



1.43 sys-fs/s3ql/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/s3ql/ChangeLog?rev=1.43view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/s3ql/ChangeLog?rev=1.43content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/s3ql/ChangeLog?r1=1.42r2=1.43

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/s3ql/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog   19 Jan 2015 16:44:52 -  1.42
+++ ChangeLog   19 Jan 2015 21:24:57 -  1.43
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/s3ql
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/ChangeLog,v 1.42 2015/01/19 
16:44:52 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/ChangeLog,v 1.43 2015/01/19 
21:24:57 chutzpah Exp $
+
+  19 Jan 2015; Patrick McLean chutz...@gentoo.org metadata.xml:
+  Add myself as maintainer
 
   19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
   Drop myself from metadata.






[gentoo-commits] gentoo-x86 commit in dev-python/SaltTesting: ChangeLog SaltTesting-2014.8.5.ebuild

2015-01-16 Thread Patrick McLean (chutzpah)
chutzpah15/01/16 22:19:33

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

Revision  ChangesPath
1.5  dev-python/SaltTesting/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/SaltTesting/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   10 Aug 2014 21:06:37 -  1.4
+++ ChangeLog   16 Jan 2015 22:19:33 -  1.5
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/SaltTesting
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/SaltTesting/ChangeLog,v 1.4 
2014/08/10 21:06:37 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/SaltTesting/ChangeLog,v 1.5 
2015/01/16 22:19:33 chutzpah Exp $
+
+*SaltTesting-2014.8.5 (16 Jan 2015)
+
+  16 Jan 2015; Patrick McLean chutz...@gentoo.org
+  +SaltTesting-2014.8.5.ebuild:
+  Version bump.
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org SaltTesting-0.5.2.ebuild,
   SaltTesting-0.5.3.ebuild, SaltTesting-2014.4.24.ebuild:



1.1  dev-python/SaltTesting/SaltTesting-2014.8.5.ebuild

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

Index: SaltTesting-2014.8.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/SaltTesting/SaltTesting-2014.8.5.ebuild,v 
1.1 2015/01/16 22:19:33 chutzpah Exp $

EAPI=5

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

inherit eutils distutils-r1

DESCRIPTION=Required testing tools needed in the several Salt Stack projects
HOMEPAGE=http://saltstack.org/;

if [[ ${PV} == * ]]; then
inherit git-2
EGIT_REPO_URI=git://github.com/saltstack/salt-testing.git
EGIT_BRANCH=develop
SRC_URI=
KEYWORDS=
else
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
KEYWORDS=~x86 ~amd64
fi

LICENSE=Apache-2.0
SLOT=0






[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: salt-2014.7.1-remove-pydsl-includes-test.patch

2015-01-16 Thread Patrick McLean (chutzpah)
chutzpah15/01/16 22:56:46

  Added:salt-2014.7.1-remove-pydsl-includes-test.patch
  Log:
  Version bump, add selinux USE flag (bug #533118). Sync  ebuild with 
current version.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  
app-admin/salt/files/salt-2014.7.1-remove-pydsl-includes-test.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2014.7.1-remove-pydsl-includes-test.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-2014.7.1-remove-pydsl-includes-test.patch?rev=1.1content-type=text/plain

Index: salt-2014.7.1-remove-pydsl-includes-test.patch
===
diff --git a/tests/unit/pydsl_test.py b/tests/unit/pydsl_test.py
index 57ba81e..b26154e 100644
--- a/tests/unit/pydsl_test.py
+++ b/tests/unit/pydsl_test.py
@@ -298,99 +298,6 @@ class PyDSLRendererTestCase(TestCase):
 finally:
 shutil.rmtree(dirpath, ignore_errors=True)
 
-def test_rendering_includes(self):
-dirpath = tempfile.mkdtemp(dir=integration.SYS_TMP_DIR)
-if not os.path.isdir(dirpath):
-self.skipTest(
-'The temporary directory {0!r} was not created'.format(
-dirpath
-)
-)
-output = os.path.join(dirpath, 'output')
-try:
-write_to(os.path.join(dirpath, 'aaa.sls'), textwrap.dedent('''\
-#!pydsl|stateconf -ps
-
-include('xxx')
-yyy = include('yyy')
-
-# ensure states in xxx are run first, then those in yyy and 
then those in aaa last.
-
extend(state('yyy::start').stateconf.require(stateconf='xxx::goal'))
-
extend(state('.start').stateconf.require(stateconf='yyy::goal'))
-
-extend(state('yyy::Y2').cmd.run('echo Y2 extended  {0}'))
-
-__pydsl__.set(ordered=True)
-
-yyy.hello('red', 1)
-yyy.hello('green', 2)
-yyy.hello('blue', 3)
-'''.format(output)))
-
-write_to(os.path.join(dirpath, 'xxx.sls'), textwrap.dedent('''\
-#!stateconf -os yaml . jinja
-
-include:
-  - yyy
-
-extend:
-  yyy::start:
-stateconf.set:
-  - require:
-- stateconf: .goal
-
-  yyy::Y1:
-cmd.run:
-  - name: 'echo Y1 extended  {0}'
-
-.X1:
-  cmd.run:
-- name: echo X1  {1}
-- cwd: /
-.X2:
-  cmd.run:
-- name: echo X2  {2}
-- cwd: /
-.X3:
-  cmd.run:
-- name: echo X3  {3}
-- cwd: /
-
-'''.format(output, output, output, output)))
-
-write_to(os.path.join(dirpath, 'yyy.sls'), textwrap.dedent('''\
-#!pydsl|stateconf -ps
-
-include('xxx')
-__pydsl__.set(ordered=True)
-
-state('.Y1').cmd.run('echo Y1  {0}', cwd='/')
-state('.Y2').cmd.run('echo Y2  {1}', cwd='/')
-state('.Y3').cmd.run('echo Y3  {2}', cwd='/')
-
-def hello(color, number):
-state(color).cmd.run('echo hello '+color+' '+str(number)+' 
 {3}', cwd='/')
-'''.format(output, output, output, output)))
-
-state_highstate({'base': ['aaa']}, dirpath)
-expected = textwrap.dedent('''\
-X1
-X2
-X3
-Y1 extended
-Y2 extended
-Y3
-hello red 1
-hello green 2
-hello blue 3
-''')
-
-with salt.utils.fopen(output, 'r') as f:
-self.assertEqual(sorted(f.read()), sorted(expected))
-
-finally:
-shutil.rmtree(dirpath, ignore_errors=True)
-
 def test_compile_time_state_execution(self):
 if not sys.stdin.isatty():
 self.skipTest('Not attached to a TTY')






[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-2014.7.1.ebuild salt-9999.ebuild ChangeLog

2015-01-16 Thread Patrick McLean (chutzpah)
chutzpah15/01/16 22:56:46

  Modified: salt-.ebuild ChangeLog
  Added:salt-2014.7.1.ebuild
  Log:
  Version bump, add selinux USE flag (bug #533118). Sync  ebuild with 
current version.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.16 app-admin/salt/salt-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?r1=1.15r2=1.16

Index: salt-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/salt-.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- salt-.ebuild3 Jan 2015 12:26:40 -   1.15
+++ salt-.ebuild16 Jan 2015 22:56:46 -  1.16
@@ -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/app-admin/salt/salt-.ebuild,v 1.15 
2015/01/03 12:26:40 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-.ebuild,v 1.16 
2015/01/16 22:56:46 chutzpah Exp $
 
 EAPI=5
 PYTHON_COMPAT=(python2_7)
@@ -23,7 +23,7 @@
 
 LICENSE=Apache-2.0
 SLOT=0
-IUSE=cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql nova
+IUSE=api ldap libcloud libvirt gnupg keyring mako mongodb mysql nova
 IUSE+= openssl redis selinux timelib raet +zeromq test
 
 RDEPEND=sys-apps/pciutils
@@ -48,6 +48,12 @@
dev-python/m2crypto[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
+   api? (
+   || (
+   dev-python/cherrypy[${PYTHON_USEDEP}]
+   www-servers/tornado[${PYTHON_USEDEP}]
+   )
+   )
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
@@ -55,14 +61,13 @@
selinux? ( sec-policy/selinux-salt )
timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
nova? ( =dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
-   gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
-   cherrypy? ( =dev-python/cherrypy-3.2.2[${PYTHON_USEDEP}] )
+   gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pip[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
dev-python/timelib[${PYTHON_USEDEP}]
-   =dev-python/SaltTesting-2014.4.24[${PYTHON_USEDEP}]
+   =dev-python/SaltTesting-2014.8.5[${PYTHON_USEDEP}]
${RDEPEND}
)
 
@@ -78,7 +83,7 @@
 python_install_all() {
USE_SETUPTOOLS=1 distutils-r1_python_install_all
 
-   for s in minion master syndic; do
+   for s in minion master syndic $(use api  echo api); do
newinitd ${FILESDIR}/${s}-initd-3 salt-${s}
newconfd ${FILESDIR}/${s}-confd-1 salt-${s}
systemd_dounit ${FILESDIR}/salt-${s}.service



1.54 app-admin/salt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog   3 Jan 2015 12:26:40 -   1.53
+++ ChangeLog   16 Jan 2015 22:56:46 -  1.54
@@ -1,6 +1,13 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.53 2015/01/03 
12:26:40 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.54 2015/01/16 
22:56:46 chutzpah Exp $
+
+*salt-2014.7.1 (16 Jan 2015)
+
+  16 Jan 2015; Patrick McLean chutz...@gentoo.org +salt-2014.7.1.ebuild,
+  salt-.ebuild, +files/salt-2014.7.1-remove-pydsl-includes-test.patch:
+  Version bump, add selinux USE flag (bug #533118). Sync  ebuild with
+  current version.
 
   03 Jan 2015; Sven Vermeulen sw...@gentoo.org salt-.ebuild:
   Add selinux? dep to selinux-salt (bug #533118) for live ebuild



1.1  app-admin/salt/salt-2014.7.1.ebuild

file : 

[gentoo-commits] gentoo-x86 commit in app-admin/salt: salt-9999.ebuild ChangeLog salt-2014.7.0-r1.ebuild metadata.xml

2014-12-03 Thread Patrick McLean (chutzpah)
chutzpah14/12/03 22:10:14

  Modified: salt-.ebuild ChangeLog metadata.xml
  Added:salt-2014.7.0-r1.ebuild
  Log:
  Revision bump, add api USE flag for salt-api, this will install an init 
script and replaces the cherrypy USE flag. Remove patches from  ebuild (bug 
#529272).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.14 app-admin/salt/salt-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/salt-.ebuild?r1=1.13r2=1.14

Index: salt-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/salt-.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- salt-.ebuild13 Nov 2014 03:58:29 -  1.13
+++ salt-.ebuild3 Dec 2014 22:10:14 -   1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-.ebuild,v 1.13 
2014/11/13 03:58:29 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-.ebuild,v 1.14 
2014/12/03 22:10:14 chutzpah Exp $
 
 EAPI=5
 PYTHON_COMPAT=(python2_7)
@@ -69,10 +69,6 @@
 
 REQUIRED_USE=|| ( raet zeromq )
 
-PATCHES=(
-   ${FILESDIR}/${P}-remove-pydsl-includes-test.patch
-)
-
 python_prepare() {
# this test fails because it trys to pip install distribute
rm tests/unit/{modules,states}/zcbuildout_test.py



1.52 app-admin/salt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.52view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?rev=1.52content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/ChangeLog?r1=1.51r2=1.52

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   13 Nov 2014 03:58:29 -  1.51
+++ ChangeLog   3 Dec 2014 22:10:14 -   1.52
@@ -1,6 +1,15 @@
 # ChangeLog for app-admin/salt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.51 2014/11/13 
03:58:29 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/ChangeLog,v 1.52 2014/12/03 
22:10:14 chutzpah Exp $
+
+*salt-2014.7.0-r1 (01 Dec 2014)
+
+  01 Dec 2014; Patrick McLean chutz...@gentoo.org +salt-2014.7.0-r1.ebuild,
+  salt-.ebuild, +files/api-confd-1, +files/api-initd-3,
+  +files/salt-api.service, metadata.xml:
+  Revision bump, add api USE flag for salt-api, this will install an init
+  script and replaces the cherrypy USE flag. Remove patches from  ebuild
+  (bug #529272).
 
 *salt-2014.7.0 (13 Nov 2014)
 



1.8  app-admin/salt/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/salt/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml13 Nov 2014 03:58:29 -  1.7
+++ metadata.xml3 Dec 2014 22:10:14 -   1.8
@@ -21,6 +21,7 @@
 backbone of cloud and data center management.
 /longdescription
use
+   flag name=apiEnable support for salt-api./flag
flag name=cherrypyEnable support for cherrypy./flag
flag name=libcloudEnable salt-cloud support via 
libcloud./flag
flag name=libvirtSupport managing virtual machines with 
app-emulation/libvirt./flag



1.1  app-admin/salt/salt-2014.7.0-r1.ebuild

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

Index: salt-2014.7.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.7.0-r1.ebuild,v 

[gentoo-commits] gentoo-x86 commit in app-admin/salt/files: api-initd-3 salt-api.service api-confd-1

2014-12-03 Thread Patrick McLean (chutzpah)
chutzpah14/12/03 22:10:14

  Added:api-initd-3 salt-api.service api-confd-1
  Log:
  Revision bump, add api USE flag for salt-api, this will install an init 
script and replaces the cherrypy USE flag. Remove patches from  ebuild (bug 
#529272).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  app-admin/salt/files/api-initd-3

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/api-initd-3?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/api-initd-3?rev=1.1content-type=text/plain

Index: api-initd-3
===
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/files/api-initd-3,v 1.1 
2014/12/03 22:10:14 chutzpah Exp $

command=/usr/bin/salt-api
command_args=${SALT_OPTS}
command_background=1
pidfile=/var/run/salt-api.pid
name=SALT API daemon

depend() {
use net logger
}



1.1  app-admin/salt/files/salt-api.service

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-api.service?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/salt-api.service?rev=1.1content-type=text/plain

Index: salt-api.service
===
[Unit]
Description=The Salt Master Server
After=syslog.target network.target

[Service]
Type=simple
ExecStart=/usr/bin/salt-api

[Install]
WantedBy=multi-user.target



1.1  app-admin/salt/files/api-confd-1

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/api-confd-1?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/salt/files/api-confd-1?rev=1.1content-type=text/plain

Index: api-confd-1
===
# /etc/conf.d/salt-master: config file for /etc/init.d/salt-master

# see man pages for salt-minion or run `salt-master --help`
# for valid cmdline options
SALT_OPTS=--log-level=warning






[gentoo-commits] gentoo-x86 commit in net-misc/openssh: ChangeLog openssh-6.7_p1-r3.ebuild

2014-11-25 Thread Patrick McLean (chutzpah)
chutzpah14/11/25 22:35:45

  Modified: ChangeLog
  Added:openssh-6.7_p1-r3.ebuild
  Log:
  Revision bump, make the /var/run - /run move only apply when kernel_linux is 
on, /run is a Linux-ism.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.532net-misc/openssh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.531
retrieving revision 1.532
diff -u -r1.531 -r1.532
--- ChangeLog   24 Nov 2014 19:18:50 -  1.531
+++ ChangeLog   25 Nov 2014 22:35:45 -  1.532
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.531 
2014/11/24 19:18:50 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.532 
2014/11/25 22:35:45 chutzpah Exp $
+
+*openssh-6.7_p1-r3 (25 Nov 2014)
+
+  25 Nov 2014; Patrick McLean chutz...@gentoo.org +openssh-6.7_p1-r3.ebuild:
+  Revision bump, make the /var/run - /run move only apply when kernel_linux is
+  on, /run is a Linux-ism.
 
 *openssh-6.7_p1-r2 (24 Nov 2014)
 



1.1  net-misc/openssh/openssh-6.7_p1-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r3.ebuild?rev=1.1content-type=text/plain

Index: openssh-6.7_p1-r3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r3.ebuild,v 
1.1 2014/11/25 22:35:45 chutzpah Exp $

EAPI=4
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH=${PN}-6.7p1-hpnssh14v5.tar.xz
LDAP_PATCH=${PN}-lpk-6.7p1-0.3.14.patch.xz
X509_VER=8.2 X509_PATCH=${PARCH}+x509-${X509_VER}.diff.gz

DESCRIPTION=Port of OpenBSD's free SSH release
HOMEPAGE=http://www.openssh.org/;
SRC_URI=mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${P}-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~vapier/dist/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? ( 
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}


LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
IUSE=bindist ${HPN_PATCH:++}hpn kerberos kernel_linux ldap ldns libedit pam 
+pie sctp selinux skey static X X509
REQUIRED_USE=pie? ( !static )

LIB_DEPEND=sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( =sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( =sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
=sys-libs/zlib-1.2.3[static-libs(+)]
RDEPEND=
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
DEPEND=${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgconfig
virtual/os-headers
sys-devel/autoconf
RDEPEND=${RDEPEND}
pam? ( =sys-auth/pambase-20081028 )
userland_GNU? ( virtual/shadow )
X? ( x11-apps/xauth )

S=${WORKDIR}/${PARCH}

pkg_setup() {
# this sucks, but i'd rather have people unable to `emerge -u openssh`
# than not be able to log in to their server any more
maybe_fail() { [[ -z ${!2} ]]  echo $1 ; }
local fail=
$(use X509  maybe_fail 

[gentoo-commits] gentoo-x86 commit in net-misc/openssh/files: openssh-6.7_p1-sctp-x509-glue.patch openssh-6.7_p1-x509-glue.patch

2014-11-24 Thread Patrick McLean (chutzpah)
chutzpah14/11/24 19:13:23

  Added:openssh-6.7_p1-sctp-x509-glue.patch
openssh-6.7_p1-x509-glue.patch
  Log:
  Revision bump, add the X509 version 8.2 patch.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  net-misc/openssh/files/openssh-6.7_p1-sctp-x509-glue.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.7_p1-sctp-x509-glue.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.7_p1-sctp-x509-glue.patch?rev=1.1content-type=text/plain

Index: openssh-6.7_p1-sctp-x509-glue.patch
===
--- openssh-6.7_p1-sctp.patch.orig  2014-11-24 10:34:31.817538707 -0800
+++ openssh-6.7_p1-sctp.patch   2014-11-24 10:38:52.744990154 -0800
@@ -195,14 +195,6 @@
  .Op Fl c Ar cipher
  .Op Fl F Ar ssh_config
  .Op Fl i Ar identity_file
-@@ -178,6 +178,7 @@ For full details of the options listed b
- .It ServerAliveCountMax
- .It StrictHostKeyChecking
- .It TCPKeepAlive
-+.It Transport
- .It UsePrivilegedPort
- .It User
- .It UserKnownHostsFile
 @@ -218,6 +219,8 @@ and
  to print debugging messages about their progress.
  This is helpful in
@@ -482,14 +474,6 @@
  .Op Fl b Ar bind_address
  .Op Fl c Ar cipher_spec
  .Op Fl D Oo Ar bind_address : Oc Ns Ar port
-@@ -473,6 +473,7 @@ For full details of the options listed b
- .It StreamLocalBindUnlink
- .It StrictHostKeyChecking
- .It TCPKeepAlive
-+.It Transport
- .It Tunnel
- .It TunnelDevice
- .It UsePrivilegedPort
 @@ -665,6 +666,8 @@ Trusted X11 forwardings are not subjecte
  controls.
  .It Fl y
@@ -527,7 +511,7 @@
-  again:
+
 -  while ((opt = getopt(ac, av, 1246ab:c:e:fgi:kl:m:no:p:qstvx
 +  while ((opt = getopt(ac, av, 1246ab:c:e:fgi:kl:m:no:p:qstvx SCTP_OPT
-   ACD:E:F:I:KL:MNO:PQ:R:S:TVw:W:XYy)) != -1) {
+   ACD:E:F: ENGCONFIG I:KL:MNO:PQ:R:S:TVw:W:XYy)) != -1) {
switch (opt) {
case '1':
 @@ -732,6 +738,11 @@ main(int ac, char **av)



1.1  net-misc/openssh/files/openssh-6.7_p1-x509-glue.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.7_p1-x509-glue.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.7_p1-x509-glue.patch?rev=1.1content-type=text/plain

Index: openssh-6.7_p1-x509-glue.patch
===
--- openssh-6.7p1.orig/sshd_config.52014-11-24 10:24:29.356244415 -0800
+++ openssh-6.7p1/sshd_config.5 2014-11-24 10:23:49.415029039 -0800
@@ -610,21 +610,6 @@
 The default is
 .Dq yes .
 Note that this option applies to protocol version 2 only.
-.It Cm GSSAPIStrictAcceptorCheck
-Determines whether to be strict about the identity of the GSSAPI acceptor
-a client authenticates against.
-If set to
-.Dq yes
-then the client must authenticate against the
-.Pa host
-service on the current hostname.
-If set to
-.Dq no
-then the client may authenticate against any service key stored in the
-machine's default store.
-This facility is provided to assist with operation on multi homed machines.
-The default is
-.Dq yes .
 .It Cm HostbasedAuthentication
 Specifies whether rhosts or /etc/hosts.equiv authentication together
 with successful public key client host authentication is allowed
@@ -651,6 +636,21 @@
 attempting to resolve the name from the TCP connection itself.
 The default is
 .Dq no .
+.It Cm GSSAPIStrictAcceptorCheck
+Determines whether to be strict about the identity of the GSSAPI acceptor
+a client authenticates against.
+If set to
+.Dq yes
+then the client must authenticate against the
+.Pa host
+service on the current hostname.
+If set to
+.Dq no
+then the client may authenticate against any service key stored in the
+machine's default store.
+This facility is provided to assist with operation on multi homed machines.
+The default is
+.Dq yes .
 .It Cm HostCertificate
 Specifies a file containing a public host certificate.
 The certificate's public key must match a private host key already specified






[gentoo-commits] gentoo-x86 commit in net-misc/openssh: openssh-6.7_p1-r1.ebuild ChangeLog

2014-11-24 Thread Patrick McLean (chutzpah)
chutzpah14/11/24 19:13:23

  Modified: ChangeLog
  Added:openssh-6.7_p1-r1.ebuild
  Log:
  Revision bump, add the X509 version 8.2 patch.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.530net-misc/openssh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.529
retrieving revision 1.530
diff -u -r1.529 -r1.530
--- ChangeLog   24 Nov 2014 11:29:41 -  1.529
+++ ChangeLog   24 Nov 2014 19:13:23 -  1.530
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.529 
2014/11/24 11:29:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.530 
2014/11/24 19:13:23 chutzpah Exp $
+
+*openssh-6.7_p1-r1 (24 Nov 2014)
+
+  24 Nov 2014; Patrick McLean chutz...@gentoo.org +openssh-6.7_p1-r1.ebuild,
+  +files/openssh-6.7_p1-sctp-x509-glue.patch,
+  +files/openssh-6.7_p1-x509-glue.patch:
+  Revision bump, add the X509 version 8.2 patch.
 
   24 Nov 2014; Jeroen Roovers j...@gentoo.org openssh-6.7_p1.ebuild:
   Stable for HPPA (bug #505942).



1.1  net-misc/openssh/openssh-6.7_p1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r1.ebuild?rev=1.1content-type=text/plain

Index: openssh-6.7_p1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r1.ebuild,v 
1.1 2014/11/24 19:13:23 chutzpah Exp $

EAPI=4
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH=${PN}-6.7p1-hpnssh14v5.tar.xz
LDAP_PATCH=${PN}-lpk-6.7p1-0.3.14.patch.xz
X509_VER=8.2 X509_PATCH=${PARCH}+x509-${X509_VER}.diff.gz

DESCRIPTION=Port of OpenBSD's free SSH release
HOMEPAGE=http://www.openssh.org/;
SRC_URI=mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${P}-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~vapier/dist/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? ( 
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}


LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
IUSE=bindist ${HPN_PATCH:++}hpn kerberos ldap ldns libedit pam +pie sctp 
selinux skey static X X509
REQUIRED_USE=pie? ( !static )

LIB_DEPEND=sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( =sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( =sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
=sys-libs/zlib-1.2.3[static-libs(+)]
RDEPEND=
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
DEPEND=${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgconfig
virtual/os-headers
sys-devel/autoconf
RDEPEND=${RDEPEND}
pam? ( =sys-auth/pambase-20081028 )
userland_GNU? ( virtual/shadow )
X? ( x11-apps/xauth )

S=${WORKDIR}/${PARCH}

pkg_setup() {
# this sucks, but i'd rather have people unable to `emerge -u openssh`
# than not be able to log in to their server any more
maybe_fail() { [[ -z ${!2} ]]  echo $1 ; }
local fail=

[gentoo-commits] gentoo-x86 commit in net-misc/openssh: ChangeLog openssh-6.7_p1-r2.ebuild

2014-11-24 Thread Patrick McLean (chutzpah)
chutzpah14/11/24 19:18:50

  Modified: ChangeLog
  Added:openssh-6.7_p1-r2.ebuild
  Log:
  Revision bump, migrate /var/run to /run.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.531net-misc/openssh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.530
retrieving revision 1.531
diff -u -r1.530 -r1.531
--- ChangeLog   24 Nov 2014 19:13:23 -  1.530
+++ ChangeLog   24 Nov 2014 19:18:50 -  1.531
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.530 
2014/11/24 19:13:23 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.531 
2014/11/24 19:18:50 chutzpah Exp $
+
+*openssh-6.7_p1-r2 (24 Nov 2014)
+
+  24 Nov 2014; Patrick McLean chutz...@gentoo.org +openssh-6.7_p1-r2.ebuild:
+  Revision bump, migrate /var/run to /run.
 
 *openssh-6.7_p1-r1 (24 Nov 2014)
 



1.1  net-misc/openssh/openssh-6.7_p1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r2.ebuild?rev=1.1content-type=text/plain

Index: openssh-6.7_p1-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-6.7_p1-r2.ebuild,v 
1.1 2014/11/24 19:18:50 chutzpah Exp $

EAPI=4
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH=${PN}-6.7p1-hpnssh14v5.tar.xz
LDAP_PATCH=${PN}-lpk-6.7p1-0.3.14.patch.xz
X509_VER=8.2 X509_PATCH=${PARCH}+x509-${X509_VER}.diff.gz

DESCRIPTION=Port of OpenBSD's free SSH release
HOMEPAGE=http://www.openssh.org/;
SRC_URI=mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${P}-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~vapier/dist/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? ( 
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}


LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux
IUSE=bindist ${HPN_PATCH:++}hpn kerberos ldap ldns libedit pam +pie sctp 
selinux skey static X X509
REQUIRED_USE=pie? ( !static )

LIB_DEPEND=sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( =sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( =sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
=sys-libs/zlib-1.2.3[static-libs(+)]
RDEPEND=
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
DEPEND=${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgconfig
virtual/os-headers
sys-devel/autoconf
RDEPEND=${RDEPEND}
pam? ( =sys-auth/pambase-20081028 )
userland_GNU? ( virtual/shadow )
X? ( x11-apps/xauth )

S=${WORKDIR}/${PARCH}

pkg_setup() {
# this sucks, but i'd rather have people unable to `emerge -u openssh`
# than not be able to log in to their server any more
maybe_fail() { [[ -z ${!2} ]]  echo $1 ; }
local fail=
$(use X509  maybe_fail X509 X509_PATCH)
$(use ldap  maybe_fail ldap LDAP_PATCH)
$(use hpn  maybe_fail hpn HPN_PATCH)


[gentoo-commits] gentoo-x86 commit in dev-python/pyzmq: ChangeLog pyzmq-14.4.1.ebuild

2014-11-18 Thread Patrick McLean (chutzpah)
chutzpah14/11/19 00:47:39

  Modified: ChangeLog
  Added:pyzmq-14.4.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.53 dev-python/pyzmq/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog   30 Oct 2014 09:36:16 -  1.52
+++ ChangeLog   19 Nov 2014 00:47:39 -  1.53
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pyzmq
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.52 
2014/10/30 09:36:16 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.53 
2014/11/19 00:47:39 chutzpah Exp $
+
+*pyzmq-14.4.1 (19 Nov 2014)
+
+  19 Nov 2014; Patrick McLean chutz...@gentoo.org +pyzmq-14.4.1.ebuild:
+  Version bump.
 
   30 Oct 2014; Ian Delaney idel...@gentoo.org pyzmq-14.4.0.ebuild:
   add dep for doc build, drop keywords ia64 mips accordingly, fixes Bug #527282



1.1  dev-python/pyzmq/pyzmq-14.4.1.ebuild

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

Index: pyzmq-14.4.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild,v 1.1 
2014/11/19 00:47:39 chutzpah Exp $

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

inherit distutils-r1 toolchain-funcs

DESCRIPTION=PyZMQ is a lightweight and super-fast messaging library built on 
top of the ZeroMQ library
HOMEPAGE=http://www.zeromq.org/bindings:python 
http://pypi.python.org/pypi/pyzmq;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=LGPL-3
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos

IUSE=doc examples green test

PY2_USEDEP=$(python_gen_usedep 'python2*')
RDEPEND==net-libs/zeromq-2.1.9
dev-python/py[${PYTHON_USEDEP}]
dev-python/cffi[${PYTHON_USEDEP}]
green? ( dev-python/gevent[${PY2_USEDEP}] )
DEPEND=test? (
${RDEPEND}
dev-python/nose[${PYTHON_USEDEP}]
$(python_gen_cond_dep dev-python/gevent[${PY2_USEDEP}] 
'python2*')
)
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/numpydoc[${PYTHON_USEDEP}]
)

python_configure_all() {
tc-export CC
}

python_prepare_all() {
sed -i -e s':intersphinx_mapping:#:' docs/source/conf.py || die
distutils-r1_python_prepare_all
}

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

python_compile() {
python_is_python3 || local -x CFLAGS=${CFLAGS} -fno-strict-aliasing
distutils-r1_python_compile
}

python_test() {
if python_is_python3; then
einfo Skipping python3 due to lack of support by gevent
elif ! use green; then
einfo Skipping greenlet tests due to green USE flag being 
disabled
else
nosetests -svw ${BUILD_DIR}/lib/
fi
}

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






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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 00:10:05

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



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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 00:12:43

  Added:metadata.xml libnacl-1.4.0.ebuild ChangeLog
  Log:
  New package, python ctypes wrapper for libsodium
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

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

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailchutz...@gentoo.org/email
namePatrick McLean/name
/maintainer
herdpython/herd
/pkgmetadata



1.1  dev-python/libnacl/libnacl-1.4.0.ebuild

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

Index: libnacl-1.4.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/libnacl/libnacl-1.4.0.ebuild,v 
1.1 2014/11/13 00:12:43 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python{2_7,3_4})
inherit distutils-r1

DESCRIPTION=Python ctypes wrapper for libsodium
HOMEPAGE= https://libnacl.readthedocs.org/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

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

python_test() {
${EPYTHON} tests/runtests.py || die
}



1.1  dev-python/libnacl/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/libnacl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/libnacl/ChangeLog,v 1.1 
2014/11/13 00:12:43 chutzpah Exp $

*libnacl-1.4.0 (13 Nov 2014)

  13 Nov 2014; Patrick McLean chutz...@gentoo.org +libnacl-1.4.0.ebuild,
  +metadata.xml:
  New package, python ctypes wrapper for libsodium







[gentoo-commits] gentoo-x86 commit in dev-python/libnacl: libnacl-1.4.0.ebuild ChangeLog

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 00:16:02

  Modified: libnacl-1.4.0.ebuild ChangeLog
  Log:
  Remove extra space from HOMEPAGE
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.2  dev-python/libnacl/libnacl-1.4.0.ebuild

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

Index: libnacl-1.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/libnacl/libnacl-1.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libnacl-1.4.0.ebuild13 Nov 2014 00:12:43 -  1.1
+++ libnacl-1.4.0.ebuild13 Nov 2014 00:16:02 -  1.2
@@ -1,13 +1,13 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/libnacl/libnacl-1.4.0.ebuild,v 
1.1 2014/11/13 00:12:43 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/libnacl/libnacl-1.4.0.ebuild,v 
1.2 2014/11/13 00:16:02 chutzpah Exp $
 
 EAPI=5
 PYTHON_COMPAT=(python{2_7,3_4})
 inherit distutils-r1
 
 DESCRIPTION=Python ctypes wrapper for libsodium
-HOMEPAGE= https://libnacl.readthedocs.org/;
+HOMEPAGE=https://libnacl.readthedocs.org/;
 SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
 
 LICENSE=Apache-2.0



1.2  dev-python/libnacl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/libnacl/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   13 Nov 2014 00:12:43 -  1.1
+++ ChangeLog   13 Nov 2014 00:16:02 -  1.2
@@ -1,10 +1,12 @@
 # ChangeLog for dev-python/libnacl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/libnacl/ChangeLog,v 1.1 
2014/11/13 00:12:43 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/libnacl/ChangeLog,v 1.2 
2014/11/13 00:16:02 chutzpah Exp $
+
+  13 Nov 2014; Patrick McLean chutz...@gentoo.org libnacl-1.4.0.ebuild:
+  Remove extra space from HOMEPAGE
 
 *libnacl-1.4.0 (13 Nov 2014)
 
   13 Nov 2014; Patrick McLean chutz...@gentoo.org +libnacl-1.4.0.ebuild,
   +metadata.xml:
   New package, python ctypes wrapper for libsodium
-






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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 00:35:49

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



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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 00:38:08

  Added:metadata.xml ChangeLog ioflo-1.0.2.ebuild
  Log:
  New package, Automated Reasoning Engine and Flow Based Programming Framework
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

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

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailchutz...@gentoo.org/email
namePatrick McLean/name
/maintainer
herdpython/herd
/pkgmetadata



1.1  dev-python/ioflo/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/ioflo
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ioflo/ChangeLog,v 1.1 2014/11/13 
00:38:08 chutzpah Exp $

*ioflo-1.0.2 (13 Nov 2014)

  13 Nov 2014; Patrick McLean chutz...@gentoo.org +ioflo-1.0.2.ebuild,
  +metadata.xml:
  New package, Automated Reasoning Engine and Flow Based Programming Framework




1.1  dev-python/ioflo/ioflo-1.0.2.ebuild

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

Index: ioflo-1.0.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ioflo/ioflo-1.0.2.ebuild,v 1.1 
2014/11/13 00:38:08 chutzpah Exp $

EAPI=5

PYTHON_COMPAT=(python{2_7,3_4})
inherit distutils-r1

DESCRIPTION=Automated Reasoning Engine and Flow Based Programming Framework
HOMEPAGE=https://github.com/ioflo/ioflo/;
SRC_URI=https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz

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

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

python_test() {
pushd ${PN}/app/test || die could not find tests
${EPYTHON} testStart.py || die tests failed
popd
}






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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 00:54:02

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



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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 00:55:17

  Added:metadata.xml ChangeLog raet-0.3.8.ebuild
  Log:
  New package, Reliable Asynchronous Event Transport Protocol
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

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

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailchutz...@gentoo.org/email
namePatrick McLean/name
/maintainer
herdpython/herd
/pkgmetadata



1.1  dev-python/raet/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/raet
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/raet/ChangeLog,v 1.1 2014/11/13 
00:55:17 chutzpah Exp $

*raet-0.3.8 (13 Nov 2014)

  13 Nov 2014; Patrick McLean chutz...@gentoo.org +raet-0.3.8.ebuild,
  +metadata.xml:
  New package, Reliable Asynchronous Event Transport Protocol




1.1  dev-python/raet/raet-0.3.8.ebuild

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

Index: raet-0.3.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/raet/raet-0.3.8.ebuild,v 1.1 
2014/11/13 00:55:17 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)
inherit distutils-r1

DESCRIPTION=Reliable Asynchronous Event Transport Protocol
HOMEPAGE=https://github.com/saltstack/raet;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

RDEPEND==dev-python/six-1.6.1[${PYTHON_USEDEP}]
=dev-python/libnacl-0.9.4[${PYTHON_USEDEP}]
=dev-python/ioflo-0.9.35[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/unittest2[${PYTHON_USEDEP}] )

python_test() {
pushd ${PN} || die could not find tests for ${EPYTHON}
${EPYTHON} test/__init__.py || die tests failed for ${EPYTHON}
popd
}






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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 03:27:02

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



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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 03:37:13

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



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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 03:42:39

  Added:ChangeLog dicttoxml-1.5.6.ebuild metadata.xml
  Log:
  New package, Converts a Python dictionary or other native data type into a 
valid XML string
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

Revision  ChangesPath
1.1  dev-python/dicttoxml/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/dicttoxml
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/dicttoxml/ChangeLog,v 1.1 
2014/11/13 03:42:39 chutzpah Exp $

*dicttoxml-1.5.6 (13 Nov 2014)

  13 Nov 2014; Patrick McLean chutz...@gentoo.org +dicttoxml-1.5.6.ebuild,
  +metadata.xml:
  New package, Converts a Python dictionary or other native data type into a
  valid XML string




1.1  dev-python/dicttoxml/dicttoxml-1.5.6.ebuild

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

Index: dicttoxml-1.5.6.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/dicttoxml/dicttoxml-1.5.6.ebuild,v 1.1 
2014/11/13 03:42:39 chutzpah Exp $

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

inherit distutils-r1

DESCRIPTION=Converts a Python dictionary or other native data type into a 
valid XML string
HOMEPAGE=https://github.com/quandyfactory/dicttoxml;
SRC_URI=mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86



1.1  dev-python/dicttoxml/metadata.xml

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailchutz...@gentoo.org/email
namePatrick McLean/name
/maintainer
herdpython/herd
/pkgmetadata






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

2014-11-12 Thread Patrick McLean (chutzpah)
chutzpah14/11/13 03:46:54

  Added:metadata.xml moto-0.3.8.ebuild ChangeLog
  Log:
  New package, mock library for boto
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xE3F69979BB4B8928DA78E3D17CBF44EF)

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

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

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailchutz...@gentoo.org/email
namePatrick McLean/name
/maintainer
herdpython/herd
/pkgmetadata



1.1  dev-python/moto/moto-0.3.8.ebuild

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

Index: moto-0.3.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/moto/moto-0.3.8.ebuild,v 1.1 
2014/11/13 03:46:54 chutzpah Exp $

EAPI=5
PYTHON_COMPAT=(python2_7)

inherit distutils-r1

DESCRIPTION=Mock library for boto
HOMEPAGE=https://github.com/spulec/moto;
SRC_URI=mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~x86

RDEPEND=dev-python/jinja[${PYTHON_USEDEP}]
dev-python/boto[${PYTHON_USEDEP}]
dev-python/dicttoxml[${PYTHON_USEDEP}]
dev-python/flask[${PYTHON_USEDEP}]
dev-python/httpretty[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/werkzeug[${PYTHON_USEDEP}]



1.1  dev-python/moto/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/moto
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/moto/ChangeLog,v 1.1 2014/11/13 
03:46:54 chutzpah Exp $

*moto-0.3.8 (13 Nov 2014)

  13 Nov 2014; Patrick McLean chutz...@gentoo.org +moto-0.3.8.ebuild,
  +metadata.xml:
  New package, mock library for boto







  1   2   3   >