[gentoo-commits] repo/gentoo:master commit in: dev-libs/cyberjack/

2017-10-02 Thread Wolfram Schlich
commit: 121352ae70c952f031c4b13dfce8d591f163a51b
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Oct  2 09:26:07 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Oct  2 09:26:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=121352ae

dev-libs/cyberjack: version bump (adds support for cyberJack one)

Package-Manager: Portage-2.3.8, Repoman-2.3.1

 dev-libs/cyberjack/Manifest|  1 +
 dev-libs/cyberjack/cyberjack-3.99.5_p11.ebuild | 74 ++
 2 files changed, 75 insertions(+)

diff --git a/dev-libs/cyberjack/Manifest b/dev-libs/cyberjack/Manifest
index 8894ba6b3b4..736bc95241a 100644
--- a/dev-libs/cyberjack/Manifest
+++ b/dev-libs/cyberjack/Manifest
@@ -1,2 +1,3 @@
 DIST pcsc-cyberjack-3.99.5final.SP10.tar.bz2 958494 SHA256 
910ac025b504a0407cee3d9f8a77655f3007871591113054bedede5f1aeae958 SHA512 
d4094b531ab523db29856ea0cf784db925bece51a5c4b5c7fec259ff319d58a50443cabdfebc0a1f6818b678a1284500429274478bf1db780ff594612e307d56
 WHIRLPOOL 
8a80cbd2dc8e3597f169a0a16c963c4b02faba2909639c2a5affe85098cf4c63e244ed5076477b7b5032e446097c24da07dfc88fc1a68a9f48a64624d3a6cbc0
+DIST pcsc-cyberjack-3.99.5final.SP11.tar.bz2 965662 SHA256 
5cd78f527596f2905500b210d066ece62a8ab36a0d4d3677463805f8f4d3aa0c SHA512 
4d63ef0442c7e919456e8b6ab1d571ab621eb45fc34fc9b61a7a024f1ae2115f7474b4aa538ee7fb8bf4ce016067c876d9970b52e6b4e8b531e2d736677ab794
 WHIRLPOOL 
541e0cf4dc24848d1f2bd66f0fab2745b955610dc4d9f31dfac080341df2b2ea4362b4da4020d1a9b813437b3a6b3e835ae04e70923cf6b3a14b172aa01340ff
 DIST pcsc-cyberjack_3.99.5final.SP03.tar.gz 1485952 SHA256 
fa5324d8a270d50aec20345cb57362f684ddadd3a50dbd0773ee13d2d87bc0a9 SHA512 
a091a09b501d7a7c757f0a458007f44ac281cbeaaf5bc3c2aa89915ee7a39478e6f80b6f24fec77be753c8d77deeda2858b7a806e3c982f54c199bd797288e05
 WHIRLPOOL 
51429512a9037e6ec4a98cc33576176cafda5fe3a3b33c56b2d928c7a7bc06135ac93e92a713836e4dc20e90f6106f9ca3643de5baed7c25672c26f6fc4a6368

diff --git a/dev-libs/cyberjack/cyberjack-3.99.5_p11.ebuild 
b/dev-libs/cyberjack/cyberjack-3.99.5_p11.ebuild
new file mode 100644
index 000..23447ead9e4
--- /dev/null
+++ b/dev-libs/cyberjack/cyberjack-3.99.5_p11.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit autotools versionator eutils linux-info toolchain-funcs udev
+
+MY_PV="${PV/_p/_SP}"
+MY_PV2="${PV/_p/final.SP}"
+MY_P="pcsc-${PN}-${MY_PV2}"
+#MY_P2="${PN}-$(get_version_component_range 4 $MY_PV)"
+
+DESCRIPTION="REINER SCT cyberJack pinpad/e-com USB user space driver library"
+HOMEPAGE="http://www.reiner-sct.de/;
+SRC_URI="http://support.reiner-sct.de/downloads/LINUX/V${MY_PV}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs threads +udev +usb"
+
+# FIXME:
+# xml is actually optional but the code is still used anyway. We'll have to 
wait
+# until upstream fixed it.
+COMMON_DEPEND="sys-apps/pcsc-lite
+   usb? ( virtual/libusb:1 )"
+RDEPEND="${COMMON_DEPEND}
+   udev? ( virtual/udev )"
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig"
+
+#S=${WORKDIR}/${MY_P2}
+S=${WORKDIR}/${MY_P}
+
+DOCS="debian/changelog doc/README.txt"
+
+pkg_setup() {
+   CONFIG_CHECK="~USB_SERIAL_CYBERJACK"
+   linux-info_pkg_setup
+}
+
+src_prepare() {
+   epatch "${FILESDIR}/${PN}-manpages.patch"
+   epatch "${FILESDIR}/${PN}-returnvalue.patch"
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --sysconfdir=/etc/${PN} \
+   --disable-hal \
+   --enable-pcsc \
+   $(use_enable static-libs static) \
+   $(use_enable usb nonserial) \
+   $(use_enable threads) \
+   --with-usbdropdir="$($(tc-getPKG_CONFIG) libpcsclite 
--variable=usbdropdir)"
+}
+
+src_install() {
+   default
+
+   prune_libtool_files --all
+
+   use udev && udev_newrules "${FILESDIR}"/${PN}-r1.rules 92-${PN}.rules 
#388329
+}
+
+pkg_postinst() {
+   local conf="${EROOT}etc/${PN}/${PN}.conf"
+   elog
+   elog "To configure logging, key beep behaviour etc. you need to"
+   elog "copy ${conf}.default"
+   elog "to ${conf}"
+   elog "and modify the latter as needed."
+   elog
+}



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

2017-09-21 Thread Wolfram Schlich
commit: c8765f2d477b86bbde04050d020fd52b7ea292e9
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Sep 21 15:28:36 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Sep 21 15:35:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8765f2d

net-misc/teamviewer: versiom bump, removed old version

Package-Manager: Portage-2.3.8, Repoman-2.3.1

 net-misc/teamviewer/Manifest| 2 +-
 .../{teamviewer-12.0.76279.ebuild => teamviewer-12.0.85001.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index d0d3654ee69..37eceff6b6b 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,4 +1,4 @@
 DIST teamviewer-9.0.32150.deb 22898922 SHA256 
66d9a69f7e1523a2e1b41ff2e55adac01b2dae9b8bdfabf9db6080fc21d24451 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 WHIRLPOOL 
fa48ff99a5df29072b1073f35e3f27aeba87b2b846813dca612212344a5b8e35f7f1e221e1fb4f7a12464fce4a185b8dad6dd8f48432e4c48ecd61d9cc6b7960
 DIST teamviewer_10.0.46203_i386.deb 43326592 SHA256 
eb1fe811fd2dc1c8dc6fc2ebaae177072b65bc1a3b2a6bb88b9e25f633c51359 SHA512 
2133194b180648685a9e179df1a2888277f3038d9098d0d12b72de92026bdb969d90262514996df60dfcf6986e291ecb756fde9e0781fca5c872b5c82e5494ea
 WHIRLPOOL 
b6bedba426954f74fb51dca51949508f7299f9bee2dea1abc442a8a8acf79b408455901fedda524851c69a6352ef5a7bb1c733233823d49a0adfec64561f61ce
 DIST teamviewer_11.0.67687_i386.deb 47341822 SHA256 
b74542910ac574803905658787174b6a60055c6473d3c4e398da36d0dedaf416 SHA512 
3fbb0a2fc1bccd41ba9798305fada7e8266e1c9ed8509492ccb75e6f85995538ddc05ad72648e9f6c31cd5f17ad34f1ed3a300eeb38a4a703d3414c113d3e5a9
 WHIRLPOOL 
2a6b1c04f67933a43ac2493a12c21b8a9eae95150b10d9e713e01efed98c397f44fdd77012407da2dffb8bf0b804374a60cce9d2646ff3c117041d13366be628
-DIST teamviewer_12.0.76279_i386.deb 46547662 SHA256 
0050798ef06b5bb750899fdc35d365520917d64be3b9db460753aefe8de9d097 SHA512 
02c586d303149b9f6e33e4da6a53e14715f95ad74264b758ddd6dfaa3530d93e50db0e297cb5bd257558199afa28b49a90bdfbcc64fbd5e90d887d233d6b30f8
 WHIRLPOOL 
b3848d75002cd760cbac397250a7a8d355e770003bcda2482b1aed85f8d2744176f81876dc65c9669905e97fe4aa8fd1c093f7f1f3d13c5e0d2ef5d55b82baf5
+DIST teamviewer_12.0.85001_i386.deb 46549564 SHA256 
7a729557ef7618c41c8a94a6d668fa84422ecf9acf2b1889ea52c727849f7f07 SHA512 
4db490568936ec58a37157019071cf61ed5dde8b5951f6e524d1f64aa23f46dd40c8eda1e96a9d47c756c1427d82ccb9c58773b53dfa0ae60bbb94e03b4522a0
 WHIRLPOOL 
9a33d37c30273eabf7321157f473c0ac1788d2567695a7da020f3e922e553f371dc7dc10e1fe4e20ada25bc2cf2f3eb29edaa1613fd513a0fb42a7b1599bf4e0

diff --git a/net-misc/teamviewer/teamviewer-12.0.76279.ebuild 
b/net-misc/teamviewer/teamviewer-12.0.85001.ebuild
similarity index 100%
rename from net-misc/teamviewer/teamviewer-12.0.76279.ebuild
rename to net-misc/teamviewer/teamviewer-12.0.85001.ebuild



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2017-06-21 Thread Wolfram Schlich
commit: 3e6470fd4534dfc01e8ee07e82443753080f3a07
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Jun 21 08:03:48 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Jun 21 08:04:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e6470fd

net-im/mcabber: version bump (greetings to Sarah Salzstein)

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 net-im/mcabber/Manifest |   1 +
 net-im/mcabber/mcabber-1.1.0.ebuild | 115 
 2 files changed, 116 insertions(+)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index 6c5207c514f..0853060b157 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -1,2 +1,3 @@
 DIST mcabber-1.0.4.tar.bz2 605462 SHA256 
63b6bc003fcceba4dc4b273ed1c71643c4f8d95e8696543d53f64a7672b1ce0a SHA512 
f4f85abcdfa341489e47ba5290e9cce79cdd749753155003e3a9b5edd145e158c91d0a32fe07983196be5729134279f21fbe94511a41b98b793b415157b6b15b
 WHIRLPOOL 
09f7d6e53e352a0e7087da0ddb1a9f5a717c447c2e7a3d9d3e1b14409e8dd4e95472a60af743a0fbb64d4ee296b8eb6654cfb3ce6030ea8abd95ba863eacb7f1
 DIST mcabber-1.0.5.tar.bz2 605483 SHA256 
a0f200817d2b6196fe4d37918ce16f6fed83a3cef861d7165161e8b1cafcad47 SHA512 
81b67899245902f495af7b44a5a0d710db69da731a00fb9ed84bdc0f88d5dc662f340817b1eaa843802c95105846234743eba52117f18bf12dd37a0da61d414d
 WHIRLPOOL 
ee09cc76d6e6f8507f6e78ed9f9d9f512f841d36d35d707593c15b9f0b3c9e1bc8910d1e0ff1cdf5ff6c34781a75eb7b1fd447789ba9a36f5137d8bf12dbacbe
+DIST mcabber-1.1.0.tar.bz2 608975 SHA256 
04fc2c22c36da75cf4b761b5deccd074a19836368f38ab9d03c1e5708b41f0bd SHA512 
d12546e9fe9da94b6107f4d38d4083bee74e2702f7f2225e26be291230c6fe1319f60a3204da669dc00b14d69822425bf8214ebb723c3c4a7a33b1247a03093f
 WHIRLPOOL 
0d1b126173d3a3fc8629cbdb51697b997f009d4554fbd476f4376a43d9cb3c32ae47800d5efe442cfa542284c5105e6d64afd1d09112c3f36f3d10b3576de428

diff --git a/net-im/mcabber/mcabber-1.1.0.ebuild 
b/net-im/mcabber/mcabber-1.1.0.ebuild
new file mode 100644
index 000..b3b5e4471f5
--- /dev/null
+++ b/net-im/mcabber/mcabber-1.1.0.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit flag-o-matic autotools-utils
+
+DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
+HOMEPAGE="http://mcabber.com/;
+#REV="a18e1b488f1c"
+#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="http://mcabber.com/files/${P}.tar.bz2;
+
+#S=${WORKDIR}/${PN}-${REV}/${PN}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
+
+LANGS="cs de fr it nl pl ru uk"
+# localized help versions are installed only, when LINGUAS var is set
+for i in ${LANGS}; do
+   IUSE="${IUSE} linguas_${i}"
+done;
+
+RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+   otr? ( >=net-libs/libotr-3.1.0 )
+   aspell? ( app-text/aspell )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
+   idn? ( net-dns/libidn  )
+   spell? ( app-text/enchant )
+   dev-libs/glib:2
+   sys-libs/ncurses:0=
+   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF="1"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
+
+pkg_setup() {
+   if use aspell && use spell; then
+   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable crypt gpgme) \
+   $(use_enable otr) \
+   $(use_enable aspell) \
+   $(use_enable spell enchant) \
+   $(use_enable modules) \
+   $(use_with idn libidn)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   # clean unneeded language documentation
+   for i in ${LANGS}; do
+   use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+   done
+
+   # contrib themes
+   insinto /usr/share/${PN}/themes
+   doins "${S}"/contrib/themes/*
+
+   # contrib generic scripts
+   exeinto /usr/share/${PN}/scripts
+   doexe "${S}"/contrib/*.{pl,py}
+
+   # contrib event scripts
+   exeinto /usr/share/${PN}/scripts/events
+   doexe "${S}"/contrib/events/*
+
+   if use vim-syntax; then
+   cd contrib/vim/ || die
+
+   insinto /usr/share/vim/vimfiles/s

[gentoo-commits] repo/gentoo:master commit in: app-accessibility/epos/

2017-05-04 Thread Wolfram Schlich
commit: 36a78fb5e76e928f1a441280cd9289686d55c10a
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu May  4 13:32:07 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu May  4 13:32:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a78fb5

app-accessibility/epos: use and depend on byacc (fixes bug #513760)

use and depend on byacc due to problems with =sys-devel/bison-3*,
fixes bug #513760.

Acked-By: William Hubbs  gentoo.org>

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 app-accessibility/epos/epos-2.5.37-r2.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/app-accessibility/epos/epos-2.5.37-r2.ebuild 
b/app-accessibility/epos/epos-2.5.37-r2.ebuild
index d1d19b1a7e3..6f6c90eff6b 100644
--- a/app-accessibility/epos/epos-2.5.37-r2.ebuild
+++ b/app-accessibility/epos/epos-2.5.37-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,8 @@ SLOT="0"
 KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 x86"
 IUSE=""
 
-DEPEND=">=app-text/sgmltools-lite-3.0.3-r9"
+DEPEND=">=app-text/sgmltools-lite-3.0.3-r9
+   dev-util/byacc"
 RDEPEND=""
 
 src_prepare() {
@@ -31,7 +32,8 @@ src_prepare() {
 src_configure() {
econf \
--enable-charsets \
-   --disable-portaudio
+   --disable-portaudio \
+   YACC=byacc
 }
 
 src_install() {



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

2017-04-27 Thread Wolfram Schlich
commit: d5b6bef90bc758a157d393676b86d5fc7dc388ca
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Apr 27 14:57:23 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Apr 27 14:57:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5b6bef9

net-misc/teamviewer: version bump, fixes bug #61.

Bump version to 12.0.76279. This also fixes bug #61 (checksum failure).

Reported-by: Bruce Hill  happypenguincomputers.com>

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/teamviewer/Manifest| 2 +-
 .../{teamviewer-12.0.71510.ebuild => teamviewer-12.0.76279.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index d7d7ed1936d..d0d3654ee69 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,4 +1,4 @@
 DIST teamviewer-9.0.32150.deb 22898922 SHA256 
66d9a69f7e1523a2e1b41ff2e55adac01b2dae9b8bdfabf9db6080fc21d24451 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 WHIRLPOOL 
fa48ff99a5df29072b1073f35e3f27aeba87b2b846813dca612212344a5b8e35f7f1e221e1fb4f7a12464fce4a185b8dad6dd8f48432e4c48ecd61d9cc6b7960
 DIST teamviewer_10.0.46203_i386.deb 43326592 SHA256 
eb1fe811fd2dc1c8dc6fc2ebaae177072b65bc1a3b2a6bb88b9e25f633c51359 SHA512 
2133194b180648685a9e179df1a2888277f3038d9098d0d12b72de92026bdb969d90262514996df60dfcf6986e291ecb756fde9e0781fca5c872b5c82e5494ea
 WHIRLPOOL 
b6bedba426954f74fb51dca51949508f7299f9bee2dea1abc442a8a8acf79b408455901fedda524851c69a6352ef5a7bb1c733233823d49a0adfec64561f61ce
 DIST teamviewer_11.0.67687_i386.deb 47341822 SHA256 
b74542910ac574803905658787174b6a60055c6473d3c4e398da36d0dedaf416 SHA512 
3fbb0a2fc1bccd41ba9798305fada7e8266e1c9ed8509492ccb75e6f85995538ddc05ad72648e9f6c31cd5f17ad34f1ed3a300eeb38a4a703d3414c113d3e5a9
 WHIRLPOOL 
2a6b1c04f67933a43ac2493a12c21b8a9eae95150b10d9e713e01efed98c397f44fdd77012407da2dffb8bf0b804374a60cce9d2646ff3c117041d13366be628
-DIST teamviewer_12.0.71510_i386.deb 46556110 SHA256 
172f68c05f29657bcf312b9e3fd8b77027bdf82bd969da9dd7ffcc7eb3605838 SHA512 
edc1e5823939f20a9879bd29d952a728275f5f190ad434b95e71e886086b8aca407749d5671284cec9b20007aaa4b5907c84a83cc4921f9f715738cd33c704db
 WHIRLPOOL 
a781c0c114f36db193db81dba3006cf28cb1aa5bfed1a4a6feaff8cf5944159e5c09397eb413e8c0b634549cddec1941bf21ea86f00b98b15757589e15a7a9c8
+DIST teamviewer_12.0.76279_i386.deb 46547662 SHA256 
0050798ef06b5bb750899fdc35d365520917d64be3b9db460753aefe8de9d097 SHA512 
02c586d303149b9f6e33e4da6a53e14715f95ad74264b758ddd6dfaa3530d93e50db0e297cb5bd257558199afa28b49a90bdfbcc64fbd5e90d887d233d6b30f8
 WHIRLPOOL 
b3848d75002cd760cbac397250a7a8d355e770003bcda2482b1aed85f8d2744176f81876dc65c9669905e97fe4aa8fd1c093f7f1f3d13c5e0d2ef5d55b82baf5

diff --git a/net-misc/teamviewer/teamviewer-12.0.71510.ebuild 
b/net-misc/teamviewer/teamviewer-12.0.76279.ebuild
similarity index 98%
rename from net-misc/teamviewer/teamviewer-12.0.71510.ebuild
rename to net-misc/teamviewer/teamviewer-12.0.76279.ebuild
index 07243d0be1e..28819fde712 100644
--- a/net-misc/teamviewer/teamviewer-12.0.71510.ebuild
+++ b/net-misc/teamviewer/teamviewer-12.0.76279.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5



[gentoo-commits] repo/gentoo:master commit in: dev-db/sqldeveloper/

2017-04-25 Thread Wolfram Schlich
commit: c0a77f273452343052b87a64a571d8e39c218bbd
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Apr 25 16:08:37 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Apr 25 16:09:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a77f27

dev-db/sqldeveloper: version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-db/sqldeveloper/Manifest   |  1 +
 .../sqldeveloper-4.2.0.17.089.1709.ebuild  | 97 ++
 2 files changed, 98 insertions(+)

diff --git a/dev-db/sqldeveloper/Manifest b/dev-db/sqldeveloper/Manifest
index 04a8a699255..a96998d77f1 100644
--- a/dev-db/sqldeveloper/Manifest
+++ b/dev-db/sqldeveloper/Manifest
@@ -1,3 +1,4 @@
 DIST sqldeveloper-4.0.2.15.21-no-jre.zip 235443867 SHA256 
b23aca1d256002cdc19a0b3136ae13ebf9064feacc45a131be229a88fe9faed7 SHA512 
e67b0f3d127adbc6cb77b3eb822834a6c41be7039c54eceb85e8c882704684a02dd036f078408192ad2cbcb963dfb0ba583e99a9f7b7db36b1e9a1f96e555880
 WHIRLPOOL 
31b32713f116193036dc5dd9b63c9b6c321763e2273227c51d70bd3db93575e4f12150a045f8615fb6086ee1d464af4d112be5824f9bf22b4f5917ae5a15b724
 DIST sqldeveloper-4.1.3.20.78-no-jre.zip 331401110 SHA256 
10caec7183f4075033598faf272d2be82207261442abf3bc3bd899246968b8de SHA512 
828a751bc9df7bdc59f9b89b317189826e328671d081df24d39a102aeefaf5a0a56e01e066802da1ee92617bf1fdb77ad598b448043dd7f4239f2103efb4427b
 WHIRLPOOL 
8eee4fbc34617f721893ab880be9c7c27ac8d5378491ba97bcd0084660ad500e2c0e4812ea5b25f8cd907e2c689168af08bbccfdc0b51f04cc0d74bf0760e009
 DIST sqldeveloper-4.1.5.21.78-no-jre.zip 349775471 SHA256 
1b6a5ea4f12306eaa41e4ad961d2cae4e4ccbdcb4b89d85f3d8f88a883f06967 SHA512 
06535a2d60ce140fa08cf937e9bb38d0a8ecefcb1b68675b547d4682c2e514ba62121e4363cf655c10de149e39a5e7d1d4a61c8cf79d7388b2998bf9b0098601
 WHIRLPOOL 
ceb60934100a9184c734d2d07bdde752a384f807934186f54618479de6af19a114a879edee52214bce71509e4b2a22dca8fa988f4f91202d29bceaaf8cbe67e9
+DIST sqldeveloper-4.2.0.17.089.1709-no-jre.zip 348604841 SHA256 
866042c85f66ef022c256d726b4e2e0e8014be7b41346cfd84a56fe677d78b6a SHA512 
4d1e270376ae125a60146228e35fcb2cb615d593c0e9f2ca98e4deef4d8fd1ddff59cf15064d63e33e77125f49e8da9fe317ed1fd96a9b00a699bf6c5e739874
 WHIRLPOOL 
695130acfed58678d92521cc86a6b6aaa51d400c6bec61b6e95eecb156cc4925483a2f687b2b942fb88dfbc7440a02d0444a9a4d242258ebad605a5fa589afbf

diff --git a/dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.ebuild 
b/dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.ebuild
new file mode 100644
index 000..ae93183a192
--- /dev/null
+++ b/dev-db/sqldeveloper/sqldeveloper-4.2.0.17.089.1709.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils java-pkg-2
+
+DESCRIPTION="Oracle SQL Developer is a graphical tool for database development"
+HOMEPAGE="http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html;
+SRC_URI="${P}-no-jre.zip"
+
+RESTRICT="fetch"
+
+LICENSE="OTN"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="mssql mysql sybase"
+
+DEPEND="mssql? ( dev-java/jtds:1.3 )
+   mysql? ( dev-java/jdbc-mysql:0 )
+   sybase? ( dev-java/jtds:1.3 )"
+RDEPEND=">=virtual/jdk-1.8
+   ${DEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+QA_PREBUILT="
+opt/${PN}/netbeans/platform/modules/lib/amd64/linux/*.so
+opt/${PN}/netbeans/platform/modules/lib/i386/linux/*.so
+"
+
+pkg_nofetch() {
+   eerror "Please go to"
+   eerror "${HOMEPAGE}"
+   eerror "and download"
+   eerror "Oracle SQL Developer for other platforms"
+   eerror "${SRC_URI}"
+   eerror "and move it to ${DISTDIR}"
+}
+
+src_prepare() {
+   # we don't need these, do we?
+   find ./ \( -iname "*.exe" -or -iname "*.dll" -or -iname "*.bat" \) 
-exec rm {} +
+
+   # they both use jtds, enabling one of them also enables the other one
+   if use mssql && ! use sybase; then
+   einfo "You requested MSSQL support, this also enables Sybase 
support."
+   fi
+   if use sybase && ! use mssql; then
+   einfo "You requested Sybase support, this also enables MSSQL 
support."
+   fi
+
+   if use mssql || use sybase; then
+   echo "AddJavaLibFile $(java-pkg_getjars jtds-1.3)" >> 
sqldeveloper/bin/sqldeveloper.conf || die
+   fi
+
+   if use mysql; then
+   echo "AddJavaLibFile $(java-pkg_getjars jdbc-mysql)" >> 
sqldeveloper/bin/sqldeveloper.conf || die
+   fi
+}
+
+src_install() {
+   dodir /opt/${PN}
+   # NOTE For future version to get that line (what to copy) go to the 
unpacked sources dir
+   # using `bash` and press M

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

2017-03-24 Thread Wolfram Schlich
commit: 72326d772f2903464cd47de6fd2b2c8fa3684bdc
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Mar 24 15:04:10 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Mar 24 15:14:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72326d77

sys-apps/razercfg: version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-apps/razercfg/Manifest |  1 +
 sys-apps/razercfg/razercfg-0.38.ebuild | 79 ++
 2 files changed, 80 insertions(+)

diff --git a/sys-apps/razercfg/Manifest b/sys-apps/razercfg/Manifest
index a17fcd30a0a..7949fad65e9 100644
--- a/sys-apps/razercfg/Manifest
+++ b/sys-apps/razercfg/Manifest
@@ -1,2 +1,3 @@
 DIST razercfg-0.23.tar.bz2 69425 SHA256 
44bdc48588c504a937d811e84a0ecb054e35d3e2e4980d7d76b3ea8c2f0d1b43 SHA512 
79c795870efa960b42abc70710b4bebe793acb9e732943207ca4b34d35ba926af4877993db29dbacedbe327324fba0ab2ef82ced1d653b4aee23e154fd8b
 WHIRLPOOL 
11c57842daeb241d19b3546db0c4b3a98e59b565176f89227dd159f31b3037ce08130014dc35ae4db5dc81744a94a405252787b6a42c67129857f81f6eb0411c
 DIST razercfg-0.32.tar.bz2 8 SHA256 
753c9b8cc60e3b5481d65d168d0d0f2737e83e2dacbbeb2684517a096064e2e1 SHA512 
696baf66eec5d241918a073bd381018cb60bbccaa95e5889059e2b5f6ccc03270e1d414d947358d672cfa4a5a01a9e36e5f92d706807d6a7c2c3f8e2797d38f7
 WHIRLPOOL 
7761f88671cfde24ca9a705df658118bf5b69244c1fae8bf358601159203dcbd2f7774552c3fb794268e0031c4a4092c5848d6f324fb029b03551c49ba161f0a
+DIST razercfg-0.38.tar.bz2 99409 SHA256 
8025a4765f2ff8e99104611e5d151f7a101b0f2692c9fc169ac237dd379bac6c SHA512 
4619e19278fe97956043e2b628ed4c130b0e7ac2756a81335460cc520e0dea979fa6db3e927f414d24914409377782238a6ce9e1dba1868f6bfc34984a0ab456
 WHIRLPOOL 
e0597d7d13d42b883f1f9294579151f30827225ca10c91bfe5de59dba12e8efecdf54b3e580296d37ab40e202a25f77a8349a5dbe64ebd47822e7f717e509d53

diff --git a/sys-apps/razercfg/razercfg-0.38.ebuild 
b/sys-apps/razercfg/razercfg-0.38.ebuild
new file mode 100644
index 000..34deb45cd9f
--- /dev/null
+++ b/sys-apps/razercfg/razercfg-0.38.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python3_4 )
+
+inherit cmake-utils multilib eutils udev python-single-r1
+
+DESCRIPTION="Utility for advanced configuration of Razer mice (DeathAdder, 
Krait, Lachesis)"
+
+HOMEPAGE="http://bues.ch/cms/hacking/razercfg.html;
+SRC_URI="http://bues.ch/${PN}/${P}.tar.bz2;
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+pm-utils qt4 systemd +udev"
+
+RDEPEND="qt4? ( >=dev-python/pyside-1.2.1[${PYTHON_USEDEP}] )
+   systemd? ( sys-apps/systemd )
+   udev? ( virtual/udev )
+   pm-utils? ( sys-power/pm-utils )
+   virtual/libusb:1"
+
+DEPEND="virtual/pkgconfig
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   virtual/libusb:1"
+
+src_prepare() {
+   sed -i \
+   -e '/udevadm control/{N;d}' \
+   -e '/systemctl/{N;d}' \
+   -e "s:/etc/pm/sleep.d:/usr/$(get_libdir)/pm-utils/sleep.d/:" \
+   -e 's:50-razer:80razer:' \
+   CMakeLists.txt \
+   || die "sed failed"
+
+   sed -i \
+   -e '/ldconfig/{N;d}' \
+   -e "s:DESTINATION lib:DESTINATION $(get_libdir):" \
+   librazer/CMakeLists.txt \
+   || die "sed failed"
+
+   if use qt4; then
+   sed -i \
+   -e '/^Categories=/s/=.*$/=Qt;Settings/' \
+   razercfg.desktop.template
+   fi
+}
+
+src_configure() {
+   mycmakeargs="${mycmakeargs} -DPYTHON='${PYTHON}'"
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   newinitd "${FILESDIR}"/razerd.init.d-r2 razerd
+   dodoc README.html HACKING.html razer.conf
+
+   if ! use qt4; then
+   rm "${D}"/usr/bin/qrazercfg
+   rm "${D}"/usr/share/icons/hicolor/scalable/apps/razercfg*
+   rm "${D}"/usr/share/applications/razercfg.desktop
+   fi
+
+   use pm-utils || rm "${D}"/usr/$(get_libdir)/pm-utils/sleep.d/80razer
+}
+
+pkg_postinst() {
+   use udev && udevadm control --reload-rules && udevadm trigger 
--subsystem-match=usb
+
+   if [[ -e "${ROOT}"usr/bin/pyrazer.pyc ]]; then
+   echo
+   eerror "A stale ${ROOT}usr/bin/pyrazer.pyc exists and will 
prevent"
+   eerror "the Python frontends from working until removed 
manually."
+   echo
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/skyldav/files/, app-antivirus/skyldav/

2017-02-23 Thread Wolfram Schlich
commit: 248d73194d0b5f8bfe3ac413d55438241aed5ef0
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Feb 23 15:35:59 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Feb 23 15:36:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=248d7319

app-antivirus/skyldav: removed old versions

Package-Manager: portage-2.3.3

 app-antivirus/skyldav/Manifest |   2 -
 .../skyldav/files/skyldav-0.5-conf-r1.patch|  29 --
 .../skyldav/files/skyldav-0.5-examples.patch   |  11 ---
 .../skyldav/files/skyldav-0.5-syslog.patch |  22 -
 app-antivirus/skyldav/files/skyldav-0.6-conf.patch |  21 
 .../skyldav/files/skyldav-0.6-examples.patch   |  11 ---
 app-antivirus/skyldav/skyldav-0.5-r2.ebuild| 109 -
 app-antivirus/skyldav/skyldav-0.6.ebuild   | 108 
 8 files changed, 313 deletions(-)

diff --git a/app-antivirus/skyldav/Manifest b/app-antivirus/skyldav/Manifest
index 870891d2b2..74a70c226a 100644
--- a/app-antivirus/skyldav/Manifest
+++ b/app-antivirus/skyldav/Manifest
@@ -1,3 +1 @@
-DIST skyldav-0.5.tar.gz 105274 SHA256 
308b7a15b920a33c2c381aeb607db5bece9560e0a85e3e65c2df0d153413f4cc SHA512 
24b9e3805574a2498b1e250cde790d6263f6f751546ad906303099bad5e722430568b1081764843a3c52f38730e8f26132f32058bea33c18f19673ac9147c323
 WHIRLPOOL 
77e77c25eaf3d0d3add4e1b03366c75dd1acdf8152d2987af61418a4793b1b0873cd0088e2bfd00c9864316e3b6e068c4bc96bc064cfec706a1b1b0c318d3aa1
-DIST skyldav-0.6.tar.gz 105783 SHA256 
a8820960a5296c23974dc59acf021c387678f392b295b4de70d134147753cca5 SHA512 
3dcc6be287bfc7115cc360df97677fa12db5974d4917e476f37ad72097a6c2f224c3f57f84430591760c231ff02f277b908002a0b2bad250e971571f663d51c1
 WHIRLPOOL 
9cc38dc603ef46b12b6f14af2e58e20b44497afa47410d929187ecbc8ace15cd500d35fc7f35c68abd6d9587a6c83d355e32956455b120ab33b7bbd0800fe97c
 DIST skyldav-0.7.tar.gz 24 SHA256 
e238706fd923cc3da685b27ef6d89bd49200d56102eba11dc279a47b93840a6d SHA512 
008988ca7ab24ea8b77377e7a639ddc0a26149eab41af1d429cf8f870320617feda01ec2c9403493a3bb0bd5cd0c8cad94701bcb6c28993f2d9739e1a1b36c0b
 WHIRLPOOL 
b8612e3d835b0ef086f17fc430b671fdded6f5e7d53a0340638a95db59d2c0d79496c56962bdbbf9371f9a5389ec70751e2aee460244af462f618d46d6a2574d

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-conf-r1.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-conf-r1.patch
deleted file mode 100644
index 86b78c335b..00
--- a/app-antivirus/skyldav/files/skyldav-0.5-conf-r1.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -urN skyldav-0.5.orig/examples/etc/skyldav.conf 
skyldav-0.5/examples/etc/skyldav.conf
 skyldav-0.5.orig/examples/etc/skyldav.conf 2015-02-15 20:32:57.0 
+0100
-+++ skyldav-0.5/examples/etc/skyldav.conf  2016-02-01 11:29:19.449054900 
+0100
-@@ -19,14 +19,23 @@
- 
- # Directories that shall not be scanned (including subdirectories)
- # EXCLUDE_PATH = /var/noscan, /opt/noscan
-+# 
-+# Exclude various portage directories for performance reasons
-+EXCLUDE_PATH = /usr/portage, /var/cache/edb, /var/db/pkg, /var/tmp/portage, 
/var/tmp/binpkgs, /var/log/portage
- 
- # File systems that are local, virus scan results may be cached.
- # LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat
--LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat
-+LOCAL_FS = ext2, ext3, ext4, xfs, zfs, btrfs, reiserfs, vfat, ntfs, iso9660, 
tmpfs
- 
- # File systems that shall not be marked for virus scan.
- # NOMARK_FS = proc, sysfs
--NOMARK_FS = proc, sysfs, cifs
-+#
-+# Do not exclude devtmpfs and configs, as userspace could write malware onto 
them.
-+# CIFS is also known to cause problems due to a background daemon, so we 
exclude it here
-+# 
(https://github.com/xypron/skyldav/commit/63b01b912d3eed80f3db92aec8647770546f5c1c).
-+# Note that FUSE file systems are automatically excluded from scanning
-+# (https://github.com/xypron/skyldav/issues/3).
-+NOMARK_FS = proc, sysfs, devpts, debugfs, securityfs, cgroup, rpc_pipefs, 
mqueue, autofs, cifs
- 
- # Mounts that shall not be marked for virus scan.
- # NOMARK_MNT = /mnt/noscan

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-examples.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-examples.patch
deleted file mode 100644
index 5c61468574..00
--- a/app-antivirus/skyldav/files/skyldav-0.5-examples.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -urN skyldav-0.5.orig/Makefile.am skyldav-0.5/Makefile.am
 skyldav-0.5.orig/Makefile.am   2015-02-15 20:32:57.0 +0100
-+++ skyldav-0.5/Makefile.am2016-01-21 14:11:14.883632470 +0100
-@@ -9,7 +9,6 @@
-   rm -rf doc/doxygen
- 
- install-data-local: \
--  install-skyldav-examples \
-   install-skyldav-conf \
-   install-skyldavnotify-desktop
- 

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-syslog.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-syslog.patch
deleted file mode 100644
index 2e72ce2ab5..00
--- a/app-antivirus/skyldav/files/skyldav-0.5-syslog.patch
+++ /de

[gentoo-commits] repo/gentoo:master commit in: app-antivirus/skyldav/, app-antivirus/skyldav/files/

2017-02-23 Thread Wolfram Schlich
commit: 720582e404e76ecfb6d01fa757c314aad9922593
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Feb 23 15:31:14 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Feb 23 15:36:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=720582e4

app-antivirus/skyldav: version bump

Package-Manager: portage-2.3.3

 app-antivirus/skyldav/Manifest |   1 +
 app-antivirus/skyldav/files/skyldav-conf.patch |  21 
 app-antivirus/skyldav/files/skyldav-examples.patch |  11 +++
 app-antivirus/skyldav/skyldav-0.7.ebuild   | 108 +
 4 files changed, 141 insertions(+)

diff --git a/app-antivirus/skyldav/Manifest b/app-antivirus/skyldav/Manifest
index bdf78a4dc1..870891d2b2 100644
--- a/app-antivirus/skyldav/Manifest
+++ b/app-antivirus/skyldav/Manifest
@@ -1,2 +1,3 @@
 DIST skyldav-0.5.tar.gz 105274 SHA256 
308b7a15b920a33c2c381aeb607db5bece9560e0a85e3e65c2df0d153413f4cc SHA512 
24b9e3805574a2498b1e250cde790d6263f6f751546ad906303099bad5e722430568b1081764843a3c52f38730e8f26132f32058bea33c18f19673ac9147c323
 WHIRLPOOL 
77e77c25eaf3d0d3add4e1b03366c75dd1acdf8152d2987af61418a4793b1b0873cd0088e2bfd00c9864316e3b6e068c4bc96bc064cfec706a1b1b0c318d3aa1
 DIST skyldav-0.6.tar.gz 105783 SHA256 
a8820960a5296c23974dc59acf021c387678f392b295b4de70d134147753cca5 SHA512 
3dcc6be287bfc7115cc360df97677fa12db5974d4917e476f37ad72097a6c2f224c3f57f84430591760c231ff02f277b908002a0b2bad250e971571f663d51c1
 WHIRLPOOL 
9cc38dc603ef46b12b6f14af2e58e20b44497afa47410d929187ecbc8ace15cd500d35fc7f35c68abd6d9587a6c83d355e32956455b120ab33b7bbd0800fe97c
+DIST skyldav-0.7.tar.gz 24 SHA256 
e238706fd923cc3da685b27ef6d89bd49200d56102eba11dc279a47b93840a6d SHA512 
008988ca7ab24ea8b77377e7a639ddc0a26149eab41af1d429cf8f870320617feda01ec2c9403493a3bb0bd5cd0c8cad94701bcb6c28993f2d9739e1a1b36c0b
 WHIRLPOOL 
b8612e3d835b0ef086f17fc430b671fdded6f5e7d53a0340638a95db59d2c0d79496c56962bdbbf9371f9a5389ec70751e2aee460244af462f618d46d6a2574d

diff --git a/app-antivirus/skyldav/files/skyldav-conf.patch 
b/app-antivirus/skyldav/files/skyldav-conf.patch
new file mode 100644
index 00..ed5b2058f6
--- /dev/null
+++ b/app-antivirus/skyldav/files/skyldav-conf.patch
@@ -0,0 +1,21 @@
+diff -urN skyldav-0.7.orig/examples/etc/skyldav.conf 
skyldav-0.7/examples/etc/skyldav.conf
+--- skyldav-0.7.orig/examples/etc/skyldav.conf 2016-06-12 18:39:51.0 
+0200
 skyldav-0.7/examples/etc/skyldav.conf  2017-02-21 15:12:06.875945224 
+0100
+@@ -22,6 +22,9 @@
+ 
+ # Directories that shall not be scanned (including subdirectories)
+ # EXCLUDE_PATH = /var/noscan, /opt/noscan
++# 
++# Exclude various portage directories for performance reasons
++EXCLUDE_PATH = /usr/portage, /var/cache/edb, /var/db/pkg, /var/tmp/portage, 
/var/tmp/binpkgs, /var/log/portage
+ 
+ # File systems that are local, virus scan results may be cached.
+ # LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat
+@@ -31,6 +34,7 @@
+ # File systems that shall not be marked for virus scan.
+ # Cifs uses a background daemon which causes problems when scanned.
+ # Exclusion of fuse file systems is hard coded.
++# Do not exclude devtmpfs and configfs, as userspace could write malware onto 
them!
+ # NOMARK_FS = proc, sysfs
+ NOMARK_FS = proc, sysfs, devpts, debugfs, securityfs, cgroup, rpc_pipefs
+ NOMARK_FS = mqueue, autofs, cifs

diff --git a/app-antivirus/skyldav/files/skyldav-examples.patch 
b/app-antivirus/skyldav/files/skyldav-examples.patch
new file mode 100644
index 00..b62e78cc96
--- /dev/null
+++ b/app-antivirus/skyldav/files/skyldav-examples.patch
@@ -0,0 +1,11 @@
+diff -urN skyldav-0.7.orig/Makefile.am skyldav-0.7/Makefile.am
+--- skyldav-0.7.orig/Makefile.am   2016-06-12 18:39:51.0 +0200
 skyldav-0.7/Makefile.am2017-02-21 15:11:35.709518793 +0100
+@@ -9,7 +9,6 @@
+   rm -rf doc/doxygen
+ 
+ install-data-local: \
+-  install-skyldav-examples \
+   install-skyldav-conf \
+   install-skyldavnotify-desktop
+ 

diff --git a/app-antivirus/skyldav/skyldav-0.7.ebuild 
b/app-antivirus/skyldav/skyldav-0.7.ebuild
new file mode 100644
index 00..6a3a9040f9
--- /dev/null
+++ b/app-antivirus/skyldav/skyldav-0.7.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic linux-info linux-mod autotools-utils readme.gentoo-r1 
systemd
+
+DESCRIPTION="Skyld AV: on-access scanning daemon for ClamAV using fanotify"
+HOMEPAGE="http://xypron.github.io/skyldav/;
+
+## github release tarball
+MY_PV=${PV/_rc/rc}
+MY_P="${PN}-${MY_PV}"
+SRC_URI="https://github.com/xypron/skyldav/archive/${MY_PV}.tar.gz -> 
${MY_P}.tar.gz"
+
+## selfmade tarball
+#MY_PVR=${PVR/_rc/rc}
+#MY_P="${PN}-${MY_PVR}"
+#SRC_URI="http://dev.gentoo.org/~wschlich/src/${CATEGORY}/${PN}/${MY_P}.tar.gz;
+
+## github commit tarball
+#MY_GIT_COMMI

[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2017-02-16 Thread Wolfram Schlich
commit: cb5ddb9eeebd7bb2a60f778e6670842ae0de17b7
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Feb 16 16:19:15 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Feb 16 16:19:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb5ddb9e

net-im/mcabber: version bump, fixes bug #608800 / CVE-2017-5604

Package-Manager: portage-2.3.3

 net-im/mcabber/Manifest |   1 +
 net-im/mcabber/mcabber-1.0.5.ebuild | 116 
 2 files changed, 117 insertions(+)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index 49a5b8c06b..6c5207c514 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -1 +1,2 @@
 DIST mcabber-1.0.4.tar.bz2 605462 SHA256 
63b6bc003fcceba4dc4b273ed1c71643c4f8d95e8696543d53f64a7672b1ce0a SHA512 
f4f85abcdfa341489e47ba5290e9cce79cdd749753155003e3a9b5edd145e158c91d0a32fe07983196be5729134279f21fbe94511a41b98b793b415157b6b15b
 WHIRLPOOL 
09f7d6e53e352a0e7087da0ddb1a9f5a717c447c2e7a3d9d3e1b14409e8dd4e95472a60af743a0fbb64d4ee296b8eb6654cfb3ce6030ea8abd95ba863eacb7f1
+DIST mcabber-1.0.5.tar.bz2 605483 SHA256 
a0f200817d2b6196fe4d37918ce16f6fed83a3cef861d7165161e8b1cafcad47 SHA512 
81b67899245902f495af7b44a5a0d710db69da731a00fb9ed84bdc0f88d5dc662f340817b1eaa843802c95105846234743eba52117f18bf12dd37a0da61d414d
 WHIRLPOOL 
ee09cc76d6e6f8507f6e78ed9f9d9f512f841d36d35d707593c15b9f0b3c9e1bc8910d1e0ff1cdf5ff6c34781a75eb7b1fd447789ba9a36f5137d8bf12dbacbe

diff --git a/net-im/mcabber/mcabber-1.0.5.ebuild 
b/net-im/mcabber/mcabber-1.0.5.ebuild
new file mode 100644
index 00..7bf75fbf03
--- /dev/null
+++ b/net-im/mcabber/mcabber-1.0.5.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic autotools-utils
+
+DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
+HOMEPAGE="http://mcabber.com/;
+#REV="a18e1b488f1c"
+#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="http://mcabber.com/files/${P}.tar.bz2;
+
+#S=${WORKDIR}/${PN}-${REV}/${PN}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
+
+LANGS="cs de fr it nl pl ru uk"
+# localized help versions are installed only, when LINGUAS var is set
+for i in ${LANGS}; do
+   IUSE="${IUSE} linguas_${i}"
+done;
+
+RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+   otr? ( >=net-libs/libotr-3.1.0 )
+   aspell? ( app-text/aspell )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
+   idn? ( net-dns/libidn  )
+   spell? ( app-text/enchant )
+   dev-libs/glib:2
+   sys-libs/ncurses:0=
+   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF="1"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
+
+pkg_setup() {
+   if use aspell && use spell; then
+   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable crypt gpgme) \
+   $(use_enable otr) \
+   $(use_enable aspell) \
+   $(use_enable spell enchant) \
+   $(use_enable modules) \
+   $(use_with idn libidn)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   # clean unneeded language documentation
+   for i in ${LANGS}; do
+   use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+   done
+
+   # contrib themes
+   insinto /usr/share/${PN}/themes
+   doins "${S}"/contrib/themes/*
+
+   # contrib generic scripts
+   exeinto /usr/share/${PN}/scripts
+   doexe "${S}"/contrib/*.{pl,py}
+
+   # contrib event scripts
+   exeinto /usr/share/${PN}/scripts/events
+   doexe "${S}"/contrib/events/*
+
+   if use vim-syntax; then
+   cd contrib/vim/ || die
+
+   insinto /usr/share/vim/vimfiles/syntax
+   doins mcabber_log-syntax.vim
+
+   insinto /usr/share/vim/vimfiles/ftdetect
+   doins mcabber_log-ftdetect.vim
+   fi
+}
+
+pkg_postinst() {
+   elog
+   elog "MCabber requires you to create a subdirectory .mcabber in your 
home"
+   elog "directory and to place a configuration file there."
+   elog 

[gentoo-commits] repo/gentoo:master commit in: media-video/motion/

2017-02-10 Thread Wolfram Schlich
commit: c2c5cf3d2e22d3f1116d21628448ff1fc7a434d8
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Feb 10 15:11:29 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Feb 10 15:11:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c5cf3d

media-video/motion: reformat README.gentoo, print contents upon first 
installation, use latest motion.confd-r1

Package-Manager: portage-2.3.3

 media-video/motion/motion-4.0.1-r2.ebuild | 85 +++
 1 file changed, 85 insertions(+)

diff --git a/media-video/motion/motion-4.0.1-r2.ebuild 
b/media-video/motion/motion-4.0.1-r2.ebuild
new file mode 100644
index 00..3bc71f9d9f
--- /dev/null
+++ b/media-video/motion/motion-4.0.1-r2.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools readme.gentoo-r1 user systemd
+
+DESCRIPTION="A software motion detector"
+HOMEPAGE="https://motion-project.github.io;
+SRC_URI="https://github.com/Motion-Project/${PN}/archive/release-${PV}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="ffmpeg libav mmal mysql postgres v4l"
+
+RDEPEND="
+   ffmpeg? (
+   libav? ( media-video/libav:= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
+   virtual/jpeg:=
+   mmal? ( media-libs/raspberrypi-userland )
+   mysql? ( virtual/mysql )
+   postgres? ( dev-db/postgresql:= )
+"
+DEPEND="${RDEPEND}
+   v4l? ( virtual/os-headers media-libs/libv4l )
+"
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="
+You need to setup /etc/${PN}/${PN}.conf before running ${PN} for
+the first time. You can use /etc/${PN}/${PN}-dist.conf as a template.
+Please note that the 'daemon' and 'process_id_file' settings are
+overridden by the bundled OpenRC init script and systemd unit where
+appropriate.
+
+To install ${PN} as a service, use:
+rc-update add ${PN} default # with OpenRC
+systemctl enable ${PN}.service # with systemd
+"
+
+pkg_setup() {
+   enewuser ${PN} -1 -1 -1 video
+}
+
+S="${WORKDIR}"/${PN}-release-${PV}
+
+src_prepare() {
+   eapply_user
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_with ffmpeg) \
+   $(use_with mmal) \
+   $(use_with mysql) \
+   $(use_with postgres pgsql) \
+   $(use_with v4l) \
+   --without-optimizecpu
+}
+
+src_install() {
+   emake \
+   DESTDIR="${D}" \
+   docdir=/usr/share/doc/${PF} \
+   examplesdir=/usr/share/doc/${PF}/examples \
+   install
+
+   newinitd "${FILESDIR}"/${PN}.initd-r3 ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd-r1 ${PN}
+
+   systemd_dounit "${FILESDIR}"/${PN}.service
+   systemd_dounit "${FILESDIR}"/${PN}_at.service
+   systemd_dotmpfilesd "${FILESDIR}"/${PN}.conf
+
+   keepdir /var/lib/motion
+   fowners motion:video /var/lib/motion
+   fperms 0750 /var/lib/motion
+
+   readme.gentoo_create_doc
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: media-video/motion/, media-video/motion/files/

2017-02-10 Thread Wolfram Schlich
commit: 2b8b8b465357ce49caa20126a303e5d7a1eb367e
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Feb 10 13:44:32 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Feb 10 13:44:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b8b8b46

media-video/motion: security cleanup wrt bug #475120

Package-Manager: portage-2.3.3

 media-video/motion/Manifest|   1 -
 media-video/motion/files/ffmpeg-1.patch|  95 --
 media-video/motion/files/ffmpeg-2.patch| 141 -
 media-video/motion/files/ffmpeg-3.patch|  35 -
 media-video/motion/files/ffmpeg-4.patch|  68 --
 media-video/motion/files/ffmpeg-5.patch| 122 --
 media-video/motion/files/libav-9.patch |  21 ---
 ...motion-3.2.12-workaround-v4l1_deprecation.patch |  35 -
 media-video/motion/files/motion.initd-r2   |  39 --
 media-video/motion/motion-3.2.12-r2.ebuild |  73 ---
 media-video/motion/motion-3.2.12-r3.ebuild |  82 
 11 files changed, 712 deletions(-)

diff --git a/media-video/motion/Manifest b/media-video/motion/Manifest
index 3334e86bd8..8048180803 100644
--- a/media-video/motion/Manifest
+++ b/media-video/motion/Manifest
@@ -1,2 +1 @@
-DIST motion-3.2.12.tar.gz 425729 SHA256 
a597f8d7ec0bf3c5fb62722c4eead59717fe01c2ae0d256c642027cea74b2f0a SHA512 
d44620f8865420da71ff1dc1e1d8ba8e5465b395f2cf3b2cc9a91d3d415694b26376a9f8e3a1b78ffd0efde22d9e0338daa77237aed38c060dc3577af4c0864c
 WHIRLPOOL 
0b7618d48161e8ffefacc5331d1078004d87839b532100c37bfaf06e99772921228feea6eea063301dfdc9e5f5a1dc07fd0847858440c6f876c1e03deaa078c8
 DIST release-4.0.1.tar.gz 444779 SHA256 
2f67669a09ce0481ecd987028dae1c5cb135dfdc3c254c06ab7c9ca0c6c183f0 SHA512 
6ccde3890e6af56f28208321987dd1b9d62a55bbe7cbc3ab5600263602e6e8f47589392c2f3a3a6cb54f927ee76aea94d0e83f26ce8e4047890c891b6c2f8976
 WHIRLPOOL 
425587a1ff52edadddbdc7fd65cdb015324b99514128d3810a6d1bb6d2cd2f1c5daea03c1db0c4a89679358793f9201156dd821ce795d704ede12bdb151fafdd

diff --git a/media-video/motion/files/ffmpeg-1.patch 
b/media-video/motion/files/ffmpeg-1.patch
deleted file mode 100644
index 56c83c474f..00
--- a/media-video/motion/files/ffmpeg-1.patch
+++ /dev/null
@@ -1,95 +0,0 @@
-Description: Fix FFmpeg guess_format() deprecation warning
-Author: Angel Carpintero <motiondeve...@gmail.com>
-Origin: Upstream, https://github.com/sackmotion/motion/commit/527377#svn517
-Last-Update: 2012-02-12
-
 a/ffmpeg.c
-+++ b/ffmpeg.c
-@@ -36,6 +36,11 @@
- #endif /* __GNUC__ */
- #endif /* LIBAVCODEC_BUILD > 4680 */
- 
-+#if defined LIBAVFORMAT_VERSION_MAJOR && defined LIBAVFORMAT_VERSION_MINOR 
-+#if LIBAVFORMAT_VERSION_MAJOR < 53 && LIBAVFORMAT_VERSION_MINOR < 45
-+#define GUESS_NO_DEPRECATED 
-+#endif
-+#endif
- 
- #if LIBAVFORMAT_BUILD >= 4616
- /* The API for av_write_frame changed with FFmpeg version 0.4.9pre1.
-@@ -258,7 +263,11 @@
- /* We use "mpeg1video" for raw mpeg1 format. Using "mpeg" would
-  * result in a muxed output file, which isn't appropriate here.
-  */
--of = guess_format("mpeg1video", NULL, NULL);
-+#ifdef GUESS_NO_DEPRECATED
-+of = guess_format("mpeg1video", NULL, NULL);
-+#else
-+of = av_guess_format("mpeg1video", NULL, NULL);
-+#endif 
- if (of) {
- /* But we want the trailer to be correctly written. */
- of->write_trailer = mpeg1_write_trailer;
-@@ -270,24 +279,44 @@
- #endif
- } else if (strcmp(codec, "mpeg4") == 0) {
- ext = ".avi";
--of = guess_format("avi", NULL, NULL);
-+#ifdef GUESS_NO_DEPRECATED
-+of = guess_format("mpeg1video", NULL, NULL);
-+#else
-+of = av_guess_format("avi", NULL, NULL);
-+#endif
- } else if (strcmp(codec, "msmpeg4") == 0) {
- ext = ".avi";
--of = guess_format("avi", NULL, NULL);
-+#ifdef GUESS_NO_DEPRECATED
-+of = guess_format("mpeg1video", NULL, NULL);
-+#else
-+of = av_guess_format("avi", NULL, NULL);
-+#endif
- if (of) {
- /* Manually override the codec id. */
- of->video_codec = CODEC_ID_MSMPEG4V2;
- }
- } else if (strcmp(codec, "swf") == 0) {
- ext = ".swf";
--of = guess_format("swf", NULL, NULL);
-+#ifdef GUESS_NO_DEPRECATED
-+of = guess_format("mpeg1video", NULL, NULL);
-+#else
-+of = av_guess_format("swf", NULL, NULL);
-+#endif
- } else if (strcmp(codec, "flv") == 0) {
- ext = ".flv";
--of = guess_format("flv", NULL, NULL);
-+#

[gentoo-commits] repo/gentoo:master commit in: media-video/motion/

2017-01-23 Thread Wolfram Schlich
commit: edca66bf519659ae62fe1cbd79bab3102aa27991
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Jan 23 09:17:12 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Jan 23 09:20:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edca66bf

media-video/motion: updated maintainership info, fixed upstream reference 
(thanks to William Breathitt Gray  gmail.com> for the headsup)

Package-Manager: portage-2.3.0

 media-video/motion/metadata.xml | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/media-video/motion/metadata.xml b/media-video/motion/metadata.xml
index cf2e1ad..e02a137 100644
--- a/media-video/motion/metadata.xml
+++ b/media-video/motion/metadata.xml
@@ -1,13 +1,21 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   vilhelm.g...@gmail.com
+   William Breathitt Gray
+   

media-vi...@gentoo.org

+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Enables Multi-Media Abstraction Layer (MMAL) 
decoding support: Available e.g. on the Raspberry Pi.


-   motion
+   Motion-Project/motion

 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/cyberjack/, dev-libs/cyberjack/files/

2017-01-20 Thread Wolfram Schlich
commit: eb91fd838f758028c3ffeb0484d914b17da5cb1d
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Jan 20 10:54:44 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Jan 20 10:54:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb91fd83

dev-libs/cyberjack: version bump, renamed patches so it's easier to keep them 
untouched in future versions

Package-Manager: portage-2.3.0

 dev-libs/cyberjack/Manifest | 2 +-
 .../{cyberjack-3.99.5_p09.ebuild => cyberjack-3.99.5_p10.ebuild}| 6 +++---
 ...cyberjack-3.99.5_p09-manpages.patch => cyberjack-manpages.patch} | 0
 ...ack-3.99.5_p09-returnvalue.patch => cyberjack-returnvalue.patch} | 0
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/cyberjack/Manifest b/dev-libs/cyberjack/Manifest
index c730592..8894ba6 100644
--- a/dev-libs/cyberjack/Manifest
+++ b/dev-libs/cyberjack/Manifest
@@ -1,2 +1,2 @@
-DIST pcsc-cyberjack-3.99.5final.SP09.tar.bz2 956808 SHA256 
1f8cb8da18aae3b39f7c972d06c3221d08e870119bc871a2eb198a09b01139d4 SHA512 
e0e324a2b0251cc28512e87799c7408f2d008c07a463ff36478de0547b701b5523ff78bd4cffb388b02254eed5fe88fb2769e38da625f6040003d8858d6c5b3b
 WHIRLPOOL 
b2abc2f7edfcf28bb28264072741e156e336e892f4b8730fcd4784998d5f95f192adcd877315fb46ce9fca8fdfffc02269293d25c215c97fe115f25f7cd1cb41
+DIST pcsc-cyberjack-3.99.5final.SP10.tar.bz2 958494 SHA256 
910ac025b504a0407cee3d9f8a77655f3007871591113054bedede5f1aeae958 SHA512 
d4094b531ab523db29856ea0cf784db925bece51a5c4b5c7fec259ff319d58a50443cabdfebc0a1f6818b678a1284500429274478bf1db780ff594612e307d56
 WHIRLPOOL 
8a80cbd2dc8e3597f169a0a16c963c4b02faba2909639c2a5affe85098cf4c63e244ed5076477b7b5032e446097c24da07dfc88fc1a68a9f48a64624d3a6cbc0
 DIST pcsc-cyberjack_3.99.5final.SP03.tar.gz 1485952 SHA256 
fa5324d8a270d50aec20345cb57362f684ddadd3a50dbd0773ee13d2d87bc0a9 SHA512 
a091a09b501d7a7c757f0a458007f44ac281cbeaaf5bc3c2aa89915ee7a39478e6f80b6f24fec77be753c8d77deeda2858b7a806e3c982f54c199bd797288e05
 WHIRLPOOL 
51429512a9037e6ec4a98cc33576176cafda5fe3a3b33c56b2d928c7a7bc06135ac93e92a713836e4dc20e90f6106f9ca3643de5baed7c25672c26f6fc4a6368

diff --git a/dev-libs/cyberjack/cyberjack-3.99.5_p09.ebuild 
b/dev-libs/cyberjack/cyberjack-3.99.5_p10.ebuild
similarity index 92%
rename from dev-libs/cyberjack/cyberjack-3.99.5_p09.ebuild
rename to dev-libs/cyberjack/cyberjack-3.99.5_p10.ebuild
index 2adc316..0c19529 100644
--- a/dev-libs/cyberjack/cyberjack-3.99.5_p09.ebuild
+++ b/dev-libs/cyberjack/cyberjack-3.99.5_p10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -40,8 +40,8 @@ pkg_setup() {
 }
 
 src_prepare() {
-   epatch "${FILESDIR}/${P}-manpages.patch"
-   epatch "${FILESDIR}/${P}-returnvalue.patch"
+   epatch "${FILESDIR}/${PN}-manpages.patch"
+   epatch "${FILESDIR}/${PN}-returnvalue.patch"
eautoreconf
 }
 

diff --git a/dev-libs/cyberjack/files/cyberjack-3.99.5_p09-manpages.patch 
b/dev-libs/cyberjack/files/cyberjack-manpages.patch
similarity index 100%
rename from dev-libs/cyberjack/files/cyberjack-3.99.5_p09-manpages.patch
rename to dev-libs/cyberjack/files/cyberjack-manpages.patch

diff --git a/dev-libs/cyberjack/files/cyberjack-3.99.5_p09-returnvalue.patch 
b/dev-libs/cyberjack/files/cyberjack-returnvalue.patch
similarity index 100%
rename from dev-libs/cyberjack/files/cyberjack-3.99.5_p09-returnvalue.patch
rename to dev-libs/cyberjack/files/cyberjack-returnvalue.patch



[gentoo-commits] repo/gentoo:master commit in: media-video/motion/

2017-01-20 Thread Wolfram Schlich
commit: d4a61c24fdb0a4642b8dbc90292a7c4b128bbf28
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Jan 20 08:34:27 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Jan 20 08:34:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a61c24

media-video/motion: fix reference to wrong init script, thanks to Sven Schwyn 
 delirium.ch> for the headsup.

Package-Manager: portage-2.3.0

 .../motion/{motion-4.0.1.ebuild => motion-4.0.1-r1.ebuild} | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/media-video/motion/motion-4.0.1.ebuild 
b/media-video/motion/motion-4.0.1-r1.ebuild
similarity index 86%
rename from media-video/motion/motion-4.0.1.ebuild
rename to media-video/motion/motion-4.0.1-r1.ebuild
index e820993..b866f05 100644
--- a/media-video/motion/motion-4.0.1.ebuild
+++ b/media-video/motion/motion-4.0.1-r1.ebuild
@@ -30,7 +30,11 @@ DEPEND="${RDEPEND}
 
 DISABLE_AUTOFORMATTING="yes"
 DOC_CONTENTS="You need to setup /etc/${PN}/${PN}.conf before running
-${PN} for the first time.
+${PN} for the first time. You can use /etc/${PN}/${PN}-dist.conf as a
+template. Please note that the 'daemon' and 'process_id_file' settings
+are overridden by the bundled OpenRC init script and systemd unit where
+appropriate.
+
 To install ${PN} as a service, use:
 rc-update add ${PN} default # with OpenRC
 systemctl enable ${PN}.service # with systemd
@@ -64,7 +68,7 @@ src_install() {
examplesdir=/usr/share/doc/${PF}/examples \
install
 
-   newinitd "${FILESDIR}"/${PN}.initd-r2 ${PN}
+   newinitd "${FILESDIR}"/${PN}.initd-r3 ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
 
systemd_dounit "${FILESDIR}"/${PN}.service
@@ -75,7 +79,5 @@ src_install() {
fowners motion:video /var/lib/motion
fperms 0750 /var/lib/motion
 
-   mv -vf "${D}"/etc/${PN}/${PN}{-dist,}.conf || die
-
readme.gentoo_create_doc
 }



[gentoo-commits] repo/gentoo:master commit in: media-video/motion/, media-video/motion/files/

2017-01-16 Thread Wolfram Schlich
commit: 296feb41fc063071d4df2dee73fb6e9831d71ee9
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Jan 16 11:47:55 2017 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Jan 16 11:49:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296feb41

media-video/motion: add new ebuild for version 4, mostly based upon the ebuild 
from William Breathitt Gray  gmail.com> (bug #475120)

Package-Manager: portage-2.3.0

 media-video/motion/Manifest|  1 +
 media-video/motion/files/motion.conf   |  1 +
 media-video/motion/files/motion.confd-r1   |  9 
 media-video/motion/files/motion.initd-r3   | 43 
 media-video/motion/files/motion.service| 20 
 media-video/motion/files/motion_at.service | 20 
 media-video/motion/metadata.xml|  3 ++
 media-video/motion/motion-4.0.1.ebuild | 81 ++
 8 files changed, 178 insertions(+)

diff --git a/media-video/motion/Manifest b/media-video/motion/Manifest
index a8e665f..3334e86 100644
--- a/media-video/motion/Manifest
+++ b/media-video/motion/Manifest
@@ -1 +1,2 @@
 DIST motion-3.2.12.tar.gz 425729 SHA256 
a597f8d7ec0bf3c5fb62722c4eead59717fe01c2ae0d256c642027cea74b2f0a SHA512 
d44620f8865420da71ff1dc1e1d8ba8e5465b395f2cf3b2cc9a91d3d415694b26376a9f8e3a1b78ffd0efde22d9e0338daa77237aed38c060dc3577af4c0864c
 WHIRLPOOL 
0b7618d48161e8ffefacc5331d1078004d87839b532100c37bfaf06e99772921228feea6eea063301dfdc9e5f5a1dc07fd0847858440c6f876c1e03deaa078c8
+DIST release-4.0.1.tar.gz 444779 SHA256 
2f67669a09ce0481ecd987028dae1c5cb135dfdc3c254c06ab7c9ca0c6c183f0 SHA512 
6ccde3890e6af56f28208321987dd1b9d62a55bbe7cbc3ab5600263602e6e8f47589392c2f3a3a6cb54f927ee76aea94d0e83f26ce8e4047890c891b6c2f8976
 WHIRLPOOL 
425587a1ff52edadddbdc7fd65cdb015324b99514128d3810a6d1bb6d2cd2f1c5daea03c1db0c4a89679358793f9201156dd821ce795d704ede12bdb151fafdd

diff --git a/media-video/motion/files/motion.conf 
b/media-video/motion/files/motion.conf
new file mode 100644
index ..f032d87
--- /dev/null
+++ b/media-video/motion/files/motion.conf
@@ -0,0 +1 @@
+d /var/lib/motion/ 0750 motion video

diff --git a/media-video/motion/files/motion.confd-r1 
b/media-video/motion/files/motion.confd-r1
new file mode 100644
index ..dfff31b
--- /dev/null
+++ b/media-video/motion/files/motion.confd-r1
@@ -0,0 +1,9 @@
+# Set the user and group under which motion will be run
+MOTION_USER="motion"
+MOTION_GROUP="video"
+
+# Set the the directory for storing the pidfile
+MOTION_RUN_DIR="/var/run/motion"
+
+# Set the the working directory for storing images/videos
+MOTION_LIB_DIR="/var/lib/motion"

diff --git a/media-video/motion/files/motion.initd-r3 
b/media-video/motion/files/motion.initd-r3
new file mode 100644
index ..d893a82
--- /dev/null
+++ b/media-video/motion/files/motion.initd-r3
@@ -0,0 +1,43 @@
+#!/sbin/openrc-run
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+extra_started_commands="reload"
+
+depend() {
+   need modules
+   after mysql
+}
+
+checkconfig() {
+   export MOTION_RUN_DIR="${MOTION_RUN_DIR:-/var/run/motion}"
+   checkpath -d -m 750 -o "${MOTION_USER:-motion}:${MOTION_GROUP:-video}" 
"${MOTION_RUN_DIR}"
+   export MOTION_LIB_DIR="${MOTION_LIB_DIR:-/var/lib/motion}"
+   checkpath -d -m 750 -o "${MOTION_USER:-motion}:${MOTION_GROUP:-video}" 
"${MOTION_LIB_DIR}"
+   return 0
+}
+
+start() {
+   checkconfig || return 1
+
+   ebegin "Starting motion detection"
+   start-stop-daemon --start -u "${MOTION_USER}" -g "${MOTION_GROUP}" -d 
"${MOTION_LIB_DIR}" --quiet --exec /usr/bin/motion -- -b -p 
"${MOTION_RUN_DIR}/motion.pid"
+   eend $?
+}
+
+stop() {
+   checkconfig || return 1
+
+   ebegin "Stopping motion detection"
+   start-stop-daemon --stop --quiet --exec /usr/bin/motion --pidfile 
"${MOTION_RUN_DIR}/motion.pid"
+   eend $?
+}
+
+reload() {
+   checkconfig || return 1
+
+   ebegin "Reloading motion detection configuration"
+   start-stop-daemon --stop --signal HUP --exec /usr/bin/motion --pidfile 
"${MOTION_RUN_DIR}/motion.pid"
+   eend $?
+}

diff --git a/media-video/motion/files/motion.service 
b/media-video/motion/files/motion.service
new file mode 100644
index ..559b94b
--- /dev/null
+++ b/media-video/motion/files/motion.service
@@ -0,0 +1,20 @@
+[Unit]
+Description=Motion detection daemon
+After=local-fs.target network.target
+Documentation=man:motion(1)
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/motion -n -c /etc/motion/motion.conf
+StandardError=null
+
+User=motion
+Group=video
+
+#RuntimeDirectory=motion
+#RuntimeDirectoryMode=0750
+
+WorkingDirectory=/var/lib/motion
+
+[I

[gentoo-commits] repo/gentoo:master commit in: app-misc/xmind/

2017-01-16 Thread Wolfram Schlich
commit: e21dfdb5685a76e255daa8ebc0fb599295c3d6a5
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Dec 30 14:02:17 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Jan 16 11:49:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21dfdb5

app-misc/xmind: version bump

Package-Manager: portage-2.3.0

 app-misc/xmind/Manifest   |  1 +
 app-misc/xmind/xmind-3.7.1.ebuild | 93 +++
 2 files changed, 94 insertions(+)

diff --git a/app-misc/xmind/Manifest b/app-misc/xmind/Manifest
index 3d45ddd..8402031 100644
--- a/app-misc/xmind/Manifest
+++ b/app-misc/xmind/Manifest
@@ -1,5 +1,6 @@
 DIST xmind-7-update1-portable.zip 263875799 SHA256 
2823c93178e55ff21d3a75ff2a9d2aa694f50a94a7220207a1ad757660cdf030 SHA512 
c60cda54af5aefefde480627e7191ebdaf32df27e2873ac738ee7814ad0acda7066ef1ff62ffdc16148d190438d60991ca036fe0903cda44edbab91e2237b4bb
 WHIRLPOOL 
4f177c52faef598143eb479b5cd9f7a55ddd7c82e7610852f01074227f6d8a29cf00c4ddd3d3d35d30ae6e859670791734594cf2c1f6d2ab2ec406207b612350
 DIST xmind-8-linux.zip 142262044 SHA256 
3b57e41953672379e3b7ab7a2fe1c577164be36f025895c792d76ca63b5d0439 SHA512 
8f7f386eac1341e4e8e5cb86a701596e0cc2efcf0a20f6cc53af2fc5dd6b9859dfaf54ab104316c60a52a1083fa55fa8ab0c58498151d29cd463012c9474b5e7
 WHIRLPOOL 
825757d60a9c82cd964c642ac73320ceb33e460580cecd1899a0c7158c611f394b7f2b262461b2c5ea523970560c700e43c274adb8ddc856d40d69ef241dee16
+DIST xmind-8-update1-linux.zip 142395100 SHA256 
59dc865856d8b560ebc5a9d220a26e6694cb004b67cd1e7c76e177637f432e35 SHA512 
725268287dfa9dc9a5d9fd429277eecd43ef2e09158b3bb8ef51e06355620741b2aa709c227debd0069f4401623b7274082f6b81b3ace153289ef7ffac25fca4
 WHIRLPOOL 
2b23a85c56d44ac3d4fa8480e6995386a2595f8947932a0e8179238f78c088c1b7af9b8ffc532121175ad7c0ab02fdecaae9008c53d99e1a5724225d0c689df5
 DIST xmind-icons.tar.xz 5024 SHA256 
6a5e087c5c66aa6f36b7822268b486922157e3b75a091b6fbdeec905607b8aa5 SHA512 
3ee6b8e42b75305bec8f97f733575f10ca3d08e1c5a76a10700776cb7740ae6f8a0f3dfbc4112d60ab2499915ca4ea0e3d56fd49e55bec00fccdc8710d9f9f0d
 WHIRLPOOL 
590571a8b950ff6200d92417ab7eede2a8856263bc07c00fb129d751d9a00ae9bab69d916aab2f04d8270eadb0466723e99570032eacabd7350afd3cca4b8f23
 DIST xmind-portable-3.4.1.201401221918.zip 138440913 SHA256 
f70b8317ec0fe512e507bc26cc7fed70348af3c1d8c17603a78359175fc01261 SHA512 
06d6473b26a0eef97d6651d14c13d7fd28fda19b33b2aea4f924d2e0f0d3131f19d5b64e081ba0d537c44eb09e27a83596aca91156bd32c5377903fbb7da9804
 WHIRLPOOL 
2601e8f293ef97d12576a461bb3b7a8e68bf6a4f807f780b9e6b7a12c20030bc979f61cf1f76f6deb617c57aa2c16e8d35621e66c5df825f8800ca38304d8ee0
 DIST xmind-portable-3.5.1.201411201906.zip 160601004 SHA256 
920321dc254604d51d4b3b4718ba04271de0e47b63a836fc597467c4062a89e4 SHA512 
24da7bf3bfbc0beddbf6f4bb4b9d465e28c652b6e80ba9e0bc2a52cc2ff8c175a83ea8cc0d5b3dc87961c5bb6294ca836e29795631db41455ef1b8b2b3f0
 WHIRLPOOL 
9dab13d6578fe7e817cfa43ce171e33ae5f6d0f939f307b8cf15d651a70800763776bf9ed318a7116716dc7aa20793455a771d46f38ca13780dc9272024f73fe

diff --git a/app-misc/xmind/xmind-3.7.1.ebuild 
b/app-misc/xmind/xmind-3.7.1.ebuild
new file mode 100644
index ..17ee39b
--- /dev/null
+++ b/app-misc/xmind/xmind-3.7.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils multilib gnome2-utils font
+
+MY_PV="8-update1"
+MY_P="${PN}-${MY_PV}-linux"
+
+DESCRIPTION="A brainstorming and mind mapping software tool"
+HOMEPAGE="http://www.xmind.net;
+SRC_URI="http://dl2.xmind.net/xmind-downloads/${MY_P}.zip
+   https://dev.gentoo.org/~creffett/distfiles/xmind-icons.tar.xz;
+LICENSE="EPL-1.0 LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=virtual/jre-1.8
+   x11-libs/gtk+:2
+"
+
+S=${WORKDIR}
+
+QA_PRESTRIPPED="opt/xmind/XMind/libcairo-swt.so"
+QA_FLAGS_IGNORED="
+   
opt/xmind/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.400.v20160518-1444/eclipse_1617.so
+   
opt/xmind/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.400.v20160518-1444/eclipse_1617.so
+   opt/xmind/XMind/XMind
+"
+
+FONT_SUFFIX="ttf"
+FONT_S="${S}/fonts"
+
+src_configure() {
+   if use amd64; then
+   XDIR="XMind_amd64"
+   else
+   XDIR="XMind_i388"
+   fi
+   mv "$XDIR" XMind || die
+   # force data instance & config area to be at home/.xmind directory
+   sed \
+   -e '/-configuration/d' \
+   -e '/\.\/configuration/d' \
+   -e '/-data/d' \
+   -e '/\.\.\/Commons\/data\/workspace-cathy/d' \
+   -e 's/\.\.\/plugins/\/opt\/xmind\/plugins/g' \
+   -e '/-vmargs/i-showsplash' \
+   -e '/vmargs/iorg.xmind.cathy' \
+

[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-12-27 Thread Wolfram Schlich
commit: beef8ff45fdd57f1939a869eb99e1dbd0fa54d1f
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Dec 27 16:49:04 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Dec 27 16:49:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beef8ff4

net-im/mcabber: Removed the vim ftdetect patch for - as upstream now 
includes it after I asked for it. Thanks to Andrey Utkin for the headsup.

Package-Manager: portage-2.3.0

 net-im/mcabber/mcabber-.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
index b18915e..f472346 100644
--- a/net-im/mcabber/mcabber-.ebuild
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -41,9 +41,6 @@ DEPEND="${RDEPEND}
 AUTOTOOLS_AUTORECONF="1"
 AUTOTOOLS_IN_SOURCE_BUILD="1"
 DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
-PATCHES=(
-   "${FILESDIR}/${PN}-1.0.4-vim-ftdetect.patch"
-)
 
 pkg_setup() {
if use aspell && use spell; then



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-12-21 Thread Wolfram Schlich
commit: a0a251577b3ba5245ff5144dc27911456230b7aa
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Dec 21 15:42:11 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Dec 21 15:43:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0a25157

net-im/mcabber: Fixed the vim ftdetect patch file name for -. Thanks to 
Andrey Utkin for the headsup.

Package-Manager: portage-2.3.0

 net-im/mcabber/mcabber-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
index 38919c5..b18915e 100644
--- a/net-im/mcabber/mcabber-.ebuild
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -42,7 +42,7 @@ AUTOTOOLS_AUTORECONF="1"
 AUTOTOOLS_IN_SOURCE_BUILD="1"
 DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
 PATCHES=(
-   "${FILESDIR}/${P}-vim-ftdetect.patch"
+   "${FILESDIR}/${PN}-1.0.4-vim-ftdetect.patch"
 )
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-12-13 Thread Wolfram Schlich
commit: 99605a0241afcd1681b05b6bad3e63a5295302e2
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Dec 13 16:13:32 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Dec 13 16:29:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99605a02

net-im/mcabber: fix renamed patch file name

Package-Manager: portage-2.3.0

 net-im/mcabber/mcabber-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
index 261a494..38919c5 100644
--- a/net-im/mcabber/mcabber-.ebuild
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -42,7 +42,7 @@ AUTOTOOLS_AUTORECONF="1"
 AUTOTOOLS_IN_SOURCE_BUILD="1"
 DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
 PATCHES=(
-   "${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
+   "${FILESDIR}/${P}-vim-ftdetect.patch"
 )
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/files/, net-im/mcabber/

2016-12-13 Thread Wolfram Schlich
commit: 24ea81fe604b643d05362adb47f788c549291053
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Dec 13 16:09:00 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Dec 13 16:29:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ea81fe

net-im/mcabber: removed old insecure version, renamed a patch to match the 
current version

Package-Manager: portage-2.3.0

 net-im/mcabber/Manifest|   1 -
 .../mcabber-0.10.2_p20131025-vim-ftdetect.patch|  12 ---
 .../files/mcabber-0.10.3-vim-ftdetect.patch|  12 ---
 .../mcabber/files/mcabber-1.0.4-vim-ftdetect.patch |  12 +++
 net-im/mcabber/mcabber-0.10.2_p20131025.ebuild | 115 -
 net-im/mcabber/mcabber-1.0.4.ebuild|   2 +-
 6 files changed, 13 insertions(+), 141 deletions(-)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index 1912071..49a5b8c 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -1,2 +1 @@
-DIST mcabber-0.10.2_p20131025.tar.gz 399025 SHA256 
90f4e583a7ea929abcd243dc970d64db53f1f577a4a76dc55432eaa86b5ce007 SHA512 
4910acfb3d0f6341e0926bff740186d3039a47f15fd075409ecd940b6388b9bb3bf35cb88eb675e6063eaefba6f4421ca7c07e18cb307a1c7b3206c077feeeb1
 WHIRLPOOL 
12b9ea8d5dd2e70afeeaab18f8361bd57a5c9850bfc70e953800efe5319d632881163c48d904efc07aadb9cb1a33c09d9b034537e4fe3102793da084bd246e97
 DIST mcabber-1.0.4.tar.bz2 605462 SHA256 
63b6bc003fcceba4dc4b273ed1c71643c4f8d95e8696543d53f64a7672b1ce0a SHA512 
f4f85abcdfa341489e47ba5290e9cce79cdd749753155003e3a9b5edd145e158c91d0a32fe07983196be5729134279f21fbe94511a41b98b793b415157b6b15b
 WHIRLPOOL 
09f7d6e53e352a0e7087da0ddb1a9f5a717c447c2e7a3d9d3e1b14409e8dd4e95472a60af743a0fbb64d4ee296b8eb6654cfb3ce6030ea8abd95ba863eacb7f1

diff --git a/net-im/mcabber/files/mcabber-0.10.2_p20131025-vim-ftdetect.patch 
b/net-im/mcabber/files/mcabber-0.10.2_p20131025-vim-ftdetect.patch
deleted file mode 100644
index 015d369..
--- a/net-im/mcabber/files/mcabber-0.10.2_p20131025-vim-ftdetect.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN 
mcabber-a18e1b488f1c.orig/mcabber/contrib/vim/mcabber_log-ftdetect.vim 
mcabber-a18e1b488f1c/mcabber/contrib/vim/mcabber_log-ftdetect.vim
 mcabber-a18e1b488f1c.orig/mcabber/contrib/vim/mcabber_log-ftdetect.vim 
2013-10-25 22:20:23.0 +0200
-+++ mcabber-a18e1b488f1c/mcabber/contrib/vim/mcabber_log-ftdetect.vim  
2014-03-30 14:41:31.975129825 +0200
-@@ -1,7 +1,7 @@
- "
- " Save this file in your ~/.vim/ftdetect/ folder
- 
--function MCabber_log_ftdetect()
-+function! MCabber_log_ftdetect()
- if getline(1) =~ '^\u. \d\{8}T\d\d:\d\d:\d\dZ \d\{3} '
-   setlocal filetype=mcabber_log
- endif

diff --git a/net-im/mcabber/files/mcabber-0.10.3-vim-ftdetect.patch 
b/net-im/mcabber/files/mcabber-0.10.3-vim-ftdetect.patch
deleted file mode 100644
index 015d369..
--- a/net-im/mcabber/files/mcabber-0.10.3-vim-ftdetect.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN 
mcabber-a18e1b488f1c.orig/mcabber/contrib/vim/mcabber_log-ftdetect.vim 
mcabber-a18e1b488f1c/mcabber/contrib/vim/mcabber_log-ftdetect.vim
 mcabber-a18e1b488f1c.orig/mcabber/contrib/vim/mcabber_log-ftdetect.vim 
2013-10-25 22:20:23.0 +0200
-+++ mcabber-a18e1b488f1c/mcabber/contrib/vim/mcabber_log-ftdetect.vim  
2014-03-30 14:41:31.975129825 +0200
-@@ -1,7 +1,7 @@
- "
- " Save this file in your ~/.vim/ftdetect/ folder
- 
--function MCabber_log_ftdetect()
-+function! MCabber_log_ftdetect()
- if getline(1) =~ '^\u. \d\{8}T\d\d:\d\d:\d\dZ \d\{3} '
-   setlocal filetype=mcabber_log
- endif

diff --git a/net-im/mcabber/files/mcabber-1.0.4-vim-ftdetect.patch 
b/net-im/mcabber/files/mcabber-1.0.4-vim-ftdetect.patch
new file mode 100644
index ..8d5aa10
--- /dev/null
+++ b/net-im/mcabber/files/mcabber-1.0.4-vim-ftdetect.patch
@@ -0,0 +1,12 @@
+diff -urN mcabber-1.0.4.orig/contrib/vim/mcabber_log-ftdetect.vim 
mcabber-1.0.4/contrib/vim/mcabber_log-ftdetect.vim
+--- mcabber-1.0.4.orig/contrib/vim/mcabber_log-ftdetect.vim2016-11-21 
20:47:26.0 +0100
 mcabber-1.0.4/contrib/vim/mcabber_log-ftdetect.vim 2016-12-13 
17:02:02.529854526 +0100
+@@ -1,7 +1,7 @@
+ "
+ " Save this file in your ~/.vim/ftdetect/ folder
+ 
+-function MCabber_log_ftdetect()
++function! MCabber_log_ftdetect()
+ if getline(1) =~ '^\u. \d\{8}T\d\d:\d\d:\d\dZ \d\{3} '
+   setlocal filetype=mcabber_log
+ endif

diff --git a/net-im/mcabber/mcabber-0.10.2_p20131025.ebuild 
b/net-im/mcabber/mcabber-0.10.2_p20131025.ebuild
deleted file mode 100644
index e6fa9eb..
--- a/net-im/mcabber/mcabber-0.10.2_p20131025.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit flag-o-matic autotools
-
-DESCRIPTION="A small Jabber console client with various features, like MUC,

[gentoo-commits] repo/gentoo:master commit in: dev-db/sqldeveloper/

2016-12-09 Thread Wolfram Schlich
commit: b33fb6e32cbca93c20552f6a72034a793f834035
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Dec  9 12:00:28 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Dec  9 12:00:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b33fb6e3

dev-db/sqldeveloper: removed old versions

Package-Manager: portage-2.3.0

 dev-db/sqldeveloper/Manifest   |   2 -
 .../sqldeveloper/sqldeveloper-3.2.20.09.87.ebuild  | 100 
 .../sqldeveloper/sqldeveloper-4.1.1.19.59.ebuild   | 101 -
 .../sqldeveloper/sqldeveloper-4.1.3.20.78.ebuild   | 101 -
 4 files changed, 304 deletions(-)

diff --git a/dev-db/sqldeveloper/Manifest b/dev-db/sqldeveloper/Manifest
index 3b74fa7..04a8a69 100644
--- a/dev-db/sqldeveloper/Manifest
+++ b/dev-db/sqldeveloper/Manifest
@@ -1,5 +1,3 @@
-DIST sqldeveloper-3.2.20.09.87-no-jre.zip 182052759 SHA256 
787b703a3fa2d7969ae486b9f2f23bdafd31242b2af74257943cf826c535c8d4 SHA512 
716e2f9584e192b8e72a0e9439ac3fb0aea297087640df7c7c5659170846376d8e44d0fbdc68c96e274b100aad3f26b0710691349bfc0092c86c42830e115efe
 WHIRLPOOL 
1d9eb51cb263c14a89a44167a239f3be34b7ca9bd78eefc28a73c1b24e6f4e2f10a1665b0b4a03c6932f987fae375c95bfc310c485e179c76e9b7135bb9825e3
 DIST sqldeveloper-4.0.2.15.21-no-jre.zip 235443867 SHA256 
b23aca1d256002cdc19a0b3136ae13ebf9064feacc45a131be229a88fe9faed7 SHA512 
e67b0f3d127adbc6cb77b3eb822834a6c41be7039c54eceb85e8c882704684a02dd036f078408192ad2cbcb963dfb0ba583e99a9f7b7db36b1e9a1f96e555880
 WHIRLPOOL 
31b32713f116193036dc5dd9b63c9b6c321763e2273227c51d70bd3db93575e4f12150a045f8615fb6086ee1d464af4d112be5824f9bf22b4f5917ae5a15b724
-DIST sqldeveloper-4.1.1.19.59-no-jre.zip 328364824 SHA256 
3b0f3f861495f41b6844eeaf3a58117a90dd72d98cfe8d0b4ffafe103ec56bb5 SHA512 
1f5a683ba91a41cb7bc40a45215632ff10b2b1075d5b434d5a8349137d467f59192ec78d33e67b141729b7a1f3e5d678f8b934418e362706ac85a8b0fe89b838
 WHIRLPOOL 
fc4e86e18108729a044bbb4b75a25418599ac972ed003ee69cc0982e66eeb6779d3d46306ec3429b9f9d7a0fa01dc6242b66430c02fe333cb9d95f70160e3402
 DIST sqldeveloper-4.1.3.20.78-no-jre.zip 331401110 SHA256 
10caec7183f4075033598faf272d2be82207261442abf3bc3bd899246968b8de SHA512 
828a751bc9df7bdc59f9b89b317189826e328671d081df24d39a102aeefaf5a0a56e01e066802da1ee92617bf1fdb77ad598b448043dd7f4239f2103efb4427b
 WHIRLPOOL 
8eee4fbc34617f721893ab880be9c7c27ac8d5378491ba97bcd0084660ad500e2c0e4812ea5b25f8cd907e2c689168af08bbccfdc0b51f04cc0d74bf0760e009
 DIST sqldeveloper-4.1.5.21.78-no-jre.zip 349775471 SHA256 
1b6a5ea4f12306eaa41e4ad961d2cae4e4ccbdcb4b89d85f3d8f88a883f06967 SHA512 
06535a2d60ce140fa08cf937e9bb38d0a8ecefcb1b68675b547d4682c2e514ba62121e4363cf655c10de149e39a5e7d1d4a61c8cf79d7388b2998bf9b0098601
 WHIRLPOOL 
ceb60934100a9184c734d2d07bdde752a384f807934186f54618479de6af19a114a879edee52214bce71509e4b2a22dca8fa988f4f91202d29bceaaf8cbe67e9

diff --git a/dev-db/sqldeveloper/sqldeveloper-3.2.20.09.87.ebuild 
b/dev-db/sqldeveloper/sqldeveloper-3.2.20.09.87.ebuild
deleted file mode 100644
index feb4a92..
--- a/dev-db/sqldeveloper/sqldeveloper-3.2.20.09.87.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit eutils java-pkg-2
-
-DESCRIPTION="Oracle SQL Developer is a graphical tool for database development"
-HOMEPAGE="http://www.oracle.com/technology/products/database/sql_developer/;
-SRC_URI="${P}-no-jre.zip"
-RESTRICT="fetch"
-
-LICENSE="OTN"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="mssql mysql sybase"
-
-DEPEND="mssql? ( dev-java/jtds:1.2 )
-   mysql? ( dev-java/jdbc-mysql:0 )
-   sybase? ( dev-java/jtds:1.2 )"
-RDEPEND=">=virtual/jdk-1.6.0
-   ${DEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-pkg_nofetch() {
-   eerror "Please go to"
-   eerror "${HOMEPAGE}"
-   eerror "and download"
-   eerror "Oracle SQL Developer for other platforms"
-   eerror "${SRC_URI}"
-   eerror "and move it to ${DISTDIR}"
-}
-
-src_prepare() {
-   # we don't need these, do we?
-   find ./ \( -iname "*.exe" -or -iname "*.dll" -or -iname "*.bat" \) 
-exec rm {} \;
-
-   # they both use jtds, enabling one of them also enables the other one
-   if use mssql && ! use sybase; then
-   einfo "You requested MSSQL support, this also enables Sybase 
support."
-   fi
-   if use sybase && ! use mssql; then
-   einfo "You requested Sybase support, this also enables MSSQL 
support."
-   fi
-
-   if use mssql || use sybase; then
-   echo "AddJavaLibFile $(java-pkg_getjars jtds-1.2)" >> 
sqldeveloper/bin/sqldeve

[gentoo-commits] repo/gentoo:master commit in: dev-db/sqldeveloper/

2016-12-09 Thread Wolfram Schlich
commit: d3c7fa7c6579931a3edea6179e39430fd5ea21df
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Dec  9 11:24:58 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Dec  9 11:25:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3c7fa7c

dev-db/sqldeveloper: version bump (bug #601966)

Package-Manager: portage-2.3.0

 dev-db/sqldeveloper/Manifest   |  1 +
 .../sqldeveloper/sqldeveloper-4.1.5.21.78.ebuild   | 98 ++
 2 files changed, 99 insertions(+)

diff --git a/dev-db/sqldeveloper/Manifest b/dev-db/sqldeveloper/Manifest
index ecb6066..3b74fa7 100644
--- a/dev-db/sqldeveloper/Manifest
+++ b/dev-db/sqldeveloper/Manifest
@@ -2,3 +2,4 @@ DIST sqldeveloper-3.2.20.09.87-no-jre.zip 182052759 SHA256 
787b703a3fa2d7969ae48
 DIST sqldeveloper-4.0.2.15.21-no-jre.zip 235443867 SHA256 
b23aca1d256002cdc19a0b3136ae13ebf9064feacc45a131be229a88fe9faed7 SHA512 
e67b0f3d127adbc6cb77b3eb822834a6c41be7039c54eceb85e8c882704684a02dd036f078408192ad2cbcb963dfb0ba583e99a9f7b7db36b1e9a1f96e555880
 WHIRLPOOL 
31b32713f116193036dc5dd9b63c9b6c321763e2273227c51d70bd3db93575e4f12150a045f8615fb6086ee1d464af4d112be5824f9bf22b4f5917ae5a15b724
 DIST sqldeveloper-4.1.1.19.59-no-jre.zip 328364824 SHA256 
3b0f3f861495f41b6844eeaf3a58117a90dd72d98cfe8d0b4ffafe103ec56bb5 SHA512 
1f5a683ba91a41cb7bc40a45215632ff10b2b1075d5b434d5a8349137d467f59192ec78d33e67b141729b7a1f3e5d678f8b934418e362706ac85a8b0fe89b838
 WHIRLPOOL 
fc4e86e18108729a044bbb4b75a25418599ac972ed003ee69cc0982e66eeb6779d3d46306ec3429b9f9d7a0fa01dc6242b66430c02fe333cb9d95f70160e3402
 DIST sqldeveloper-4.1.3.20.78-no-jre.zip 331401110 SHA256 
10caec7183f4075033598faf272d2be82207261442abf3bc3bd899246968b8de SHA512 
828a751bc9df7bdc59f9b89b317189826e328671d081df24d39a102aeefaf5a0a56e01e066802da1ee92617bf1fdb77ad598b448043dd7f4239f2103efb4427b
 WHIRLPOOL 
8eee4fbc34617f721893ab880be9c7c27ac8d5378491ba97bcd0084660ad500e2c0e4812ea5b25f8cd907e2c689168af08bbccfdc0b51f04cc0d74bf0760e009
+DIST sqldeveloper-4.1.5.21.78-no-jre.zip 349775471 SHA256 
1b6a5ea4f12306eaa41e4ad961d2cae4e4ccbdcb4b89d85f3d8f88a883f06967 SHA512 
06535a2d60ce140fa08cf937e9bb38d0a8ecefcb1b68675b547d4682c2e514ba62121e4363cf655c10de149e39a5e7d1d4a61c8cf79d7388b2998bf9b0098601
 WHIRLPOOL 
ceb60934100a9184c734d2d07bdde752a384f807934186f54618479de6af19a114a879edee52214bce71509e4b2a22dca8fa988f4f91202d29bceaaf8cbe67e9

diff --git a/dev-db/sqldeveloper/sqldeveloper-4.1.5.21.78.ebuild 
b/dev-db/sqldeveloper/sqldeveloper-4.1.5.21.78.ebuild
new file mode 100644
index ..3cf5aa2
--- /dev/null
+++ b/dev-db/sqldeveloper/sqldeveloper-4.1.5.21.78.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils java-pkg-2
+
+DESCRIPTION="Oracle SQL Developer is a graphical tool for database development"
+HOMEPAGE="http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html;
+SRC_URI="${P}-no-jre.zip"
+
+RESTRICT="fetch"
+
+LICENSE="OTN"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="mssql mysql sybase"
+
+DEPEND="mssql? ( dev-java/jtds:1.3 )
+   mysql? ( dev-java/jdbc-mysql:0 )
+   sybase? ( dev-java/jtds:1.3 )"
+RDEPEND=">=virtual/jdk-1.8
+   ${DEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+QA_PREBUILT="
+opt/${PN}/netbeans/platform/modules/lib/amd64/linux/*.so
+opt/${PN}/netbeans/platform/modules/lib/i386/linux/*.so
+"
+
+pkg_nofetch() {
+   eerror "Please go to"
+   eerror "${HOMEPAGE}"
+   eerror "and download"
+   eerror "Oracle SQL Developer for other platforms"
+   eerror "${SRC_URI}"
+   eerror "and move it to ${DISTDIR}"
+}
+
+src_prepare() {
+   # we don't need these, do we?
+   find ./ \( -iname "*.exe" -or -iname "*.dll" -or -iname "*.bat" \) 
-exec rm {} +
+
+   # they both use jtds, enabling one of them also enables the other one
+   if use mssql && ! use sybase; then
+   einfo "You requested MSSQL support, this also enables Sybase 
support."
+   fi
+   if use sybase && ! use mssql; then
+   einfo "You requested Sybase support, this also enables MSSQL 
support."
+   fi
+
+   if use mssql || use sybase; then
+   echo "AddJavaLibFile $(java-pkg_getjars jtds-1.3)" >> 
sqldeveloper/bin/sqldeveloper.conf || die
+   fi
+
+   if use mysql; then
+   echo "AddJavaLibFile $(java-pkg_getjars jdbc-mysql)" >> 
sqldeveloper/bin/sqldeveloper.conf || die
+   fi
+}
+
+src_install() {
+   dodir /opt/${PN}
+   # NOTE For future version to get that line (what to copy) go to the 

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

2016-12-08 Thread Wolfram Schlich
commit: 1126160fc167c8aeab5f774a2fba394a33ddeec8
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Dec  8 16:42:59 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Dec  8 16:43:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1126160f

net-misc/teamviewer: version bumps, removed old versions

Package-Manager: portage-2.3.0

 net-misc/teamviewer/Manifest   |   5 +-
 ...1499-r1.ebuild => teamviewer-10.0.46203.ebuild} |   2 +-
 net-misc/teamviewer/teamviewer-12.0.69753.ebuild   | 132 -
 ...7095-r1.ebuild => teamviewer-12.0.71510.ebuild} |   0
 4 files changed, 3 insertions(+), 136 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index ca19165..d7d7ed1 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,5 +1,4 @@
 DIST teamviewer-9.0.32150.deb 22898922 SHA256 
66d9a69f7e1523a2e1b41ff2e55adac01b2dae9b8bdfabf9db6080fc21d24451 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 WHIRLPOOL 
fa48ff99a5df29072b1073f35e3f27aeba87b2b846813dca612212344a5b8e35f7f1e221e1fb4f7a12464fce4a185b8dad6dd8f48432e4c48ecd61d9cc6b7960
-DIST teamviewer_10.0.41499_i386.deb 41166700 SHA256 
0694c756b8cb5f2b09c8d6db960ced3e899d4ce43060e77ef4f1c36254dc31c4 SHA512 
afdfafb89398b29206414537c69a798574807c0f350d7ec819579167e0ffbb33c2c3754fdc17a79576b3ff7bcb729c78bda47a5387c1dc178cf85107dae71d9f
 WHIRLPOOL 
a0d1595f4133e6e875e49ed6db6777e732c79f7a283d1bcddfd489557eb3bebbbc9c41362cf3576e97513ce8345665645fa5e54ada12275e29bd8d3349752713
-DIST teamviewer_11.0.57095_i386.deb 53774306 SHA256 
a3e763912892019143517f8c40404aa23465b4d78fb382336d165d3b96f1b83d SHA512 
d218cc5a7ea516b7df326d60726405fa1db5c313a74b14594ea8309bd5f06cc611d2391a750405ae8a39b419747bc6974d6b5f4ca54015fce869566d937cecdd
 WHIRLPOOL 
175259ecce24b576c7cac9d55d5ce8aeede00edfcc92953fd0ff75642aab1d4769cadbb7683ab4f3346afeb591caf679fbaab6cc8c629f7867438e483d40d89f
+DIST teamviewer_10.0.46203_i386.deb 43326592 SHA256 
eb1fe811fd2dc1c8dc6fc2ebaae177072b65bc1a3b2a6bb88b9e25f633c51359 SHA512 
2133194b180648685a9e179df1a2888277f3038d9098d0d12b72de92026bdb969d90262514996df60dfcf6986e291ecb756fde9e0781fca5c872b5c82e5494ea
 WHIRLPOOL 
b6bedba426954f74fb51dca51949508f7299f9bee2dea1abc442a8a8acf79b408455901fedda524851c69a6352ef5a7bb1c733233823d49a0adfec64561f61ce
 DIST teamviewer_11.0.67687_i386.deb 47341822 SHA256 
b74542910ac574803905658787174b6a60055c6473d3c4e398da36d0dedaf416 SHA512 
3fbb0a2fc1bccd41ba9798305fada7e8266e1c9ed8509492ccb75e6f85995538ddc05ad72648e9f6c31cd5f17ad34f1ed3a300eeb38a4a703d3414c113d3e5a9
 WHIRLPOOL 
2a6b1c04f67933a43ac2493a12c21b8a9eae95150b10d9e713e01efed98c397f44fdd77012407da2dffb8bf0b804374a60cce9d2646ff3c117041d13366be628
-DIST teamviewer_12.0.69753_i386.deb 46499056 SHA256 
6110e5ba521f7ffb429d7d0bf5f03dad7a18994dc6b62a6901353f1da7dbc744 SHA512 
b6cc5e55780fc45713387a6b4b68937660a0833f51bbd7c76941d6fa0a3c3156f58b00477bc3d4d5bb3e7559447a4165ee823098a33c24ce42cd8fe40d219364
 WHIRLPOOL 
117928d325b6bcc97c3119a0b5cecd1b276de70d2bf51f973f426a7d30c47b612c1cd68e78f19e12730a630f506bce53de44960887e6293941893c85b03685da
+DIST teamviewer_12.0.71510_i386.deb 46556110 SHA256 
172f68c05f29657bcf312b9e3fd8b77027bdf82bd969da9dd7ffcc7eb3605838 SHA512 
edc1e5823939f20a9879bd29d952a728275f5f190ad434b95e71e886086b8aca407749d5671284cec9b20007aaa4b5907c84a83cc4921f9f715738cd33c704db
 WHIRLPOOL 
a781c0c114f36db193db81dba3006cf28cb1aa5bfed1a4a6feaff8cf5944159e5c09397eb413e8c0b634549cddec1941bf21ea86f00b98b15757589e15a7a9c8

diff --git a/net-misc/teamviewer/teamviewer-10.0.41499-r1.ebuild 
b/net-misc/teamviewer/teamviewer-10.0.46203.ebuild
similarity index 98%
rename from net-misc/teamviewer/teamviewer-10.0.41499-r1.ebuild
rename to net-misc/teamviewer/teamviewer-10.0.46203.ebuild
index aa7d527..8ad6896 100644
--- a/net-misc/teamviewer/teamviewer-10.0.41499-r1.ebuild
+++ b/net-misc/teamviewer/teamviewer-10.0.46203.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-misc/teamviewer/teamviewer-12.0.69753.ebuild 
b/net-misc/teamviewer/teamviewer-12.0.69753.ebuild
deleted file mode 100644
index 6a093d8..
--- a/net-misc/teamviewer/teamviewer-12.0.69753.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils gnome2-utils systemd unpacker
-
-# Major version
-MV=${PV/\.*}
-MY_PN=${PN}${MV}
-DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
-HOMEPAGE="https://www.teamviewer.com;
-SRC_URI="https://download.teamviewer.com/download/version_${MV}x/${PN}_${PV}_i386.deb;
-
-IUSE="+system-wine&qu

[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-11-22 Thread Wolfram Schlich
commit: c92d7bcee12b8ddd94999ca7a8e41d1ceaf17f12
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Nov 22 11:32:11 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Nov 22 11:32:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c92d7bce

net-im/mcabber: version bump (fixes a security issue, see https://mcabber.com/ 
and CVE-2015-8688), removed older unstable versions

Package-Manager: portage-2.3.0

 net-im/mcabber/Manifest|   3 +-
 net-im/mcabber/mcabber-1.0.3.ebuild| 119 -
 .../{mcabber-1.0.2.ebuild => mcabber-1.0.4.ebuild} |   0
 3 files changed, 1 insertion(+), 121 deletions(-)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index d3557f5..1912071 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -1,3 +1,2 @@
 DIST mcabber-0.10.2_p20131025.tar.gz 399025 SHA256 
90f4e583a7ea929abcd243dc970d64db53f1f577a4a76dc55432eaa86b5ce007 SHA512 
4910acfb3d0f6341e0926bff740186d3039a47f15fd075409ecd940b6388b9bb3bf35cb88eb675e6063eaefba6f4421ca7c07e18cb307a1c7b3206c077feeeb1
 WHIRLPOOL 
12b9ea8d5dd2e70afeeaab18f8361bd57a5c9850bfc70e953800efe5319d632881163c48d904efc07aadb9cb1a33c09d9b034537e4fe3102793da084bd246e97
-DIST mcabber-1.0.2.tar.bz2 604995 SHA256 
e7143891ea6c6ec2f3008c25c13506121d83d15aa83640827aea3b66a8761fde SHA512 
e7d8f54f0f5cbcd685d6ada49c29fbc3af3315d5727a7a6babcc0aae49880f0cc1df48a1ceec78caeb17822c26f8c00aae23df2565336d92c4e388c8cebb4263
 WHIRLPOOL 
8903b6e77f645202357f00868733633abed220f05260d29e30bc0396abf64f94fe0c69c84cae7f9c6c6ebfbe3d64f4d4be970dfe51593c84ca582fccfb4d7c2a
-DIST mcabber-1.0.3.tar.bz2 605245 SHA256 
44e6bb0aa0c399261fc212c386a3c2540db133e7593592247ee1621df659139a SHA512 
678129259d27fe57d78289d340d5f6e074a1b7bac0bd0d97a6c41fa05182fa50a150e747e2e45c8d97e6b1f5fb8c14f146b9d13a08bafb3459184f36301cc71a
 WHIRLPOOL 
cf830f3f85e2a0448dc28a7fe4e6f5f695552707ae923581866a2dd883741a69d1c7120639670b21c00c9fb956a3ff2d8ecad032cb2cc71760c6f98bc0464e8a
+DIST mcabber-1.0.4.tar.bz2 605462 SHA256 
63b6bc003fcceba4dc4b273ed1c71643c4f8d95e8696543d53f64a7672b1ce0a SHA512 
f4f85abcdfa341489e47ba5290e9cce79cdd749753155003e3a9b5edd145e158c91d0a32fe07983196be5729134279f21fbe94511a41b98b793b415157b6b15b
 WHIRLPOOL 
09f7d6e53e352a0e7087da0ddb1a9f5a717c447c2e7a3d9d3e1b14409e8dd4e95472a60af743a0fbb64d4ee296b8eb6654cfb3ce6030ea8abd95ba863eacb7f1

diff --git a/net-im/mcabber/mcabber-1.0.3.ebuild 
b/net-im/mcabber/mcabber-1.0.3.ebuild
deleted file mode 100644
index 3fc2a58..
--- a/net-im/mcabber/mcabber-1.0.3.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit flag-o-matic autotools-utils
-
-DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
-HOMEPAGE="http://mcabber.com/;
-#REV="a18e1b488f1c"
-#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
-SRC_URI="http://mcabber.com/files/${P}.tar.bz2;
-
-#S=${WORKDIR}/${PN}-${REV}/${PN}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-
-IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
-
-LANGS="cs de fr it nl pl ru uk"
-# localized help versions are installed only, when LINGUAS var is set
-for i in ${LANGS}; do
-   IUSE="${IUSE} linguas_${i}"
-done;
-
-RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
-   otr? ( >=net-libs/libotr-3.1.0 )
-   aspell? ( app-text/aspell )
-   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
-   idn? ( net-dns/libidn  )
-   spell? ( app-text/enchant )
-   dev-libs/glib:2
-   sys-libs/ncurses:0=
-   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-## autotools-utils.eclass settings
-AUTOTOOLS_AUTORECONF="1"
-AUTOTOOLS_IN_SOURCE_BUILD="1"
-DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
-PATCHES=(
-   "${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
-)
-
-pkg_setup() {
-   if use aspell && use spell; then
-   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
-   fi
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable crypt gpgme) \
-   $(use_enable otr) \
-   $(use_enable aspell) \
-   $(use_enable spell enchant) \
-   $(use_enable modules) \
-   $(use_with idn libidn)
-   )
-   autotools-utils_src_configure
-}
-
-src_install() {
-   autotools-utils_src_install
-
-   # clean unneeded language documentati

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

2016-11-02 Thread Wolfram Schlich
commit: ac1dbe19a142cc4f1240e7760618a1981b32458b
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Nov  2 17:31:50 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Nov  2 17:32:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac1dbe19

net-misc/teamviewer: major version bump (v12 is officially still beta though)

Package-Manager: portage-2.3.0

 net-misc/teamviewer/Manifest |   1 +
 net-misc/teamviewer/teamviewer-12.0.69753.ebuild | 132 +++
 2 files changed, 133 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index a5865f8..ca19165 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -2,3 +2,4 @@ DIST teamviewer-9.0.32150.deb 22898922 SHA256 
66d9a69f7e1523a2e1b41ff2e55adac01b
 DIST teamviewer_10.0.41499_i386.deb 41166700 SHA256 
0694c756b8cb5f2b09c8d6db960ced3e899d4ce43060e77ef4f1c36254dc31c4 SHA512 
afdfafb89398b29206414537c69a798574807c0f350d7ec819579167e0ffbb33c2c3754fdc17a79576b3ff7bcb729c78bda47a5387c1dc178cf85107dae71d9f
 WHIRLPOOL 
a0d1595f4133e6e875e49ed6db6777e732c79f7a283d1bcddfd489557eb3bebbbc9c41362cf3576e97513ce8345665645fa5e54ada12275e29bd8d3349752713
 DIST teamviewer_11.0.57095_i386.deb 53774306 SHA256 
a3e763912892019143517f8c40404aa23465b4d78fb382336d165d3b96f1b83d SHA512 
d218cc5a7ea516b7df326d60726405fa1db5c313a74b14594ea8309bd5f06cc611d2391a750405ae8a39b419747bc6974d6b5f4ca54015fce869566d937cecdd
 WHIRLPOOL 
175259ecce24b576c7cac9d55d5ce8aeede00edfcc92953fd0ff75642aab1d4769cadbb7683ab4f3346afeb591caf679fbaab6cc8c629f7867438e483d40d89f
 DIST teamviewer_11.0.67687_i386.deb 47341822 SHA256 
b74542910ac574803905658787174b6a60055c6473d3c4e398da36d0dedaf416 SHA512 
3fbb0a2fc1bccd41ba9798305fada7e8266e1c9ed8509492ccb75e6f85995538ddc05ad72648e9f6c31cd5f17ad34f1ed3a300eeb38a4a703d3414c113d3e5a9
 WHIRLPOOL 
2a6b1c04f67933a43ac2493a12c21b8a9eae95150b10d9e713e01efed98c397f44fdd77012407da2dffb8bf0b804374a60cce9d2646ff3c117041d13366be628
+DIST teamviewer_12.0.69753_i386.deb 46499056 SHA256 
6110e5ba521f7ffb429d7d0bf5f03dad7a18994dc6b62a6901353f1da7dbc744 SHA512 
b6cc5e55780fc45713387a6b4b68937660a0833f51bbd7c76941d6fa0a3c3156f58b00477bc3d4d5bb3e7559447a4165ee823098a33c24ce42cd8fe40d219364
 WHIRLPOOL 
117928d325b6bcc97c3119a0b5cecd1b276de70d2bf51f973f426a7d30c47b612c1cd68e78f19e12730a630f506bce53de44960887e6293941893c85b03685da

diff --git a/net-misc/teamviewer/teamviewer-12.0.69753.ebuild 
b/net-misc/teamviewer/teamviewer-12.0.69753.ebuild
new file mode 100644
index ..6a093d8
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-12.0.69753.ebuild
@@ -0,0 +1,132 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils gnome2-utils systemd unpacker
+
+# Major version
+MV=${PV/\.*}
+MY_PN=${PN}${MV}
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="https://download.teamviewer.com/download/version_${MV}x/${PN}_${PV}_i386.deb;
+
+IUSE="+system-wine"
+
+LICENSE="TeamViewer LGPL-2.1" #LGPL for bundled wine
+SLOT=${MV}
+KEYWORDS="-* ~amd64 ~x86"
+
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   system-wine? ( app-emulation/wine[abi_x86_32(-),png] )
+   !system-wine? ( media-libs/libpng:1.2[abi_x86_32(-)] )
+   sys-apps/dbus[abi_x86_32(-)]
+   dev-qt/qtcore:4[abi_x86_32(-)]
+   dev-qt/qtgui:4[abi_x86_32(-)]
+   dev-qt/qtwebkit:4[abi_x86_32(-)]
+   media-libs/alsa-lib[abi_x86_32(-)]
+   x11-libs/libICE[abi_x86_32(-)]
+   x11-libs/libSM[abi_x86_32(-)]
+   x11-libs/libX11[abi_x86_32(-)]
+   x11-libs/libXau[abi_x86_32(-)]
+   x11-libs/libXdamage[abi_x86_32(-)]
+   x11-libs/libXdmcp[abi_x86_32(-)]
+   x11-libs/libXext[abi_x86_32(-)]
+   x11-libs/libXfixes[abi_x86_32(-)]
+   x11-libs/libXrandr[abi_x86_32(-)]
+   x11-libs/libXtst[abi_x86_32(-)]"
+
+QA_PREBUILT="opt/teamviewer${MV}/*"
+
+S=${WORKDIR}/opt/teamviewer/tv_bin
+
+src_prepare() {
+   #epatch "${FILESDIR}/${P}-gentoo.patch"
+   sed \
+   -e "s/@TVV@/${MV}/g" \
+   "${FILESDIR}"/${PN}d.init > "${T}"/init || die
+   sed \
+   -e "s:/opt/teamviewer:/opt/teamviewer${MV}:g" \
+   "script//${PN}d.service" > "${T}/${PN}d.service" || die
+   sed \
+   -e "s/@TVV@/${PV}/g" \
+   -e "s/@TVMV@/${MV}/g" \
+   "${FILESDIR}"/${PN}.sh > "${T}"/sh || die
+   if ! use system-wine; then
+   sed -i "s/native=true/native=false/g" "${T}/sh" || die
+   fi
+}
+
+src_install () {
+   local destdir="/opt/${MY_PN}"
+
+   

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

2016-10-21 Thread Wolfram Schlich
commit: 6fd0dde0f20b5720944dbd9f1799d28367d7f253
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Oct 21 09:45:44 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Oct 21 09:45:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fd0dde0

net-misc/teamviewer: version bump

Package-Manager: portage-2.3.0

 net-misc/teamviewer/Manifest |   1 +
 net-misc/teamviewer/teamviewer-11.0.67687.ebuild | 132 +++
 2 files changed, 133 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index 385ee9a..a5865f8 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,3 +1,4 @@
 DIST teamviewer-9.0.32150.deb 22898922 SHA256 
66d9a69f7e1523a2e1b41ff2e55adac01b2dae9b8bdfabf9db6080fc21d24451 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 WHIRLPOOL 
fa48ff99a5df29072b1073f35e3f27aeba87b2b846813dca612212344a5b8e35f7f1e221e1fb4f7a12464fce4a185b8dad6dd8f48432e4c48ecd61d9cc6b7960
 DIST teamviewer_10.0.41499_i386.deb 41166700 SHA256 
0694c756b8cb5f2b09c8d6db960ced3e899d4ce43060e77ef4f1c36254dc31c4 SHA512 
afdfafb89398b29206414537c69a798574807c0f350d7ec819579167e0ffbb33c2c3754fdc17a79576b3ff7bcb729c78bda47a5387c1dc178cf85107dae71d9f
 WHIRLPOOL 
a0d1595f4133e6e875e49ed6db6777e732c79f7a283d1bcddfd489557eb3bebbbc9c41362cf3576e97513ce8345665645fa5e54ada12275e29bd8d3349752713
 DIST teamviewer_11.0.57095_i386.deb 53774306 SHA256 
a3e763912892019143517f8c40404aa23465b4d78fb382336d165d3b96f1b83d SHA512 
d218cc5a7ea516b7df326d60726405fa1db5c313a74b14594ea8309bd5f06cc611d2391a750405ae8a39b419747bc6974d6b5f4ca54015fce869566d937cecdd
 WHIRLPOOL 
175259ecce24b576c7cac9d55d5ce8aeede00edfcc92953fd0ff75642aab1d4769cadbb7683ab4f3346afeb591caf679fbaab6cc8c629f7867438e483d40d89f
+DIST teamviewer_11.0.67687_i386.deb 47341822 SHA256 
b74542910ac574803905658787174b6a60055c6473d3c4e398da36d0dedaf416 SHA512 
3fbb0a2fc1bccd41ba9798305fada7e8266e1c9ed8509492ccb75e6f85995538ddc05ad72648e9f6c31cd5f17ad34f1ed3a300eeb38a4a703d3414c113d3e5a9
 WHIRLPOOL 
2a6b1c04f67933a43ac2493a12c21b8a9eae95150b10d9e713e01efed98c397f44fdd77012407da2dffb8bf0b804374a60cce9d2646ff3c117041d13366be628

diff --git a/net-misc/teamviewer/teamviewer-11.0.67687.ebuild 
b/net-misc/teamviewer/teamviewer-11.0.67687.ebuild
new file mode 100644
index ..6a093d8
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-11.0.67687.ebuild
@@ -0,0 +1,132 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils gnome2-utils systemd unpacker
+
+# Major version
+MV=${PV/\.*}
+MY_PN=${PN}${MV}
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="https://download.teamviewer.com/download/version_${MV}x/${PN}_${PV}_i386.deb;
+
+IUSE="+system-wine"
+
+LICENSE="TeamViewer LGPL-2.1" #LGPL for bundled wine
+SLOT=${MV}
+KEYWORDS="-* ~amd64 ~x86"
+
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   system-wine? ( app-emulation/wine[abi_x86_32(-),png] )
+   !system-wine? ( media-libs/libpng:1.2[abi_x86_32(-)] )
+   sys-apps/dbus[abi_x86_32(-)]
+   dev-qt/qtcore:4[abi_x86_32(-)]
+   dev-qt/qtgui:4[abi_x86_32(-)]
+   dev-qt/qtwebkit:4[abi_x86_32(-)]
+   media-libs/alsa-lib[abi_x86_32(-)]
+   x11-libs/libICE[abi_x86_32(-)]
+   x11-libs/libSM[abi_x86_32(-)]
+   x11-libs/libX11[abi_x86_32(-)]
+   x11-libs/libXau[abi_x86_32(-)]
+   x11-libs/libXdamage[abi_x86_32(-)]
+   x11-libs/libXdmcp[abi_x86_32(-)]
+   x11-libs/libXext[abi_x86_32(-)]
+   x11-libs/libXfixes[abi_x86_32(-)]
+   x11-libs/libXrandr[abi_x86_32(-)]
+   x11-libs/libXtst[abi_x86_32(-)]"
+
+QA_PREBUILT="opt/teamviewer${MV}/*"
+
+S=${WORKDIR}/opt/teamviewer/tv_bin
+
+src_prepare() {
+   #epatch "${FILESDIR}/${P}-gentoo.patch"
+   sed \
+   -e "s/@TVV@/${MV}/g" \
+   "${FILESDIR}"/${PN}d.init > "${T}"/init || die
+   sed \
+   -e "s:/opt/teamviewer:/opt/teamviewer${MV}:g" \
+   "script//${PN}d.service" > "${T}/${PN}d.service" || die
+   sed \
+   -e "s/@TVV@/${PV}/g" \
+   -e "s/@TVMV@/${MV}/g" \
+   "${FILESDIR}"/${PN}.sh > "${T}"/sh || die
+   if ! use system-wine; then
+   sed -i "s/native=true/native=false/g" "${T}/sh" || die
+   fi
+}
+
+src_install () {
+   local destdir="/opt/${MY_PN}"
+
+   # install wine prefix skeleton and reg keys
+   insinto "${destdir}/wine/drive_c/"
+   doins -r w

[gentoo-commits] repo/gentoo:master commit in: net-im/skypeforlinux/

2016-09-23 Thread Wolfram Schlich
commit: 911d96416a9fbde6e6324f1dfe9c7afa69d11304
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Sep 23 15:02:40 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Sep 23 15:02:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=911d9641

net-im/skypeforlinux: addes missing RDEPEND on gnome-base/libgnome-keyring

Reported-by: Jason A. Donenfeld  gentoo.org>

Package-Manager: portage-2.2.28

 .../{skypeforlinux-1.8.0.2.ebuild => skypeforlinux-1.8.0.2-r1.ebuild}| 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-im/skypeforlinux/skypeforlinux-1.8.0.2.ebuild 
b/net-im/skypeforlinux/skypeforlinux-1.8.0.2-r1.ebuild
similarity index 99%
rename from net-im/skypeforlinux/skypeforlinux-1.8.0.2.ebuild
rename to net-im/skypeforlinux/skypeforlinux-1.8.0.2-r1.ebuild
index 7de6fcc..4fbe60a 100644
--- a/net-im/skypeforlinux/skypeforlinux-1.8.0.2.ebuild
+++ b/net-im/skypeforlinux/skypeforlinux-1.8.0.2-r1.ebuild
@@ -29,6 +29,7 @@ RDEPEND="virtual/ttf-fonts
dev-libs/nspr
dev-libs/nss
gnome-base/gconf:2
+   gnome-base/libgnome-keyring
media-libs/alsa-lib
media-libs/fontconfig:1.0
media-libs/freetype:2



[gentoo-commits] repo/gentoo:master commit in: net-im/skype/

2016-09-23 Thread Wolfram Schlich
commit: 15a0ff88aa32c722537941ac06a6d88b55c635da
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Sep 23 12:17:16 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Sep 23 12:17:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15a0ff88

net-im/skype: removed 1.7.0.1 alpha ebuild as the new alpha package now lives 
at net-im/skypeforlinux

Package-Manager: portage-2.2.28

 net-im/skype/Manifest |   1 -
 net-im/skype/skype-1.7.0.1.ebuild | 106 --
 2 files changed, 107 deletions(-)

diff --git a/net-im/skype/Manifest b/net-im/skype/Manifest
index 2784dc4..0a7499b 100644
--- a/net-im/skype/Manifest
+++ b/net-im/skype/Manifest
@@ -1,2 +1 @@
 DIST skype-4.3.0.37.tar.bz2 19310701 SHA256 
8c99dc3978a588fb13303df7c8134379fb55b8dd460efefbc79ae594269b892d SHA512 
935d0c06c031a90414f9b20c9a782c59deee36abff781c08f1dfd62194763dc9674bb85d478ae916b1bf440b123291d64380bc28295e9ecdd6522d17b434b7a5
 WHIRLPOOL 
1e5a84b04d7eb9bbf3bae9ae6e69bb41587a1cef7f5ff19af0363343fd7fc949d5202959efaf93b0ed9ccb939b8b2ad4d61fc9626fffbdc2a8d898f9fa29b300
-DIST skypeforlinux_1.7.0.1-1.x86_64.rpm 58391020 SHA256 
db74489b0e96f5a590ab20567ec69178e9bed1c4d89963569f751814096da66b SHA512 
7bbb9c13213aac000d39cc27856ddbae173a9bad373c2051a72872f7e33b938cc9d9f673e2f0f9e734b2e396b4717ea5b5d65d18afa2f080c21291d1585f6044
 WHIRLPOOL 
f33bd8e016f0da37d6eea8d530b55b979677fbf794d331246a75385b27c6bdcf0769ed8beda0a22313bb55b6eac30948a480f0aa8b12d98d73567a9f4e9a94d2

diff --git a/net-im/skype/skype-1.7.0.1.ebuild 
b/net-im/skype/skype-1.7.0.1.ebuild
deleted file mode 100644
index a650d3c..
--- a/net-im/skype/skype-1.7.0.1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-#inherit eutils rpm pax-utils
-inherit eutils rpm
-
-DESCRIPTION="P2P Internet Telephony (VoiceIP) client"
-HOMEPAGE="http://www.skype.com/;
-SRC_URI="https://repo.skype.com/rpm/stable/skypeforlinux_${PV}-1.x86_64.rpm;
-
-LICENSE="Skype-TOS no-source-code"
-SLOT="1"
-KEYWORDS="~amd64 ~x86"
-#IUSE="pax_kernel selinux"
-IUSE=""
-
-S="${WORKDIR}"
-QA_PREBUILT=opt/skypeforlinux/skypeforlinux
-RESTRICT="mirror bindist strip" #299368
-
-RDEPEND="
-   !${CATEGORY}/${PN}:0
-   virtual/ttf-fonts
-   gnome-base/libgnome-keyring
-   gnome-base/gnome-keyring
-   gnome-base/gconf"
-#  selinux? ( sec-policy/selinux-skype )"
-
-src_unpack () {
-   rpm_src_unpack ${A}
-}
-
-src_prepare() {
-   sed -e 
"s!^SKYPE_PATH=.*!SKYPE_PATH=${EROOT}opt/skypeforlinux/skypeforlinux!" \
-   -i usr/bin/skypeforlinux
-   sed -e "s!^Exec=.*!Exec=${EROOT}opt/bin/skypeforlinux!" \
-   -e 
"s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \
-   -i usr/share/applications/skypeforlinux.desktop
-}
-
-src_install() {
-
-   insinto /opt/skypeforlinux/locales
-   doins usr/share/skypeforlinux/locales/*.pak
-
-   insinto 
/opt/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release
-   doins 
usr/share/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release/keytar.node
-
-   insinto /opt/skypeforlinux/resources
-   doins usr/share/skypeforlinux/resources/*.asar
-
-   insinto /opt/skypeforlinux
-   doins usr/share/skypeforlinux/*.pak
-   doins usr/share/skypeforlinux/*.bin
-   doins usr/share/skypeforlinux/*.dat
-   doins usr/share/skypeforlinux/version
-   exeinto /opt/skypeforlinux
-   doexe usr/share/skypeforlinux/*.so
-   doexe usr/share/skypeforlinux/skypeforlinux
-
-   into /opt
-   dobin usr/bin/skypeforlinux
-   fowners root:audio /opt/bin/skypeforlinux 
/opt/skypeforlinux/skypeforlinux
-
-#  insinto /etc/dbus-1/system.d
-#  doins ${PN}.conf
-
-   dodoc usr/share/doc/skypeforlinux/* usr/share/skypeforlinux/*.html
-   dodoc usr/share/skypeforlinux/*.txt usr/share/skypeforlinux/LICENSE
-
-   # create compat symlink
-   dosym ${P} /usr/share/doc/skypeforlinux
-
-   doicon usr/share/pixmaps/skypeforlinux.png
-
-   local res
-   for res in 16 32 256 512; do
-   newicon -s ${res} 
usr/share/icons/hicolor/${res}x${res}/apps/skypeforlinux.png skypeforlinux.png
-   done
-
-   domenu usr/share/applications/skypeforlinux.desktop
-
-#  if use pax_kernel; then
-#  if use apulse; then
-#  pax-mark Cm "${ED}"/opt/bin/${PN}-bin || die
-#  else
-#  pax-mark Cm "${ED}"/opt/bin/${PN} || die
-#  fi
-#  eqawarn "You have set USE=pax_kernel meaning that you intend to 
run"
-#  eqawarn "${PN} un

[gentoo-commits] repo/gentoo:master commit in: net-im/skypeforlinux/

2016-09-23 Thread Wolfram Schlich
commit: 3b8777958b6d3d186986205015e5cdb7be81fb45
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Sep 23 12:09:04 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Sep 23 12:09:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b877795

net-im/skypeforlinux: new package for Skype for Linux Alpha (bug #588814)

Acked-by: Raymond Jennings  gmail.com>

Package-Manager: portage-2.2.28

 net-im/skypeforlinux/Manifest |   1 +
 net-im/skypeforlinux/metadata.xml |  14 +++
 net-im/skypeforlinux/skypeforlinux-1.8.0.2.ebuild | 130 ++
 3 files changed, 145 insertions(+)

diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest
new file mode 100644
index ..bc70ca3
--- /dev/null
+++ b/net-im/skypeforlinux/Manifest
@@ -0,0 +1 @@
+DIST skypeforlinux_1.8.0.2-1.x86_64.rpm 58432819 SHA256 
6e26fceb77ae98b825630150e087d777beb09c8914adcf59afbb6721e0f826c0 SHA512 
84023de783b7bb7c69e8c4f79e44fe882a18efb322627a7b99a486d57d702685cacbbd6febc132625858b5e4a3cf2514608feaccf15e2e6bcb3edb020f6be9f8
 WHIRLPOOL 
459d06f06ff5c8bd7db398efe26569e1b4c098a4ef461a8b329eb81ffe6b8236ca63c3de2b10f83eba62db177629be6d8d5be5d833fc196e9fca33d89a23b784

diff --git a/net-im/skypeforlinux/metadata.xml 
b/net-im/skypeforlinux/metadata.xml
new file mode 100644
index ..5240e10
--- /dev/null
+++ b/net-im/skypeforlinux/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   shent...@gmail.com
+   Raymond Jennings
+   Proxy maintainer. Assign bugs to him
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   Skype is for doing things together, whenever you’re 
apart. Skype’s text, voice and video make it simple to share experiences with 
the people that matter to you, wherever they are.
+

diff --git a/net-im/skypeforlinux/skypeforlinux-1.8.0.2.ebuild 
b/net-im/skypeforlinux/skypeforlinux-1.8.0.2.ebuild
new file mode 100644
index ..7de6fcc
--- /dev/null
+++ b/net-im/skypeforlinux/skypeforlinux-1.8.0.2.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+#inherit eutils rpm pax-utils
+inherit eutils rpm
+
+DESCRIPTION="P2P Internet Telephony (VoiceIP) client"
+HOMEPAGE="http://www.skype.com/;
+SRC_URI="https://repo.skype.com/rpm/stable/skypeforlinux_${PV}-1.x86_64.rpm;
+
+LICENSE="Skype-TOS no-source-code"
+SLOT="0"
+KEYWORDS="~amd64"
+#IUSE="pax_kernel selinux"
+IUSE=""
+
+S="${WORKDIR}"
+QA_PREBUILT=opt/skypeforlinux/skypeforlinux
+RESTRICT="mirror bindist strip" #299368
+
+RDEPEND="virtual/ttf-fonts
+   !net-im/skype:1
+   dev-libs/atk
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig:1.0
+   media-libs/freetype:2
+   net-print/cups
+   sys-apps/dbus
+   sys-devel/gcc
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXScrnSaver
+   x11-libs/libXtst
+   x11-libs/pango"
+#  selinux? ( sec-policy/selinux-skype )"
+
+src_unpack () {
+   rpm_src_unpack ${A}
+}
+
+src_prepare() {
+   sed -e 
"s!^SKYPE_PATH=.*!SKYPE_PATH=${EROOT}opt/skypeforlinux/skypeforlinux!" \
+   -i usr/bin/skypeforlinux
+   sed -e "s!^Exec=.*!Exec=${EROOT}opt/bin/skypeforlinux!" \
+   -e 
"s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \
+   -i usr/share/applications/skypeforlinux.desktop
+   eapply_user
+}
+
+src_install() {
+   insinto /opt/skypeforlinux/locales
+   doins usr/share/skypeforlinux/locales/*.pak
+
+   insinto 
/opt/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release
+   doins 
usr/share/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release/keytar.node
+
+   insinto /opt/skypeforlinux/resources
+   doins usr/share/skypeforlinux/resources/*.asar
+
+   insinto /opt/skypeforlinux
+   doins usr/share/skypeforlinux/*.pak
+   doins usr/share/skypeforlinux/*.bin
+   doins usr/share/skypeforlinux/*.dat
+   doins usr/share/skypeforlinux/version
+   exeinto /opt/skypeforlinux
+   doexe usr/share/skypeforlinux/*.so
+   doexe usr/share/skypeforlinux/skypeforlinux
+
+   into /opt
+   dobin usr/bin/skypeforlinux
+   fowners 

[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-09-19 Thread Wolfram Schlich
commit: 15763fb283fc159ed9818ad6633318d2531ee094
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Sep 19 16:09:18 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Sep 19 16:09:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15763fb2

net-im/mcabber: remove old versions

Package-Manager: portage-2.2.28

 net-im/mcabber/Manifest   |   3 -
 net-im/mcabber/mcabber-0.10.2_p20131025-r1.ebuild | 118 -
 net-im/mcabber/mcabber-0.10.3.ebuild  | 119 --
 net-im/mcabber/mcabber-1.0.0.ebuild   | 119 --
 net-im/mcabber/mcabber-1.0.1.ebuild   | 119 --
 5 files changed, 478 deletions(-)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index a1a4df4..d3557f5 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -1,6 +1,3 @@
 DIST mcabber-0.10.2_p20131025.tar.gz 399025 SHA256 
90f4e583a7ea929abcd243dc970d64db53f1f577a4a76dc55432eaa86b5ce007 SHA512 
4910acfb3d0f6341e0926bff740186d3039a47f15fd075409ecd940b6388b9bb3bf35cb88eb675e6063eaefba6f4421ca7c07e18cb307a1c7b3206c077feeeb1
 WHIRLPOOL 
12b9ea8d5dd2e70afeeaab18f8361bd57a5c9850bfc70e953800efe5319d632881163c48d904efc07aadb9cb1a33c09d9b034537e4fe3102793da084bd246e97
-DIST mcabber-0.10.3.tar.bz2 612153 SHA256 
77466138496cc26db125145cc28dc4fc0df79827143b922dfb9f02eb0dc7fa6d SHA512 
3f4c83dbe99f1e1981a89d2a9cdfbaf96b265aaabe133e41d562491557e0acc2d780ae88aa3e45eca9088318ef7d7b284f1df445d2b5afb139d5a247e111bc10
 WHIRLPOOL 
7139d7b44837026276b269f5d911486bc898ef4c72d0cec2ada066636f284c00205b207241024d4311a82f7eb6a83590dbf402167dec4441e477f6166a7595b5
-DIST mcabber-1.0.0.tar.bz2 602173 SHA256 
5476bcba395e0b9527823f5a9bce725151756f685ce2dcf6fad3dbe50a157032 SHA512 
bad8af15ed984ac0a568ea497464a3fa9b3ba3dea51cdd4042361be10783bba3578859ced532cd2c1cf19588fc42bdd561486b9fce6ed2da86a509e29c26c497
 WHIRLPOOL 
f9eba52f2686f0571947e006ce825378be7f00db8192988e5a071a86160c48b113609fe4f539d61191378348333763c24e013f5bc69863f4b41a54264313e3f8
-DIST mcabber-1.0.1.tar.bz2 604661 SHA256 
579a45a2bc944455012ca9b308f7f3454efabbe0c36c6723af761aa1f3092d93 SHA512 
23b268fb0c4e5ce0f28333d2b35fa8b6ead819359c0e2a633158bdcb637040c23deb2ca54d7d1a98a8a8fa37323bfe078371e790b5809af76fe9b940529f728c
 WHIRLPOOL 
9e5a2478a5bc7c8d35526bb81178842e04a5367b23cd7ec8dfa303069a6ad75ae74411977b9f354d3758c80a6ed578a4caf4c21cdb5322feece818d50e053a6b
 DIST mcabber-1.0.2.tar.bz2 604995 SHA256 
e7143891ea6c6ec2f3008c25c13506121d83d15aa83640827aea3b66a8761fde SHA512 
e7d8f54f0f5cbcd685d6ada49c29fbc3af3315d5727a7a6babcc0aae49880f0cc1df48a1ceec78caeb17822c26f8c00aae23df2565336d92c4e388c8cebb4263
 WHIRLPOOL 
8903b6e77f645202357f00868733633abed220f05260d29e30bc0396abf64f94fe0c69c84cae7f9c6c6ebfbe3d64f4d4be970dfe51593c84ca582fccfb4d7c2a
 DIST mcabber-1.0.3.tar.bz2 605245 SHA256 
44e6bb0aa0c399261fc212c386a3c2540db133e7593592247ee1621df659139a SHA512 
678129259d27fe57d78289d340d5f6e074a1b7bac0bd0d97a6c41fa05182fa50a150e747e2e45c8d97e6b1f5fb8c14f146b9d13a08bafb3459184f36301cc71a
 WHIRLPOOL 
cf830f3f85e2a0448dc28a7fe4e6f5f695552707ae923581866a2dd883741a69d1c7120639670b21c00c9fb956a3ff2d8ecad032cb2cc71760c6f98bc0464e8a

diff --git a/net-im/mcabber/mcabber-0.10.2_p20131025-r1.ebuild 
b/net-im/mcabber/mcabber-0.10.2_p20131025-r1.ebuild
deleted file mode 100644
index d35f969..
--- a/net-im/mcabber/mcabber-0.10.2_p20131025-r1.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit flag-o-matic autotools-utils
-
-DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
-HOMEPAGE="http://mcabber.com/;
-REV="a18e1b488f1c"
-SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
-
-S=${WORKDIR}/${PN}-${REV}/${PN}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-
-IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
-
-LANGS="cs de fr it nl pl ru uk"
-# localized help versions are installed only, when LINGUAS var is set
-for i in ${LANGS}; do
-   IUSE="${IUSE} linguas_${i}"
-done;
-
-RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
-   otr? ( >=net-libs/libotr-3.1.0 )
-   aspell? ( app-text/aspell )
-   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
-   idn? ( net-dns/libidn  )
-   spell? ( app-text/enchant )
-   dev-libs/glib:2
-   sys-libs/ncurses
-   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-## autotools-utils.eclass settings
-AUTOTOOLS_AUTORECONF="1"
-AUTOTOOLS_IN_SOURCE_BUILD="1"
-D

[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-09-19 Thread Wolfram Schlich
commit: 8662267247e18c139d022b8f678a8c9278493cf9
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Sep 19 16:04:41 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Sep 19 16:05:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86622672

net-im/mcabber: version bump (fixes building against sys-libs/ncurses with 
USE=tinfo)

Package-Manager: portage-2.2.28

 net-im/mcabber/Manifest |   1 +
 net-im/mcabber/mcabber-1.0.3.ebuild | 119 
 2 files changed, 120 insertions(+)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index e326bca..a1a4df4 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -3,3 +3,4 @@ DIST mcabber-0.10.3.tar.bz2 612153 SHA256 
77466138496cc26db125145cc28dc4fc0df798
 DIST mcabber-1.0.0.tar.bz2 602173 SHA256 
5476bcba395e0b9527823f5a9bce725151756f685ce2dcf6fad3dbe50a157032 SHA512 
bad8af15ed984ac0a568ea497464a3fa9b3ba3dea51cdd4042361be10783bba3578859ced532cd2c1cf19588fc42bdd561486b9fce6ed2da86a509e29c26c497
 WHIRLPOOL 
f9eba52f2686f0571947e006ce825378be7f00db8192988e5a071a86160c48b113609fe4f539d61191378348333763c24e013f5bc69863f4b41a54264313e3f8
 DIST mcabber-1.0.1.tar.bz2 604661 SHA256 
579a45a2bc944455012ca9b308f7f3454efabbe0c36c6723af761aa1f3092d93 SHA512 
23b268fb0c4e5ce0f28333d2b35fa8b6ead819359c0e2a633158bdcb637040c23deb2ca54d7d1a98a8a8fa37323bfe078371e790b5809af76fe9b940529f728c
 WHIRLPOOL 
9e5a2478a5bc7c8d35526bb81178842e04a5367b23cd7ec8dfa303069a6ad75ae74411977b9f354d3758c80a6ed578a4caf4c21cdb5322feece818d50e053a6b
 DIST mcabber-1.0.2.tar.bz2 604995 SHA256 
e7143891ea6c6ec2f3008c25c13506121d83d15aa83640827aea3b66a8761fde SHA512 
e7d8f54f0f5cbcd685d6ada49c29fbc3af3315d5727a7a6babcc0aae49880f0cc1df48a1ceec78caeb17822c26f8c00aae23df2565336d92c4e388c8cebb4263
 WHIRLPOOL 
8903b6e77f645202357f00868733633abed220f05260d29e30bc0396abf64f94fe0c69c84cae7f9c6c6ebfbe3d64f4d4be970dfe51593c84ca582fccfb4d7c2a
+DIST mcabber-1.0.3.tar.bz2 605245 SHA256 
44e6bb0aa0c399261fc212c386a3c2540db133e7593592247ee1621df659139a SHA512 
678129259d27fe57d78289d340d5f6e074a1b7bac0bd0d97a6c41fa05182fa50a150e747e2e45c8d97e6b1f5fb8c14f146b9d13a08bafb3459184f36301cc71a
 WHIRLPOOL 
cf830f3f85e2a0448dc28a7fe4e6f5f695552707ae923581866a2dd883741a69d1c7120639670b21c00c9fb956a3ff2d8ecad032cb2cc71760c6f98bc0464e8a

diff --git a/net-im/mcabber/mcabber-1.0.3.ebuild 
b/net-im/mcabber/mcabber-1.0.3.ebuild
new file mode 100644
index ..3fc2a58
--- /dev/null
+++ b/net-im/mcabber/mcabber-1.0.3.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic autotools-utils
+
+DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
+HOMEPAGE="http://mcabber.com/;
+#REV="a18e1b488f1c"
+#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="http://mcabber.com/files/${P}.tar.bz2;
+
+#S=${WORKDIR}/${PN}-${REV}/${PN}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
+
+LANGS="cs de fr it nl pl ru uk"
+# localized help versions are installed only, when LINGUAS var is set
+for i in ${LANGS}; do
+   IUSE="${IUSE} linguas_${i}"
+done;
+
+RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+   otr? ( >=net-libs/libotr-3.1.0 )
+   aspell? ( app-text/aspell )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
+   idn? ( net-dns/libidn  )
+   spell? ( app-text/enchant )
+   dev-libs/glib:2
+   sys-libs/ncurses:0=
+   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF="1"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
+PATCHES=(
+   "${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
+)
+
+pkg_setup() {
+   if use aspell && use spell; then
+   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable crypt gpgme) \
+   $(use_enable otr) \
+   $(use_enable aspell) \
+   $(use_enable spell enchant) \
+   $(use_enable modules) \
+   $(use_with idn libidn)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   # clean unneeded language documentation
+   for i in ${LANGS}; do
+   use linguas_${i} || 

[gentoo-commits] repo/gentoo:master commit in: net-im/skype/

2016-09-12 Thread Wolfram Schlich
commit: 77cb077694fb12cc462add23650b1274bc24e242
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Sep 12 07:35:08 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Sep 12 07:35:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77cb0776

net-im/skype: added Raymond Jennings  gmail.com> as a proxy 
maintainer, updated longdescription.

Package-Manager: portage-2.2.28

 net-im/skype/metadata.xml | 24 ++--
 1 file changed, 14 insertions(+), 10 deletions(-)

diff --git a/net-im/skype/metadata.xml b/net-im/skype/metadata.xml
index ace099c..6a054bc 100644
--- a/net-im/skype/metadata.xml
+++ b/net-im/skype/metadata.xml
@@ -1,14 +1,18 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-  Skype is the next phenomenon from the people who
-   brought you KaZaA. Just like KaZaA, Skype uses P2P (peer-to-peer)
-   technology to connect you to other users  not to share files this
-   time, but to talk and chat with your friends.
-   
-  
-Use media-sound/apulse for PulseAudio 
emulation
-Triggers a paxmarking of the main skype 
binary
-  
+   
+   shent...@gmail.com
+   Raymond Jennings
+   Proxy maintainer. Assign bugs to him
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   Use media-sound/apulse for 
PulseAudio emulation
+   Triggers a paxmarking of the main skype 
binary
+   
+   Skype is for doing things together, whenever you’re 
apart. Skype’s text, voice and video make it simple to share experiences with 
the people that matter to you, wherever they are.
 



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

2016-09-10 Thread Wolfram Schlich
commit: b073447f376f7692c550f5c07a06987c9460775b
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Sep 10 11:24:11 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Sat Sep 10 11:24:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b073447f

media-gfx/displaycal: version bump

Package-Manager: portage-2.2.28

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.1.6.0.ebuild | 79 ++
 2 files changed, 80 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index c732731..463325f 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.1.2.0.tar.gz 9361108 SHA256 
78dbfd2be1cf7542657cc0f5ed9e16e27558206a4878ffae5ce68bd62460680d SHA512 
2c14ed0230e6bdd6f8876a5e8887498e3005941e2f68aedad2926f9b8dda642e909f9aa70205977123b1b7c1376dd3f361ad08ecc5015bfae77342ff1b848837
 WHIRLPOOL 
74f311618190974e6e9c0c5b895ab7f0dba18de06e52dcf1cca4df0373a278b4c4e170b6add51bdf550b21499ff1ecf249cae6f2eb2f3e0813c666bd0bc4f941
 DIST DisplayCAL-3.1.3.1.tar.gz 9555280 SHA256 
d48e0b12c0b4fe75e0c99eb5fd85c8651afc2c3a2e72d29ade9bb0a76e61f645 SHA512 
ef560155cf0eebf4fcd9beab699afd6f0e766901e44d6aba8f33242662aae68a5644e6e253f3bdfe2bb687b30e967190ddf746ef4467c41c9cda06c6bd9326ef
 WHIRLPOOL 
b696c68d7b25388b51c056534ca37f7e14d0f918b2471cd1e6662cfadc186eb989ad9429c3a40bc74992c9352d762c40e05add69773a834e99971ac46339f015
+DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c133f6a2549ffe51658e765a67cd02fd SHA512 
ea5d0c5028c9dcfc834c03bd50d9e4cd5f4528ac0adf1312117128f8969533f857eaab738019d561b8197ad595ca73ad085db4feb36101df1e303933e1edbd87
 WHIRLPOOL 
6a23f57e606852838b43834d81acd346be1746040d47ac5884c997d828130ddf5b2049b8684d2de42b555ab7b6b6fb4d0430544d2586ca388eb769fbecc86be6

diff --git a/media-gfx/displaycal/displaycal-3.1.6.0.ebuild 
b/media-gfx/displaycal/displaycal-3.1.6.0.ebuild
new file mode 100644
index ..0d69de9
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.1.6.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 fdo-mime eutils
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:2.8
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1"
+
+# Just in case someone renames the ebuild
+S=${WORKDIR}/${MY_P}
+
+DOCS=(
+   README.html
+)
+
+src_prepare() {
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   cd "${S}/DisplayCAL" || die "Cannot cd to source directory."
+   sed -e 's/if which(\"xdg-icon-resource\"):/if 
which(\"xdg-icon-resource-non-existant\"):/' \
+   -e 's/if which(\"xdg-desktop-menu\"):/if 
which(\"xdg-desktop-menu-non-existant\"):/' \
+   -i postinstall.py || die "sed'ing out the xdg-* setup functions 
failed"
+
+   # Remove deprecated Encoding key from .desktop file
+   cd "${S}" || die "Cannot cd to work directory."
+   for offendingFile in $(grep -r -l "Encoding=UTF-8" .); do
+   sed -e '/Encoding=UTF-8/d' -i "${offendingFile}" || \
+   die "removing deprecated Encoding key from .desktop files 
failed"
+   done
+
+   # Remove x-world Media Type
+   cd "${S}/misc" || die "Cannot cd to misc directory."
+   sed -e 's/x\-world\/x\-vrml\;//g' -i 
"displaycal-vrml-to-x3d-converter.desktop" \
+   || die "removing x-world media type failed"
+
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+   #remove udev files
+   rm -rf "${D}"/etc/udev/rules.d
+}
+
+pkg_postinst() {
+   # Run xdg-* programs the Gentoo way since we removed this
+   # functionality from the original package
+   fdo-mime_mime_database_update
+   fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   # Run xdg-* programs the Gentoo way since we removed this
+   # functionality from the original package
+   fdo-mime_mime_database_update
+   fdo-mime_desktop_database_update
+}



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

2016-09-09 Thread Wolfram Schlich
commit: b55d44770ad5f3777af736cbd459ae4a7b255ae5
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Sep  9 13:01:50 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Sep  9 13:02:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b55d4477

add new Skype TOS

 licenses/Skype-TOS | 1455 
 1 file changed, 1455 insertions(+)

diff --git a/licenses/Skype-TOS b/licenses/Skype-TOS
new file mode 100644
index ..619c859
--- /dev/null
+++ b/licenses/Skype-TOS
@@ -0,0 +1,1455 @@
+Retrieved from https://www.skype.com/en/legal/ios/tos/ (2016-09-09)
+
+Table of contents:
+
+1. Your agreement with Skype
+2. Acceptance of the Terms
+3. Changes to the Terms
+4. Licence
+5. Use of the software and products and Skype websites
+6. Your obligations
+7. Proprietary rights
+8. Charges
+9. Payment
+   10. Refund Policy
+   11. Ending Your relationship with Skype
+   12. Exclusion of warranties, limitation of liability and indemnity
+   13. Third party websites products and services
+   14. Additional Terms
+   15. Your confidential information and your privacy
+   16. For Government users only
+   17. How to contact Skype
+   18. Miscellaneous
+   19. Product specific terms
+   20. Pay by mobile
+
+PLEASE READ CAREFULLY BEFORE DOWNLOADING THE SOFTWARE OR USING THE PRODUCT(S)
+OR SKYPE WEBSITES
+
+Key Points
+
+   It is important that you read the entirety of and understand this
+   document. There are, however, a few key points that we need to
+   emphasise:
+
+   NO ACCESS TO EMERGENCY SERVICES: The Software is not a replacement for
+   your ordinary mobile or fixed line telephone. In particular, apart from
+   in the very limited circumstances set out in paragraph 5.6 of these
+   Terms (applicable to Skype’s Internet Communications Software only),
+   the Software does not allow you to make emergency calls to emergency
+   services. You must make alternative communications arrangements to
+   ensure that you can make emergency calls if needed.
+
+   CHECK RESTRICTIONS ON USE: In some countries there are restrictions on
+   the use of the Software. It is your responsibility to ensure that you
+   are legally allowed to use the Software where you are located.
+
+   NO OWNERSHIP OF NUMBERS: If Skype allocates to you a Skype Number
+   (previously known as “Online Number”) or Skype To Go Number, you do not
+   own the number or have a right to retain that number forever. Skype may
+   need to change or withdraw the number allocated to you from time to
+   time. You will not transfer or attempt to transfer your Skype Number or
+   Skype To Go Number to anyone else. You must ensure you comply with any
+   allocation requirements displayed when purchasing a Skype Number as
+   failure to do so could result in the number being withdrawn. Please see
+   also paragraph 19.1.
+
+   SKYPE CREDIT BECOMES INACTIVE AFTER 180 DAYS: If you purchase Skype
+   Credit please be aware that it becomes inactive after 180 days of
+   inactivity. Please see also paragraph 9.2.
+
+   ARBITRATION CLAUSE AND CLASS ACTION WAIVER: If you live in the USA and
+   select Pay by Mobile (see paragraph 20), a binding arbitration clause
+   and class action waiver affects your rights to resolve a dispute with
+   Skype, its corporate affiliates, or other third parties including
+   mobile phone carriers. Please read paragraph 20.3 carefully.
+
+1. YOUR AGREEMENT WITH SKYPE
+
+   1.1 Skype’s internet communication software applications (“Internet
+   Communications Software”), other “Skype” branded software applications
+   (together the “Skype Software”), the “Qik” branded software
+   applications (“Qik Software”) and associated documentation (whether in
+   printed or electronic form) including any improvements, modifications,
+   enhancements, fixes, updates, upgrades and future versions thereto
+   (“Updates”) and whether made available for free or for a fee,
+   (collectively the “Software”) are licensed (not sold) to you by Skype
+   Software Sàrl.
+
+   1.2 The features and products that are made available through the
+   Software for free (excluding products or features available for free on
+   a trial basis only) (“Free Products”) are provided to you by Skype
+   Software Sàrl.
+
+   1.3 Any additional products or features of the Skype Software or Qik
+   Software, or other “Skype” or “Qik” branded products, that you pay for
+   (including products or features available for free on a trial basis
+   only) (“Paid For Products”) are provided to you by Skype Communications
+   Sàrl.
+
+   1.4 “Skype Websites” means www.skype.com, www.qik.com (both of which
+   are operated by Skype Communications Sàrl) and any other websites
+   authorised by Skype which link to these Terms.
+
+   1.5 “Skype’’ means Skype Software Sàrl, 23 – 29 Rives de Clausen,
+   L-2165 Luxembourg or Skype Communications Sàrl, 2

[gentoo-commits] repo/gentoo:master commit in: net-im/skype/

2016-09-09 Thread Wolfram Schlich
commit: 2b453e9de064709a7e3fa21d74b2cb5f2da05e4f
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Sep  9 13:01:29 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Sep  9 13:02:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b453e9d

net-im/skype: initial import of new alpha version (with lower version number), 
see bug #588814

Package-Manager: portage-2.2.28

 net-im/skype/Manifest |   1 +
 net-im/skype/skype-1.7.0.1.ebuild | 106 ++
 2 files changed, 107 insertions(+)

diff --git a/net-im/skype/Manifest b/net-im/skype/Manifest
index 0a7499b..2784dc4 100644
--- a/net-im/skype/Manifest
+++ b/net-im/skype/Manifest
@@ -1 +1,2 @@
 DIST skype-4.3.0.37.tar.bz2 19310701 SHA256 
8c99dc3978a588fb13303df7c8134379fb55b8dd460efefbc79ae594269b892d SHA512 
935d0c06c031a90414f9b20c9a782c59deee36abff781c08f1dfd62194763dc9674bb85d478ae916b1bf440b123291d64380bc28295e9ecdd6522d17b434b7a5
 WHIRLPOOL 
1e5a84b04d7eb9bbf3bae9ae6e69bb41587a1cef7f5ff19af0363343fd7fc949d5202959efaf93b0ed9ccb939b8b2ad4d61fc9626fffbdc2a8d898f9fa29b300
+DIST skypeforlinux_1.7.0.1-1.x86_64.rpm 58391020 SHA256 
db74489b0e96f5a590ab20567ec69178e9bed1c4d89963569f751814096da66b SHA512 
7bbb9c13213aac000d39cc27856ddbae173a9bad373c2051a72872f7e33b938cc9d9f673e2f0f9e734b2e396b4717ea5b5d65d18afa2f080c21291d1585f6044
 WHIRLPOOL 
f33bd8e016f0da37d6eea8d530b55b979677fbf794d331246a75385b27c6bdcf0769ed8beda0a22313bb55b6eac30948a480f0aa8b12d98d73567a9f4e9a94d2

diff --git a/net-im/skype/skype-1.7.0.1.ebuild 
b/net-im/skype/skype-1.7.0.1.ebuild
new file mode 100644
index ..a650d3c
--- /dev/null
+++ b/net-im/skype/skype-1.7.0.1.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+#inherit eutils rpm pax-utils
+inherit eutils rpm
+
+DESCRIPTION="P2P Internet Telephony (VoiceIP) client"
+HOMEPAGE="http://www.skype.com/;
+SRC_URI="https://repo.skype.com/rpm/stable/skypeforlinux_${PV}-1.x86_64.rpm;
+
+LICENSE="Skype-TOS no-source-code"
+SLOT="1"
+KEYWORDS="~amd64 ~x86"
+#IUSE="pax_kernel selinux"
+IUSE=""
+
+S="${WORKDIR}"
+QA_PREBUILT=opt/skypeforlinux/skypeforlinux
+RESTRICT="mirror bindist strip" #299368
+
+RDEPEND="
+   !${CATEGORY}/${PN}:0
+   virtual/ttf-fonts
+   gnome-base/libgnome-keyring
+   gnome-base/gnome-keyring
+   gnome-base/gconf"
+#  selinux? ( sec-policy/selinux-skype )"
+
+src_unpack () {
+   rpm_src_unpack ${A}
+}
+
+src_prepare() {
+   sed -e 
"s!^SKYPE_PATH=.*!SKYPE_PATH=${EROOT}opt/skypeforlinux/skypeforlinux!" \
+   -i usr/bin/skypeforlinux
+   sed -e "s!^Exec=.*!Exec=${EROOT}opt/bin/skypeforlinux!" \
+   -e 
"s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \
+   -i usr/share/applications/skypeforlinux.desktop
+}
+
+src_install() {
+
+   insinto /opt/skypeforlinux/locales
+   doins usr/share/skypeforlinux/locales/*.pak
+
+   insinto 
/opt/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release
+   doins 
usr/share/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release/keytar.node
+
+   insinto /opt/skypeforlinux/resources
+   doins usr/share/skypeforlinux/resources/*.asar
+
+   insinto /opt/skypeforlinux
+   doins usr/share/skypeforlinux/*.pak
+   doins usr/share/skypeforlinux/*.bin
+   doins usr/share/skypeforlinux/*.dat
+   doins usr/share/skypeforlinux/version
+   exeinto /opt/skypeforlinux
+   doexe usr/share/skypeforlinux/*.so
+   doexe usr/share/skypeforlinux/skypeforlinux
+
+   into /opt
+   dobin usr/bin/skypeforlinux
+   fowners root:audio /opt/bin/skypeforlinux 
/opt/skypeforlinux/skypeforlinux
+
+#  insinto /etc/dbus-1/system.d
+#  doins ${PN}.conf
+
+   dodoc usr/share/doc/skypeforlinux/* usr/share/skypeforlinux/*.html
+   dodoc usr/share/skypeforlinux/*.txt usr/share/skypeforlinux/LICENSE
+
+   # create compat symlink
+   dosym ${P} /usr/share/doc/skypeforlinux
+
+   doicon usr/share/pixmaps/skypeforlinux.png
+
+   local res
+   for res in 16 32 256 512; do
+   newicon -s ${res} 
usr/share/icons/hicolor/${res}x${res}/apps/skypeforlinux.png skypeforlinux.png
+   done
+
+   domenu usr/share/applications/skypeforlinux.desktop
+
+#  if use pax_kernel; then
+#  if use apulse; then
+#  pax-mark Cm "${ED}"/opt/bin/${PN}-bin || die
+#  else
+#  pax-mark Cm "${ED}"/opt/bin/${PN} || die
+#  fi
+#  eqawarn "You have set USE=pax_kernel meaning that you intend to 
run"
+#  eqawarn "${PN} under a PaX 

[gentoo-commits] repo/gentoo:master commit in: app-misc/blink1/

2016-09-05 Thread Wolfram Schlich
commit: b4b8eb700fb391f9742a13c34477e048a0c1124d
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Sep  5 11:49:07 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Sep  5 11:49:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b8eb70

app-misc/blink1: initial import of blink(1) USB RGB LED status light control 
suite

Package-Manager: portage-2.2.28

 app-misc/blink1/Manifest   |   1 +
 app-misc/blink1/blink1-1.98.ebuild | 100 +
 app-misc/blink1/metadata.xml   |  16 ++
 3 files changed, 117 insertions(+)

diff --git a/app-misc/blink1/Manifest b/app-misc/blink1/Manifest
new file mode 100644
index ..55f3cb0
--- /dev/null
+++ b/app-misc/blink1/Manifest
@@ -0,0 +1 @@
+DIST blink1-1.98.tar.gz 29439933 SHA256 
2bbf8848c3c656ab8fb01035fd31103a321fbee20164691cf67e3706c4b50b16 SHA512 
2057e3ccf149dbdaaea2d09dabaa95317125d65151dc79c675365f55e85a3d0988232fd5ff404bdcfd127ebc266495afa04fb1b3fd0e4ac931bb711b0bb63568
 WHIRLPOOL 
24872d94ce246e3f64b096462496ead02b14ed2dd19e6ca1fc1b6f03e5c12069e18cde9e5ace5c4ed49ee7d7a35a3d61542a06019242a43d953ab0a2a820f7c2

diff --git a/app-misc/blink1/blink1-1.98.ebuild 
b/app-misc/blink1/blink1-1.98.ebuild
new file mode 100644
index ..7d6e17a
--- /dev/null
+++ b/app-misc/blink1/blink1-1.98.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit linux-info
+
+DESCRIPTION="blink(1) USB RGB LED status light control suite"
+HOMEPAGE="https://blink1.thingm.com/;
+
+## github release tarball
+MY_PV=${PV/_rc/rc}
+MY_P="${PN}-${MY_PV}"
+SRC_URI="https://github.com/todbot/blink1/archive/v${MY_PV}.tar.gz -> 
${MY_P}.tar.gz"
+
+## selfmade tarball
+#MY_PVR=${PVR/_rc/rc}
+#MY_P="${PN}-${MY_PVR}"
+#SRC_URI="http://dev.gentoo.org/~wschlich/src/${CATEGORY}/${PN}/${MY_P}.tar.gz;
+
+## github commit tarball
+#MY_GIT_COMMIT="1e9c012bd79cb99a53a22980fbaa6f97801e7c03"
+#MY_P="todbot-${PN}-${MY_GIT_COMMIT:0:7}"
+#SRC_URI="https://github.com/todbot/${PN}/tarball/${MY_GIT_COMMIT} -> 
${PF}.tar.gz"
+
+S="${WORKDIR}/${MY_P}"
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="CC-BY-SA-3.0"
+IUSE="doc examples +tool mini-tool server"
+
+RDEPEND="dev-libs/hidapi
+   virtual/libusb:1
+   virtual/libudev
+   sys-apps/attr
+   sys-libs/libcap"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+pkg_setup() {
+   ## check for USB HID kernel support
+   linux-info_pkg_setup
+   CONFIG_CHECK="USB_HID"
+   check_extra_config
+   ## check for acceptable USE flag settings
+   if ! ( use tool || use mini-tool || use server ); then
+   eerror "At least one of the following USE flags must be 
enabled:"
+   eerror "tool, mini-tool, server"
+   die "unacceptable USE flag settings"
+   fi
+}
+
+src_compile() {
+   if use tool; then
+   pushd commandline &>/dev/null
+   # USBLIB_TYPE=HIDAPI
+   # USBLIB_TYPE=HIDAPI_HIDRAW
+   # USBLIB_TYPE=HIDDATA
+   emake OS=linux USBLIB_TYPE=HIDAPI blink1-tool || die "emake 
blink1-tool failed"
+   popd &>/dev/null
+   fi
+   if use mini-tool; then
+   pushd commandline/blink1-mini-tool &>/dev/null
+   emake OS=linux blink1-mini-tool || die "emake blink1-mini-tool 
failed"
+   popd &>/dev/null
+   fi
+   if use server; then
+   pushd commandline &>/dev/null
+   emake OS=linux blink1-tiny-server || die "emake 
blink1-tiny-server failed"
+   popd &>/dev/null
+   fi
+}
+
+src_install() {
+   if use doc; then
+   dodoc docs/README.md
+   fi
+   if use tool; then
+   if use doc; then
+   dodoc 
docs/{blink1-tool.md,blink1-tool-tips.md,blink1-hid-commands.md,blink1-mk2-tricks.md}
+   fi
+   if use examples; then
+   insinto /usr/share/doc/"${PF}"/examples
+   doins commandline/scripts/{README.md,blink1-*.sh}
+   docompress -x /usr/share/doc/"${PF}"/examples
+   fi
+   dobin commandline/blink1-tool
+   fi
+   if use mini-tool; then
+   dobin commandline/blink1-mini-tool/blink1-mini-tool
+   fi
+   if use server; then
+   if use doc; then
+   dodoc docs/{app-url-api.md,app-url-api-examples.md}
+   fi
+   dobin commandline/blink1-tiny-server
+   fi
+}

diff --git a/app-misc/blink1/metadata.xml b

[gentoo-commits] repo/gentoo:master commit in: app-antivirus/skyldav/files/, app-antivirus/skyldav/

2016-04-22 Thread Wolfram Schlich
commit: 7f30703fcaa8a58bbcca2f7c48de9cf9b44922c5
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Apr 22 16:23:52 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Apr 22 16:24:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f30703f

app-antivirus/skyldav: version bump

Package-Manager: portage-2.2.28

 app-antivirus/skyldav/Manifest |   1 +
 app-antivirus/skyldav/files/skyldav-0.6-conf.patch |  21 
 .../skyldav/files/skyldav-0.6-examples.patch   |  11 +++
 app-antivirus/skyldav/skyldav-0.6.ebuild   | 108 +
 4 files changed, 141 insertions(+)

diff --git a/app-antivirus/skyldav/Manifest b/app-antivirus/skyldav/Manifest
index f729e27..bdf78a4 100644
--- a/app-antivirus/skyldav/Manifest
+++ b/app-antivirus/skyldav/Manifest
@@ -1 +1,2 @@
 DIST skyldav-0.5.tar.gz 105274 SHA256 
308b7a15b920a33c2c381aeb607db5bece9560e0a85e3e65c2df0d153413f4cc SHA512 
24b9e3805574a2498b1e250cde790d6263f6f751546ad906303099bad5e722430568b1081764843a3c52f38730e8f26132f32058bea33c18f19673ac9147c323
 WHIRLPOOL 
77e77c25eaf3d0d3add4e1b03366c75dd1acdf8152d2987af61418a4793b1b0873cd0088e2bfd00c9864316e3b6e068c4bc96bc064cfec706a1b1b0c318d3aa1
+DIST skyldav-0.6.tar.gz 105783 SHA256 
a8820960a5296c23974dc59acf021c387678f392b295b4de70d134147753cca5 SHA512 
3dcc6be287bfc7115cc360df97677fa12db5974d4917e476f37ad72097a6c2f224c3f57f84430591760c231ff02f277b908002a0b2bad250e971571f663d51c1
 WHIRLPOOL 
9cc38dc603ef46b12b6f14af2e58e20b44497afa47410d929187ecbc8ace15cd500d35fc7f35c68abd6d9587a6c83d355e32956455b120ab33b7bbd0800fe97c

diff --git a/app-antivirus/skyldav/files/skyldav-0.6-conf.patch 
b/app-antivirus/skyldav/files/skyldav-0.6-conf.patch
new file mode 100644
index 000..879e445
--- /dev/null
+++ b/app-antivirus/skyldav/files/skyldav-0.6-conf.patch
@@ -0,0 +1,21 @@
+diff -urN skyldav-0.6.orig/examples/etc/skyldav.conf 
skyldav-0.6/examples/etc/skyldav.conf
+--- skyldav-0.6.orig/examples/etc/skyldav.conf 2016-04-13 00:55:28.0 
+0200
 skyldav-0.6/examples/etc/skyldav.conf  2016-04-22 10:18:56.631146410 
+0200
+@@ -22,6 +22,9 @@
+ 
+ # Directories that shall not be scanned (including subdirectories)
+ # EXCLUDE_PATH = /var/noscan, /opt/noscan
++# 
++# Exclude various portage directories for performance reasons
++EXCLUDE_PATH = /usr/portage, /var/cache/edb, /var/db/pkg, /var/tmp/portage, 
/var/tmp/binpkgs, /var/log/portage
+ 
+ # File systems that are local, virus scan results may be cached.
+ # LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat
+@@ -31,6 +34,7 @@
+ # File systems that shall not be marked for virus scan.
+ # Cifs uses a background daemon which causes problems when scanned.
+ # Exclusion of fuse file systems is hard coded.
++# Do not exclude devtmpfs and configfs, as userspace could write malware onto 
them!
+ # NOMARK_FS = proc, sysfs
+ NOMARK_FS = proc, sysfs, devpts, debugfs, securityfs, cgroup, rpc_pipefs
+ NOMARK_FS = mqueue, autofs, cifs

diff --git a/app-antivirus/skyldav/files/skyldav-0.6-examples.patch 
b/app-antivirus/skyldav/files/skyldav-0.6-examples.patch
new file mode 100644
index 000..7ae29a1
--- /dev/null
+++ b/app-antivirus/skyldav/files/skyldav-0.6-examples.patch
@@ -0,0 +1,11 @@
+diff -urN skyldav-0.6.orig/Makefile.am skyldav-0.6/Makefile.am
+--- skyldav-0.6.orig/Makefile.am   2016-04-13 00:55:28.0 +0200
 skyldav-0.6/Makefile.am2016-04-22 10:19:55.730771296 +0200
+@@ -9,7 +9,6 @@
+   rm -rf doc/doxygen
+ 
+ install-data-local: \
+-  install-skyldav-examples \
+   install-skyldav-conf \
+   install-skyldavnotify-desktop
+ 

diff --git a/app-antivirus/skyldav/skyldav-0.6.ebuild 
b/app-antivirus/skyldav/skyldav-0.6.ebuild
new file mode 100644
index 000..c484868
--- /dev/null
+++ b/app-antivirus/skyldav/skyldav-0.6.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic linux-info linux-mod autotools-utils readme.gentoo-r1 
systemd
+
+DESCRIPTION="Skyld AV: on-access scanning daemon for ClamAV using fanotify"
+HOMEPAGE="http://xypron.github.io/skyldav/;
+
+## github release tarball
+MY_PV=${PV/_rc/rc}
+MY_P="${PN}-${MY_PV}"
+SRC_URI="https://github.com/xypron/skyldav/archive/${MY_PV}.tar.gz -> 
${MY_P}.tar.gz"
+
+## selfmade tarball
+#MY_PVR=${PVR/_rc/rc}
+#MY_P="${PN}-${MY_PVR}"
+#SRC_URI="http://dev.gentoo.org/~wschlich/src/${CATEGORY}/${PN}/${MY_P}.tar.gz;
+
+## github commit tarball
+#MY_GIT_COMMIT="49bdb5e710b5a77c38ceb87da6015afb7009f1f9"
+#MY_P="xypron-${PN}-${MY_GIT_COMMIT:0:7}"
+#SRC_URI="https://github.com/xypron/${PN}/tarball/${MY_GIT_COMMIT} -> 
${PF}.tar.gz"
+
+S="${WORKDIR}/${MY_P}"
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="Apache-2.0"
+IUSE="libnotify systemd"
+
+RDEPEND=&quo

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

2016-04-08 Thread Wolfram Schlich
commit: 85043246f020b391377af85cc17fb82bec33ae72
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Apr  8 06:19:51 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Apr  8 06:20:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85043246

sys-apps/pcsc-lite: version bump

Package-Manager: portage-2.2.28

 sys-apps/pcsc-lite/Manifest|   1 +
 sys-apps/pcsc-lite/pcsc-lite-1.8.16.ebuild | 106 +
 2 files changed, 107 insertions(+)

diff --git a/sys-apps/pcsc-lite/Manifest b/sys-apps/pcsc-lite/Manifest
index 003d14d..cba824f1 100644
--- a/sys-apps/pcsc-lite/Manifest
+++ b/sys-apps/pcsc-lite/Manifest
@@ -2,3 +2,4 @@ DIST pcsc-lite-1.8.12.tar.bz2 580449 SHA256 
f2c30a2aba6805f2859ede5f2eca351ca6c4
 DIST pcsc-lite-1.8.13.tar.bz2 584083 SHA256 
f315047e808d63a3262c4a040f77548af2e04d1fd707e0c2759369b926fbbc3b SHA512 
ce45b48fa0da568690e25f80c8b37c201f8a6eb411c7d12a55748af16eda1d8b39984261f562c5af50ff79d7476597e3363097cb5f0b6ca8fa009d9321d02023
 WHIRLPOOL 
6bf25e06e26583a8a5ac7f2e7c53f85f3aee0942d838c11afa40c2c95ef4dae805a00c813a11e5eb20221f2a2004608da6fea48b00d6edd661cc728e68d1989f
 DIST pcsc-lite-1.8.14.tar.bz2 689197 SHA256 
b91f97806042315a41f005e69529cb968621f73f2ddfbd1380111a175b02334e SHA512 
a374ee254403b57a9bb24629e1d2d867b4b2046126f06fcc9df5d2e4b1ab9e8e2daddf371082c829e40d0874d2e84a8d657240857cc928242adfbbb1516c3362
 WHIRLPOOL 
9a045ba14273324661e9d8dddfa4ed0bdc89ecc8bd3a06c28e428b8a84f30ca97d9dd91718c7e83dffd20fad90ddab3d02de886b75cfb080b4eb205fe9b49a78
 DIST pcsc-lite-1.8.15.tar.bz2 692567 SHA256 
ad8b1f3d2c59d3a966cb203fc74588629c4a5fa30f8ad9005e06ef7aa445d341 SHA512 
60d3440baa39232d42ddba972e4e40eb74c7d1d98845b5f6f41de35357f92b092d20e8e2d25a9bba51198b1a31de1e64cfcc64aa7dd8568b875db9e23c6cdd1b
 WHIRLPOOL 
01b6b012e06286def878c1c66361c786e75122fbc4a85ca9c9f26d7d484e7b18aa608391b10e9c9daac15e9e5b21ca142b90e2a0374816b46ce694804e675b81
+DIST pcsc-lite-1.8.16.tar.bz2 710247 SHA256 
e7d08aa38897e86fdf632d56ac70663a3a9add3c0bf4031dc32e783f19c0688a SHA512 
815b57f53adc8e820bb702a6704b2be4e9e7d772d46d4cc73d5730d3821334245c316d078a4565bbe8450fc1657a12b02ced40175ca314bf0d462c2f2599e714
 WHIRLPOOL 
d54c5c02b2a47de535da3a3a0eca54c2dce78ca5c5ae48530c0fdbc9f77ad3a465e9eeb2a2297a7ebea565ecf93c651e3d1dd275dbc61308786717e6376cbaf9

diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.8.16.ebuild 
b/sys-apps/pcsc-lite/pcsc-lite-1.8.16.ebuild
new file mode 100644
index 000..580c77b
--- /dev/null
+++ b/sys-apps/pcsc-lite/pcsc-lite-1.8.16.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils python-single-r1 multilib systemd udev user autotools-multilib
+
+DESCRIPTION="PC/SC Architecture smartcard middleware library"
+HOMEPAGE="http://pcsclite.alioth.debian.org/;
+
+STUPID_NUM="4164"
+MY_P="${PN}-${PV/_/-}"
+SRC_URI="http://alioth.debian.org/download.php/file/${STUPID_NUM}/${MY_P}.tar.bz2;
+S="${WORKDIR}/${MY_P}"
+
+# GPL-2 is there for the init script; everything else comes from
+# upstream.
+LICENSE="BSD ISC MIT GPL-3+ GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+# This is called libusb so that it doesn't fool people in thinking that
+# it is _required_ for USB support. Otherwise they'll disable udev and
+# that's going to be worse.
+IUSE="libusb policykit selinux +udev"
+
+REQUIRED_USE="^^ ( udev libusb )"
+
+# No dependencies need the MULTILIB_DEPS because the libraries are actually
+# standalone, the deps are only needed for the daemon itself.
+CDEPEND="${PYTHON_DEPS}
+   libusb? ( virtual/libusb:1 )
+   udev? ( virtual/udev )
+   policykit? ( >=sys-auth/polkit-0.111 )"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+   !

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

2016-04-07 Thread Wolfram Schlich
commit: 18dd921d9ebf08bc672b72241d4913c07a00c8d2
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Apr  7 19:00:24 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Apr  7 19:00:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18dd921d

net-misc/teamviewer: version bump, removed old 11.x versions

Package-Manager: portage-2.2.28

 net-misc/teamviewer/Manifest   |   2 +-
 net-misc/teamviewer/teamviewer-11.0.53191.ebuild   | 130 -
 ...3191-r1.ebuild => teamviewer-11.0.57095.ebuild} |   0
 3 files changed, 1 insertion(+), 131 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index 89153cf..385ee9a 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,3 +1,3 @@
 DIST teamviewer-9.0.32150.deb 22898922 SHA256 
66d9a69f7e1523a2e1b41ff2e55adac01b2dae9b8bdfabf9db6080fc21d24451 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 WHIRLPOOL 
fa48ff99a5df29072b1073f35e3f27aeba87b2b846813dca612212344a5b8e35f7f1e221e1fb4f7a12464fce4a185b8dad6dd8f48432e4c48ecd61d9cc6b7960
 DIST teamviewer_10.0.41499_i386.deb 41166700 SHA256 
0694c756b8cb5f2b09c8d6db960ced3e899d4ce43060e77ef4f1c36254dc31c4 SHA512 
afdfafb89398b29206414537c69a798574807c0f350d7ec819579167e0ffbb33c2c3754fdc17a79576b3ff7bcb729c78bda47a5387c1dc178cf85107dae71d9f
 WHIRLPOOL 
a0d1595f4133e6e875e49ed6db6777e732c79f7a283d1bcddfd489557eb3bebbbc9c41362cf3576e97513ce8345665645fa5e54ada12275e29bd8d3349752713
-DIST teamviewer_11.0.53191_i386.deb 53086174 SHA256 
e37f4fa053648366a73ac7af684cee8567f3d5ef580ac5f63cbc7a68da6124fb SHA512 
4c426267451bab91e75b914ed825a1f8ac5fff8a82496c411aca14fc91a6b2569c9922d0b6e92bd15f8a46c9238176c2322dafcd0a73bf2605923cc423eb0003
 WHIRLPOOL 
18b068f69694328ddec0ff5fbffb38befb44884c1919d1b6667f2b164c5023f6273a04627b1c6a95ea4ee1b06e903a666751f41e922d121fde38a44cb3efa2c4
+DIST teamviewer_11.0.57095_i386.deb 53774306 SHA256 
a3e763912892019143517f8c40404aa23465b4d78fb382336d165d3b96f1b83d SHA512 
d218cc5a7ea516b7df326d60726405fa1db5c313a74b14594ea8309bd5f06cc611d2391a750405ae8a39b419747bc6974d6b5f4ca54015fce869566d937cecdd
 WHIRLPOOL 
175259ecce24b576c7cac9d55d5ce8aeede00edfcc92953fd0ff75642aab1d4769cadbb7683ab4f3346afeb591caf679fbaab6cc8c629f7867438e483d40d89f

diff --git a/net-misc/teamviewer/teamviewer-11.0.53191.ebuild 
b/net-misc/teamviewer/teamviewer-11.0.53191.ebuild
deleted file mode 100644
index 8ad6896..000
--- a/net-misc/teamviewer/teamviewer-11.0.53191.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils gnome2-utils systemd unpacker
-
-# Major version
-MV=${PV/\.*}
-MY_PN=${PN}${MV}
-DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
-HOMEPAGE="https://www.teamviewer.com;
-SRC_URI="https://download.teamviewer.com/download/version_${MV}x/${PN}_${PV}_i386.deb;
-
-IUSE="+system-wine"
-
-LICENSE="TeamViewer LGPL-2.1" #LGPL for bundled wine
-SLOT=${MV}
-KEYWORDS="-* ~amd64 ~x86"
-
-RESTRICT="bindist mirror"
-
-RDEPEND="
-   system-wine? ( app-emulation/wine[abi_x86_32(-)] )
-   dev-qt/qtcore:4[abi_x86_32(-)]
-   dev-qt/qtgui:4[abi_x86_32(-)]
-   dev-qt/qtwebkit:4[abi_x86_32(-)]
-   media-libs/alsa-lib[abi_x86_32(-)]
-   x11-libs/libICE[abi_x86_32(-)]
-   x11-libs/libSM[abi_x86_32(-)]
-   x11-libs/libX11[abi_x86_32(-)]
-   x11-libs/libXau[abi_x86_32(-)]
-   x11-libs/libXdamage[abi_x86_32(-)]
-   x11-libs/libXdmcp[abi_x86_32(-)]
-   x11-libs/libXext[abi_x86_32(-)]
-   x11-libs/libXfixes[abi_x86_32(-)]
-   x11-libs/libXrandr[abi_x86_32(-)]
-   x11-libs/libXtst[abi_x86_32(-)]"
-
-QA_PREBUILT="opt/teamviewer${MV}/*"
-
-S=${WORKDIR}/opt/teamviewer/tv_bin
-
-src_prepare() {
-   #epatch "${FILESDIR}/${P}-gentoo.patch"
-   sed \
-   -e "s/@TVV@/${MV}/g" \
-   "${FILESDIR}"/${PN}d.init > "${T}"/init || die
-   sed \
-   -e "s:/opt/teamviewer:/opt/teamviewer${MV}:g" \
-   "script//${PN}d.service" > "${T}/${PN}d.service" || die
-   sed \
-   -e "s/@TVV@/${PV}/g" \
-   -e "s/@TVMV@/${MV}/g" \
-   "${FILESDIR}"/${PN}.sh > "${T}"/sh || die
-   if ! use system-wine; then
-   sed -i "s/native=true/native=false/g" "${T}/sh" || die
-   fi
-}
-
-src_install () {
-   local destdir="/opt/${MY_PN}"
-
-   # install wine prefix skeleton and reg keys
-   insinto "${destdir}/wine/drive_c/"
-   doins -

[gentoo-commits] repo/gentoo:master commit in: app-crypt/ccid/

2016-04-01 Thread Wolfram Schlich
commit: f7269e7d8cc485672d2967df2af75a95e253015d
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Apr  1 17:50:21 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Apr  1 17:50:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7269e7d

app-crypt/ccid: version bump. added USE=kobil-midentity for building and 
installing contrib/Kobil_mIDentity_switch.

Package-Manager: portage-2.2.28

 app-crypt/ccid/Manifest   |  1 +
 app-crypt/ccid/ccid-1.4.22.ebuild | 65 +++
 app-crypt/ccid/metadata.xml   |  1 +
 3 files changed, 67 insertions(+)

diff --git a/app-crypt/ccid/Manifest b/app-crypt/ccid/Manifest
index 0dddcc9..e26c8b2 100644
--- a/app-crypt/ccid/Manifest
+++ b/app-crypt/ccid/Manifest
@@ -1,3 +1,4 @@
 DIST ccid-1.4.15.tar.bz2 487625 SHA256 
5436182246f15b3e78b1ad6707022b02dc400e3f50c4cb5e5d340a4e716d990a SHA512 
393eb65db0fb31b58d4010c10cae6c7592078b02d0e77b7741330cc3b1e5dd768fa08dbaf75db39c547e3603fa70aa1c8aaf3b536266314f2f04d2ff2b6fb29c
 WHIRLPOOL 
0dd511454cf8e39303318b61f9e2390f2ef27b763e80e9270f55ee15966ced8378f3f3ee5440b6380481f970f03ae37bbb2221da6c3d2d658622ea4cdc3aee3f
 DIST ccid-1.4.18.tar.bz2 492113 SHA256 
5fdba97a2d2eb1c652b7dd4aa0bb8cee4814bab0cf61aecb84b32b57272541aa SHA512 
ff7e331431909fe9fffd4f7aae0a2395b3b755da9c898aa6a6b629f7f516c240b820669146791deb443c646dc8fc56f9100c9f987b3e7d13c24f24f81f06b1f0
 WHIRLPOOL 
86107ac379e5523c31aa1499e1ecd5a1f6dab5b7f748800b5a22ff2b6470e9bb590407cb8a98ad65870a832149fe8835aa42dff9a30027f0bce843640439ce1e
 DIST ccid-1.4.20.tar.bz2 567553 SHA256 
400cb865bb63eed6d7668b2d971cb4644038b9b7a6cda121450d0c6cf6251cbc SHA512 
4ce0694e268fe962f5eb49d3d640333a4c7ef54af5f9939b3682341b19ffad7470f5e1816b3b3af1bce8cf31f4335c3177f7e6b8190e187125ce1da73692cbab
 WHIRLPOOL 
2af0cc1887ab93da92f9c498982798b57e3711b864cc59446248fd59f96703b781cb65602e7c80ce2de194901cff12b52b9105ad404b4c04a3f45a5f38343ee7
+DIST ccid-1.4.22.tar.bz2 578835 SHA256 
9c5c8be465b6d33316be7a7ea720c24a776e2d76be9072116d28fc9adf58c106 SHA512 
621b0165226c3530b514dfb87eb8963be750cc274f4263dd739a24bfe431b463cffdd467d8c38b3e909ca2a6ae756e5fd414891a4b332ca687318639d721e0c8
 WHIRLPOOL 
5c7592234f4bbf41565000b512064892588ccd19415cc9357f7197af5a851b95c6a5257824ec2440c163495ba78b8ff9bde4be43121e4b8eb3dc3c7af1d4cdbc

diff --git a/app-crypt/ccid/ccid-1.4.22.ebuild 
b/app-crypt/ccid/ccid-1.4.22.ebuild
new file mode 100644
index 000..500aaee
--- /dev/null
+++ b/app-crypt/ccid/ccid-1.4.22.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+STUPID_NUM="4162"
+
+inherit eutils toolchain-funcs udev autotools-utils
+
+DESCRIPTION="CCID free software driver"
+HOMEPAGE="http://pcsclite.alioth.debian.org/ccid.html;
+SRC_URI="http://alioth.debian.org/frs/download.php/file/${STUPID_NUM}/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="twinserial kobil-midentity +usb"
+
+RDEPEND=">=sys-apps/pcsc-lite-1.8.3
+   usb? ( virtual/libusb:1 )"
+DEPEND="${RDEPEND}
+   kernel_linux? ( virtual/pkgconfig )"
+
+DOCS=( README AUTHORS )
+
+src_configure() {
+   local myeconfargs=(
+   LEX=:
+   $(use_enable twinserial)
+   $(use_enable usb libusb)
+   )
+
+   autotools-utils_src_configure
+}
+
+src_compile() {
+   autotools-utils_src_compile
+   use kobil-midentity && autotools-utils_src_compile 
contrib/Kobil_mIDentity_switch
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   if use kobil-midentity; then
+   dosbin 
"${BUILD_DIR}"/contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch
+   doman contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch.8
+   fi
+
+   if use kernel_linux; then
+   # note: for eudev support, rules probably will always need to be
+   # installed to /usr
+
+   # ccid >=1.4.11 version changed the rules drastically in a minor
+   # release to no longer use the pcscd group. Using the old ones 
in
+   # the mean time.
+   udev_newrules "${FILESDIR}"/92_pcscd_ccid-2.rules 
92-pcsc-ccid.rules
+
+   # disable Kobil_mIDentity_switch udev rule with 
USE=-kobil-midentity
+   if ! use kobil-midentity; then
+   sed -i -e '/Kobil_mIDentity_switch/s/^/#/' 
"$(_udev_get_udevdir)"/rules.d/92-pcsc-ccid.rules
+   fi
+
+   fi
+}

diff --git a/app-crypt/ccid/metadata.xml b/app-crypt/ccid/metadata.xml
index c042339..6a12395 100644
--- a/app-crypt/ccid/metadata.xml
+++ b/app-crypt/ccid/metadata.xml
@@ -6,6 +6,7 @@
Crypto


+   Build and install 
Kobil_mIDentity_switch tool
Enable twinserial reader

 



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-03-29 Thread Wolfram Schlich
commit: ca9ecbe0d9630e14f95f6fb302e94a27123f3736
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Mar 29 07:13:15 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Mar 29 07:13:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9ecbe0

net-im/mcabber: version bump (greetings to Sarah Salzstein)

Package-Manager: portage-2.2.28

 net-im/mcabber/Manifest |   1 +
 net-im/mcabber/mcabber-1.0.2.ebuild | 119 
 2 files changed, 120 insertions(+)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index c94c1a9..e326bca 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -2,3 +2,4 @@ DIST mcabber-0.10.2_p20131025.tar.gz 399025 SHA256 
90f4e583a7ea929abcd243dc970d6
 DIST mcabber-0.10.3.tar.bz2 612153 SHA256 
77466138496cc26db125145cc28dc4fc0df79827143b922dfb9f02eb0dc7fa6d SHA512 
3f4c83dbe99f1e1981a89d2a9cdfbaf96b265aaabe133e41d562491557e0acc2d780ae88aa3e45eca9088318ef7d7b284f1df445d2b5afb139d5a247e111bc10
 WHIRLPOOL 
7139d7b44837026276b269f5d911486bc898ef4c72d0cec2ada066636f284c00205b207241024d4311a82f7eb6a83590dbf402167dec4441e477f6166a7595b5
 DIST mcabber-1.0.0.tar.bz2 602173 SHA256 
5476bcba395e0b9527823f5a9bce725151756f685ce2dcf6fad3dbe50a157032 SHA512 
bad8af15ed984ac0a568ea497464a3fa9b3ba3dea51cdd4042361be10783bba3578859ced532cd2c1cf19588fc42bdd561486b9fce6ed2da86a509e29c26c497
 WHIRLPOOL 
f9eba52f2686f0571947e006ce825378be7f00db8192988e5a071a86160c48b113609fe4f539d61191378348333763c24e013f5bc69863f4b41a54264313e3f8
 DIST mcabber-1.0.1.tar.bz2 604661 SHA256 
579a45a2bc944455012ca9b308f7f3454efabbe0c36c6723af761aa1f3092d93 SHA512 
23b268fb0c4e5ce0f28333d2b35fa8b6ead819359c0e2a633158bdcb637040c23deb2ca54d7d1a98a8a8fa37323bfe078371e790b5809af76fe9b940529f728c
 WHIRLPOOL 
9e5a2478a5bc7c8d35526bb81178842e04a5367b23cd7ec8dfa303069a6ad75ae74411977b9f354d3758c80a6ed578a4caf4c21cdb5322feece818d50e053a6b
+DIST mcabber-1.0.2.tar.bz2 604995 SHA256 
e7143891ea6c6ec2f3008c25c13506121d83d15aa83640827aea3b66a8761fde SHA512 
e7d8f54f0f5cbcd685d6ada49c29fbc3af3315d5727a7a6babcc0aae49880f0cc1df48a1ceec78caeb17822c26f8c00aae23df2565336d92c4e388c8cebb4263
 WHIRLPOOL 
8903b6e77f645202357f00868733633abed220f05260d29e30bc0396abf64f94fe0c69c84cae7f9c6c6ebfbe3d64f4d4be970dfe51593c84ca582fccfb4d7c2a

diff --git a/net-im/mcabber/mcabber-1.0.2.ebuild 
b/net-im/mcabber/mcabber-1.0.2.ebuild
new file mode 100644
index 000..3fc2a58
--- /dev/null
+++ b/net-im/mcabber/mcabber-1.0.2.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic autotools-utils
+
+DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
+HOMEPAGE="http://mcabber.com/;
+#REV="a18e1b488f1c"
+#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="http://mcabber.com/files/${P}.tar.bz2;
+
+#S=${WORKDIR}/${PN}-${REV}/${PN}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
+
+LANGS="cs de fr it nl pl ru uk"
+# localized help versions are installed only, when LINGUAS var is set
+for i in ${LANGS}; do
+   IUSE="${IUSE} linguas_${i}"
+done;
+
+RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+   otr? ( >=net-libs/libotr-3.1.0 )
+   aspell? ( app-text/aspell )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
+   idn? ( net-dns/libidn  )
+   spell? ( app-text/enchant )
+   dev-libs/glib:2
+   sys-libs/ncurses:0=
+   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF="1"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
+PATCHES=(
+   "${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
+)
+
+pkg_setup() {
+   if use aspell && use spell; then
+   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable crypt gpgme) \
+   $(use_enable otr) \
+   $(use_enable aspell) \
+   $(use_enable spell enchant) \
+   $(use_enable modules) \
+   $(use_with idn libidn)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   # clean unneeded language documentation
+   for i in ${LANGS}; do
+   use linguas_${i} || rm -rf "${ED}"/usr/

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

2016-03-29 Thread Wolfram Schlich
commit: 27908312b84fe2369faf4c6380738a6aa8d095d7
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Mar 29 06:58:20 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Mar 29 06:58:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27908312

net-libs/loudmouth: version bump

Package-Manager: portage-2.2.28

 net-libs/loudmouth/Manifest   |  1 +
 net-libs/loudmouth/loudmouth-1.5.3.ebuild | 58 +++
 2 files changed, 59 insertions(+)

diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index f988948..11c504d 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,2 +1,3 @@
 DIST loudmouth-1.4.3.tar.bz2 366818 SHA256 
95a93f5d009b71ea8193d994aa11f311bc330a3efe1b7cd74dc48f11c7f929e3 SHA512 
02d1de14a4d626a4c9100bd24c06d4b4203eabb0f95bab40ee18ea5e68ed81d47aa977625140157b2d9f7974ac748af857c2ee3a916f0db700e2a2d0934940ec
 WHIRLPOOL 
4f9e3e8e4f2fd0a36996e84deebeb26c789d5334af11a3d6cc6c742b59508945a6279715f6fbb02bbbc04a0d9709e7aae4cc39803b2a60acfd47d76f0482f969
 DIST loudmouth-1.5.2.tar.gz 115940 SHA256 
c3dd7b5690a7b6ee4768d71d2bdee4615cfb73b6eeaa342d6a931a5160e47421 SHA512 
54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87
 WHIRLPOOL 
99fd7fa00f08976242313c2bc11e9edfbe1aeea9918090347a1975d5ece438892afbf3b5c16ffe79b1c0a10b28f35f62937d45a234e63b26f051466799fd7685
+DIST loudmouth-1.5.3.tar.gz 114676 SHA256 
12972fcffd9bbcc4a3b2b9fbf4b0e549f7b4caf0f11c8d2af2059087ce4e8792 SHA512 
afae8b4ad1e9e5558cffa8f6b9f25331b01cfa09ea0b3defb74cac7d39477744e6d9181d3adefe242038020759df43558de0e61305fbc8e12a3b293b82856bf7
 WHIRLPOOL 
0a7d4a01ec4f0ae68f58f3267aabc2eb9f7eb0e812232a8ecd3664dd5c99ae404c4825bb5ae01f36a1cced48a9aaff67c4a92c23541e2e1fd9f69c4a67962007

diff --git a/net-libs/loudmouth/loudmouth-1.5.3.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.3.ebuild
new file mode 100644
index 000..c413070
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.3.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+DESCRIPTION="Lightweight C Jabber library"
+HOMEPAGE="https://github.com/mcabber/loudmouth;
+SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+#SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+
+IUSE="asyncns ssl openssl static-libs test"
+
+# Automagic libidn dependency
+RDEPEND="
+   >=dev-libs/glib-2.16:2
+   net-dns/libidn
+   ssl? (
+   !openssl? ( >=net-libs/gnutls-1.4.0 )
+   openssl? ( dev-libs/openssl:0 )
+   )
+   asyncns? ( >=net-libs/libasyncns-0.3 )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/check )
+   virtual/pkgconfig
+   >=dev-util/gtk-doc-1
+   >=dev-util/gtk-doc-am-1
+"
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   local myconf
+
+   if use ssl; then
+   if ! use openssl; then
+   myconf="${myconf} --with-ssl=gnutls"
+   else
+   myconf="${myconf} --with-ssl=openssl"
+   fi
+   else
+   myconf="${myconf} --with-ssl=no"
+   fi
+
+   econf \
+   $(use_enable static-libs static) \
+   $(use_with asyncns) \
+   ${myconf}
+}



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

2016-03-18 Thread Wolfram Schlich
commit: d8e46cf37ba4cb5d7290fab830c9953d4cf0b9ae
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Mar 17 15:00:59 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Mar 17 15:07:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e46cf3

sys-apps/pcsc-lite: version bump.

Package-Manager: portage-2.2.28

 sys-apps/pcsc-lite/Manifest|   1 +
 sys-apps/pcsc-lite/pcsc-lite-1.8.15.ebuild | 106 +
 2 files changed, 107 insertions(+)

diff --git a/sys-apps/pcsc-lite/Manifest b/sys-apps/pcsc-lite/Manifest
index fd863b0..003d14d 100644
--- a/sys-apps/pcsc-lite/Manifest
+++ b/sys-apps/pcsc-lite/Manifest
@@ -1,3 +1,4 @@
 DIST pcsc-lite-1.8.12.tar.bz2 580449 SHA256 
f2c30a2aba6805f2859ede5f2eca351ca6c495a18d5d36d74c63e7898b353c51 SHA512 
b0ed94187052e0ff73030ecf9f5165d4f8dc4a7f1eb05c6c57c0e5552ae6699c53f12cd72e09812de3c55be86a08ab060a92ad08b5db2686dfa1afbaca336d87
 WHIRLPOOL 
c6feed97170a640b6ee86e2188a124995acf73f618cfc5d4f1cf68a7f8da5955330a255b211606ebb5d50d58a4cfad859a7004fddf06c6476838458e3b7162c3
 DIST pcsc-lite-1.8.13.tar.bz2 584083 SHA256 
f315047e808d63a3262c4a040f77548af2e04d1fd707e0c2759369b926fbbc3b SHA512 
ce45b48fa0da568690e25f80c8b37c201f8a6eb411c7d12a55748af16eda1d8b39984261f562c5af50ff79d7476597e3363097cb5f0b6ca8fa009d9321d02023
 WHIRLPOOL 
6bf25e06e26583a8a5ac7f2e7c53f85f3aee0942d838c11afa40c2c95ef4dae805a00c813a11e5eb20221f2a2004608da6fea48b00d6edd661cc728e68d1989f
 DIST pcsc-lite-1.8.14.tar.bz2 689197 SHA256 
b91f97806042315a41f005e69529cb968621f73f2ddfbd1380111a175b02334e SHA512 
a374ee254403b57a9bb24629e1d2d867b4b2046126f06fcc9df5d2e4b1ab9e8e2daddf371082c829e40d0874d2e84a8d657240857cc928242adfbbb1516c3362
 WHIRLPOOL 
9a045ba14273324661e9d8dddfa4ed0bdc89ecc8bd3a06c28e428b8a84f30ca97d9dd91718c7e83dffd20fad90ddab3d02de886b75cfb080b4eb205fe9b49a78
+DIST pcsc-lite-1.8.15.tar.bz2 692567 SHA256 
ad8b1f3d2c59d3a966cb203fc74588629c4a5fa30f8ad9005e06ef7aa445d341 SHA512 
60d3440baa39232d42ddba972e4e40eb74c7d1d98845b5f6f41de35357f92b092d20e8e2d25a9bba51198b1a31de1e64cfcc64aa7dd8568b875db9e23c6cdd1b
 WHIRLPOOL 
01b6b012e06286def878c1c66361c786e75122fbc4a85ca9c9f26d7d484e7b18aa608391b10e9c9daac15e9e5b21ca142b90e2a0374816b46ce694804e675b81

diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.8.15.ebuild 
b/sys-apps/pcsc-lite/pcsc-lite-1.8.15.ebuild
new file mode 100644
index 000..bafb843
--- /dev/null
+++ b/sys-apps/pcsc-lite/pcsc-lite-1.8.15.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils python-single-r1 multilib systemd udev user autotools-multilib
+
+DESCRIPTION="PC/SC Architecture smartcard middleware library"
+HOMEPAGE="http://pcsclite.alioth.debian.org/;
+
+STUPID_NUM="4157"
+MY_P="${PN}-${PV/_/-}"
+SRC_URI="http://alioth.debian.org/download.php/file/${STUPID_NUM}/${MY_P}.tar.bz2;
+S="${WORKDIR}/${MY_P}"
+
+# GPL-2 is there for the init script; everything else comes from
+# upstream.
+LICENSE="BSD ISC MIT GPL-3+ GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+# This is called libusb so that it doesn't fool people in thinking that
+# it is _required_ for USB support. Otherwise they'll disable udev and
+# that's going to be worse.
+IUSE="libusb policykit selinux +udev"
+
+REQUIRED_USE="^^ ( udev libusb )"
+
+# No dependencies need the MULTILIB_DEPS because the libraries are actually
+# standalone, the deps are only needed for the daemon itself.
+CDEPEND="${PYTHON_DEPS}
+   libusb? ( virtual/libusb:1 )
+   udev? ( virtual/udev )
+   policykit? ( >=sys-auth/polkit-0.111 )"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: dev-libs/cyberjack/, dev-libs/cyberjack/files/

2016-03-16 Thread Wolfram Schlich
commit: f340f8456f677206d71bf8ffc218bc48f743aa0d
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Mar 16 08:40:35 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Mar 16 08:55:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f340f845

dev-libs/cyberjack: version bump. upstream removed /usr/bin/fxcyberjack and 
/usr/bin/cyberjack.

Package-Manager: portage-2.2.28

 dev-libs/cyberjack/Manifest|  2 +-
 ...99.5_p08.ebuild => cyberjack-3.99.5_p09.ebuild} | 13 +++
 .../files/cyberjack-3.99.5_p08-install.patch   | 26 --
 ...s.patch => cyberjack-3.99.5_p09-manpages.patch} |  0
 ...atch => cyberjack-3.99.5_p09-returnvalue.patch} |  0
 5 files changed, 4 insertions(+), 37 deletions(-)

diff --git a/dev-libs/cyberjack/Manifest b/dev-libs/cyberjack/Manifest
index cf65619..c730592 100644
--- a/dev-libs/cyberjack/Manifest
+++ b/dev-libs/cyberjack/Manifest
@@ -1,2 +1,2 @@
-DIST pcsc-cyberjack-3.99.5final.SP08.tar.bz2 786514 SHA256 
ab42b81ad685302c89763faaf0d90e23f804134e020d653323ad9f95a43655fc SHA512 
8630297b48e578d47e90cc3e216ff0daebfadee783f338588a5ad99132b5260901cf6545d292d312e054bcdd4a6e2d377a6c881d68e6c6bc062b0a435287181d
 WHIRLPOOL 
0fb4de26b6f7a117d648ebabf7f7b4c1ec68a261a454728ccacbb37b15c07764a0f85d441e06c7627ae891dadab0fcbee61cd31063069b7aeeca8f02241a4ee6
+DIST pcsc-cyberjack-3.99.5final.SP09.tar.bz2 956808 SHA256 
1f8cb8da18aae3b39f7c972d06c3221d08e870119bc871a2eb198a09b01139d4 SHA512 
e0e324a2b0251cc28512e87799c7408f2d008c07a463ff36478de0547b701b5523ff78bd4cffb388b02254eed5fe88fb2769e38da625f6040003d8858d6c5b3b
 WHIRLPOOL 
b2abc2f7edfcf28bb28264072741e156e336e892f4b8730fcd4784998d5f95f192adcd877315fb46ce9fca8fdfffc02269293d25c215c97fe115f25f7cd1cb41
 DIST pcsc-cyberjack_3.99.5final.SP03.tar.gz 1485952 SHA256 
fa5324d8a270d50aec20345cb57362f684ddadd3a50dbd0773ee13d2d87bc0a9 SHA512 
a091a09b501d7a7c757f0a458007f44ac281cbeaaf5bc3c2aa89915ee7a39478e6f80b6f24fec77be753c8d77deeda2858b7a806e3c982f54c199bd797288e05
 WHIRLPOOL 
51429512a9037e6ec4a98cc33576176cafda5fe3a3b33c56b2d928c7a7bc06135ac93e92a713836e4dc20e90f6106f9ca3643de5baed7c25672c26f6fc4a6368

diff --git a/dev-libs/cyberjack/cyberjack-3.99.5_p08.ebuild 
b/dev-libs/cyberjack/cyberjack-3.99.5_p09.ebuild
similarity index 87%
rename from dev-libs/cyberjack/cyberjack-3.99.5_p08.ebuild
rename to dev-libs/cyberjack/cyberjack-3.99.5_p09.ebuild
index 134aa2d..2adc316 100644
--- a/dev-libs/cyberjack/cyberjack-3.99.5_p08.ebuild
+++ b/dev-libs/cyberjack/cyberjack-3.99.5_p09.ebuild
@@ -17,17 +17,13 @@ 
SRC_URI="http://support.reiner-sct.de/downloads/LINUX/V${MY_PV}/${MY_P}.tar.bz2;
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="fox static-libs threads +udev +usb"
+IUSE="static-libs threads +udev +usb"
 
 # FIXME:
 # xml is actually optional but the code is still used anyway. We'll have to 
wait
 # until upstream fixed it.
 COMMON_DEPEND="sys-apps/pcsc-lite
-   usb? ( virtual/libusb:1 )
-   fox? (
-   >=x11-libs/fox-1.6:=
-   dev-libs/libxml2
-   )"
+   usb? ( virtual/libusb:1 )"
 RDEPEND="${COMMON_DEPEND}
udev? ( virtual/udev )"
 DEPEND="${COMMON_DEPEND}
@@ -36,7 +32,7 @@ DEPEND="${COMMON_DEPEND}
 #S=${WORKDIR}/${MY_P2}
 S=${WORKDIR}/${MY_P}
 
-DOCS="ChangeLog NEWS doc/README.txt"
+DOCS="debian/changelog doc/README.txt"
 
 pkg_setup() {
CONFIG_CHECK="~USB_SERIAL_CYBERJACK"
@@ -44,7 +40,6 @@ pkg_setup() {
 }
 
 src_prepare() {
-   epatch "${FILESDIR}/${P}-install.patch"
epatch "${FILESDIR}/${P}-manpages.patch"
epatch "${FILESDIR}/${P}-returnvalue.patch"
eautoreconf
@@ -58,8 +53,6 @@ src_configure() {
$(use_enable static-libs static) \
$(use_enable usb nonserial) \
$(use_enable threads) \
-   $(use_enable fox xml2) \
-   $(use_enable fox) \
--with-usbdropdir="$($(tc-getPKG_CONFIG) libpcsclite 
--variable=usbdropdir)"
 }
 

diff --git a/dev-libs/cyberjack/files/cyberjack-3.99.5_p08-install.patch 
b/dev-libs/cyberjack/files/cyberjack-3.99.5_p08-install.patch
deleted file mode 100644
index f0a2f0a..000
--- a/dev-libs/cyberjack/files/cyberjack-3.99.5_p08-install.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From c107dd6db4967a04297eab120500a7fc5c93f221 Mon Sep 17 00:00:00 2001
-From: Christian Ruppert <id...@gentoo.org>
-Date: Thu, 13 Feb 2014 23:10:37 +0100
-Subject: [PATCH 3/3] Do not install pcscd_init.diff
-
-Signed-off-by: Christian Ruppert <id...@gentoo.org>

- tools/cyberjack/scripts/Makefile.am | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/tools/cyberjack/scripts/Makefile.am 
b/tools/cyberjack/scripts/Makefile.am
-index e9c

[gentoo-commits] repo/gentoo:master commit in: sys-power/sispmctl/

2016-03-15 Thread Wolfram Schlich
commit: be81c28aa38765a6a1a62dfc034f98480f619e5f
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Tue Mar 15 07:36:11 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Tue Mar 15 07:36:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be81c28a

sys-power/sispmctl: version bump. add sispmctl group and udev rules for user 
device write access.

Package-Manager: portage-2.2.28

 sys-power/sispmctl/Manifest|  1 +
 sys-power/sispmctl/sispmctl-4.0.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-power/sispmctl/Manifest b/sys-power/sispmctl/Manifest
index 1052dbc..ac4f190 100644
--- a/sys-power/sispmctl/Manifest
+++ b/sys-power/sispmctl/Manifest
@@ -1 +1,2 @@
 DIST sispmctl-3.1.tar.gz 251896 SHA256 
e9a99cc81ef0a93f3484e5093efd14d93cc967221fcd22c151f0bea32eb91da7 SHA512 
2942c8f1c9e4d259667d384b9dca72569fac8c3c775e68f88599eb6f339b63d92c8226a406f998830af24ea9144ed75291bcc652293a870123925fe235c31d03
 WHIRLPOOL 
8f7ad31eb917456dacd0e09feb94fa04e8e1cdceb25626a0ce36004d117750146d50abd458913d0770cf2b3ef133cda8162a64809592015ae5080957d12aeced
+DIST sispmctl-4.0.tar.gz 517985 SHA256 
442d9bb9774da7214c222144035ac68ad5d25171040ce2731cfdf49b3365cfd5 SHA512 
0fc643b627ccfa10f085b37702933fe9b7c2ef448bcbb32c22cacda57f7f710437c413bd02f510a3acb085f99a513a891e815981ee4ffbe7fed691492a335e96
 WHIRLPOOL 
40c443dd36aca5d7299ef2fe5478dc26535b3c4f0e325b2f36c49f528b82cbf73ed156fff12eeb1b03d53d6a40f817c513c502c030286c0428a36f05fafa6934

diff --git a/sys-power/sispmctl/sispmctl-4.0.ebuild 
b/sys-power/sispmctl/sispmctl-4.0.ebuild
new file mode 100644
index 000..c1b5636
--- /dev/null
+++ b/sys-power/sispmctl/sispmctl-4.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit bash-completion-r1 eutils user
+
+DESCRIPTION="GEMBIRD SiS-PM control utility"
+HOMEPAGE="http://sispmctl.sourceforge.net/;
+SRC_URI="mirror://sourceforge/sispmctl/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="gemplug"
+
+RDEPEND="virtual/libusb:0
+   gemplug? ( sys-process/at )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+   enewgroup sispmctl
+}
+
+src_configure() {
+   econf --enable-webless
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   dodoc README README.md ChangeLog NEWS
+
+   ## install udev rules which make the device files writable
+   ## by the members of the group sispmctl
+   insinto /lib/udev/rules.d
+   doins examples/60-sispmctl.rules
+
+   ## gemplug
+   if use gemplug; then
+   sed -i "s|/usr/local/bin/sispmctl|${ROOT:-/}usr/bin/sispmctl|g" 
extras/gemplug/gemplug
+   dobin extras/gemplug/gemplug
+   doman extras/gemplug/gemplug.1
+
+   newbashcomp extras/gemplug/gemplug-completion.sh gemplug
+
+   dodir /var/lock/gemplug
+   fperms 2775 /var/lock/gemplug
+   fowners root:sispmctl /var/lock/gemplug
+
+   einfo "To be able to use the locking mechanism of gemplug(1),"
+   einfo "add the users who are designated to run gemplug to the"
+   einfo "group 'sispmctl' which has write permissions to 
/var/lock/gemplug."
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-02-06 Thread Wolfram Schlich
commit: d49f6380b901cf31e953feba6c14cfdc70eafe20
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Feb  6 18:02:14 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Sat Feb  6 18:02:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d49f6380

net-im/mcabber: remove unnecessary comment lines, fix KEYWORDS. 
mcabber-.ebuild was based upon the pull-request from Andrey Utkin :)

Package-Manager: portage-2.2.27

 net-im/mcabber/mcabber-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
index b4affe7..ecad5cf 100644
--- a/net-im/mcabber/mcabber-.ebuild
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -8,8 +8,6 @@ inherit flag-o-matic autotools-utils mercurial
 
 DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
 HOMEPAGE="http://mcabber.com/;
-#REV="a18e1b488f1c"
-#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
 EHG_REPO_URI="https://bitbucket.org/McKael/mcabber;
 EHG_CHECKOUT_DIR="${WORKDIR}"
 EHG_BOOTSTRAP="autogen.sh"
@@ -17,7 +15,7 @@ S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* ~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
 



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

2016-02-06 Thread Wolfram Schlich
commit: 4ae8021e0a2edb8d240cc418a4be783ccba9467d
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Feb  6 17:27:44 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Sat Feb  6 17:27:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae8021e

profiles/package.mask: added mask for net-im/mcabber live ebuild

 profiles/package.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 0bceef0..cb9bfa8 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Wolfram Schlich <wschl...@gentoo.org> (06 Feb 2016)
+# Mask live ebuild
+=net-im/mcabber-
+
 # Davide Pesavento <p...@gentoo.org> (06 Feb 2016)
 # Masked for removal in 30 days. Doesn't build against recent PyQt4
 # versions, bug 527572, not trivial to fix. Upstream doesn't seem to



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-02-06 Thread Wolfram Schlich
commit: c8f77c70cf139c7b197803f9c9cdfa72962b5bdc
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Feb  6 17:27:04 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Sat Feb  6 17:27:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f77c70

net-im/mcabber: add live ebuild wrt https://github.com/gentoo/gentoo/pull/361

Package-Manager: portage-2.2.27

 net-im/mcabber/mcabber-.ebuild | 120 +
 1 file changed, 120 insertions(+)

diff --git a/net-im/mcabber/mcabber-.ebuild 
b/net-im/mcabber/mcabber-.ebuild
new file mode 100644
index 000..b4affe7
--- /dev/null
+++ b/net-im/mcabber/mcabber-.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic autotools-utils mercurial
+
+DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
+HOMEPAGE="http://mcabber.com/;
+#REV="a18e1b488f1c"
+#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
+EHG_REPO_URI="https://bitbucket.org/McKael/mcabber;
+EHG_CHECKOUT_DIR="${WORKDIR}"
+EHG_BOOTSTRAP="autogen.sh"
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
+
+LANGS="cs de fr it nl pl ru uk"
+# localized help versions are installed only, when LINGUAS var is set
+for i in ${LANGS}; do
+   IUSE="${IUSE} linguas_${i}"
+done;
+
+RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+   otr? ( >=net-libs/libotr-3.1.0 )
+   aspell? ( app-text/aspell )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
+   idn? ( net-dns/libidn  )
+   spell? ( app-text/enchant )
+   dev-libs/glib:2
+   sys-libs/ncurses:0=
+   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF="1"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
+PATCHES=(
+   "${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
+)
+
+pkg_setup() {
+   if use aspell && use spell; then
+   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable crypt gpgme) \
+   $(use_enable otr) \
+   $(use_enable aspell) \
+   $(use_enable spell enchant) \
+   $(use_enable modules) \
+   $(use_with idn libidn)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   # clean unneeded language documentation
+   for i in ${LANGS}; do
+   use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+   done
+
+   # contrib themes
+   insinto /usr/share/${PN}/themes
+   doins "${S}"/contrib/themes/*
+
+   # contrib generic scripts
+   exeinto /usr/share/${PN}/scripts
+   doexe "${S}"/contrib/*.{pl,py}
+
+   # contrib event scripts
+   exeinto /usr/share/${PN}/scripts/events
+   doexe "${S}"/contrib/events/*
+
+   if use vim-syntax; then
+   cd contrib/vim/ || die
+
+   insinto /usr/share/vim/vimfiles/syntax
+   doins mcabber_log-syntax.vim
+
+   insinto /usr/share/vim/vimfiles/ftdetect
+   doins mcabber_log-ftdetect.vim
+   fi
+}
+
+pkg_postinst() {
+   elog
+   elog "MCabber requires you to create a subdirectory .mcabber in your 
home"
+   elog "directory and to place a configuration file there."
+   elog "An example mcabberrc was installed as part of the documentation."
+   elog "To create a new mcabberrc based on the example mcabberrc, execute 
the"
+   elog "following commands:"
+   elog
+   elog "  mkdir -p ~/.mcabber"
+   elog "  bzcat ${EROOT}usr/share/doc/${PF}/mcabberrc.example.bz2 
>~/.mcabber/mcabberrc"
+   elog
+   elog "Then edit ~/.mcabber/mcabberrc with your favorite editor."
+   elog
+   elog "See the CONFIGURATION FILE and FILES sections of the mcabber"
+   elog "manual page (section 1) for more information."
+   elog
+   elog "From version 0.9.0 on, MCabber supports PGP encryption of 
messages."
+   elog "See README_PGP.txt for details."
+   echo
+   einfo "Check out ${EROOT}usr/share/${PN} for contributed themes and 
event scripts."
+   echo
+}



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/skyldav/, app-antivirus/skyldav/files/

2016-02-01 Thread Wolfram Schlich
commit: 6ea3e65696e4fb24521636eaf18d8d400ad3d17b
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Feb  1 08:03:26 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Feb  1 08:03:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea3e656

app-antivirus/skyldav: initial import from my overlay

Package-Manager: portage-2.2.27

 app-antivirus/skyldav/Manifest |   1 +
 app-antivirus/skyldav/files/skyldav-0.5-conf.patch |  27 +
 .../skyldav/files/skyldav-0.5-examples.patch   |  11 +++
 .../skyldav/files/skyldav-0.5-syslog.patch |  22 +
 app-antivirus/skyldav/files/skyldav.confd  |  11 +++
 app-antivirus/skyldav/files/skyldav.initd  |  26 +
 app-antivirus/skyldav/files/skyldav.service-r1 |  15 +++
 app-antivirus/skyldav/files/skyldav.service.conf   |   3 +
 app-antivirus/skyldav/files/skyldav.tmpfilesd  |   2 +
 app-antivirus/skyldav/metadata.xml |  11 +++
 app-antivirus/skyldav/skyldav-0.5-r1.ebuild| 109 +
 11 files changed, 238 insertions(+)

diff --git a/app-antivirus/skyldav/Manifest b/app-antivirus/skyldav/Manifest
new file mode 100644
index 000..f729e27
--- /dev/null
+++ b/app-antivirus/skyldav/Manifest
@@ -0,0 +1 @@
+DIST skyldav-0.5.tar.gz 105274 SHA256 
308b7a15b920a33c2c381aeb607db5bece9560e0a85e3e65c2df0d153413f4cc SHA512 
24b9e3805574a2498b1e250cde790d6263f6f751546ad906303099bad5e722430568b1081764843a3c52f38730e8f26132f32058bea33c18f19673ac9147c323
 WHIRLPOOL 
77e77c25eaf3d0d3add4e1b03366c75dd1acdf8152d2987af61418a4793b1b0873cd0088e2bfd00c9864316e3b6e068c4bc96bc064cfec706a1b1b0c318d3aa1

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-conf.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-conf.patch
new file mode 100644
index 000..8255f7a
--- /dev/null
+++ b/app-antivirus/skyldav/files/skyldav-0.5-conf.patch
@@ -0,0 +1,27 @@
+diff -urN skyldav-0.5.orig/examples/etc/skyldav.conf 
skyldav-0.5/examples/etc/skyldav.conf
+--- skyldav-0.5.orig/examples/etc/skyldav.conf 2015-02-15 20:32:57.0 
+0100
 skyldav-0.5/examples/etc/skyldav.conf  2016-01-21 14:02:27.65425 
+0100
+@@ -19,14 +19,21 @@
+ 
+ # Directories that shall not be scanned (including subdirectories)
+ # EXCLUDE_PATH = /var/noscan, /opt/noscan
++EXCLUDE_PATH = /usr/portage, /var/db/pkg, /var/tmp/portage, /var/tmp/binpkgs
+ 
+ # File systems that are local, virus scan results may be cached.
+ # LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat
+-LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat
++LOCAL_FS = ext2, ext3, ext4, xfs, zfs, btrfs, reiserfs, vfat, ntfs, iso9660, 
tmpfs
+ 
+ # File systems that shall not be marked for virus scan.
+ # NOMARK_FS = proc, sysfs
+-NOMARK_FS = proc, sysfs, cifs
++#
++# Do not exclude devtmpfs and configs, as userspace could write malware onto 
them.
++# CIFS is also known to cause problems due to a background daemon, so we 
exclude it here
++# 
(https://github.com/xypron/skyldav/commit/63b01b912d3eed80f3db92aec8647770546f5c1c).
++# Note that FUSE file systems are automatically excluded from scanning
++# (https://github.com/xypron/skyldav/issues/3).
++NOMARK_FS = proc, sysfs, devpts, debugfs, securityfs, cgroup, rpc_pipefs, 
mqueue, autofs, cifs
+ 
+ # Mounts that shall not be marked for virus scan.
+ # NOMARK_MNT = /mnt/noscan

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-examples.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-examples.patch
new file mode 100644
index 000..5c61468
--- /dev/null
+++ b/app-antivirus/skyldav/files/skyldav-0.5-examples.patch
@@ -0,0 +1,11 @@
+diff -urN skyldav-0.5.orig/Makefile.am skyldav-0.5/Makefile.am
+--- skyldav-0.5.orig/Makefile.am   2015-02-15 20:32:57.0 +0100
 skyldav-0.5/Makefile.am2016-01-21 14:11:14.883632470 +0100
+@@ -9,7 +9,6 @@
+   rm -rf doc/doxygen
+ 
+ install-data-local: \
+-  install-skyldav-examples \
+   install-skyldav-conf \
+   install-skyldavnotify-desktop
+ 

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-syslog.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-syslog.patch
new file mode 100644
index 000..2e72ce2
--- /dev/null
+++ b/app-antivirus/skyldav/files/skyldav-0.5-syslog.patch
@@ -0,0 +1,22 @@
+diff -urN skyldav-0.5.orig/src/skyldav/Messaging.cc 
skyldav-0.5/src/skyldav/Messaging.cc
+--- skyldav-0.5.orig/src/skyldav/Messaging.cc  2015-02-15 20:32:57.0 
+0100
 skyldav-0.5/src/skyldav/Messaging.cc   2016-01-21 14:17:12.492010594 
+0100
+@@ -118,15 +118,17 @@
+ break;
+ case INFORMATION:
+ type = "I";
+-syslog(LOG_NOTICE, "%s", message.c_str());
++syslog(LOG_INFO, "%s", message.c_str());
+ std::cout << message << std::endl;
+ break;
+ case DEBUG:
+ type = "D";
++syslog(LOG_DEBUG, "%s", message.c_str());
+ std::c

[gentoo-commits] dev/wschlich:master commit in: app-antivirus/skyldav/files/, app-antivirus/skyldav/

2016-02-01 Thread Wolfram Schlich
commit: 055a577cf89c306ce4e596dd69bdfb74d00cc73b
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Feb  1 08:04:54 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Feb  1 08:04:54 2016 +
URL:https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=055a577c

app-antivirus/skyldav: moved to gentoo portage

 app-antivirus/skyldav/ChangeLog|  80 ---
 app-antivirus/skyldav/Manifest |   1 -
 app-antivirus/skyldav/files/skyldav-0.5-conf.patch |  27 -
 .../skyldav/files/skyldav-0.5-examples.patch   |  11 ---
 .../skyldav/files/skyldav-0.5-syslog.patch |  22 -
 app-antivirus/skyldav/files/skyldav.confd  |  11 ---
 app-antivirus/skyldav/files/skyldav.initd  |  26 -
 app-antivirus/skyldav/files/skyldav.service-r1 |  15 ---
 app-antivirus/skyldav/files/skyldav.service.conf   |   3 -
 app-antivirus/skyldav/files/skyldav.tmpfilesd  |   2 -
 app-antivirus/skyldav/metadata.xml |  12 ---
 app-antivirus/skyldav/skyldav-0.5-r1.ebuild| 109 -
 12 files changed, 319 deletions(-)

diff --git a/app-antivirus/skyldav/ChangeLog b/app-antivirus/skyldav/ChangeLog
deleted file mode 100644
index 30b2cb8..000
--- a/app-antivirus/skyldav/ChangeLog
+++ /dev/null
@@ -1,80 +0,0 @@
-*skyldav-0.4_p20141106 (06 Nov 2014)
-
-  06 Nov 2014; Wolfram Schlich <wschl...@gentoo.org>
-  +skyldav-0.4_p20141106.ebuild:
-  patch bump
-
-  26 Apr 2014; Wolfram Schlich <wschl...@gentoo.org> metadata.xml:
-  fix typo
-
-*skyldav-0.4 (30 Mar 2014)
-
-  30 Mar 2014; Wolfram Schlich <wschl...@gentoo.org>
-  +files/skyldav-0.4-conf.patch, +skyldav-0.4.ebuild:
-  version bump
-
-*skyldav-0.2 (13 Sep 2013)
-
-  13 Sep 2013; Wolfram Schlich <wschl...@gentoo.org> +skyldav-0.2.ebuild:
-  version bump
-
-*skyldav-0.2_rc4_p20130829 (03 Sep 2013)
-
-  03 Sep 2013; Wolfram Schlich <wschl...@gentoo.org>
-  +skyldav-0.2_rc4_p20130829.ebuild:
-  version bump
-
-*skyldav-0.2_rc4 (25 Aug 2013)
-
-  25 Aug 2013; Wolfram Schlich <wschl...@gentoo.org>
-  +files/skyldav-0.2_rc4-conf.patch, +files/skyldav-0.2_rc4-examples.patch,
-  +files/skyldav-0.2_rc4-more-syslog-messages.patch,
-  +files/skyldav-0.2_rc4-sbin.patch, +skyldav-0.2_rc4.ebuild,
-  -files/skyldav-0.2_rc3-sbin.patch,
-  -files/skyldav-0.2_rc3_p20130821-examples.patch,
-  -files/skyldav-0.2_rc3_p20130824-conf.patch,
-  -skyldav-0.2_rc3_p20130824.ebuild, -skyldav-0.2_rc3_p20130825.ebuild:
-  version bump, removed old versions
-
-*skyldav-0.2_rc3_p20130825 (25 Aug 2013)
-
-  25 Aug 2013; Wolfram Schlich <wschl...@gentoo.org>
-  +skyldav-0.2_rc3_p20130825.ebuild:
-  added clamav version dependency
-
-  24 Aug 2013; Wolfram Schlich <wschl...@gentoo.org>
-  -files/skyldav-0.2_rc3-conf.patch, -files/skyldav-0.2_rc3-examples.patch,
-  -files/skyldav-0.2_rc3-openlog.patch,
-  -files/skyldav-0.2_rc3_p20130816-syslog.patch,
-  -files/skyldav-0.2_rc3_p20130817-disable-skyldavnotify.patch,
-  -skyldav-0.2_rc3.ebuild, -skyldav-0.2_rc3_p20130816.ebuild,
-  -skyldav-0.2_rc3_p20130817-r1.ebuild, -skyldav-0.2_rc3_p20130817.ebuild,
-  -skyldav-0.2_rc3_p20130821-r1.ebuild, -skyldav-0.2_rc3_p20130821.ebuild:
-  removed old versions
-
-*skyldav-0.2_rc3_p20130824 (24 Aug 2013)
-
-  24 Aug 2013; Wolfram Schlich <wschl...@gentoo.org>
-  +files/skyldav-0.2_rc3_p20130824-conf.patch,
-  +skyldav-0.2_rc3_p20130824.ebuild:
-  update from upstream
-
-*skyldav-0.2_rc3_p20130821-r1 (21 Aug 2013)
-
-  21 Aug 2013; Wolfram Schlich <wschl...@gentoo.org>
-  +skyldav-0.2_rc3_p20130821-r1.ebuild:
-  update from upstream
-
-*skyldav-0.2_rc3_p20130821 (21 Aug 2013)
-
-  21 Aug 2013; Wolfram Schlich <wschl...@gentoo.org>
-  +files/skyldav-0.2_rc3_p20130821-examples.patch,
-  +skyldav-0.2_rc3_p20130821.ebuild:
-  update from upstream
-
-*skyldav-0.2_rc3_p20130817-r1 (17 Aug 2013)
-
-  17 Aug 2013; Wolfram Schlich <wschl...@gentoo.org>
-  +files/skyldav-0.2_rc3_p20130817-disable-skyldavnotify.patch,
-  +skyldav-0.2_rc3_p20130817-r1.ebuild:
-  added libnotify USE flag.

diff --git a/app-antivirus/skyldav/Manifest b/app-antivirus/skyldav/Manifest
deleted file mode 100644
index f729e27..000
--- a/app-antivirus/skyldav/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST skyldav-0.5.tar.gz 105274 SHA256 
308b7a15b920a33c2c381aeb607db5bece9560e0a85e3e65c2df0d153413f4cc SHA512 
24b9e3805574a2498b1e250cde790d6263f6f751546ad906303099bad5e722430568b1081764843a3c52f38730e8f26132f32058bea33c18f19673ac9147c323
 WHIRLPOOL 
77e77c25eaf3d0d3add4e1b03366c75dd1acdf8152d2987af61418a4793b1b0873cd0088e2bfd00c9864316e3b6e068c4bc96bc064cfec706a1b1b0c318d3aa1

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-conf.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-conf.patch
deleted file mode 100644
index 8255f7a..000
--- a/app-antivirus/skyldav/files/skyldav-0.5-conf.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff -urN sky

[gentoo-commits] repo/gentoo:master commit in: app-antivirus/skyldav/files/, app-antivirus/skyldav/

2016-02-01 Thread Wolfram Schlich
commit: f9e12fafac50b3d0ab4dfd5e3308e7316ecc5dd3
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Feb  1 13:23:07 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Feb  1 13:23:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9e12faf

app-antivirus/skyldav: adjust default config

Package-Manager: portage-2.2.27

 .../{skyldav-0.5-conf.patch => skyldav-0.5-conf-r1.patch}  |  8 +---
 .../skyldav/{skyldav-0.5-r1.ebuild => skyldav-0.5-r2.ebuild}   | 10 +-
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/app-antivirus/skyldav/files/skyldav-0.5-conf.patch 
b/app-antivirus/skyldav/files/skyldav-0.5-conf-r1.patch
similarity index 81%
rename from app-antivirus/skyldav/files/skyldav-0.5-conf.patch
rename to app-antivirus/skyldav/files/skyldav-0.5-conf-r1.patch
index 8255f7a..86b78c3 100644
--- a/app-antivirus/skyldav/files/skyldav-0.5-conf.patch
+++ b/app-antivirus/skyldav/files/skyldav-0.5-conf-r1.patch
@@ -1,11 +1,13 @@
 diff -urN skyldav-0.5.orig/examples/etc/skyldav.conf 
skyldav-0.5/examples/etc/skyldav.conf
 --- skyldav-0.5.orig/examples/etc/skyldav.conf 2015-02-15 20:32:57.0 
+0100
-+++ skyldav-0.5/examples/etc/skyldav.conf  2016-01-21 14:02:27.65425 
+0100
-@@ -19,14 +19,21 @@
 skyldav-0.5/examples/etc/skyldav.conf  2016-02-01 11:29:19.449054900 
+0100
+@@ -19,14 +19,23 @@
  
  # Directories that shall not be scanned (including subdirectories)
  # EXCLUDE_PATH = /var/noscan, /opt/noscan
-+EXCLUDE_PATH = /usr/portage, /var/db/pkg, /var/tmp/portage, /var/tmp/binpkgs
++# 
++# Exclude various portage directories for performance reasons
++EXCLUDE_PATH = /usr/portage, /var/cache/edb, /var/db/pkg, /var/tmp/portage, 
/var/tmp/binpkgs, /var/log/portage
  
  # File systems that are local, virus scan results may be cached.
  # LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat

diff --git a/app-antivirus/skyldav/skyldav-0.5-r1.ebuild 
b/app-antivirus/skyldav/skyldav-0.5-r2.ebuild
similarity index 90%
rename from app-antivirus/skyldav/skyldav-0.5-r1.ebuild
rename to app-antivirus/skyldav/skyldav-0.5-r2.ebuild
index 3175fc8..9b78b0a 100644
--- a/app-antivirus/skyldav/skyldav-0.5-r1.ebuild
+++ b/app-antivirus/skyldav/skyldav-0.5-r2.ebuild
@@ -49,7 +49,7 @@ DOCS=( AUTHORS NEWS README )
 PATCHES=(
"${FILESDIR}/${P}-syslog.patch"
"${FILESDIR}/${P}-examples.patch"
-   "${FILESDIR}/${P}-conf.patch"
+   "${FILESDIR}/${P}-conf-r1.patch"
 )
 
 pkg_setup() {
@@ -60,18 +60,18 @@ pkg_setup() {
 
## define contents for README.gentoo
if use systemd; then
-   DOC_CONTENTS='SkyldAV provides a systemd service.'$'\n'
+   DOC_CONTENTS='Skyld AV provides a systemd service.'$'\n'
DOC_CONTENTS+='Please edit the systemd service config file to 
match your needs:'$'\n'

DOC_CONTENTS+='/etc/systemd/system/skyldav.service.d/00gentoo.conf'$'\n'
DOC_CONTENTS+='# systemctl daemon-reload'$'\n'
DOC_CONTENTS+='# systemctl restart skyldav.service'$'\n'
-   DOC_CONTENTS+='Example for enabling the SkyldAV service:'$'\n'
+   DOC_CONTENTS+='Example for enabling the Skyld AV service:'$'\n'
DOC_CONTENTS+='# systemctl enable skyldav.service'$'\n'
else
-   DOC_CONTENTS='SkyldAV provides an init script for OpenRC.'$'\n'
+   DOC_CONTENTS='Skyld AV provides an init script for OpenRC.'$'\n'
DOC_CONTENTS+='Please edit the init script config file to match 
your needs:'$'\n'
DOC_CONTENTS+='/etc/conf.d/skyldav'$'\n'
-   DOC_CONTENTS+='Example for enabling the SkyldAV init 
script:'$'\n'
+   DOC_CONTENTS+='Example for enabling the Skyld AV init 
script:'$'\n'
DOC_CONTENTS+='# rc-update add skyldav default'$'\n'
fi
 }



[gentoo-commits] dev/wschlich:master commit in: app-antivirus/skyldav/, app-antivirus/skyldav/files/

2016-01-31 Thread Wolfram Schlich
commit: 649e20fe8f1ed9e6b387d97e72727349615fa8c6
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Feb  1 06:36:18 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Feb  1 06:36:18 2016 +
URL:https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=649e20fe

app-antivirus/skyldav: make skyldav service being started before skyldavnotify 
in X sessions (multi-user.target)

Package-Manager: portage-2.2.27

 app-antivirus/skyldav/files/{skyldav.service => skyldav.service-r1} | 1 +
 app-antivirus/skyldav/{skyldav-0.5.ebuild => skyldav-0.5-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-antivirus/skyldav/files/skyldav.service 
b/app-antivirus/skyldav/files/skyldav.service-r1
similarity index 93%
rename from app-antivirus/skyldav/files/skyldav.service
rename to app-antivirus/skyldav/files/skyldav.service-r1
index 8d8ee5e..decd788 100644
--- a/app-antivirus/skyldav/files/skyldav.service
+++ b/app-antivirus/skyldav/files/skyldav.service-r1
@@ -2,6 +2,7 @@
 Description=SkyldAV anti-virus on-access scanning daemon based upon Clam AV 
and fanotify
 Requires=local-fs.target clamd.service
 After=local-fs.target clamd.service
+Before=multi-user.target
 
 [Service]
 Type=simple

diff --git a/app-antivirus/skyldav/skyldav-0.5.ebuild 
b/app-antivirus/skyldav/skyldav-0.5-r1.ebuild
similarity index 97%
rename from app-antivirus/skyldav/skyldav-0.5.ebuild
rename to app-antivirus/skyldav/skyldav-0.5-r1.ebuild
index ddefa93..3175fc8 100644
--- a/app-antivirus/skyldav/skyldav-0.5.ebuild
+++ b/app-antivirus/skyldav/skyldav-0.5-r1.ebuild
@@ -88,7 +88,7 @@ src_install() {
 
## install systemd service or OpenRC init scripts
if use systemd; then
-   systemd_dounit "${FILESDIR}/skyldav.service"
+   systemd_newunit "${FILESDIR}/skyldav.service-r1" skyldav.service
systemd_install_serviced "${FILESDIR}"/skyldav.service.conf
systemd_newtmpfilesd "${FILESDIR}"/skyldav.tmpfilesd 
skyldav.conf
else



[gentoo-commits] dev/wschlich:master commit in: mail-filter/dovecot-antispam/

2016-01-28 Thread Wolfram Schlich
commit: 202941966d797e654ac9f389000fe703cef96ab9
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 28 08:49:19 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 28 08:49:19 2016 +
URL:https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=20294196

mail-filter/dovecot-antispam: removed.

 mail-filter/dovecot-antispam/ChangeLog | 12 
 mail-filter/dovecot-antispam/Manifest  |  2 -
 .../dovecot-antispam/dovecot-antispam-.ebuild  | 80 --
 3 files changed, 94 deletions(-)

diff --git a/mail-filter/dovecot-antispam/ChangeLog 
b/mail-filter/dovecot-antispam/ChangeLog
deleted file mode 100644
index 83df1f3..000
--- a/mail-filter/dovecot-antispam/ChangeLog
+++ /dev/null
@@ -1,12 +0,0 @@
-# ChangeLog for mail-filter/dovecot-antispam
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  01 Jun 2008; Wolfram Schlich <wschl...@gentoo.org>
-  dovecot-antispam-.ebuild:
-  added debug CFLAGS
-
-  27 Apr 2008; Wolfram Schlich <wschl...@gentoo.org>
-  +dovecot-antispam-.ebuild:
-  initial import
-

diff --git a/mail-filter/dovecot-antispam/Manifest 
b/mail-filter/dovecot-antispam/Manifest
deleted file mode 100644
index 7a4eadb..000
--- a/mail-filter/dovecot-antispam/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD dovecot-antispam-.ebuild 2145 RMD160 
0b9573768b7a56808d6083a64999bcee9acc4da4 SHA1 
f545fff6ba503b9853b11625afe3d3390a8dba96 SHA256 
1a53cee4be2de15e0daddd000116374f3a60f1bb07cee58f491d937d12097b5d
-MISC ChangeLog 340 RMD160 3efc4216a0f8aeab9440d0aa68ebf780f5524c0b SHA1 
1872f008894039a561349c514b00ce6780d6a0cd SHA256 
7e35f295a3d32dfe017fd02427f3b0de508b3bf221108859e856215df5baa54c

diff --git a/mail-filter/dovecot-antispam/dovecot-antispam-.ebuild 
b/mail-filter/dovecot-antispam/dovecot-antispam-.ebuild
deleted file mode 100644
index 11b0699..000
--- a/mail-filter/dovecot-antispam/dovecot-antispam-.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/mail-filter/dovecot-antispam/dovecot-antispam-20080424.ebuild,v
 1.1 2008/04/24 11:46:40 hollow Exp $
-
-inherit confutils eutils autotools flag-o-matic git multilib
-
-EGIT_REPO_URI="http://git.sipsolutions.net/dovecot-antispam.git;
-
-DESCRIPTION="A dovecot antispam plugin supporting multiple backends"
-HOMEPAGE="http://johannes.sipsolutions.net/Projects/dovecot-antispam;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug dspam crm114 mailtrain signature-log syslog"
-
-DEPEND="net-mail/dovecot
-   dspam? ( mail-filter/dspam )
-   crm114? ( app-text/crm114 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"/${PN}
-
-# we need this to prevent errors from dovecot-config
-top_builddir() {
-   return
-}
-
-pkg_setup() {
-   confutils_require_one dspam signature-log mailtrain crm114
-   confutils_use_depend_all syslog debug
-}
-
-src_unpack() {
-   git_src_unpack
-   cd "${S}"
-   sed -e 's/$(INSTALLDIR)/$(DESTDIR)$(INSTALLDIR)/' -i Makefile
-}
-
-src_compile() {
-   source "${ROOT}"/usr/lib/dovecot/dovecot-config || \
-   die "cannot find dovecot-config"
-
-   echo DOVECOT=${dovecot_incdir} > .config
-   if has_version '=net-mail/dovecot-1.0*'; then
-   echo DOVECOT_VERSION=1.0 >> .config
-   elif has_version '=net-mail/dovecot-1.1*'; then
-   echo DOVECOT_VERSION=1.1 >> .config
-   fi
-   echo INSTALLDIR=${moduledir}/imap/ >> .config
-   echo PLUGINNAME=antispam >> .config
-   echo USER=root >> .config
-   echo GROUP=root >> .config
-
-   use dspam && echo BACKEND=dspam-exec >> .config
-   use signature-log && echo BACKEND=signature-log >> .config
-   use mailtrain && echo BACKEND=mailtrain >> .config
-   use crm114 && echo BACKEND=crm114-exec >> .config
-
-   if use debug; then
-   echo CFLAGS+=-g3 >> .config
-   if use syslog; then
-   echo DEBUG=syslog >> .config
-   else
-   echo DEBUG=stderr >> .config
-   fi
-   fi
-
-   emake || die "make failed"
-}
-
-src_install() {
-   source "${ROOT}"/usr/lib/dovecot/dovecot-config || \
-   die "cannot find dovecot-config"
-
-   dodir "${moduledir}"/imap/
-   make DESTDIR="${D}" install || die "make install failed"
-
-   newman antispam.7 dovecot-antispam.7
-}



[gentoo-commits] dev/wschlich:master commit in: mail-filter/sbd-proxy/

2016-01-28 Thread Wolfram Schlich
commit: 85cc4bc635b30c2e5277937298a875298d7005c6
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 28 10:01:00 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 28 10:01:00 2016 +
URL:https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=85cc4bc6

mail-filter/sbd-proxy: fixes

Package-Manager: portage-2.2.27

 mail-filter/sbd-proxy/ChangeLog| 14 ---
 mail-filter/sbd-proxy/Manifest | 10 +
 mail-filter/sbd-proxy/metadata.xml |  8 
 mail-filter/sbd-proxy/sbd-proxy-1.0.ebuild | 49 --
 mail-filter/sbd-proxy/sbd-proxy-1.1.ebuild | 49 --
 ...bd-proxy-1.2.ebuild => sbd-proxy-1.2-r1.ebuild} | 12 +++---
 6 files changed, 16 insertions(+), 126 deletions(-)

diff --git a/mail-filter/sbd-proxy/ChangeLog b/mail-filter/sbd-proxy/ChangeLog
deleted file mode 100644
index 21f0e6a..000
--- a/mail-filter/sbd-proxy/ChangeLog
+++ /dev/null
@@ -1,14 +0,0 @@
-# ChangeLog for mail-filter/sbd-proxy
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  25 Jan 2010; Wolfram Schlich <wschl...@gentoo.org> +sbd-proxy-1.2.ebuild:
-  version bump
-
-  04 Nov 2009; Wolfram Schlich <wschl...@gentoo.org> +sbd-proxy-1.1.ebuild:
-  version bump
-
-  28 Oct 2009; Wolfram Schlich <wschl...@gentoo.org> +files/sbd-proxy.confd,
-  +files/sbd-proxy.initd, +sbd-proxy-1.0.ebuild:
-  initial import
-

diff --git a/mail-filter/sbd-proxy/Manifest b/mail-filter/sbd-proxy/Manifest
index 30c91fc..8c820f9 100644
--- a/mail-filter/sbd-proxy/Manifest
+++ b/mail-filter/sbd-proxy/Manifest
@@ -1,9 +1 @@
-AUX sbd-proxy.confd 187 RMD160 05ea13942b87b34efc7fbd7da5ee9e7b090aaf31 SHA1 
c800e8303a08a41a3cd09535d5ddd87a459e711e SHA256 
4c884c252cf1d65635daa59a0687f33509a56c1d4a403dcf4fcb87d0ba09f955
-AUX sbd-proxy.initd 798 RMD160 deacda480e48c30fc8d4230a28ce956dc2aac6b9 SHA1 
259ee4d091b255203a3ad2c84eecd9b5f567fe33 SHA256 
0b9dd9e3e765e5d14a5cb1ed33678db7e2f4ef07fc0947552788c78a9a4e3c8a
-DIST sbd-proxy-1.0.tar.bz2 6425 RMD160 
585017e239dc14835443805cf0ab75690b529f39 SHA1 
c45815e3935b944dde86daeb5634dab3c0b60dc3 SHA256 
c8d838e46cb0f3d39792f6c56ac5cc6b74b302c6987e3b3453f1f2733ab5dad3
-DIST sbd-proxy-1.1.tar.bz2 6488 RMD160 
d4e5725f92cd6fc26735220a32e237858a89cfb5 SHA1 
6cc38b9d64d347854929459ab8f358e7aae0ed57 SHA256 
4723b7d23e3556c91accd407baaba4de88286d025c23520e60eabecc6fae65be
-DIST sbd-proxy-1.2.tar.bz2 7797 RMD160 
bdea663404e8749c7b0254ad25ed5c30ec7bc6a2 SHA1 
9ed4a31785be0ffb04bf1aac468537298bf2688b SHA256 
7de022956e47149c5140447aec8c6ba7a7e278c71281dafaef512c5dc3f1440e
-EBUILD sbd-proxy-1.0.ebuild 1062 RMD160 
cf0ad92b5d062c46b3d34f1d5f7b141ee544295c SHA1 
b448b8111e4bf8c7f9f667a4f491002e4c87d4a9 SHA256 
2eed5616946c59025e1a4243a7b89d7f81d11a16de0095324234823b36da83ad
-EBUILD sbd-proxy-1.1.ebuild 1062 RMD160 
cf0ad92b5d062c46b3d34f1d5f7b141ee544295c SHA1 
b448b8111e4bf8c7f9f667a4f491002e4c87d4a9 SHA256 
2eed5616946c59025e1a4243a7b89d7f81d11a16de0095324234823b36da83ad
-EBUILD sbd-proxy-1.2.ebuild 1062 RMD160 
1720d4d93d63c48f2c628f4495d0b0c9bf07cd57 SHA1 
45ae27158a147fbc1d83d05a7d94d23215616287 SHA256 
b21dadd020484fab4b111bc46124a0297fe55113da9685bda57a18c80e61d9e2
-MISC ChangeLog 450 RMD160 d8827ba8ea0186d046439ae7e7e16eb316238848 SHA1 
5a5bf79f22a8d3bb3e2c68c4c76c10658dfedf14 SHA256 
10499a7fa83348cfab7515c8c1bba578e1b552a178c9ab9f7e8ba0f65ff9d80a
+DIST sbd-proxy-1.2.tar.bz2 7797 SHA256 
7de022956e47149c5140447aec8c6ba7a7e278c71281dafaef512c5dc3f1440e SHA512 
dbe62fe3e8f7970979c004387f1b5c62fc8dc36755989cdfe0e5b3791d69ef84166b66f1c05a8dec01596adb4f7023928f1ce89e48e1038292497503b79c9fe7
 WHIRLPOOL 
8420e9cbce06bfce68619061d4a960ee64231da7baa5554209f56d5872b7ee45e7dec1f32d26e01c293a0927e28d5dd5bb8ba891e61251c6f69d66b3af0716ab

diff --git a/mail-filter/sbd-proxy/metadata.xml 
b/mail-filter/sbd-proxy/metadata.xml
new file mode 100644
index 000..74350c0
--- /dev/null
+++ b/mail-filter/sbd-proxy/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   wschl...@gentoo.org
+   Wolfram Schlich
+   
+

diff --git a/mail-filter/sbd-proxy/sbd-proxy-1.0.ebuild 
b/mail-filter/sbd-proxy/sbd-proxy-1.0.ebuild
deleted file mode 100644
index 002ddd3..000
--- a/mail-filter/sbd-proxy/sbd-proxy-1.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils
-
-DESCRIPTION="An SMTP proxy for solicited bounce detection"
-HOMEPAGE="http://dev.gentoo.org/~wschlich/;
-SRC_URI="http://dev.gentoo.org/~wschlich/src/${CATEGORY}/${PN}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND="
-   virtual/perl-Getopt-Long
-   virtual/perl-Sys-Syslog
-   

[gentoo-commits] dev/wschlich:master commit in: dev-perl/Exception-Class-TryCatch/

2016-01-28 Thread Wolfram Schlich
commit: 5b07fecb37859e6ce5b98214514d2b9ed4c0ebd0
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 28 10:02:36 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 28 10:02:36 2016 +
URL:https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=5b07fecb

dev-perl/Exception-Class-TryCatch: fixes

Package-Manager: portage-2.2.27

 dev-perl/Exception-Class-TryCatch/ChangeLog| 14 --
 ...1.13.ebuild => Exception-Class-TryCatch-1.13-r1.ebuild} |  6 +++---
 2 files changed, 3 insertions(+), 17 deletions(-)

diff --git a/dev-perl/Exception-Class-TryCatch/ChangeLog 
b/dev-perl/Exception-Class-TryCatch/ChangeLog
deleted file mode 100644
index 98969bb..000
--- a/dev-perl/Exception-Class-TryCatch/ChangeLog
+++ /dev/null
@@ -1,14 +0,0 @@
-# ChangeLog for dev-perl/Exception-Class-TryCatch
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*Exception-Class-TryCatch-1.13 (26 Sep 2014)
-
-  26 Sep 2014; Wolfram Schlich <wschl...@gentoo.org>
-  +Exception-Class-TryCatch-1.13.ebuild, -Exception-Class-TryCatch-1.12.ebuild,
-  metadata.xml:
-  version bump, bump EAPI to 5
-
-  03 Aug 2009; Wolfram Schlich <wschl...@gentoo.org> +metadata.xml,
-  +Exception-Class-TryCatch-1.12.ebuild:
-  initial import

diff --git 
a/dev-perl/Exception-Class-TryCatch/Exception-Class-TryCatch-1.13.ebuild 
b/dev-perl/Exception-Class-TryCatch/Exception-Class-TryCatch-1.13-r1.ebuild
similarity index 78%
rename from 
dev-perl/Exception-Class-TryCatch/Exception-Class-TryCatch-1.13.ebuild
rename to 
dev-perl/Exception-Class-TryCatch/Exception-Class-TryCatch-1.13-r1.ebuild
index ff1959d..a89884a 100644
--- a/dev-perl/Exception-Class-TryCatch/Exception-Class-TryCatch-1.13.ebuild
+++ b/dev-perl/Exception-Class-TryCatch/Exception-Class-TryCatch-1.13-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 
@@ -15,6 +15,6 @@ IUSE=""
 
 RDEPEND="dev-perl/Exception-Class"
 DEPEND="${RDEPEND}
-   >=virtual/perl-Module-Build-0.28"
+   >=dev-perl/Module-Build-0.28"
 
 SRC_TEST="do"



[gentoo-commits] dev/wschlich:master commit in: dev-perl/Exception-Class-DBI/

2016-01-28 Thread Wolfram Schlich
commit: 1f6f8fd6050355138be871e3e9a41346e85da93a
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 28 10:01:51 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 28 10:01:51 2016 +
URL:https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=1f6f8fd6

dev-perl/Exception-Class-DBI: fixes

Package-Manager: portage-2.2.27

 dev-perl/Exception-Class-DBI/ChangeLog | 14 --
 ...-DBI-1.01.ebuild => Exception-Class-DBI-1.01-r1.ebuild} |  6 +++---
 2 files changed, 3 insertions(+), 17 deletions(-)

diff --git a/dev-perl/Exception-Class-DBI/ChangeLog 
b/dev-perl/Exception-Class-DBI/ChangeLog
deleted file mode 100644
index c7ab4e9..000
--- a/dev-perl/Exception-Class-DBI/ChangeLog
+++ /dev/null
@@ -1,14 +0,0 @@
-# ChangeLog for dev-perl/Exception-Class-DBI
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*Exception-Class-DBI-1.01 (26 Sep 2014)
-
-  26 Sep 2014; Wolfram Schlich <wschl...@gentoo.org>
-  +Exception-Class-DBI-1.01.ebuild, -Exception-Class-DBI-1.00.ebuild,
-  metadata.xml:
-  version bump, bump EAPI to 5
-
-  03 Aug 2009; Wolfram Schlich <wschl...@gentoo.org> +metadata.xml,
-  +Exception-Class-DBI-1.00.ebuild:
-  initial import

diff --git a/dev-perl/Exception-Class-DBI/Exception-Class-DBI-1.01.ebuild 
b/dev-perl/Exception-Class-DBI/Exception-Class-DBI-1.01-r1.ebuild
similarity index 76%
rename from dev-perl/Exception-Class-DBI/Exception-Class-DBI-1.01.ebuild
rename to dev-perl/Exception-Class-DBI/Exception-Class-DBI-1.01-r1.ebuild
index 90e12a4..f5a1d6e 100644
--- a/dev-perl/Exception-Class-DBI/Exception-Class-DBI-1.01.ebuild
+++ b/dev-perl/Exception-Class-DBI/Exception-Class-DBI-1.01-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 
@@ -15,6 +15,6 @@ IUSE=""
 
 RDEPEND="dev-perl/Exception-Class"
 DEPEND="${RDEPEND}
-   >=virtual/perl-Module-Build-0.28"
+   >=dev-perl/Module-Build-0.28"
 
 SRC_TEST="do"



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

2016-01-27 Thread Wolfram Schlich
commit: 9bc6db22aeffcf3ea99679fdc4ed05c4c85fa6d8
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 28 06:47:49 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 28 06:48:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc6db22

net-libs/loudmouth: added dependency on dev-util/gtk-doc (fixes bug #572990); 
removed short-lived version 1.5.1.

Package-Manager: portage-2.2.27

 net-libs/loudmouth/Manifest|  1 -
 net-libs/loudmouth/loudmouth-1.5.1.ebuild  | 56 --
 ...outh-1.5.2.ebuild => loudmouth-1.5.2-r1.ebuild} |  1 +
 3 files changed, 1 insertion(+), 57 deletions(-)

diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index 51b46d2..f988948 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,3 +1,2 @@
 DIST loudmouth-1.4.3.tar.bz2 366818 SHA256 
95a93f5d009b71ea8193d994aa11f311bc330a3efe1b7cd74dc48f11c7f929e3 SHA512 
02d1de14a4d626a4c9100bd24c06d4b4203eabb0f95bab40ee18ea5e68ed81d47aa977625140157b2d9f7974ac748af857c2ee3a916f0db700e2a2d0934940ec
 WHIRLPOOL 
4f9e3e8e4f2fd0a36996e84deebeb26c789d5334af11a3d6cc6c742b59508945a6279715f6fbb02bbbc04a0d9709e7aae4cc39803b2a60acfd47d76f0482f969
-DIST loudmouth-1.5.1.tar.gz 115811 SHA256 
9b0219233004da2f159175ef189363851b3df607e3777c422da1f5545daa17b3 SHA512 
d90096a2d10819b620f366a4d6998b281692ef65e0c27f2f59031e3f7495f278ec73a8d18ff38a7234f179b4f7f6adafa532a820023fd615dcf18c2ecd0d8982
 WHIRLPOOL 
4c3649c9d87088d68b01f0284d1fcd3abedf31dda6c8d9527785b79802ce2c7ac2a9fe4e0d0fe7a09926e4e9f6b06661ab857f272a3db5186125b20a9ba979f0
 DIST loudmouth-1.5.2.tar.gz 115940 SHA256 
c3dd7b5690a7b6ee4768d71d2bdee4615cfb73b6eeaa342d6a931a5160e47421 SHA512 
54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87
 WHIRLPOOL 
99fd7fa00f08976242313c2bc11e9edfbe1aeea9918090347a1975d5ece438892afbf3b5c16ffe79b1c0a10b28f35f62937d45a234e63b26f051466799fd7685

diff --git a/net-libs/loudmouth/loudmouth-1.5.1.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.1.ebuild
deleted file mode 100644
index 23def7e..000
--- a/net-libs/loudmouth/loudmouth-1.5.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils
-
-DESCRIPTION="Lightweight C Jabber library"
-HOMEPAGE="https://github.com/mcabber/loudmouth;
-SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
-
-IUSE="asyncns ssl openssl static-libs test"
-
-# Automagic libidn dependency
-RDEPEND="
-   >=dev-libs/glib-2.16:2
-   net-dns/libidn
-   ssl? (
-   !openssl? ( >=net-libs/gnutls-1.4.0 )
-   openssl? ( dev-libs/openssl:0 )
-   )
-   asyncns? ( >=net-libs/libasyncns-0.3 )
-"
-DEPEND="${RDEPEND}
-   test? ( dev-libs/check )
-   virtual/pkgconfig
-   >=dev-util/gtk-doc-am-1
-"
-
-src_prepare() {
-   eautoreconf
-}
-
-src_configure() {
-   local myconf
-
-   if use ssl; then
-   if ! use openssl; then
-   myconf="${myconf} --with-ssl=gnutls"
-   else
-   myconf="${myconf} --with-ssl=openssl"
-   fi
-   else
-   myconf="${myconf} --with-ssl=no"
-   fi
-
-   econf \
-   $(use_enable static-libs static) \
-   $(use_with asyncns) \
-   ${myconf}
-}

diff --git a/net-libs/loudmouth/loudmouth-1.5.2.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
similarity index 98%
rename from net-libs/loudmouth/loudmouth-1.5.2.ebuild
rename to net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
index 387dd40..c413070 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2-r1.ebuild
@@ -30,6 +30,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
test? ( dev-libs/check )
virtual/pkgconfig
+   >=dev-util/gtk-doc-1
>=dev-util/gtk-doc-am-1
 "
 



[gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/

2016-01-27 Thread Wolfram Schlich
commit: 4c5e95e68e30fca5479e4de3190fdefb0a9cc3ad
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Jan 27 11:04:54 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Jan 27 11:04:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c5e95e6

net-im/mcabber: version bump; sys-libs/ncurses dependency fix

Package-Manager: portage-2.2.27

 net-im/mcabber/Manifest |   1 +
 net-im/mcabber/mcabber-1.0.1.ebuild | 119 
 2 files changed, 120 insertions(+)

diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
index 4de926d..c94c1a9 100644
--- a/net-im/mcabber/Manifest
+++ b/net-im/mcabber/Manifest
@@ -1,3 +1,4 @@
 DIST mcabber-0.10.2_p20131025.tar.gz 399025 SHA256 
90f4e583a7ea929abcd243dc970d64db53f1f577a4a76dc55432eaa86b5ce007 SHA512 
4910acfb3d0f6341e0926bff740186d3039a47f15fd075409ecd940b6388b9bb3bf35cb88eb675e6063eaefba6f4421ca7c07e18cb307a1c7b3206c077feeeb1
 WHIRLPOOL 
12b9ea8d5dd2e70afeeaab18f8361bd57a5c9850bfc70e953800efe5319d632881163c48d904efc07aadb9cb1a33c09d9b034537e4fe3102793da084bd246e97
 DIST mcabber-0.10.3.tar.bz2 612153 SHA256 
77466138496cc26db125145cc28dc4fc0df79827143b922dfb9f02eb0dc7fa6d SHA512 
3f4c83dbe99f1e1981a89d2a9cdfbaf96b265aaabe133e41d562491557e0acc2d780ae88aa3e45eca9088318ef7d7b284f1df445d2b5afb139d5a247e111bc10
 WHIRLPOOL 
7139d7b44837026276b269f5d911486bc898ef4c72d0cec2ada066636f284c00205b207241024d4311a82f7eb6a83590dbf402167dec4441e477f6166a7595b5
 DIST mcabber-1.0.0.tar.bz2 602173 SHA256 
5476bcba395e0b9527823f5a9bce725151756f685ce2dcf6fad3dbe50a157032 SHA512 
bad8af15ed984ac0a568ea497464a3fa9b3ba3dea51cdd4042361be10783bba3578859ced532cd2c1cf19588fc42bdd561486b9fce6ed2da86a509e29c26c497
 WHIRLPOOL 
f9eba52f2686f0571947e006ce825378be7f00db8192988e5a071a86160c48b113609fe4f539d61191378348333763c24e013f5bc69863f4b41a54264313e3f8
+DIST mcabber-1.0.1.tar.bz2 604661 SHA256 
579a45a2bc944455012ca9b308f7f3454efabbe0c36c6723af761aa1f3092d93 SHA512 
23b268fb0c4e5ce0f28333d2b35fa8b6ead819359c0e2a633158bdcb637040c23deb2ca54d7d1a98a8a8fa37323bfe078371e790b5809af76fe9b940529f728c
 WHIRLPOOL 
9e5a2478a5bc7c8d35526bb81178842e04a5367b23cd7ec8dfa303069a6ad75ae74411977b9f354d3758c80a6ed578a4caf4c21cdb5322feece818d50e053a6b

diff --git a/net-im/mcabber/mcabber-1.0.1.ebuild 
b/net-im/mcabber/mcabber-1.0.1.ebuild
new file mode 100644
index 000..3fc2a58
--- /dev/null
+++ b/net-im/mcabber/mcabber-1.0.1.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic autotools-utils
+
+DESCRIPTION="A small Jabber console client with various features, like MUC, 
SSL, PGP"
+HOMEPAGE="http://mcabber.com/;
+#REV="a18e1b488f1c"
+#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="http://mcabber.com/files/${P}.tar.bz2;
+
+#S=${WORKDIR}/${PN}-${REV}/${PN}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
+
+LANGS="cs de fr it nl pl ru uk"
+# localized help versions are installed only, when LINGUAS var is set
+for i in ${LANGS}; do
+   IUSE="${IUSE} linguas_${i}"
+done;
+
+RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
+   otr? ( >=net-libs/libotr-3.1.0 )
+   aspell? ( app-text/aspell )
+   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
+   idn? ( net-dns/libidn  )
+   spell? ( app-text/enchant )
+   dev-libs/glib:2
+   sys-libs/ncurses:0=
+   >=net-libs/loudmouth-1.4.3-r1[ssl?]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF="1"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt 
)
+PATCHES=(
+   "${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
+)
+
+pkg_setup() {
+   if use aspell && use spell; then
+   ewarn "NOTE: You have both USE flags 'aspell' and 'spell' 
enabled, enchant (USE flag 'spell') will be preferred."
+   fi
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable crypt gpgme) \
+   $(use_enable otr) \
+   $(use_enable aspell) \
+   $(use_enable spell enchant) \
+   $(use_enable modules) \
+   $(use_with idn libidn)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   # clean unneeded language documentation
+   for i in ${LANGS}; do
+   use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+   done
+
+   # contrib the

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

2016-01-27 Thread Wolfram Schlich
commit: 9818c0fbf0719fa797e80dc70310a2e933375a65
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Jan 27 10:53:53 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Jan 27 10:54:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9818c0fb

net-libs/loudmouth: switched back SRC_URI to github now that the release tag is 
in place

Package-Manager: portage-2.2.27

 net-libs/loudmouth/Manifest   | 2 +-
 net-libs/loudmouth/loudmouth-1.5.2.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index b1b37be..51b46d2 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,3 +1,3 @@
 DIST loudmouth-1.4.3.tar.bz2 366818 SHA256 
95a93f5d009b71ea8193d994aa11f311bc330a3efe1b7cd74dc48f11c7f929e3 SHA512 
02d1de14a4d626a4c9100bd24c06d4b4203eabb0f95bab40ee18ea5e68ed81d47aa977625140157b2d9f7974ac748af857c2ee3a916f0db700e2a2d0934940ec
 WHIRLPOOL 
4f9e3e8e4f2fd0a36996e84deebeb26c789d5334af11a3d6cc6c742b59508945a6279715f6fbb02bbbc04a0d9709e7aae4cc39803b2a60acfd47d76f0482f969
 DIST loudmouth-1.5.1.tar.gz 115811 SHA256 
9b0219233004da2f159175ef189363851b3df607e3777c422da1f5545daa17b3 SHA512 
d90096a2d10819b620f366a4d6998b281692ef65e0c27f2f59031e3f7495f278ec73a8d18ff38a7234f179b4f7f6adafa532a820023fd615dcf18c2ecd0d8982
 WHIRLPOOL 
4c3649c9d87088d68b01f0284d1fcd3abedf31dda6c8d9527785b79802ce2c7ac2a9fe4e0d0fe7a09926e4e9f6b06661ab857f272a3db5186125b20a9ba979f0
-DIST loudmouth-1.5.2.tar.bz2 354286 SHA256 
91aae2df16be6f4286506bc04feffb9eb0138cfe8ca93a3cd8c1322b458a29e9 SHA512 
5c49e20e7b57768fd3dca2fe837769084287fcf3a99d26c1d25753e60eedf6bd39134ac19c4b8730530e90c0bb92f37dc01c78bddc169281693d84af50b96ae3
 WHIRLPOOL 
b4b2040478c37be126b38bbc176f7175f9c49da1872c384aa29d02fe4c0375a1ff698de6859b7d9fba58fb6c00293fb6c067a4357be77c0e723c25efbe9e
+DIST loudmouth-1.5.2.tar.gz 115940 SHA256 
c3dd7b5690a7b6ee4768d71d2bdee4615cfb73b6eeaa342d6a931a5160e47421 SHA512 
54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87
 WHIRLPOOL 
99fd7fa00f08976242313c2bc11e9edfbe1aeea9918090347a1975d5ece438892afbf3b5c16ffe79b1c0a10b28f35f62937d45a234e63b26f051466799fd7685

diff --git a/net-libs/loudmouth/loudmouth-1.5.2.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
index f37d59f..387dd40 100644
--- a/net-libs/loudmouth/loudmouth-1.5.2.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
@@ -8,8 +8,8 @@ inherit autotools eutils
 
 DESCRIPTION="Lightweight C Jabber library"
 HOMEPAGE="https://github.com/mcabber/loudmouth;
-#SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2;
+SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+#SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: sys-power/sispmctl/

2016-01-27 Thread Wolfram Schlich
commit: 5db8d61f409011d0557dc0da9186eec28ebdc73d
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Jan 27 13:44:37 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Jan 27 13:44:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db8d61f

sys-power/sispmctl: removed old (vulnerable) version (bug #327459)

Package-Manager: portage-2.2.27

 sys-power/sispmctl/Manifest|  1 -
 sys-power/sispmctl/sispmctl-2.7.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/sys-power/sispmctl/Manifest b/sys-power/sispmctl/Manifest
index ac65ee8..1052dbc 100644
--- a/sys-power/sispmctl/Manifest
+++ b/sys-power/sispmctl/Manifest
@@ -1,2 +1 @@
-DIST sispmctl-2.7.tar.gz 192388 SHA256 
d24d34fc7e14992ac822cef3c5567b04a077cfc96252b0a6fb238c8a272c16f4 SHA512 
c04ce9a4b1a9e220c22f92355891a3b2872022dc27fd2489772393fb9edd521bd963070beb480a992c65adaab649ed107f17d1898c883817f1e3fc4ac110649e
 WHIRLPOOL 
ac05e3ea079e8a55818cfe78f4e6e155d27cc43aaccd3f3585f9d09a214dca3c6a1797b58abadfb5914a205461338a6e9e9285ee89af98288796d8c60e2320aa
 DIST sispmctl-3.1.tar.gz 251896 SHA256 
e9a99cc81ef0a93f3484e5093efd14d93cc967221fcd22c151f0bea32eb91da7 SHA512 
2942c8f1c9e4d259667d384b9dca72569fac8c3c775e68f88599eb6f339b63d92c8226a406f998830af24ea9144ed75291bcc652293a870123925fe235c31d03
 WHIRLPOOL 
8f7ad31eb917456dacd0e09feb94fa04e8e1cdceb25626a0ce36004d117750146d50abd458913d0770cf2b3ef133cda8162a64809592015ae5080957d12aeced

diff --git a/sys-power/sispmctl/sispmctl-2.7.ebuild 
b/sys-power/sispmctl/sispmctl-2.7.ebuild
deleted file mode 100644
index 6b09427..000
--- a/sys-power/sispmctl/sispmctl-2.7.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-
-DESCRIPTION="GEMBIRD SiS-PM control utility"
-HOMEPAGE="http://sispmctl.sourceforge.net/;
-SRC_URI="mirror://sourceforge/sispmctl/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-RDEPEND="virtual/libusb:0"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   econf --enable-webless
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc README ChangeLog NEWS
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/cyberjack/files/, dev-libs/cyberjack/

2016-01-27 Thread Wolfram Schlich
commit: ff4dddc4a3385ec0ad0d284ba7ba27f1cf4737e8
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Jan 27 12:49:39 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Jan 27 13:16:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff4dddc4

dev-libs/cyberjack: version bump

Package-Manager: portage-2.2.27

 dev-libs/cyberjack/Manifest   |  2 +-
 ...yberjack-3.99.5_p05.ebuild => cyberjack-3.99.5_p08.ebuild} | 11 ++-
 ...5_p05-install.patch => cyberjack-3.99.5_p08-install.patch} |  0
 ...p05-manpages.patch => cyberjack-3.99.5_p08-manpages.patch} |  0
 ...turnvalue.patch => cyberjack-3.99.5_p08-returnvalue.patch} |  0
 5 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/dev-libs/cyberjack/Manifest b/dev-libs/cyberjack/Manifest
index 17389fb..cf65619 100644
--- a/dev-libs/cyberjack/Manifest
+++ b/dev-libs/cyberjack/Manifest
@@ -1,2 +1,2 @@
-DIST pcsc-cyberjack-3.99.5final.SP05.tar.bz2 761177 SHA256 
ac35afef89660cd43edabc4146463edf6b8361d1c7a7e1880239362167d3b311 SHA512 
634be5a0b1619423ebaeed9523ada95056725929ee68a1f9bb8a6d22285836f17a7de4fb634010d49fc49c952f0ba8759466ef5f90ffcbb0f9a392b2dfacaa9c
 WHIRLPOOL 
860872054b2c397e67f36c8d211e1461ad6039615f117e2f177b7d6cdd9d46aa3a4b83f13f2a349dd27e3b323f4d70b89c831e491f72475dcc459b8110162184
+DIST pcsc-cyberjack-3.99.5final.SP08.tar.bz2 786514 SHA256 
ab42b81ad685302c89763faaf0d90e23f804134e020d653323ad9f95a43655fc SHA512 
8630297b48e578d47e90cc3e216ff0daebfadee783f338588a5ad99132b5260901cf6545d292d312e054bcdd4a6e2d377a6c881d68e6c6bc062b0a435287181d
 WHIRLPOOL 
0fb4de26b6f7a117d648ebabf7f7b4c1ec68a261a454728ccacbb37b15c07764a0f85d441e06c7627ae891dadab0fcbee61cd31063069b7aeeca8f02241a4ee6
 DIST pcsc-cyberjack_3.99.5final.SP03.tar.gz 1485952 SHA256 
fa5324d8a270d50aec20345cb57362f684ddadd3a50dbd0773ee13d2d87bc0a9 SHA512 
a091a09b501d7a7c757f0a458007f44ac281cbeaaf5bc3c2aa89915ee7a39478e6f80b6f24fec77be753c8d77deeda2858b7a806e3c982f54c199bd797288e05
 WHIRLPOOL 
51429512a9037e6ec4a98cc33576176cafda5fe3a3b33c56b2d928c7a7bc06135ac93e92a713836e4dc20e90f6106f9ca3643de5baed7c25672c26f6fc4a6368

diff --git a/dev-libs/cyberjack/cyberjack-3.99.5_p05.ebuild 
b/dev-libs/cyberjack/cyberjack-3.99.5_p08.ebuild
similarity index 89%
rename from dev-libs/cyberjack/cyberjack-3.99.5_p05.ebuild
rename to dev-libs/cyberjack/cyberjack-3.99.5_p08.ebuild
index ca26dc9..134aa2d 100644
--- a/dev-libs/cyberjack/cyberjack-3.99.5_p05.ebuild
+++ b/dev-libs/cyberjack/cyberjack-3.99.5_p08.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -8,10 +8,10 @@ inherit autotools versionator eutils linux-info 
toolchain-funcs udev
 MY_PV="${PV/_p/_SP}"
 MY_PV2="${PV/_p/final.SP}"
 MY_P="pcsc-${PN}-${MY_PV2}"
-MY_P2="${PN}-$(get_version_component_range 4 $MY_PV)"
+#MY_P2="${PN}-$(get_version_component_range 4 $MY_PV)"
 
 DESCRIPTION="REINER SCT cyberJack pinpad/e-com USB user space driver library"
-HOMEPAGE="http://www.reiner-sct.de/ http://www.libchipcard.de/;
+HOMEPAGE="http://www.reiner-sct.de/;
 
SRC_URI="http://support.reiner-sct.de/downloads/LINUX/V${MY_PV}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2 LGPL-2.1"
@@ -25,7 +25,7 @@ IUSE="fox static-libs threads +udev +usb"
 COMMON_DEPEND="sys-apps/pcsc-lite
usb? ( virtual/libusb:1 )
fox? (
-   >=x11-libs/fox-1.6
+   >=x11-libs/fox-1.6:=
dev-libs/libxml2
)"
 RDEPEND="${COMMON_DEPEND}
@@ -33,7 +33,8 @@ RDEPEND="${COMMON_DEPEND}
 DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
 
-S=${WORKDIR}/${MY_P2}
+#S=${WORKDIR}/${MY_P2}
+S=${WORKDIR}/${MY_P}
 
 DOCS="ChangeLog NEWS doc/README.txt"
 

diff --git a/dev-libs/cyberjack/files/cyberjack-3.99.5_p05-install.patch 
b/dev-libs/cyberjack/files/cyberjack-3.99.5_p08-install.patch
similarity index 100%
rename from dev-libs/cyberjack/files/cyberjack-3.99.5_p05-install.patch
rename to dev-libs/cyberjack/files/cyberjack-3.99.5_p08-install.patch

diff --git a/dev-libs/cyberjack/files/cyberjack-3.99.5_p05-manpages.patch 
b/dev-libs/cyberjack/files/cyberjack-3.99.5_p08-manpages.patch
similarity index 100%
rename from dev-libs/cyberjack/files/cyberjack-3.99.5_p05-manpages.patch
rename to dev-libs/cyberjack/files/cyberjack-3.99.5_p08-manpages.patch

diff --git a/dev-libs/cyberjack/files/cyberjack-3.99.5_p05-returnvalue.patch 
b/dev-libs/cyberjack/files/cyberjack-3.99.5_p08-returnvalue.patch
similarity index 100%
rename from dev-libs/cyberjack/files/cyberjack-3.99.5_p05-returnvalue.patch
rename to dev-libs/cyberjack/files/cyberjack-3.99.5_p08-returnvalue.patch



[gentoo-commits] repo/gentoo:master commit in: app-misc/digitemp/

2016-01-27 Thread Wolfram Schlich
commit: 57843db712e10b6d08cd22631b15b04097850c74
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Jan 27 13:26:11 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Jan 27 13:26:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57843db7

app-misc/digitemp: version bump

Package-Manager: portage-2.2.27

 app-misc/digitemp/Manifest  |  1 +
 app-misc/digitemp/digitemp-3.7.1.ebuild | 76 +
 2 files changed, 77 insertions(+)

diff --git a/app-misc/digitemp/Manifest b/app-misc/digitemp/Manifest
index 83c5ddf..8edef76 100644
--- a/app-misc/digitemp/Manifest
+++ b/app-misc/digitemp/Manifest
@@ -1 +1,2 @@
 DIST digitemp-3.5.0.tar.gz 267947 SHA256 
e185ef9b84501b28568160eb5a5cc3b98b72c0791aff9c128ff6d0cd23b711e8 SHA512 
59055a97ae35cdc86bb893a755975b688d3be9185e717f5da0024d664e6c93dd5a7f10f1230772c3bc1bc76a088392da083ba63d28e054727b9f68ce31de64d3
 WHIRLPOOL 
d10bda164dee77a8f0c90330a2799a1f37d4c2f8b8c9709df1fa91939ccbc93f660c5184dadbb52f9d5cf80acf7fbd018e93d7f46283e5a5a6195bb257e4928f
+DIST digitemp-3.7.1.tar.gz 144870 SHA256 
6fa4d965350d5501b6ca73ee8a09276ca4f65b6d85dae62f0a796239bae5000e SHA512 
e5eaf576b544c61049a358dece7dc96d9793b751ef08645060f3b2c1a2006e2906c3aa3f97de3dab46818290d664d2e784a948b2495b538a200b6d71b03173d2
 WHIRLPOOL 
0448de6833a1b182ba1fc78f7aaa4fb1fde5dd6b10d027a66008aee3893e09c3ed82bc09ae4ab5efedf875cab0a537a0b78c277d43f93e4766d8d895678c38d5

diff --git a/app-misc/digitemp/digitemp-3.7.1.ebuild 
b/app-misc/digitemp/digitemp-3.7.1.ebuild
new file mode 100644
index 000..80024ae
--- /dev/null
+++ b/app-misc/digitemp/digitemp-3.7.1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit toolchain-funcs
+
+DESCRIPTION="Temperature logging and reporting using Maxim's iButtons and 
1-Wire protocol"
+HOMEPAGE="http://www.digitemp.com/ http://www.ibutton.com/;
+SRC_URI="https://github.com/bcl/digitemp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+IUSE="ds9097 ds9097u ds2490"
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="ds2490? ( virtual/libusb:0 )"
+
+targets() {
+   # default is to compile to the ds9097u.
+   if ! ( use ds9097 || use ds9097u || use ds2490 ); then
+   echo ds9097u
+   fi
+   for target in ds9097 ds9097u ds2490; do
+   if use ${target}; then
+   echo ${target}
+   fi
+   done
+}
+
+src_prepare() {
+   sed -i -e "/^CFLAGS/s:-O2:${CFLAGS}:" \
+   -e "/^LIBS/s:=:= ${LDFLAGS}:" Makefile
+   # default is to compile to the ds9097u.
+   if ! ( use ds9097 || use ds9097u || use ds2490 ); then
+   ewarn "If you don't choose a component to install, we default 
to ds9097u"
+   fi
+}
+
+src_compile() {
+   local targets=$(targets)
+
+   for target in $targets; do
+   emake clean
+   emake CC="$(tc-getCC)"  LOCK="no" ${target} || die "emake 
${target} failed"
+   done
+}
+
+src_install() {
+   for target in $(echo $(targets) | tr '[:lower:]' '[:upper:]'); do
+   dobin digitemp_${target} && \
+   dosym digitemp_${target} /usr/bin/digitemp
+   done
+
+   if [[ $(targets|wc -l) -ge 1 ]]; then
+   echo
+   ewarn "/usr/bin/digitemp has been symlinked to 
/usr/bin/digitemp_${target}"
+   ewarn "If you want to access the others, they are available at 
/usr/bin/digitemp_*"
+   echo
+   fi
+
+   dodoc README FAQ TODO
+
+   for example in perl python rrdb; do
+   insinto "/usr/share/doc/${PF}/${example}_examples"
+   doins -r ${example}/*
+   done
+}
+
+pkg_postinst() {
+   echo
+   elog "Examples of using digitemp with python, perl, and rrdtool are"
+   elog "located in /usr/share/doc/${PF}/"
+   echo
+}



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

2016-01-26 Thread Wolfram Schlich
commit: 1cfce963ddf292815ded6cf1b9c8e452c4a012c5
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Wed Jan 27 06:45:15 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Wed Jan 27 06:45:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cfce963

net-libs/loudmouth: version bump (with temporarily different SRC_URI)

Package-Manager: portage-2.2.27

 net-libs/loudmouth/Manifest   |  1 +
 net-libs/loudmouth/loudmouth-1.5.2.ebuild | 57 +++
 2 files changed, 58 insertions(+)

diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index bda3725..b1b37be 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,2 +1,3 @@
 DIST loudmouth-1.4.3.tar.bz2 366818 SHA256 
95a93f5d009b71ea8193d994aa11f311bc330a3efe1b7cd74dc48f11c7f929e3 SHA512 
02d1de14a4d626a4c9100bd24c06d4b4203eabb0f95bab40ee18ea5e68ed81d47aa977625140157b2d9f7974ac748af857c2ee3a916f0db700e2a2d0934940ec
 WHIRLPOOL 
4f9e3e8e4f2fd0a36996e84deebeb26c789d5334af11a3d6cc6c742b59508945a6279715f6fbb02bbbc04a0d9709e7aae4cc39803b2a60acfd47d76f0482f969
 DIST loudmouth-1.5.1.tar.gz 115811 SHA256 
9b0219233004da2f159175ef189363851b3df607e3777c422da1f5545daa17b3 SHA512 
d90096a2d10819b620f366a4d6998b281692ef65e0c27f2f59031e3f7495f278ec73a8d18ff38a7234f179b4f7f6adafa532a820023fd615dcf18c2ecd0d8982
 WHIRLPOOL 
4c3649c9d87088d68b01f0284d1fcd3abedf31dda6c8d9527785b79802ce2c7ac2a9fe4e0d0fe7a09926e4e9f6b06661ab857f272a3db5186125b20a9ba979f0
+DIST loudmouth-1.5.2.tar.bz2 354286 SHA256 
91aae2df16be6f4286506bc04feffb9eb0138cfe8ca93a3cd8c1322b458a29e9 SHA512 
5c49e20e7b57768fd3dca2fe837769084287fcf3a99d26c1d25753e60eedf6bd39134ac19c4b8730530e90c0bb92f37dc01c78bddc169281693d84af50b96ae3
 WHIRLPOOL 
b4b2040478c37be126b38bbc176f7175f9c49da1872c384aa29d02fe4c0375a1ff698de6859b7d9fba58fb6c00293fb6c067a4357be77c0e723c25efbe9e

diff --git a/net-libs/loudmouth/loudmouth-1.5.2.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
new file mode 100644
index 000..f37d59f
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+DESCRIPTION="Lightweight C Jabber library"
+HOMEPAGE="https://github.com/mcabber/loudmouth;
+#SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+
+IUSE="asyncns ssl openssl static-libs test"
+
+# Automagic libidn dependency
+RDEPEND="
+   >=dev-libs/glib-2.16:2
+   net-dns/libidn
+   ssl? (
+   !openssl? ( >=net-libs/gnutls-1.4.0 )
+   openssl? ( dev-libs/openssl:0 )
+   )
+   asyncns? ( >=net-libs/libasyncns-0.3 )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/check )
+   virtual/pkgconfig
+   >=dev-util/gtk-doc-am-1
+"
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   local myconf
+
+   if use ssl; then
+   if ! use openssl; then
+   myconf="${myconf} --with-ssl=gnutls"
+   else
+   myconf="${myconf} --with-ssl=openssl"
+   fi
+   else
+   myconf="${myconf} --with-ssl=no"
+   fi
+
+   econf \
+   $(use_enable static-libs static) \
+   $(use_with asyncns) \
+   ${myconf}
+}



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

2016-01-25 Thread Wolfram Schlich
commit: 2ffe23c24cd6f9140032982db318aff2174d7007
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Jan 25 13:34:12 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Jan 25 13:39:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffe23c2

net-libs/loudmouth: version bump (new upstream) with new USE=openssl; added 
myself as maintainer, removed the gnome herd as agreed upon with EvaSDK.

Package-Manager: portage-2.2.27

 net-libs/loudmouth/Manifest   |  1 +
 net-libs/loudmouth/loudmouth-1.5.1.ebuild | 56 +++
 net-libs/loudmouth/metadata.xml   | 21 ++--
 3 files changed, 68 insertions(+), 10 deletions(-)

diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index 10f2661..bda3725 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1 +1,2 @@
 DIST loudmouth-1.4.3.tar.bz2 366818 SHA256 
95a93f5d009b71ea8193d994aa11f311bc330a3efe1b7cd74dc48f11c7f929e3 SHA512 
02d1de14a4d626a4c9100bd24c06d4b4203eabb0f95bab40ee18ea5e68ed81d47aa977625140157b2d9f7974ac748af857c2ee3a916f0db700e2a2d0934940ec
 WHIRLPOOL 
4f9e3e8e4f2fd0a36996e84deebeb26c789d5334af11a3d6cc6c742b59508945a6279715f6fbb02bbbc04a0d9709e7aae4cc39803b2a60acfd47d76f0482f969
+DIST loudmouth-1.5.1.tar.gz 115811 SHA256 
9b0219233004da2f159175ef189363851b3df607e3777c422da1f5545daa17b3 SHA512 
d90096a2d10819b620f366a4d6998b281692ef65e0c27f2f59031e3f7495f278ec73a8d18ff38a7234f179b4f7f6adafa532a820023fd615dcf18c2ecd0d8982
 WHIRLPOOL 
4c3649c9d87088d68b01f0284d1fcd3abedf31dda6c8d9527785b79802ce2c7ac2a9fe4e0d0fe7a09926e4e9f6b06661ab857f272a3db5186125b20a9ba979f0

diff --git a/net-libs/loudmouth/loudmouth-1.5.1.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.1.ebuild
new file mode 100644
index 000..23def7e
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+DESCRIPTION="Lightweight C Jabber library"
+HOMEPAGE="https://github.com/mcabber/loudmouth;
+SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+
+IUSE="asyncns ssl openssl static-libs test"
+
+# Automagic libidn dependency
+RDEPEND="
+   >=dev-libs/glib-2.16:2
+   net-dns/libidn
+   ssl? (
+   !openssl? ( >=net-libs/gnutls-1.4.0 )
+   openssl? ( dev-libs/openssl:0 )
+   )
+   asyncns? ( >=net-libs/libasyncns-0.3 )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/check )
+   virtual/pkgconfig
+   >=dev-util/gtk-doc-am-1
+"
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   local myconf
+
+   if use ssl; then
+   if ! use openssl; then
+   myconf="${myconf} --with-ssl=gnutls"
+   else
+   myconf="${myconf} --with-ssl=openssl"
+   fi
+   else
+   myconf="${myconf} --with-ssl=no"
+   fi
+
+   econf \
+   $(use_enable static-libs static) \
+   $(use_with asyncns) \
+   ${myconf}
+}

diff --git a/net-libs/loudmouth/metadata.xml b/net-libs/loudmouth/metadata.xml
index 9b8477d..528027f 100644
--- a/net-libs/loudmouth/metadata.xml
+++ b/net-libs/loudmouth/metadata.xml
@@ -1,14 +1,15 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-gn...@gentoo.org
-Gentoo GNOME Desktop
-  
-  
-Use libasyncns for asynchronous name 
resolution.
-  
-  
-engineyard/loudmouth
-  
+   
+   wschl...@gentoo.org
+   Wolfram Schlich
+   
+   
+   Use net-libs/libasyncns for 
asynchronous name resolution.
+   Enable dev-libs/openssl support 
instead of gnutls (which is the default).
+   
+   
+   mcabber/loudmouth
+   
 



[gentoo-commits] repo/gentoo:master commit in: dev-db/sqldeveloper/

2016-01-22 Thread Wolfram Schlich
commit: 08bbb62c07710a8fc65ecef19852ece47389a8fb
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Jan 22 14:25:15 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Jan 22 14:25:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08bbb62c

dev-db/sqldeveloper: version bump

Package-Manager: portage-2.2.27

 dev-db/sqldeveloper/Manifest   |   1 +
 .../sqldeveloper/sqldeveloper-4.1.3.20.78.ebuild   | 101 +
 2 files changed, 102 insertions(+)

diff --git a/dev-db/sqldeveloper/Manifest b/dev-db/sqldeveloper/Manifest
index d39b812..ecb6066 100644
--- a/dev-db/sqldeveloper/Manifest
+++ b/dev-db/sqldeveloper/Manifest
@@ -1,3 +1,4 @@
 DIST sqldeveloper-3.2.20.09.87-no-jre.zip 182052759 SHA256 
787b703a3fa2d7969ae486b9f2f23bdafd31242b2af74257943cf826c535c8d4 SHA512 
716e2f9584e192b8e72a0e9439ac3fb0aea297087640df7c7c5659170846376d8e44d0fbdc68c96e274b100aad3f26b0710691349bfc0092c86c42830e115efe
 WHIRLPOOL 
1d9eb51cb263c14a89a44167a239f3be34b7ca9bd78eefc28a73c1b24e6f4e2f10a1665b0b4a03c6932f987fae375c95bfc310c485e179c76e9b7135bb9825e3
 DIST sqldeveloper-4.0.2.15.21-no-jre.zip 235443867 SHA256 
b23aca1d256002cdc19a0b3136ae13ebf9064feacc45a131be229a88fe9faed7 SHA512 
e67b0f3d127adbc6cb77b3eb822834a6c41be7039c54eceb85e8c882704684a02dd036f078408192ad2cbcb963dfb0ba583e99a9f7b7db36b1e9a1f96e555880
 WHIRLPOOL 
31b32713f116193036dc5dd9b63c9b6c321763e2273227c51d70bd3db93575e4f12150a045f8615fb6086ee1d464af4d112be5824f9bf22b4f5917ae5a15b724
 DIST sqldeveloper-4.1.1.19.59-no-jre.zip 328364824 SHA256 
3b0f3f861495f41b6844eeaf3a58117a90dd72d98cfe8d0b4ffafe103ec56bb5 SHA512 
1f5a683ba91a41cb7bc40a45215632ff10b2b1075d5b434d5a8349137d467f59192ec78d33e67b141729b7a1f3e5d678f8b934418e362706ac85a8b0fe89b838
 WHIRLPOOL 
fc4e86e18108729a044bbb4b75a25418599ac972ed003ee69cc0982e66eeb6779d3d46306ec3429b9f9d7a0fa01dc6242b66430c02fe333cb9d95f70160e3402
+DIST sqldeveloper-4.1.3.20.78-no-jre.zip 331401110 SHA256 
10caec7183f4075033598faf272d2be82207261442abf3bc3bd899246968b8de SHA512 
828a751bc9df7bdc59f9b89b317189826e328671d081df24d39a102aeefaf5a0a56e01e066802da1ee92617bf1fdb77ad598b448043dd7f4239f2103efb4427b
 WHIRLPOOL 
8eee4fbc34617f721893ab880be9c7c27ac8d5378491ba97bcd0084660ad500e2c0e4812ea5b25f8cd907e2c689168af08bbccfdc0b51f04cc0d74bf0760e009

diff --git a/dev-db/sqldeveloper/sqldeveloper-4.1.3.20.78.ebuild 
b/dev-db/sqldeveloper/sqldeveloper-4.1.3.20.78.ebuild
new file mode 100644
index 000..f457837
--- /dev/null
+++ b/dev-db/sqldeveloper/sqldeveloper-4.1.3.20.78.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils java-pkg-2
+
+DESCRIPTION="Oracle SQL Developer is a graphical tool for database development"
+HOMEPAGE="http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html;
+SRC_URI="${P}-no-jre.zip"
+
+RESTRICT="fetch"
+
+LICENSE="OTN"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="mssql mysql sybase"
+
+DEPEND="mssql? ( dev-java/jtds:1.2 )
+   mysql? ( dev-java/jdbc-mysql:0 )
+   sybase? ( dev-java/jtds:1.2 )"
+RDEPEND=">=virtual/jdk-1.8.0
+   dev-java/java-config:2
+   ${DEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+QA_PREBUILT="
+opt/${PN}/netbeans/platform/modules/lib/amd64/linux/*.so
+opt/${PN}/netbeans/platform/modules/lib/i386/linux/*.so
+"
+
+pkg_nofetch() {
+   eerror "Please go to"
+   eerror "${HOMEPAGE}"
+   eerror "and download"
+   eerror "Oracle SQL Developer for other platforms"
+   eerror "${SRC_URI}"
+   eerror "and move it to ${DISTDIR}"
+}
+
+src_prepare() {
+   # we don't need these, do we?
+   find ./ \( -iname "*.exe" -or -iname "*.dll" -or -iname "*.bat" \) 
-exec rm {} +
+
+   # they both use jtds, enabling one of them also enables the other one
+   if use mssql && ! use sybase; then
+   einfo "You requested MSSQL support, this also enables Sybase 
support."
+   fi
+   if use sybase && ! use mssql; then
+   einfo "You requested Sybase support, this also enables MSSQL 
support."
+   fi
+
+   if use mssql || use sybase; then
+   echo "AddJavaLibFile $(java-pkg_getjars jtds-1.2)" >> 
sqldeveloper/bin/sqldeveloper.conf
+   fi
+
+   if use mysql; then
+   echo "AddJavaLibFile $(java-pkg_getjars jdbc-mysql)" >> 
sqldeveloper/bin/sqldeveloper.conf
+   fi
+}
+
+src_install() {
+   dodir /opt/${PN}
+   # NOTE For future version to get that line (what to copy) go to the 
unpacked sources dir
+   # using `bash` and press Meta+_ (i.e. Meta+Shift+-

[gentoo-commits] repo/gentoo:master commit in: dev-db/sqldeveloper/

2016-01-22 Thread Wolfram Schlich
commit: 2f06a7861a5203033aad7996a625b90bc4107c7c
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Fri Jan 22 14:01:43 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Fri Jan 22 14:02:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f06a786

added myself to metadata.xml as a maintainer, removed proxy-maint and 
jan.bednar  gmail.com

Package-Manager: portage-2.2.27

 dev-db/sqldeveloper/metadata.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-db/sqldeveloper/metadata.xml b/dev-db/sqldeveloper/metadata.xml
index 77d2c7c..25a5c3f 100644
--- a/dev-db/sqldeveloper/metadata.xml
+++ b/dev-db/sqldeveloper/metadata.xml
@@ -1,10 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-proxy-maintainers
 
-   jan.bed...@gmail.com
-   Ján Bednár
+   wschl...@gentoo.org
+   Wolfram Schlich
Maintainer
 
 



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

2016-01-21 Thread Wolfram Schlich
commit: f25db9aed15a6aa2d962f5eb07fd0353c2a914c1
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 21 08:42:12 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 21 08:43:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f25db9ae

added dependency on sys-apps/dbus with abi_x86_32 wrt bug #572468

Package-Manager: portage-2.2.26

 .../teamviewer/teamviewer-11.0.53191-r1.ebuild | 131 +
 1 file changed, 131 insertions(+)

diff --git a/net-misc/teamviewer/teamviewer-11.0.53191-r1.ebuild 
b/net-misc/teamviewer/teamviewer-11.0.53191-r1.ebuild
new file mode 100644
index 000..2de33d3
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-11.0.53191-r1.ebuild
@@ -0,0 +1,131 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils gnome2-utils systemd unpacker
+
+# Major version
+MV=${PV/\.*}
+MY_PN=${PN}${MV}
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="https://download.teamviewer.com/download/version_${MV}x/${PN}_${PV}_i386.deb;
+
+IUSE="+system-wine"
+
+LICENSE="TeamViewer LGPL-2.1" #LGPL for bundled wine
+SLOT=${MV}
+KEYWORDS="-* ~amd64 ~x86"
+
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   system-wine? ( app-emulation/wine[abi_x86_32(-)] )
+   sys-apps/dbus[abi_x86_32(-)]
+   dev-qt/qtcore:4[abi_x86_32(-)]
+   dev-qt/qtgui:4[abi_x86_32(-)]
+   dev-qt/qtwebkit:4[abi_x86_32(-)]
+   media-libs/alsa-lib[abi_x86_32(-)]
+   x11-libs/libICE[abi_x86_32(-)]
+   x11-libs/libSM[abi_x86_32(-)]
+   x11-libs/libX11[abi_x86_32(-)]
+   x11-libs/libXau[abi_x86_32(-)]
+   x11-libs/libXdamage[abi_x86_32(-)]
+   x11-libs/libXdmcp[abi_x86_32(-)]
+   x11-libs/libXext[abi_x86_32(-)]
+   x11-libs/libXfixes[abi_x86_32(-)]
+   x11-libs/libXrandr[abi_x86_32(-)]
+   x11-libs/libXtst[abi_x86_32(-)]"
+
+QA_PREBUILT="opt/teamviewer${MV}/*"
+
+S=${WORKDIR}/opt/teamviewer/tv_bin
+
+src_prepare() {
+   #epatch "${FILESDIR}/${P}-gentoo.patch"
+   sed \
+   -e "s/@TVV@/${MV}/g" \
+   "${FILESDIR}"/${PN}d.init > "${T}"/init || die
+   sed \
+   -e "s:/opt/teamviewer:/opt/teamviewer${MV}:g" \
+   "script//${PN}d.service" > "${T}/${PN}d.service" || die
+   sed \
+   -e "s/@TVV@/${PV}/g" \
+   -e "s/@TVMV@/${MV}/g" \
+   "${FILESDIR}"/${PN}.sh > "${T}"/sh || die
+   if ! use system-wine; then
+   sed -i "s/native=true/native=false/g" "${T}/sh" || die
+   fi
+}
+
+src_install () {
+   local destdir="/opt/${MY_PN}"
+
+   # install wine prefix skeleton and reg keys
+   insinto "${destdir}/wine/drive_c/"
+   doins -r wine/drive_c/TeamViewer/
+   # install bundled wine if necessary
+   if ! use system-wine; then
+   insinto "${destdir}/tv_bin/wine"
+   doins -r wine/{lib,share}
+   exeinto "${destdir}/tv_bin/wine/bin"
+   doexe wine/bin/{wine,wine-preloader,wineserver}
+   fi
+   # fix permissions
+   fperms 755 ${destdir}/wine/drive_c/TeamViewer/TeamViewer.exe
+
+   # install wine wrapper
+   exeinto "/opt/bin"
+   newexe "${T}/sh" "${MY_PN}"
+
+   # install teamviewer linux binaries
+   exeinto "${destdir}/tv_bin"
+   doexe TeamViewer_Desktop TVGuiDelegate TVGuiSlave.32
+   use amd64 && doexe TVGuiSlave.64
+
+   # install daemon binary and scripts
+   exeinto "${destdir}/tv_bin"
+   doexe ${PN}d
+   newinitd "${T}/init" ${PN}d${MV}
+   newconfd "${FILESDIR}/${PN}d.conf" ${PN}d${MV}
+   systemd_newunit "${T}/${PN}d.service" ${PN}d${MV}.service
+
+   # set up logdir
+   keepdir /var/log/${MY_PN}
+   dosym /var/log/${MY_PN} /opt/${MY_PN}/logfiles
+
+   # set up config dir
+   keepdir /etc/${MY_PN}
+   dosym /etc/${MY_PN} /opt/${MY_PN}/config
+
+   newicon -s 48 desktop/${PN}.png ${MY_PN}.png
+   #dodoc ../doc/linux_FAQ_{EN,DE}.txt
+   make_desktop_entry ${MY_PN} "TeamViewer ${MV}" ${MY_PN}
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+
+   elog "TeamViewer from upstream uses an overly-complicated set of bash"
+   elog "scripts to start the program.  This has been simplified for 
Gentoo"
+   elog "use.  Any issues should be reported via bugzilla."
+   if use system-wine; then
+

[gentoo-commits] dev/wschlich:master commit in: app-antivirus/skyldav/, app-antivirus/skyldav/files/

2016-01-21 Thread Wolfram Schlich
commit: 7c9ebf862eb9348514be5c3326eff4e7fc5444a0
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 21 16:41:20 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 21 16:41:20 2016 +
URL:https://gitweb.gentoo.org/dev/wschlich.git/commit/?id=7c9ebf86

version bump including systemd support; removed old versions

Package-Manager: portage-2.2.26

 app-antivirus/skyldav/Manifest |   6 +-
 .../skyldav/files/skyldav-0.2_rc4-conf.patch   |  21 
 .../skyldav/files/skyldav-0.2_rc4-examples.patch   |  11 ---
 .../skyldav-0.2_rc4-more-syslog-messages.patch |  16 ---
 .../skyldav/files/skyldav-0.2_rc4-sbin.patch   |  19 
 ...yldav-0.4-conf.patch => skyldav-0.5-conf.patch} |   8 +-
 .../skyldav/files/skyldav-0.5-examples.patch   |  11 +++
 .../skyldav/files/skyldav-0.5-syslog.patch |  22 +
 app-antivirus/skyldav/files/skyldav.service|  14 +++
 app-antivirus/skyldav/files/skyldav.service.conf   |   3 +
 app-antivirus/skyldav/files/skyldav.tmpfilesd  |   2 +
 app-antivirus/skyldav/skyldav-0.2.ebuild   |  74 --
 app-antivirus/skyldav/skyldav-0.2_rc4.ebuild   |  74 --
 .../skyldav/skyldav-0.2_rc4_p20130829.ebuild   |  74 --
 app-antivirus/skyldav/skyldav-0.4.ebuild   |  73 --
 app-antivirus/skyldav/skyldav-0.4_p20141106.ebuild |  73 --
 app-antivirus/skyldav/skyldav-0.5.ebuild   | 109 +
 17 files changed, 166 insertions(+), 444 deletions(-)

diff --git a/app-antivirus/skyldav/Manifest b/app-antivirus/skyldav/Manifest
index 3ed79e5..f729e27 100644
--- a/app-antivirus/skyldav/Manifest
+++ b/app-antivirus/skyldav/Manifest
@@ -1,5 +1 @@
-DIST skyldav-0.2.tar.gz 104415 SHA256 
02c1b794c658fe9b6bfbdbf1d162cdb0f72872c7734f59ecbfc9fa5c7bd496ec SHA512 
09d4bd99051c8a407ab005d8913c320c481afb44d32ffe8c573ecc0e63be6e632724e89672ff98b5baf4948fe5631c2ba9c8bb56aa84fa05b8ad0deb5ca4fd90
 WHIRLPOOL 
e3e2cb9599c7fd2e55f11fa344bcab8da0ae93e1fe3887ca1a3336aaad178467d635fd13de36c48984602c247281d74bbfbf895fc14cacf0b80e5596bf37d0d2
-DIST skyldav-0.2_rc4_p20130829.tar.gz 104425 SHA256 
f05e198553ff4deb60a06b4d3166bccf1099e2fcd86a180f74f9ee7069b7cdef SHA512 
0961b068acb693f3225fbd0d58e29bc3346474ea05b0c513bafe12f16a8ddbe6ca6f97d833046b927cff346d4b9a64c213d4bca3199816dbfd8a63213b009a63
 WHIRLPOOL 
88a721d403d0f23c380b46b8b577f34434e028c63df931eb14ba27820cbd5ab953e35148bc16d2e4e6177884e9615a268a08455323c8703e867babb1f231c463
-DIST skyldav-0.2rc4.tar.gz 102690 SHA256 
9752520ca4b50ee181541b4decddffacd17c192bcf059e5d89d5de5485747bc3 SHA512 
ed62c459907afed619df362f08b2eb565cef70b2c10f1da7f64d72a0ee2767f776387b38b50c3729eaca33ac640b827bdd1cb02f117778944c512d8902f40858
 WHIRLPOOL 
90cae16a26122df1db9c4d0c4ba13fa5939febdbc2d2e61ed5a0755234f3fe2ec055bcd138c7f2fd9c2ad1827b0aa3789117d755c5100c1ba1e7f5863a004e09
-DIST skyldav-0.4.tar.gz 105352 SHA256 
677f743db5810fd367a06ebb2591f20f6af4dd3fdc9d2bcf038d3576c598beec SHA512 
4a98d2d87541b044eeb233e154a6dcbc0da0ed2cba3a38bb89cfb3e27bdea2ae4ee7edf363f6f5b1d3978d042e5a31cac1e04353fecedb52c0053fb888fd144a
 WHIRLPOOL 
b7b9b29bac94a76ada5574b72798e2ad125ea0929b99e9efe8fcadcbefe7c430fb5e4d84120677f9c3fdc2531f3f6f23ad390893c37bb675c695f3b28eba5cd1
-DIST skyldav-0.4_p20141106.tar.gz 105400 SHA256 
34920336c558e7b88b1c6f934453eb6a626b1de5c8adde2c42f7018168680a7d SHA512 
8ae7a33459cbd2e1d3706f10058e6a13bae14e1a42628d3e3a3faeaeb56c72375c4e15c2b2ac5bbb6d9f43492cb9431603a9f0aea10aba75f2fbe53f10480d0c
 WHIRLPOOL 
bd76825f3acf8e3ceed854c70dd27194915241b2fb3568d2883d443ef630804155585bf93e772dd6fbbb7a339a456d36b6ebdd297342d72900715f41be036b6d
+DIST skyldav-0.5.tar.gz 105274 SHA256 
308b7a15b920a33c2c381aeb607db5bece9560e0a85e3e65c2df0d153413f4cc SHA512 
24b9e3805574a2498b1e250cde790d6263f6f751546ad906303099bad5e722430568b1081764843a3c52f38730e8f26132f32058bea33c18f19673ac9147c323
 WHIRLPOOL 
77e77c25eaf3d0d3add4e1b03366c75dd1acdf8152d2987af61418a4793b1b0873cd0088e2bfd00c9864316e3b6e068c4bc96bc064cfec706a1b1b0c318d3aa1

diff --git a/app-antivirus/skyldav/files/skyldav-0.2_rc4-conf.patch 
b/app-antivirus/skyldav/files/skyldav-0.2_rc4-conf.patch
deleted file mode 100644
index d540b71..000
--- a/app-antivirus/skyldav/files/skyldav-0.2_rc4-conf.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -urN skyldav-0.2rc4.orig/examples/etc/skyldav.conf 
skyldav-0.2rc4/examples/etc/skyldav.conf
 skyldav-0.2rc4.orig/examples/etc/skyldav.conf  2013-08-25 
13:20:14.0 +0200
-+++ skyldav-0.2rc4/examples/etc/skyldav.conf   2013-08-25 21:58:02.243407000 
+0200
-@@ -19,14 +19,15 @@
- 
- # Directories that shall not be scanned (including subdirectories)
- # EXCLUDE_PATH = /var/noscan, /opt/noscan
-+#EXCLUDE_PATH = /usr/portage, /var/db/pkg, /var/tmp/portage, /var/tmp/binpkgs
- 
- # File systems that are local, virus scan results may be cached.
- # LOCAL_FS = ext3, ext4, iso9660, tmpfs, vfat
--LOCAL_FS = e

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

2016-01-20 Thread Wolfram Schlich
commit: ddd48a9c4bd6ddc5e32c3331e10e6d7a8b3c0453
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 21 07:31:11 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 21 07:31:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd48a9c

added myself to metadata.xml as a maintainer

Package-Manager: portage-2.2.26

 net-misc/teamviewer/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/net-misc/teamviewer/metadata.xml b/net-misc/teamviewer/metadata.xml
index 936b3b0..6a53856 100644
--- a/net-misc/teamviewer/metadata.xml
+++ b/net-misc/teamviewer/metadata.xml
@@ -3,6 +3,10 @@
 
wine

+   wschl...@gentoo.org
+   Wolfram Schlich
+   
+   
np-hard...@gentoo.org
NP-Hardass 




[gentoo-commits] repo/gentoo:master commit in: app-emulation/q4wine/

2016-01-20 Thread Wolfram Schlich
commit: 4b992ca12f07e4f22fe8c65cfe7b886bd6ffe54a
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Thu Jan 21 07:27:44 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Thu Jan 21 07:28:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b992ca1

added q4wine-1.2_p2

Package-Manager: portage-2.2.26

 app-emulation/q4wine/Manifest |  1 +
 app-emulation/q4wine/q4wine-1.2_p2.ebuild | 62 +++
 2 files changed, 63 insertions(+)

diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest
index f203be4..5dbb9f0 100644
--- a/app-emulation/q4wine/Manifest
+++ b/app-emulation/q4wine/Manifest
@@ -1,2 +1,3 @@
 DIST q4wine-1.0-r3.tar.bz2 889308 SHA256 
9f1319dd0baff3834a3938e0a048c1529cb9ea521158370176b706fce0d4d2ff SHA512 
df10a2fbf6874f4c4e02dd9c43031453a46c76f03d83321f2d6e9544d0540dd07da1bc9246767c5c91ce17d67d5d236227294efaed9de09f3d5a18afbd60b224
 WHIRLPOOL 
51b5b4cfc157da6b99154269ef4ef9f38ff91f861864158b789352505af485d8b523a21c6d4b59544804ed3c15cb1c6c756db3f3203c8e3ba55c8396c3630df3
 DIST q4wine-1.1-r2.tar.bz2 888990 SHA256 
01463f9ec3ef9f7ef987d2b77425f2806cf2b60f574deb6644458366782eafc7 SHA512 
8aaeec46d239a86a9eb10377842d63d84a35864f920f9dc46a022ae1cf3e010273d3759701595e058a089f6418a297a0bf94ed62b580a71fa1c8c27a80f4ec7e
 WHIRLPOOL 
6ae891e33a2bf3759c45930820e21a273b2bf36f2c386a841a96c3bf14cfdb6741871d3c90383dde3b6b01df1a87f5b1537ae40bac5a494bdd3023248c526244
+DIST q4wine-1.2-r2.tar.bz2 690922 SHA256 
44bac78060233504d0db945533e5da4a92bf8b4ca4ef87928032d14451e42160 SHA512 
c47fc3adc756ea4bc33dc10f6de03e0a0e72258d1b4b238930136653a7938869d221ce08f6fcafcd5f012583b28227cf827505a59ee5322e9ab90c2c819fd7cb
 WHIRLPOOL 
564eb944097528248f340ac59462f63bec22211d554ad26f125d46382a30ee2a8b7c8d00dd8874fabe92ae939f6bcf13665158957e0e8dad26e077018e495c0d

diff --git a/app-emulation/q4wine/q4wine-1.2_p2.ebuild 
b/app-emulation/q4wine/q4wine-1.2_p2.ebuild
new file mode 100644
index 000..686546e
--- /dev/null
+++ b/app-emulation/q4wine/q4wine-1.2_p2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PLOCALES="af_ZA cs_CZ de_DE en_US es_ES fa_IR he_IL it_IT pl_PL pt_BR ru_RU 
uk_UA"
+PLOCALE_BACKUP="en_US"
+
+inherit cmake-utils l10n
+
+DESCRIPTION="Qt4 GUI configuration tool for Wine"
+HOMEPAGE="http://q4wine.brezblock.org.ua/;
+
+# Upstream names the package PV-rX. We change that to
+# PV_pX so we can use portage revisions.
+MY_PV="${PV/_p/-r}"
+MY_P="${PN}-${MY_PV}"
+SRC_URI="mirror://sourceforge/${PN}/${PN}/${PN}%20${MY_PV}/${MY_P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+dbus debug +icoutils +wineappdb"
+
+DEPEND="
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtsingleapplication[qt4(+),X]
+   dev-qt/qtsql:4[sqlite]
+   dbus? ( dev-qt/qtdbus:4 )
+"
+RDEPEND="${DEPEND}
+   app-admin/sudo
+   app-emulation/wine
+   >=sys-apps/which-2.19
+   sys-fs/fuseiso
+   icoutils? ( >=media-gfx/icoutils-0.26.0 )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS=( AUTHORS ChangeLog README )
+
+src_configure() {
+   local enabled_linguas
+   construct_LINGUAS() {
+   local current_locale="$(echo ${1} | tr '[:upper:]' '[:lower:]')"
+   enabled_linguas="${enabled_linguas};${current_locale}"
+   }
+   l10n_for_each_locale_do construct_LINGUAS
+   local mycmakeargs=(
+   -DLINGUAS="${enabled_linguas}"
+   -DQT5=OFF
+   -DWITH_SYSTEM_SINGLEAPP=ON
+   $(cmake-utils_use debug)
+   $(cmake-utils_use_with dbus)
+   $(cmake-utils_use_with icoutils)
+   $(cmake-utils_use_with wineappdb)
+   )
+   cmake-utils_src_configure
+}



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

2016-01-18 Thread Wolfram Schlich
commit: 28728080202ad90a20b0d2001c4047841a6138cb
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Mon Jan 18 11:19:37 2016 +
Commit:     Wolfram Schlich  gentoo  org>
CommitDate: Mon Jan 18 15:59:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28728080

added teamviewer-11.0.53191

Package-Manager: portage-2.2.26

 net-misc/teamviewer/Manifest |   1 +
 net-misc/teamviewer/teamviewer-11.0.53191.ebuild | 130 +++
 2 files changed, 131 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index d77a6dd..89153cf 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,2 +1,3 @@
 DIST teamviewer-9.0.32150.deb 22898922 SHA256 
66d9a69f7e1523a2e1b41ff2e55adac01b2dae9b8bdfabf9db6080fc21d24451 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 WHIRLPOOL 
fa48ff99a5df29072b1073f35e3f27aeba87b2b846813dca612212344a5b8e35f7f1e221e1fb4f7a12464fce4a185b8dad6dd8f48432e4c48ecd61d9cc6b7960
 DIST teamviewer_10.0.41499_i386.deb 41166700 SHA256 
0694c756b8cb5f2b09c8d6db960ced3e899d4ce43060e77ef4f1c36254dc31c4 SHA512 
afdfafb89398b29206414537c69a798574807c0f350d7ec819579167e0ffbb33c2c3754fdc17a79576b3ff7bcb729c78bda47a5387c1dc178cf85107dae71d9f
 WHIRLPOOL 
a0d1595f4133e6e875e49ed6db6777e732c79f7a283d1bcddfd489557eb3bebbbc9c41362cf3576e97513ce8345665645fa5e54ada12275e29bd8d3349752713
+DIST teamviewer_11.0.53191_i386.deb 53086174 SHA256 
e37f4fa053648366a73ac7af684cee8567f3d5ef580ac5f63cbc7a68da6124fb SHA512 
4c426267451bab91e75b914ed825a1f8ac5fff8a82496c411aca14fc91a6b2569c9922d0b6e92bd15f8a46c9238176c2322dafcd0a73bf2605923cc423eb0003
 WHIRLPOOL 
18b068f69694328ddec0ff5fbffb38befb44884c1919d1b6667f2b164c5023f6273a04627b1c6a95ea4ee1b06e903a666751f41e922d121fde38a44cb3efa2c4

diff --git a/net-misc/teamviewer/teamviewer-11.0.53191.ebuild 
b/net-misc/teamviewer/teamviewer-11.0.53191.ebuild
new file mode 100644
index 000..8ad6896
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-11.0.53191.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils gnome2-utils systemd unpacker
+
+# Major version
+MV=${PV/\.*}
+MY_PN=${PN}${MV}
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="https://download.teamviewer.com/download/version_${MV}x/${PN}_${PV}_i386.deb;
+
+IUSE="+system-wine"
+
+LICENSE="TeamViewer LGPL-2.1" #LGPL for bundled wine
+SLOT=${MV}
+KEYWORDS="-* ~amd64 ~x86"
+
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   system-wine? ( app-emulation/wine[abi_x86_32(-)] )
+   dev-qt/qtcore:4[abi_x86_32(-)]
+   dev-qt/qtgui:4[abi_x86_32(-)]
+   dev-qt/qtwebkit:4[abi_x86_32(-)]
+   media-libs/alsa-lib[abi_x86_32(-)]
+   x11-libs/libICE[abi_x86_32(-)]
+   x11-libs/libSM[abi_x86_32(-)]
+   x11-libs/libX11[abi_x86_32(-)]
+   x11-libs/libXau[abi_x86_32(-)]
+   x11-libs/libXdamage[abi_x86_32(-)]
+   x11-libs/libXdmcp[abi_x86_32(-)]
+   x11-libs/libXext[abi_x86_32(-)]
+   x11-libs/libXfixes[abi_x86_32(-)]
+   x11-libs/libXrandr[abi_x86_32(-)]
+   x11-libs/libXtst[abi_x86_32(-)]"
+
+QA_PREBUILT="opt/teamviewer${MV}/*"
+
+S=${WORKDIR}/opt/teamviewer/tv_bin
+
+src_prepare() {
+   #epatch "${FILESDIR}/${P}-gentoo.patch"
+   sed \
+   -e "s/@TVV@/${MV}/g" \
+   "${FILESDIR}"/${PN}d.init > "${T}"/init || die
+   sed \
+   -e "s:/opt/teamviewer:/opt/teamviewer${MV}:g" \
+   "script//${PN}d.service" > "${T}/${PN}d.service" || die
+   sed \
+   -e "s/@TVV@/${PV}/g" \
+   -e "s/@TVMV@/${MV}/g" \
+   "${FILESDIR}"/${PN}.sh > "${T}"/sh || die
+   if ! use system-wine; then
+   sed -i "s/native=true/native=false/g" "${T}/sh" || die
+   fi
+}
+
+src_install () {
+   local destdir="/opt/${MY_PN}"
+
+   # install wine prefix skeleton and reg keys
+   insinto "${destdir}/wine/drive_c/"
+   doins -r wine/drive_c/TeamViewer/
+   # install bundled wine if necessary
+   if ! use system-wine; then
+   insinto "${destdir}/tv_bin/wine"
+   doins -r wine/{lib,share}
+   exeinto "${destdir}/tv_bin/wine/bin"
+   doexe wine/bin/{wine,wine-preloader,wineserver}
+   fi
+   # fix permissions
+   fperms 755 ${destdir}/wine/drive_c/TeamViewer/TeamViewer.exe
+
+   # install wine wrapper
+   exeinto "/opt/bin"
+ 

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

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

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

Revision  ChangesPath
1.67 net-im/mcabber/ChangeLog

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

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



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

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

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

EAPI=5

inherit flag-o-matic autotools-utils

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

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

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

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

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

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

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

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

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

src_install() {
autotools-utils_src_install

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

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

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

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

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

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

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

pkg_postinst() {
elog
elog MCabber requires you to create a subdirectory

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

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

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

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

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

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






[gentoo-commits] dev/wschlich:master commit in: app-antivirus/skyldav/

2014-11-06 Thread Wolfram Schlich
commit: 0f098ab53ed5d90b466d7284452618252cf66879
Author: Wolfram Schlich wschlich AT gentoo DOT org
AuthorDate: Thu Nov  6 11:42:23 2014 +
Commit: Wolfram Schlich wschlich AT gentoo DOT org
CommitDate: Thu Nov  6 11:42:23 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=dev/wschlich.git;a=commit;h=0f098ab5

patch bump

Package-Manager: portage-2.2.14

---
 app-antivirus/skyldav/ChangeLog|  6 ++
 app-antivirus/skyldav/Manifest |  1 +
 app-antivirus/skyldav/skyldav-0.4_p20141106.ebuild | 73 ++
 3 files changed, 80 insertions(+)

diff --git a/app-antivirus/skyldav/ChangeLog b/app-antivirus/skyldav/ChangeLog
index e0f5996..30b2cb8 100644
--- a/app-antivirus/skyldav/ChangeLog
+++ b/app-antivirus/skyldav/ChangeLog
@@ -1,3 +1,9 @@
+*skyldav-0.4_p20141106 (06 Nov 2014)
+
+  06 Nov 2014; Wolfram Schlich wschl...@gentoo.org
+  +skyldav-0.4_p20141106.ebuild:
+  patch bump
+
   26 Apr 2014; Wolfram Schlich wschl...@gentoo.org metadata.xml:
   fix typo
 

diff --git a/app-antivirus/skyldav/Manifest b/app-antivirus/skyldav/Manifest
index b13d6ae..3ed79e5 100644
--- a/app-antivirus/skyldav/Manifest
+++ b/app-antivirus/skyldav/Manifest
@@ -2,3 +2,4 @@ DIST skyldav-0.2.tar.gz 104415 SHA256 
02c1b794c658fe9b6bfbdbf1d162cdb0f72872c773
 DIST skyldav-0.2_rc4_p20130829.tar.gz 104425 SHA256 
f05e198553ff4deb60a06b4d3166bccf1099e2fcd86a180f74f9ee7069b7cdef SHA512 
0961b068acb693f3225fbd0d58e29bc3346474ea05b0c513bafe12f16a8ddbe6ca6f97d833046b927cff346d4b9a64c213d4bca3199816dbfd8a63213b009a63
 WHIRLPOOL 
88a721d403d0f23c380b46b8b577f34434e028c63df931eb14ba27820cbd5ab953e35148bc16d2e4e6177884e9615a268a08455323c8703e867babb1f231c463
 DIST skyldav-0.2rc4.tar.gz 102690 SHA256 
9752520ca4b50ee181541b4decddffacd17c192bcf059e5d89d5de5485747bc3 SHA512 
ed62c459907afed619df362f08b2eb565cef70b2c10f1da7f64d72a0ee2767f776387b38b50c3729eaca33ac640b827bdd1cb02f117778944c512d8902f40858
 WHIRLPOOL 
90cae16a26122df1db9c4d0c4ba13fa5939febdbc2d2e61ed5a0755234f3fe2ec055bcd138c7f2fd9c2ad1827b0aa3789117d755c5100c1ba1e7f5863a004e09
 DIST skyldav-0.4.tar.gz 105352 SHA256 
677f743db5810fd367a06ebb2591f20f6af4dd3fdc9d2bcf038d3576c598beec SHA512 
4a98d2d87541b044eeb233e154a6dcbc0da0ed2cba3a38bb89cfb3e27bdea2ae4ee7edf363f6f5b1d3978d042e5a31cac1e04353fecedb52c0053fb888fd144a
 WHIRLPOOL 
b7b9b29bac94a76ada5574b72798e2ad125ea0929b99e9efe8fcadcbefe7c430fb5e4d84120677f9c3fdc2531f3f6f23ad390893c37bb675c695f3b28eba5cd1
+DIST skyldav-0.4_p20141106.tar.gz 105400 SHA256 
34920336c558e7b88b1c6f934453eb6a626b1de5c8adde2c42f7018168680a7d SHA512 
8ae7a33459cbd2e1d3706f10058e6a13bae14e1a42628d3e3a3faeaeb56c72375c4e15c2b2ac5bbb6d9f43492cb9431603a9f0aea10aba75f2fbe53f10480d0c
 WHIRLPOOL 
bd76825f3acf8e3ceed854c70dd27194915241b2fb3568d2883d443ef630804155585bf93e772dd6fbbb7a339a456d36b6ebdd297342d72900715f41be036b6d

diff --git a/app-antivirus/skyldav/skyldav-0.4_p20141106.ebuild 
b/app-antivirus/skyldav/skyldav-0.4_p20141106.ebuild
new file mode 100644
index 000..eb988d6
--- /dev/null
+++ b/app-antivirus/skyldav/skyldav-0.4_p20141106.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit flag-o-matic linux-info linux-mod autotools-utils
+
+DESCRIPTION=Skyld AV: on-access scanning daemon for ClamAV using fanotify
+HOMEPAGE=http://xypron.github.io/skyldav/;
+
+## github release tarball
+#MY_PV=${PV/_rc/rc}
+#MY_P=${PN}-${MY_PV}
+#SRC_URI=https://github.com/xypron/skyldav/archive/${MY_PV}.tar.gz - 
${MY_P}.tar.gz
+
+## selfmade tarball
+#MY_PVR=${PVR/_rc/rc}
+#MY_P=${PN}-${MY_PVR}
+#SRC_URI=http://dev.gentoo.org/~wschlich/src/${CATEGORY}/${PN}/${MY_P}.tar.gz;
+
+## github commit tarball
+MY_GIT_COMMIT=a54c2520d8b3eafa6b68c1c577586a78a0989362
+MY_P=xypron-${PN}-${MY_GIT_COMMIT:0:7}
+SRC_URI=https://github.com/xypron/${PN}/tarball/${MY_GIT_COMMIT} - 
${PF}.tar.gz
+
+S=${WORKDIR}/${MY_P}
+
+KEYWORDS=~amd64 ~x86
+SLOT=0
+LICENSE=Apache-2.0
+IUSE=libnotify
+
+RDEPEND==app-antivirus/clamav-0.97.8
+   sys-apps/util-linux
+   sys-libs/libcap
+   libnotify? (
+   media-libs/libcanberra[gtk]
+   x11-libs/libnotify
+   x11-libs/gtk+:2
+   )
+DEPEND=${RDEPEND}
+   sys-devel/autoconf-archive
+
+## autotools-utils.eclass settings
+AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_IN_SOURCE_BUILD=1
+DOCS=( AUTHORS NEWS README )
+PATCHES=(
+   ${FILESDIR}/${PN}-0.2_rc4-more-syslog-messages.patch
+   ${FILESDIR}/${PN}-0.2_rc4-examples.patch
+   ${FILESDIR}/${P%%_p*}-conf.patch
+)
+
+pkg_setup() {
+   linux-info_pkg_setup
+   kernel_is ge 3 8 0 || die Linux 3.8.0 or newer recommended
+   CONFIG_CHECK=FANOTIFY FANOTIFY_ACCESS_PERMISSIONS
+   check_extra_config
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_with libnotify notification)
+   )
+   autotools-utils_src_configure
+}
+
+src_install

[gentoo-commits] dev/wschlich:master commit in: app-admin/pwman3/files/, app-admin/pwman3/

2014-10-03 Thread Wolfram Schlich
commit: 885176116ca711126528e8db6a2e0c710803bfa5
Author: Wolfram Schlich wschlich AT gentoo DOT org
AuthorDate: Fri Oct  3 15:00:05 2014 +
Commit: Wolfram Schlich wschlich AT gentoo DOT org
CommitDate: Fri Oct  3 15:00:05 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=dev/wschlich.git;a=commit;h=88517611

removed app-admin/pwman3

---
 app-admin/pwman3/Manifest  |  8 
 app-admin/pwman3/files/digest-pwman3-0.0.5 |  3 ---
 app-admin/pwman3/pwman3-0.0.5.ebuild   | 25 -
 3 files changed, 36 deletions(-)

diff --git a/app-admin/pwman3/Manifest b/app-admin/pwman3/Manifest
deleted file mode 100644
index 9da991d..000
--- a/app-admin/pwman3/Manifest
+++ /dev/null
@@ -1,8 +0,0 @@
-DIST Pwman3-0.0.5.tar.gz 28757 RMD160 4455700e7926dfd8b2fa7a004cfdda1994d770ec 
SHA1 1520c7aef9aa48582154c30b575edd53fdb0da49 SHA256 
22bcd58ba9131ea40502724542266de7fdb54e381a921097db985591591b2b45
-EBUILD pwman3-0.0.5.ebuild 535 RMD160 9f671017f6595fb59a1dfa368f4a2a875c3b4aac 
SHA1 9c377310fc030db65968a1ed450579de9f58 SHA256 
21d2bdecb29a5297731cee65b7b7de0418212072138eb1f5cb16ac5fd1c4337c
-MD5 f1540101e878debb1a0fe137779a18d8 pwman3-0.0.5.ebuild 535
-RMD160 9f671017f6595fb59a1dfa368f4a2a875c3b4aac pwman3-0.0.5.ebuild 535
-SHA256 21d2bdecb29a5297731cee65b7b7de0418212072138eb1f5cb16ac5fd1c4337c 
pwman3-0.0.5.ebuild 535
-MD5 e6901e48ca536d2cc7b935618e62d281 files/digest-pwman3-0.0.5 235
-RMD160 47c46978264e0a467d1883a50544c6229539a219 files/digest-pwman3-0.0.5 235
-SHA256 91141e4374214c82d9529168de895f8be1875d85dd493852553ce0059e5b 
files/digest-pwman3-0.0.5 235

diff --git a/app-admin/pwman3/files/digest-pwman3-0.0.5 
b/app-admin/pwman3/files/digest-pwman3-0.0.5
deleted file mode 100644
index 34f8fa9..000
--- a/app-admin/pwman3/files/digest-pwman3-0.0.5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 4e92074487a252574ee7b2ef2fc7456c Pwman3-0.0.5.tar.gz 28757
-RMD160 4455700e7926dfd8b2fa7a004cfdda1994d770ec Pwman3-0.0.5.tar.gz 28757
-SHA256 22bcd58ba9131ea40502724542266de7fdb54e381a921097db985591591b2b45 
Pwman3-0.0.5.tar.gz 28757

diff --git a/app-admin/pwman3/pwman3-0.0.5.ebuild 
b/app-admin/pwman3/pwman3-0.0.5.ebuild
deleted file mode 100644
index 091021b..000
--- a/app-admin/pwman3/pwman3-0.0.5.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header$
-
-inherit distutils
-
-DESCRIPTION=console based password management application
-HOMEPAGE=http://pwman.bleurgh.com/;
-MY_P=Pwman3-${PV}
-S=${WORKDIR}/${MY_P}
-SRC_URI=http://pwman.bleurgh.com/~ivan/pwman3/source/${MY_P}.tar.gz;
-LICENSE=GPL-2
-SLOT=0
-KEYWORDS=x86
-DEPEND==dev-python/pysqlite-2.0.0
-   dev-python/pycrypto
-   dev-python/celementtree
-
-src_compile() {
-   :
-}
-
-src_install() {
-   distutils_src_install
-}



[gentoo-commits] dev/wschlich:master commit in: app-admin/pwman/

2014-10-03 Thread Wolfram Schlich
commit: c85bcedbfa4bbef32e5fd1c784d2e16409594fb3
Author: Wolfram Schlich wschlich AT gentoo DOT org
AuthorDate: Fri Oct  3 15:20:05 2014 +
Commit: Wolfram Schlich wschlich AT gentoo DOT org
CommitDate: Fri Oct  3 15:20:05 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=dev/wschlich.git;a=commit;h=c85bcedb

version bump, add missing metadata.xml

Package-Manager: portage-2.2.14_rc1

---
 app-admin/pwman/ChangeLog  |  9 +++--
 app-admin/pwman/Manifest   |  5 ++---
 app-admin/pwman/metadata.xml   |  9 +
 app-admin/pwman/pwman-0.4.4.ebuild | 22 ++
 4 files changed, 40 insertions(+), 5 deletions(-)

diff --git a/app-admin/pwman/ChangeLog b/app-admin/pwman/ChangeLog
index a5f1ad1..f76b70a 100644
--- a/app-admin/pwman/ChangeLog
+++ b/app-admin/pwman/ChangeLog
@@ -1,10 +1,15 @@
 # ChangeLog for app-admin/pwman
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*pwman-0.4.4 (03 Oct 2014)
+
+  03 Oct 2014; Wolfram Schlich wschl...@gentoo.org +metadata.xml,
+  +pwman-0.4.4.ebuild:
+  version bump, add missing metadata.xml
+
   06 Mar 2009; Wolfram Schlich wschl...@gentoo.org -pwman-0.3.4.ebuild:
   removed old version
 
   06 Mar 2009; Wolfram Schlich wschl...@gentoo.org pwman-0.3.9.ebuild:
   added amd64
-

diff --git a/app-admin/pwman/Manifest b/app-admin/pwman/Manifest
index 7cee0d9..404ede1 100644
--- a/app-admin/pwman/Manifest
+++ b/app-admin/pwman/Manifest
@@ -1,3 +1,2 @@
-DIST pwman-0.3.9.tar.gz 103819 RMD160 2bbbf8c53219cc61bb5aa3334b10735c16e92952 
SHA1 e0803f68330d8c94e54c230475bf62f0b012694f SHA256 
2df0885988fb786feb4fe905ac724fc50b93d85f63432b04561f20e734528442
-EBUILD pwman-0.3.9.ebuild 522 RMD160 ac568c9dd5f3b5e1803a098390f48f914f18d201 
SHA1 10c179e6a30f6795cf20e329e2c443a2e486ed6a SHA256 
63cb62294a6d50a0dee0e404818bb0290f4b7cfa21a3514b734c9c98d809aa34
-MISC ChangeLog 301 RMD160 517e1b5d887a24907733fbe628196d2785bb3f98 SHA1 
0c13f0594f4bf6a19d2d059bad56132449f105d3 SHA256 
fb7d7dd04492cacac2b19164a4e0343dc0b95c516fbbe019852c8b6e170de353
+DIST pwman-0.3.9.tar.gz 103819 SHA256 
2df0885988fb786feb4fe905ac724fc50b93d85f63432b04561f20e734528442 SHA512 
7bed3f30afc6b0ba801ddcecf3400ebed37a4a018c7eb1c8970e32141f6408f613d5a4d2d2ca1b2601d29974b870d9f815b6dadf080b6d992eb262b4789592a2
 WHIRLPOOL 
88b6ed2f7483c23569b13fd49e94f8eeed6e149183a8ac5942b34c5b96423422e64ab363da37e65cc9247e748a1bb2a8c6760dc2164a37ce4a792fb9efc77976
+DIST pwman-0.4.4.tar.gz 114439 SHA256 
29027550ddef720ec447a3031063b10691e6139c9cd5bab18974a52dabdd69c5 SHA512 
524f2d200482a9a4ce47317f6595bb270c4a37ab1b63229aecc3a1771c42daf3fb23611cb66c8cb0407847978a745e802d05b4c479759861b3e8fd4fcff3cfad
 WHIRLPOOL 
e9e003e8af9d2b65b47551ac56e0b20be2f4711143581578f2768e802ad4c7eae5aa8b6c1e35caef9cbcff4f39bf9ff519bd33b81dfc09cecfb215293ab55bda

diff --git a/app-admin/pwman/metadata.xml b/app-admin/pwman/metadata.xml
new file mode 100644
index 000..f8cf4c7
--- /dev/null
+++ b/app-admin/pwman/metadata.xml
@@ -0,0 +1,9 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+   maintainer
+   emailwschl...@gentoo.org/email
+   nameWolfram Schlich/name
+   descriptionPrimary maintainer/description
+   /maintainer
+/pkgmetadata

diff --git a/app-admin/pwman/pwman-0.4.4.ebuild 
b/app-admin/pwman/pwman-0.4.4.ebuild
new file mode 100644
index 000..194ef59
--- /dev/null
+++ b/app-admin/pwman/pwman-0.4.4.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header$
+
+DESCRIPTION=console password manager
+HOMEPAGE=http://pwman.sourceforge.net;
+SRC_URI=mirror://sourceforge/${PN}/${P}.tar.gz
+LICENSE=GPL-2
+SLOT=0
+IUSE=
+KEYWORDS=~amd64 ~x86
+DEPEND=sys-libs/ncurses dev-libs/libxml2
+RDEPEND=${DEPEND}
+
+src_compile() {
+   econf || die configure failed
+   emake || die make failed
+}
+
+src_install() {
+   emake DESTDIR=${D} install || die make install failed
+}



[gentoo-commits] dev/wschlich:master commit in: app-antivirus/skyldav/

2014-05-01 Thread Wolfram Schlich
commit: 0b4faa89c858ca7c0dc53bdcc01aed5707f609be
Author: Wolfram Schlich wschlich AT gentoo DOT org
AuthorDate: Sat Apr 26 20:12:58 2014 +
Commit: Wolfram Schlich wschlich AT gentoo DOT org
CommitDate: Sat Apr 26 20:12:58 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/wschlich.git;a=commit;h=0b4faa89

fix typo

Package-Manager: portage-2.2.10

---
 app-antivirus/skyldav/ChangeLog| 3 +++
 app-antivirus/skyldav/metadata.xml | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-antivirus/skyldav/ChangeLog b/app-antivirus/skyldav/ChangeLog
index ef2d7f9..e0f5996 100644
--- a/app-antivirus/skyldav/ChangeLog
+++ b/app-antivirus/skyldav/ChangeLog
@@ -1,3 +1,6 @@
+  26 Apr 2014; Wolfram Schlich wschl...@gentoo.org metadata.xml:
+  fix typo
+
 *skyldav-0.4 (30 Mar 2014)
 
   30 Mar 2014; Wolfram Schlich wschl...@gentoo.org

diff --git a/app-antivirus/skyldav/metadata.xml 
b/app-antivirus/skyldav/metadata.xml
index f6da4d5..80153a2 100644
--- a/app-antivirus/skyldav/metadata.xml
+++ b/app-antivirus/skyldav/metadata.xml
@@ -4,7 +4,7 @@
   maintainer
 emailwschl...@gentoo.org/email
 nameWolfram Schlich/name
-descriptionPrimary mainainer/description
+descriptionPrimary maintainer/description
   /maintainer
   upstream
 remote-id type=githubxypron/skyldav/remote-id



[gentoo-commits] dev/wschlich:master commit in: app-shells/bashinator/

2014-05-01 Thread Wolfram Schlich
commit: 16a262a004c4ca08bcf47c60336ccd55b05f61df
Author: Wolfram Schlich wschlich AT gentoo DOT org
AuthorDate: Mon Apr 21 13:04:25 2014 +
Commit: Wolfram Schlich wschlich AT gentoo DOT org
CommitDate: Mon Apr 21 13:04:25 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/wschlich.git;a=commit;h=16a262a0

version bump, cleanup metadata.xml

Package-Manager: portage-2.2.10

---
 app-shells/bashinator/ChangeLog   |  9 --
 app-shells/bashinator/Manifest| 15 --
 app-shells/bashinator/bashinator-0.6.1.ebuild | 40 +++
 app-shells/bashinator/metadata.xml|  1 -
 4 files changed, 52 insertions(+), 13 deletions(-)

diff --git a/app-shells/bashinator/ChangeLog b/app-shells/bashinator/ChangeLog
index c755160..68704ca 100644
--- a/app-shells/bashinator/ChangeLog
+++ b/app-shells/bashinator/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for app-shells/bashinator
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*bashinator-0.6.1 (21 Apr 2014)
+
+  21 Apr 2014; Wolfram Schlich wschl...@gentoo.org +bashinator-0.6.1.ebuild,
+  metadata.xml:
+  version bump, cleanup metadata.xml
+
   13 May 2010; Wolfram Schlich wschl...@gentoo.org +bashinator-0.5.ebuild:
   version bump
 
@@ -27,4 +33,3 @@
   27 May 2009; Wolfram Schlich wschl...@gentoo.org +metadata.xml,
   +bashinator-0.ebuild:
   initial import
-

diff --git a/app-shells/bashinator/Manifest b/app-shells/bashinator/Manifest
index 05b4509..2c91986 100644
--- a/app-shells/bashinator/Manifest
+++ b/app-shells/bashinator/Manifest
@@ -1,10 +1,5 @@
-DIST bashinator-0.3.1.tar.bz2 9255 RMD160 
d46009f280857b5d3cdf362a5172bd2efac7be04 SHA1 
e3edefc9e5c97fd0bb81f4245674e300bc7e43c1 SHA256 
861231107f498f5c3e930bd97bbcf00553ad36b0d28ec16335a1642c5c61611c
-DIST bashinator-0.3.tar.bz2 8954 RMD160 
62d5417527f91ba089b8fd7b41c1f4b5abe314c6 SHA1 
f53e7f318e62d895c51d3154a961577988760ba5 SHA256 
118bb3287bb0c8b3c9a40488680e0093d51e66813462cd57a7143be9d2057fa5
-DIST bashinator-0.4.tar.bz2 10314 RMD160 
16f0cc7c4d73655c218a1b43cec4a803ddd1d0df SHA1 
d0a6ebcbe134af287c1d79023503df1e095dd28b SHA256 
37ab18a995103a95659902b348af06dc33d30ff828e9a68bcd30dd0d2f12b3e5
-DIST bashinator-0.5.tar.bz2 11270 RMD160 
96300f8f701f4bb3d06eaa0be9cf46a5068cfdaf SHA1 
9ad2e2eab1af2c5da2e3c465a9281ae280b52b89 SHA256 
c04ad851bc85e3228e847a901823c37c9499e22b61f920b8a66eaeacbc5821c8
-EBUILD bashinator-0.3.1.ebuild 549 RMD160 
8ffd0b3a3b541a532259c4125f174380f03c57a4 SHA1 
77b4e963dc5b2cee45cf33cefeb2231726ee4ea0 SHA256 
fff68b62d1182eca8562259fdd50f741b042e2504b3c32de4b4c1538928def3d
-EBUILD bashinator-0.3.ebuild 549 RMD160 
8ffd0b3a3b541a532259c4125f174380f03c57a4 SHA1 
77b4e963dc5b2cee45cf33cefeb2231726ee4ea0 SHA256 
fff68b62d1182eca8562259fdd50f741b042e2504b3c32de4b4c1538928def3d
-EBUILD bashinator-0.4.ebuild 566 RMD160 
fcd145424d54461708f000f3cf79239da9588ffd SHA1 
95bf142a4aa1d48446dc0b8b0b2ac7591712eaa8 SHA256 
d85c7ed103d5659bb6d535042b69b238a6fca7410a538268142315787b4173c5
-EBUILD bashinator-0.5.ebuild 566 RMD160 
04322c14dccac159aa5cfbe58eae169160659a74 SHA1 
33abadcd9b1a5e8321639e47e56ac8e882966c73 SHA256 
930127181d56a008b7651ea4f53cc23c6763db09e845d5fea0134e1584d6f3aa
-MISC ChangeLog 914 RMD160 34c35b3dfa1885f2aab0f7b37868c89d186a945c SHA1 
09b92ad49acc45c76869ec7daafadcd9681a0359 SHA256 
28bbbd61f77d844252b5492649e708951c86ba9f54437e6885af0bf932364841
-MISC metadata.xml 300 RMD160 3b9c1cd628f9d7ac94b68543ec737d5c2381a47e SHA1 
33c5efd31a8aa789118535b921e211ffb5023ac3 SHA256 
bc07a9aecce5770d1ace9af0a6c6af8ff6c7b16eb5e7947a1b178d1970855e43
+DIST bashinator-0.3.1.tar.bz2 9255 SHA256 
861231107f498f5c3e930bd97bbcf00553ad36b0d28ec16335a1642c5c61611c
+DIST bashinator-0.3.tar.bz2 8954 SHA256 
118bb3287bb0c8b3c9a40488680e0093d51e66813462cd57a7143be9d2057fa5
+DIST bashinator-0.4.tar.bz2 10314 SHA256 
37ab18a995103a95659902b348af06dc33d30ff828e9a68bcd30dd0d2f12b3e5
+DIST bashinator-0.5.tar.bz2 11270 SHA256 
c04ad851bc85e3228e847a901823c37c9499e22b61f920b8a66eaeacbc5821c8 SHA512 
f11a9b2fe3b159fef2f0ebba1d3d4d976d6cad5171e2e133037ffb82ce08dde5a3ed52bbeedcb26ecef7ca8d37ba8d9a5ef843d066c989e3fcc875f5543cb87c
 WHIRLPOOL 
ca329ff9e906df77b058268860b2135ae3a5b334c4d8999c5dffe20f25ecb380e3421bf3fbd83820b8142382fe0e04e6c5eb4162e45edd27678b91b7cb285747
+DIST bashinator-0.6.1.tar.gz 26899 SHA256 
c8b1350bc9de69ae6e878f8340f5e8c34ec2ae0a620c1e6d1c4fcb68844bd62b SHA512 
ccf7246cc6aa8b5cfc90f6fde60f41417f9648b7b8db9aec9e93da44420f58df500f951321b0c3232d26fc4df4e92cc7a81ae19aceead875a74e74514553d6ef
 WHIRLPOOL 
7bcafd7dbaf41485e6179671bf4bd1813ca9649f48fec53c4d3f018918dc16c87c4b2bb4edb20810dd8e2f02463cbc4cc876751b90a05694699f86a143f146c9

diff --git a/app-shells/bashinator/bashinator-0.6.1.ebuild 
b/app-shells/bashinator/bashinator-0.6.1.ebuild
new file mode 100644
index 000..e85a70f
--- /dev/null
+++ b/app

[gentoo-commits] gentoo-x86 commit in net-libs/udns: udns-0.4.ebuild metadata.xml ChangeLog

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 15:19:58

  Modified: metadata.xml ChangeLog
  Added:udns-0.4.ebuild
  Log:
  version bump, fixes bugs #498662, #399217, #400905 and #484874
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.11 net-libs/udns/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/udns/metadata.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- metadata.xml28 Dec 2013 20:44:21 -  1.10
+++ metadata.xml26 Apr 2014 15:19:58 -  1.11
@@ -5,6 +5,9 @@
emaildaster...@gentoo.org/email
namePavlos Ratis/name
/maintainer
+   use
+   flag name=toolsBuild and install dnsget, ex-rdns and 
rblcheck tools/flag
+   /use
 longdescription
 UDNS is a stub DNS resolver library with ability to perform both syncronous 
and asyncronous DNS queries.
 /longdescription



1.29 net-libs/udns/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/udns/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   28 Dec 2013 20:44:21 -  1.28
+++ ChangeLog   26 Apr 2014 15:19:58 -  1.29
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/udns
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/ChangeLog,v 1.28 2013/12/28 
20:44:21 dastergon Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/ChangeLog,v 1.29 2014/04/26 
15:19:58 wschlich Exp $
+
+*udns-0.4 (26 Apr 2014)
+
+  26 Apr 2014; Wolfram Schlich wschl...@gentoo.org +udns-0.4.ebuild,
+  metadata.xml:
+  version bump, fixes bugs #498662, #399217, #400905 and #484874
 
   28 Dec 2013; Pavlos Ratis daster...@gentoo.org metadata.xml:
   add myself as maintainer



1.1  net-libs/udns/udns-0.4.ebuild

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

Index: udns-0.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/udns-0.4.ebuild,v 1.1 
2014/04/26 15:19:58 wschlich Exp $

EAPI=4

inherit eutils multilib toolchain-funcs

DESCRIPTION=Async-capable DNS stub resolver library
HOMEPAGE=http://www.corpit.ru/mjt/udns.html;
SRC_URI=http://www.corpit.ru/mjt/udns/${P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
IUSE=ipv6 static +tools

# Yes, this doesn't depend on any other library beside system set
DEPEND=
RDEPEND=

src_configure() {
# Uses non-standard configure script, econf doesn't work
CC=$(tc-getCC) ./configure $(use_enable ipv6) || die Configure failed
}

src_compile() {
if use tools; then
emake shared
else
emake sharedlib
fi
}

src_install() {
dolib.so libudns.so.0
dosym libudns.so.0 /usr/$(get_libdir)/libudns.so

if use tools; then
newbin dnsget_s dnsget
newbin ex-rdns_s ex-rdns
newbin rblcheck_s rblcheck
fi

insinto /usr/include
doins udns.h

doman udns.3
if use tools; then
doman dnsget.1 rblcheck.1
fi
dodoc NEWS NOTES TODO
}






[gentoo-commits] gentoo-x86 commit in dev-perl/Net-DNS: Net-DNS-0.740.0.ebuild ChangeLog

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 18:36:59

  Modified: ChangeLog
  Added:Net-DNS-0.740.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.170dev-perl/Net-DNS/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Net-DNS/ChangeLog?rev=1.170view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Net-DNS/ChangeLog?rev=1.170content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Net-DNS/ChangeLog?r1=1.169r2=1.170

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Net-DNS/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog   7 Jun 2013 12:45:56 -   1.169
+++ ChangeLog   26 Apr 2014 18:36:58 -  1.170
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/Net-DNS
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-DNS/ChangeLog,v 1.169 
2013/06/07 12:45:56 zlogene Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-DNS/ChangeLog,v 1.170 
2014/04/26 18:36:58 wschlich Exp $
+
+*Net-DNS-0.740.0 (26 Apr 2014)
+
+  26 Apr 2014; Wolfram Schlich wschl...@gentoo.org +Net-DNS-0.740.0.ebuild:
+  version bump
 
   07 Jun 2013; Mikle Kolyada zlog...@gentoo.org -Net-DNS-0.680.0.ebuild,
   -Net-DNS-0.700.0.ebuild, -Net-DNS-0.710.0.ebuild, Net-DNS-0.660.0.ebuild,



1.1  dev-perl/Net-DNS/Net-DNS-0.740.0.ebuild

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

Index: Net-DNS-0.740.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-DNS/Net-DNS-0.740.0.ebuild,v 
1.1 2014/04/26 18:36:58 wschlich Exp $

EAPI=5

MODULE_AUTHOR=NLNETLABS
MODULE_VERSION=0.74
inherit toolchain-funcs perl-module

DESCRIPTION=Perl Net::DNS - Perl DNS Resolver Module

SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x86-solaris
IUSE=ipv6 test

RDEPEND=
virtual/perl-Digest-MD5
dev-perl/Digest-HMAC
virtual/perl-Digest-SHA
dev-perl/Net-IP
virtual/perl-MIME-Base64
ipv6? (
dev-perl/IO-Socket-INET6
)

DEPEND=${RDEPEND}
test? (
virtual/perl-Test-Simple
dev-perl/Test-Pod
)

PATCHES=( ${FILESDIR}/${PN}-0.68-ar.patch )
SRC_TEST=do

src_prepare() {
perl-module_src_prepare
mydoc=TODO
# --IPv6-tests requires that you have external IPv6 connectivity
# as it connects to 2001:7b8:206:1:0:1234:be21:e31e
myconf=${myconf} --no-online-tests --no-IPv6-tests
}

src_compile() {
emake FULL_AR=$(tc-getAR) OTHERLDFLAGS=${LDFLAGS}
}






[gentoo-commits] gentoo-x86 commit in net-dns/fpdns/files: - New directory

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 19:01:03

  Log:
  Directory /var/cvsroot/gentoo-x86/net-dns/fpdns/files added to the repository



[gentoo-commits] gentoo-x86 commit in net-dns/fpdns/files: fpdns-0.10.0_pre20130404.ro-header.patch

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 19:26:54

  Added:fpdns-0.10.0_pre20130404.ro-header.patch
  Log:
  version bump, fixes bug #309189
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  
net-dns/fpdns/files/fpdns-0.10.0_pre20130404.ro-header.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/fpdns/files/fpdns-0.10.0_pre20130404.ro-header.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/fpdns/files/fpdns-0.10.0_pre20130404.ro-header.patch?rev=1.1content-type=text/plain

Index: fpdns-0.10.0_pre20130404.ro-header.patch
===
From ca0391377ad7150e61ff300cb5195c97a154233b Mon Sep 17 00:00:00 2001
From: Jakob Schlyter ja...@kirei.se
Date: Wed, 28 Aug 2013 10:24:11 +0200
Subject: [PATCH] do not set header counters unless changed

---
 lib/Net/DNS/Fingerprint.pm | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/lib/Net/DNS/Fingerprint.pm b/lib/Net/DNS/Fingerprint.pm
index d4a2e5a..e096d42 100644
--- a/lib/Net/DNS/Fingerprint.pm
+++ b/lib/Net/DNS/Fingerprint.pm
@@ -2171,10 +2171,12 @@ sub fp2header {
 $header-ad(shift @list);
 $header-cd(shift @list);
 $header-rcode(shift @list);
-$header-qdcount(shift @list);
-$header-ancount(shift @list);
-$header-nscount(shift @list);
-$header-arcount(shift @list);
+
+my ($qdcount, $ancount, $nscount, $arcount) = @list;
+$header-qdcount($qdcount) unless $qdcount == $header-qdcount;
+$header-qdcount($ancount) unless $ancount == $header-ancount;
+$header-qdcount($nscount) unless $nscount == $header-nscount;
+$header-qdcount($arcount) unless $arcount == $header-arcount;
 }
 
 sub probe {
-- 
1.9.1







[gentoo-commits] gentoo-x86 commit in net-dns/dnscap: - New directory

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 20:09:51

  Log:
  Directory /var/cvsroot/gentoo-x86/net-dns/dnscap added to the repository



[gentoo-commits] gentoo-x86 commit in net-dns/dnscap/files: - New directory

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 20:10:05

  Log:
  Directory /var/cvsroot/gentoo-x86/net-dns/dnscap/files added to the repository



[gentoo-commits] gentoo-x86 commit in net-dns/dnscap/files: dnscap-20130814.install.patch

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 20:19:24

  Added:dnscap-20130814.install.patch
  Log:
  initial import
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  net-dns/dnscap/files/dnscap-20130814.install.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnscap/files/dnscap-20130814.install.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnscap/files/dnscap-20130814.install.patch?rev=1.1content-type=text/plain

Index: dnscap-20130814.install.patch
===
diff -urN verisign-dnscap-727ed7d.orig/Makefile.in 
verisign-dnscap-727ed7d/Makefile.in
--- verisign-dnscap-727ed7d.orig/Makefile.in2013-08-14 01:31:33.0 
+0200
+++ verisign-dnscap-727ed7d/Makefile.in 2014-04-26 22:04:35.438580361 +0200
@@ -45,13 +45,11 @@
 all: ${prog} ${prog}.cat1
 
 install: all
-   install -d -m 755 ${bindir}
-   if [ -f ${bindir}/${prog} ]; then \
-   mv -f ${bindir}/${prog} ${bindir}/${prog}.old; fi
-   install -m 755 ${prog} ${bindir}/
-   install -d -m 755 ${mandir}
-   install -d -m 755 ${mandir}/cat1
-   install -m 644 ${prog}.cat1 ${mandir}/cat1/${prog}.1
+   install -d -m 755 $(DESTDIR)${bindir}
+   install -m 755 ${prog} $(DESTDIR)${bindir}/
+   install -d -m 755 $(DESTDIR)${mandir}
+   install -d -m 755 $(DESTDIR)${mandir}/cat1
+   install -m 644 ${prog}.cat1 $(DESTDIR)${mandir}/cat1/${prog}.1
 
 .c.o:
${CC} ${CFLAGS} -c $






[gentoo-commits] gentoo-x86 commit in net-dns/dnscap: metadata.xml dnscap-20130814.ebuild ChangeLog

2014-04-26 Thread Wolfram Schlich (wschlich)
wschlich14/04/26 20:19:24

  Added:metadata.xml dnscap-20130814.ebuild ChangeLog
  Log:
  initial import
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  net-dns/dnscap/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnscap/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnscap/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
emailwschl...@gentoo.org/email
nameWolfram Schlich/name
descriptionPrimary maintainer/description
  /maintainer
  upstream
remote-id type=githubverisign/dnscap/remote-id
  /upstream
/pkgmetadata



1.1  net-dns/dnscap/dnscap-20130814.ebuild

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

Index: dnscap-20130814.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnscap/dnscap-20130814.ebuild,v 1.1 
2014/04/26 20:19:24 wschlich Exp $

EAPI=5

inherit eutils

DESCRIPTION=dnscap is a network capture utility designed specifically for DNS 
traffic
HOMEPAGE=http://dnscap.dns-oarc.net/;

## github commit tarball
MY_GIT_COMMIT=727ed7d5e46625abc2c8d988689a300589e948b6
MY_P=verisign-${PN}-${MY_GIT_COMMIT:0:7}
SRC_URI=https://github.com/verisign/${PN}/tarball/${MY_GIT_COMMIT} - 
${PF}.tar.gz

S=${WORKDIR}/${MY_P}

KEYWORDS=~amd64 ~x86
SLOT=0
LICENSE=ISC
IUSE=

RDEPEND=net-libs/libpcap
DEPEND=${RDEPEND}

src_prepare() {
## adds DESTDIR to install target
epatch ${FILESDIR}/${P}.install.patch
}



1.1  net-dns/dnscap/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for net-dns/dnscap
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnscap/ChangeLog,v 1.1 2014/04/26 
20:19:24 wschlich Exp $

*dnscap-20130814 (26 Apr 2014)

  26 Apr 2014; Wolfram Schlich wschl...@gentoo.org +dnscap-20130814.ebuild,
  +files/dnscap-20130814.install.patch, +metadata.xml:
  initial import






[gentoo-commits] gentoo-x86 commit in net-dns/validns: validns-0.8.ebuild ChangeLog

2014-04-03 Thread Wolfram Schlich (wschlich)
wschlich14/04/03 15:07:53

  Modified: ChangeLog
  Added:validns-0.8.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.6  net-dns/validns/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/validns/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   12 Aug 2013 11:37:10 -  1.5
+++ ChangeLog   3 Apr 2014 15:07:53 -   1.6
@@ -1,6 +1,11 @@
 # ChangeLog for net-dns/validns
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/validns/ChangeLog,v 1.5 2013/08/12 
11:37:10 wschlich Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/validns/ChangeLog,v 1.6 2014/04/03 
15:07:53 wschlich Exp $
+
+*validns-0.8 (03 Apr 2014)
+
+  03 Apr 2014; Wolfram Schlich wschl...@gentoo.org +validns-0.8.ebuild:
+  version bump
 
 *validns-0.7 (12 Aug 2013)
 



1.1  net-dns/validns/validns-0.8.ebuild

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

Index: validns-0.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/validns/validns-0.8.ebuild,v 1.1 
2014/04/03 15:07:53 wschlich Exp $

EAPI=4

DESCRIPTION=A high performance DNS/DNSSEC zone validator
HOMEPAGE=http://www.validns.net/;
SRC_URI=http://www.validns.net/download/${P}.tar.gz;

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

RDEPEND=dev-libs/judy
DEPEND=
${RDEPEND}
test? ( dev-perl/Test-Command-Simple )


src_install() {
dobin validns
doman validns.1
dodoc {notes,technical-notes,todo,usage}.mdwn Changes README
}






[gentoo-commits] dev/wschlich:master commit in: app-admin/lvm-snapshot-backup-wrapper/

2014-03-30 Thread Wolfram Schlich
commit: eb63264e86187ec9cddd3f8e0ff72e2c5f5e3321
Author: Wolfram Schlich wschlich AT gentoo DOT org
AuthorDate: Tue Nov 26 12:09:44 2013 +
Commit: Wolfram Schlich wschlich AT gentoo DOT org
CommitDate: Tue Nov 26 12:09:44 2013 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=dev/wschlich.git;a=commit;h=eb63264e

version bump

Package-Manager: portage-2.2.7

---
 app-admin/lvm-snapshot-backup-wrapper/ChangeLog|  9 -
 app-admin/lvm-snapshot-backup-wrapper/Manifest |  6 +--
 .../lvm-snapshot-backup-wrapper-3.ebuild   | 44 ++
 app-admin/lvm-snapshot-backup-wrapper/metadata.xml |  1 -
 4 files changed, 53 insertions(+), 7 deletions(-)

diff --git a/app-admin/lvm-snapshot-backup-wrapper/ChangeLog 
b/app-admin/lvm-snapshot-backup-wrapper/ChangeLog
index 4776d90..ccb33cc 100644
--- a/app-admin/lvm-snapshot-backup-wrapper/ChangeLog
+++ b/app-admin/lvm-snapshot-backup-wrapper/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for app-admin/lvm-snapshot-backup-wrapper
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*lvm-snapshot-backup-wrapper-3 (26 Nov 2013)
+
+  26 Nov 2013; Wolfram Schlich wschl...@gentoo.org
+  +lvm-snapshot-backup-wrapper-3.ebuild, metadata.xml:
+  version bump
+
   18 Mar 2011; Wolfram Schlich wschl...@gentoo.org
   -lvm-snapshot-backup-wrapper-2-r1.ebuild,
   +lvm-snapshot-backup-wrapper-2-r2.ebuild:
@@ -20,4 +26,3 @@
   27 May 2009; Wolfram Schlich wschl...@gentoo.org +metadata.xml,
   +lvm-snapshot-backup-wrapper-1.ebuild:
   initial import
-

diff --git a/app-admin/lvm-snapshot-backup-wrapper/Manifest 
b/app-admin/lvm-snapshot-backup-wrapper/Manifest
index d443fb6..0f9aad3 100644
--- a/app-admin/lvm-snapshot-backup-wrapper/Manifest
+++ b/app-admin/lvm-snapshot-backup-wrapper/Manifest
@@ -1,4 +1,2 @@
-DIST lvm-snapshot-backup-wrapper-2.tar.bz2 4226 RMD160 
2800a13bb91da2f65fc4486d75916b71eaecedff SHA1 
2dd1c162d24cd2b3a8314c9914ec27efea69d69d SHA256 
2f414b60a1d5bd9995b2c8200d93395f0ff499cd8959ad592556a5747f918559
-EBUILD lvm-snapshot-backup-wrapper-2-r2.ebuild 810 RMD160 
ecace16c11e8ba0c5871f4f4fa184aa6dca1a6ed SHA1 
9e568bba7a4fd6c50c9152f430627c542397b33a SHA256 
6a4c77d86f895d84e1e298c750d35b1a209210119fb9f0a16e75c1a61fe42d3b
-MISC ChangeLog 779 RMD160 d75eca57fc446a4b2b4426bfc313dcbcc9606250 SHA1 
3b1cc69b01aecc1cfbc2cdcd8058f036cb1292e0 SHA256 
baae726c961e4ea36387c89b3fab6a5149d6cd78077039f0236f370bc151704c
-MISC metadata.xml 509 RMD160 b34e949fd814a2ec48c70be6320662ac845a2e04 SHA1 
e2dbc02fb28866bbacdba38c77e2c74fc1ac5cda SHA256 
ef31efb8aa25da1970c13b7f492eee31a9d05f815b81dbbf35799844769446e3
+DIST lvm-snapshot-backup-wrapper-2.tar.bz2 4226 SHA256 
2f414b60a1d5bd9995b2c8200d93395f0ff499cd8959ad592556a5747f918559 SHA512 
4aec7a6f6b03f328b56f5313ed2de114a2a438774926c3978a444079eda82f20d871ea3449b19e69adaa3edc45e9821d374fd5c299ff2ca68ed7fed3794b952c
 WHIRLPOOL 
8a8ecf6abe566e41fc37c76e04abf4b5082c5b14b4fe99bf9b6601ed869118694d4fc4c1a6d0893f17e9ffa7e0982e4f0e60b989bdab18e0978d35aaeb39fedb
+DIST lvm-snapshot-backup-wrapper-3.tar.bz2 4372 SHA256 
6615f2d0db4b20ad968e180925d21adf3396ce2f43c4d46df2ab18b85ea9e0d4 SHA512 
a4334640febeb873538a7e03a3aec367055bc13779a6c5c9c42dccf51f2b0b4ad998a97e58148824366b4ef7b39fcaf5ca0279104de24ea0d1fc0ddb5eafb73c
 WHIRLPOOL 
8d40a586abfd68d289ee10e81015aac058ca14194603319fab915343c3413f7e372d9e1a5163fe94115167be6700e0f682c7e772dbe3e292ec851d4fb1c8dee7

diff --git 
a/app-admin/lvm-snapshot-backup-wrapper/lvm-snapshot-backup-wrapper-3.ebuild 
b/app-admin/lvm-snapshot-backup-wrapper/lvm-snapshot-backup-wrapper-3.ebuild
new file mode 100644
index 000..712b1f6
--- /dev/null
+++ b/app-admin/lvm-snapshot-backup-wrapper/lvm-snapshot-backup-wrapper-3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=1
+
+DESCRIPTION=LVM Snapshot Backup Wrapper
+HOMEPAGE=http://www.bashinator.org/projects/lvm-snapshot-backup-wrapper;
+
+SRC_URI=http://www.bashinator.org/projects/lvm-snapshot-backup-wrapper/releases/${P}.tar.bz2;
+LICENSE=GPL-3
+SLOT=0
+
+KEYWORDS=~amd64 ~x86
+IUSE=rdiff-backup +rsnapshot sudo
+
+DEPEND=
+RDEPEND=app-shells/bashinator:0
+   =app-admin/lvm-snaptool-1
+   sudo? ( app-admin/sudo )
+   rdiff-backup? ( app-backup/rdiff-backup )
+   rsnapshot? ( net-misc/rsync )
+
+src_compile() { :; }
+
+src_install() {
+   insinto /etc/${PN}
+   doins ${PN}.cfg.sh
+   doins bashinator.cfg.sh
+   dosbin ${PN}.sh
+   insinto /usr/share/${PN}
+   doins ${PN}.lib.sh
+   docinto example
+   PORTAGE_COMPRESS= dodoc example/*
+   use sudo  {
+   einfo for setting up backups using an unprivileged user and 
sudo,
+   einfo please see the bundled example authorized_keys and 
sudoers files.
+   }
+}
+
+pkg_postinst

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

2014-03-30 Thread Wolfram Schlich (wschlich)
wschlich14/03/30 12:49:40

  Modified: ChangeLog
  Added:mcabber-0.10.2_p20131025-r1.ebuild
  Log:
  fix bug #409499
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.62 net-im/mcabber/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   9 Nov 2013 19:20:45 -   1.61
+++ ChangeLog   30 Mar 2014 12:49:40 -  1.62
@@ -1,6 +1,13 @@
 # ChangeLog for net-im/mcabber
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.61 2013/11/09 
19:20:45 mrueg Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.62 2014/03/30 
12:49:40 wschlich Exp $
+
+*mcabber-0.10.2_p20131025-r1 (30 Mar 2014)
+
+  30 Mar 2014; Wolfram Schlich wschl...@gentoo.org
+  +files/mcabber-0.10.2_p20131025-vim-ftdetect.patch,
+  +mcabber-0.10.2_p20131025-r1.ebuild:
+  fix bug #409499
 
 *mcabber-0.10.2_p20131025 (09 Nov 2013)
 



1.1  net-im/mcabber/mcabber-0.10.2_p20131025-r1.ebuild

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

Index: mcabber-0.10.2_p20131025-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-im/mcabber/mcabber-0.10.2_p20131025-r1.ebuild,v 1.1 
2014/03/30 12:49:40 wschlich Exp $

EAPI=5

inherit flag-o-matic autotools-utils

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

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

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

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

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

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

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

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

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

src_install() {
autotools-utils_src_install

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

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

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

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

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

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

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

pkg_postinst() {
elog
elog MCabber requires you to create a subdirectory

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

2014-03-30 Thread Wolfram Schlich (wschlich)
wschlich14/03/30 12:49:40

  Added:mcabber-0.10.2_p20131025-vim-ftdetect.patch
  Log:
  fix bug #409499
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

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

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

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






[gentoo-commits] gentoo-x86 commit in sys-auth/yubikey-personalization-gui: yubikey-personalization-gui-3.1.14.ebuild ChangeLog yubikey-personalization-gui-3.1.10.ebuild

2014-03-30 Thread Wolfram Schlich (wschlich)
wschlich14/03/30 13:01:29

  Modified: ChangeLog
  Added:yubikey-personalization-gui-3.1.14.ebuild
  Removed:  yubikey-personalization-gui-3.1.10.ebuild
  Log:
  version bump, removed old version
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.3  sys-auth/yubikey-personalization-gui/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/yubikey-personalization-gui/ChangeLog?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/yubikey-personalization-gui/ChangeLog?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/yubikey-personalization-gui/ChangeLog?r1=1.2r2=1.3

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-auth/yubikey-personalization-gui/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   28 Oct 2013 13:56:47 -  1.2
+++ ChangeLog   30 Mar 2014 13:01:29 -  1.3
@@ -1,6 +1,13 @@
 # ChangeLog for sys-auth/yubikey-personalization-gui
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/yubikey-personalization-gui/ChangeLog,v 1.2 
2013/10/28 13:56:47 zerochaos Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/yubikey-personalization-gui/ChangeLog,v 1.3 
2014/03/30 13:01:29 wschlich Exp $
+
+*yubikey-personalization-gui-3.1.14 (30 Mar 2014)
+
+  30 Mar 2014; Wolfram Schlich wschl...@gentoo.org
+  +yubikey-personalization-gui-3.1.14.ebuild,
+  -yubikey-personalization-gui-3.1.10.ebuild:
+  version bump, removed old version
 
 *yubikey-personalization-gui-3.1.11 (28 Oct 2013)
 



1.1  
sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.14.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.14.ebuild?rev=1.1content-type=text/plain

Index: yubikey-personalization-gui-3.1.14.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.14.ebuild,v
 1.1 2014/03/30 13:01:29 wschlich Exp $

EAPI=5

inherit eutils qt4-r2

DESCRIPTION=GUI for personalization of Yubico's YubiKey
SRC_URI=http://yubico.github.io/yubikey-personalization-gui/releases/${P}.tar.gz;
HOMEPAGE=https://github.com/Yubico/yubikey-personalization-gui;

KEYWORDS=~amd64
SLOT=0
LICENSE=BSD-2
IUSE=debug

RDEPEND=
=sys-auth/ykpers-1.14.0
=sys-auth/libyubikey-1.6
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-libs/glib:2
virtual/libusb:1
DEPEND=${RDEPEND}
virtual/pkgconfig

DOCS=( NEWS README )

src_configure() {
eqmake4 YKPersonalization.pro
}

src_install() {
dobin build/release/yubikey-personalization-gui
doman resources/lin/yubikey-personalization-gui.1
domenu resources/lin/yubikey-personalization-gui.desktop
doicon resources/lin/yubikey-personalization-gui.xpm
doicon -s 128 resources/lin/yubikey-personalization-gui.png
}






[gentoo-commits] gentoo-x86 commit in sys-power/sispmctl: metadata.xml sispmctl-3.1.ebuild ChangeLog

2014-03-30 Thread Wolfram Schlich (wschlich)
wschlich14/03/30 13:47:16

  Modified: metadata.xml ChangeLog
  Added:sispmctl-3.1.ebuild
  Log:
  version bump, fixes bug #466594
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.3  sys-power/sispmctl/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/sispmctl/metadata.xml?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/sispmctl/metadata.xml?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/sispmctl/metadata.xml?r1=1.2r2=1.3

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/sispmctl/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml24 Sep 2011 10:43:15 -  1.2
+++ metadata.xml30 Mar 2014 13:47:15 -  1.3
@@ -6,6 +6,9 @@
nameWolfram Schlich/name
descriptionPrimary maintainer/description
 /maintainer
+use
+   flag name='gemplug'Install gemplug (management script)/flag
+/use
 longdescription
 sispmctl is an application enabling the use of the GEMBIRD
 SilverShield PowerManager (SiS-PM) device under Linux.



1.9  sys-power/sispmctl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/sispmctl/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   20 Mar 2011 18:28:20 -  1.8
+++ ChangeLog   30 Mar 2014 13:47:16 -  1.9
@@ -1,6 +1,12 @@
 # ChangeLog for sys-power/sispmctl
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/sispmctl/ChangeLog,v 1.8 
2011/03/20 18:28:20 ssuominen Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-power/sispmctl/ChangeLog,v 1.9 
2014/03/30 13:47:16 wschlich Exp $
+
+*sispmctl-3.1 (30 Mar 2014)
+
+  30 Mar 2014; Wolfram Schlich wschl...@gentoo.org +sispmctl-3.1.ebuild,
+  metadata.xml:
+  version bump, fixes bug #466594
 
   20 Mar 2011; Samuli Suominen ssuomi...@gentoo.org sispmctl-2.7.ebuild:
   Fix libusb depend wrt #270039, Comment #24 by Fabian Köster.
@@ -33,4 +39,3 @@
   23 Oct 2006; Wolfram Schlich wschl...@gentoo.org ChangeLog:
   Moved from sys-power/sispm_ctl to sys-power/sispmctl (name changed upstream)
   + version bump
-



1.1  sys-power/sispmctl/sispmctl-3.1.ebuild

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

Index: sispmctl-3.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/sispmctl/sispmctl-3.1.ebuild,v 1.1 
2014/03/30 13:47:15 wschlich Exp $

EAPI=5

inherit eutils

DESCRIPTION=GEMBIRD SiS-PM control utility
HOMEPAGE=http://sispmctl.sourceforge.net/;
SRC_URI=mirror://sourceforge/sispmctl/${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~x86
IUSE=bash-completion gemplug

RDEPEND=virtual/libusb:0
gemplug? ( sys-process/at )
DEPEND=${RDEPEND}

src_configure() {
econf --enable-webless
}

src_install() {
emake DESTDIR=${D} install
dodoc README ChangeLog NEWS

## gemplug
if use gemplug; then
sed -i s|/usr/local/bin/sispmctl|${ROOT:-/}usr/bin/sispmctl|g 
extras/gemplug/gemplug
dobin extras/gemplug/gemplug
doman extras/gemplug/gemplug.1

insinto /lib/udev/rules.d
doins extras/gemplug/74-sispmctl.rules

if use bash-completion; then
insinto /usr/share/bash-completion
newins extras/gemplug/gemplug-completion.sh gemplug
fi

einfo To be able to use the locking mechanism of gemplug(1),
einfo add the users who are designated to run gemplug to the
einfo group 'uucp' which has write permissions to /var/lock.
fi
}






[gentoo-commits] gentoo-x86 commit in net-dns/nsd: ChangeLog

2014-03-26 Thread Wolfram Schlich (wschlich)
wschlich14/03/26 07:50:41

  Modified: ChangeLog
  Log:
  munin config update by t...@whyscream.net (bug #505360, comment 3)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.10 net-dns/nsd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/nsd/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   25 Mar 2014 22:29:20 -  1.9
+++ ChangeLog   26 Mar 2014 07:50:41 -  1.10
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/nsd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/nsd/ChangeLog,v 1.9 2014/03/25 
22:29:20 wschlich Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/nsd/ChangeLog,v 1.10 2014/03/26 
07:50:41 wschlich Exp $
+
+  26 Mar 2014; Wolfram Schlich wschl...@gentoo.org files/nsd.munin-conf:
+  munin config update by t...@whyscream.net (bug #505360, comment 3)
 
 *nsd-4.0.3 (25 Mar 2014)
 *nsd-3.2.17 (25 Mar 2014)






[gentoo-commits] gentoo-x86 commit in net-firewall/conntrack-tools: metadata.xml ChangeLog

2014-03-26 Thread Wolfram Schlich (wschlich)
wschlich14/03/26 07:56:40

  Modified: metadata.xml ChangeLog
  Log:
  removed myself from metadata.xml
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.4  net-firewall/conntrack-tools/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/conntrack-tools/metadata.xml?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/conntrack-tools/metadata.xml?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/conntrack-tools/metadata.xml?r1=1.3r2=1.4

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-firewall/conntrack-tools/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml1 Jun 2013 12:18:52 -   1.3
+++ metadata.xml26 Mar 2014 07:56:40 -  1.4
@@ -2,11 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
herdnetmon/herd
-   maintainer
-   emailwschl...@gentoo.org/email
-   nameWolfram Schlich/name
-   descriptionSecondary maintainer/description
-   /maintainer
longdescription lang=en
A set of tools targeted at system administrators. They are 
conntrack,
the userspace command line interface, and conntrackd, the 
userspace



1.69 net-firewall/conntrack-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/conntrack-tools/ChangeLog?rev=1.69view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/conntrack-tools/ChangeLog?rev=1.69content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/conntrack-tools/ChangeLog?r1=1.68r2=1.69

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-firewall/conntrack-tools/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   2 Oct 2013 02:51:01 -   1.68
+++ ChangeLog   26 Mar 2014 07:56:40 -  1.69
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/conntrack-tools
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/conntrack-tools/ChangeLog,v 
1.68 2013/10/02 02:51:01 jer Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/conntrack-tools/ChangeLog,v 
1.69 2014/03/26 07:56:40 wschlich Exp $
+
+  26 Mar 2014; Wolfram Schlich wschl...@gentoo.org metadata.xml:
+  removed myself from metadata.xml
 
   02 Oct 2013; Jeroen Roovers j...@gentoo.org conntrack-tools-1.4.2.ebuild:
   Stable for HPPA (bug #474858).






[gentoo-commits] gentoo-x86 commit in net-dns/nsd: nsd-3.2.17.ebuild nsd-4.0.3.ebuild ChangeLog

2014-03-25 Thread Wolfram Schlich (wschlich)
wschlich14/03/25 22:29:20

  Modified: ChangeLog
  Added:nsd-3.2.17.ebuild nsd-4.0.3.ebuild
  Log:
  version bump by t...@whyscream.net
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.9  net-dns/nsd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/nsd/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   30 Oct 2013 10:51:57 -  1.8
+++ ChangeLog   25 Mar 2014 22:29:20 -  1.9
@@ -1,6 +1,13 @@
 # ChangeLog for net-dns/nsd
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/nsd/ChangeLog,v 1.8 2013/10/30 
10:51:57 wschlich Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/nsd/ChangeLog,v 1.9 2014/03/25 
22:29:20 wschlich Exp $
+
+*nsd-4.0.3 (25 Mar 2014)
+*nsd-3.2.17 (25 Mar 2014)
+
+  25 Mar 2014; Wolfram Schlich wschl...@gentoo.org +nsd-3.2.17.ebuild,
+  +nsd-4.0.3.ebuild:
+  version bump by t...@whyscream.net
 
 *nsd-4.0.0 (30 Oct 2013)
 



1.1  net-dns/nsd/nsd-3.2.17.ebuild

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

Index: nsd-3.2.17.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/nsd/nsd-3.2.17.ebuild,v 1.1 
2014/03/25 22:29:20 wschlich Exp $

EAPI=4

inherit user

DESCRIPTION=An authoritative only, high performance, open source name server
HOMEPAGE=http://www.nlnetlabs.nl/projects/nsd;
SRC_URI=http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz;

LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=bind8-stats ipv6 minimal-responses mmap +nsec3 ratelimit root-server 
runtime-checks zone-stats

RDEPEND=
dev-libs/openssl
virtual/yacc

DEPEND=
${RDEPEND}
sys-devel/flex


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

src_configure() {
# ebuild.sh sets localstatedir to /var/lib, but nsd expects /var in 
several locations
# some of these cannot be changed by arguments to econf/configure, f.i. 
logfile
econf \
--localstatedir=${EPREFIX}/var \
--with-pidfile=${EPREFIX}/var/run/nsd/nsd.pid \
--with-zonesdir=${EPREFIX}/var/lib/nsd \
--enable-largefile \
$(use_enable bind8-stats) \
$(use_enable ipv6) \
$(use_enable minimal-responses) \
$(use_enable mmap) \
$(use_enable nsec3) \
$(use_enable ratelimit) \
$(use_enable root-server) \
$(use_enable runtime-checks checking) \
$(use_enable zone-stats)
}

src_install() {
emake DESTDIR=${D} install

dodoc 
doc/{ChangeLog,CREDITS,NSD-FOR-BIND-USERS,README,RELNOTES,REQUIREMENTS}

insinto /usr/share/nsd
doins contrib/nsd.zones2nsd.conf

exeinto /etc/cron.daily
newexe ${FILESDIR}/nsd3-patch.cron nsd-patch.cron

newinitd ${FILESDIR}/nsd3.initd-r1 nsd

# database directory, writable by nsd for database updates and zone 
transfers
dodir /var/db/nsd
fowners nsd:nsd /var/db/nsd
fperms 750 /var/db/nsd

# zones directory, writable by root for 'nsdc patch'
dodir /var/lib/nsd
fowners root:nsd /var/lib/nsd
fperms 750 /var/lib/nsd

# remove /var/run data created by Makefile, handled by initd script
rm -r ${D}/var/run || die could not remove /var/run/ directory

}



1.1  net-dns/nsd/nsd-4.0.3.ebuild

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

Index: nsd-4.0.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/nsd/nsd-4.0.3.ebuild,v 1.1 
2014/03/25 22:29:20 wschlich Exp $

EAPI=4

inherit user eutils

DESCRIPTION=An authoritative only, high performance, open source name server