[gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/
commit: 0e890ac2fd86f9f256b7dfa1f02266b6675b1cb9 Author: Alexis Ballier gentoo org> AuthorDate: Mon Mar 21 08:35:56 2016 + Commit: Alexis Ballier gentoo org> CommitDate: Mon Mar 21 08:35:56 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e890ac2 media-video/ffmpeg: remove old Package-Manager: portage-2.2.28 Signed-off-by: Alexis Ballier gentoo.org> media-video/ffmpeg/Manifest| 3 - media-video/ffmpeg/ffmpeg-2.6.3.ebuild | 450 media-video/ffmpeg/ffmpeg-2.6.4.ebuild | 450 media-video/ffmpeg/ffmpeg-2.8.5.ebuild | 458 - 4 files changed, 1361 deletions(-) diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest index 0f727ce..922a8f2 100644 --- a/media-video/ffmpeg/Manifest +++ b/media-video/ffmpeg/Manifest @@ -1,5 +1,2 @@ -DIST ffmpeg-2.6.3.tar.bz2 7803314 SHA256 59eb98c1b5896ac29abc0385f7c875d1b4942d695818818d418ee71eea1e0cfb SHA512 0998fa0cc2711b556fc28ce498e986f8f0b3ba7a30394c6b6cd494a542917eafb3d4d758f75e33fb39db4a631eca40515aa36c8b278fa3ffc9be006995d31029 WHIRLPOOL bfd074cf0b7a315d42c3559f4edeb46fc693918c9958e8e8b19d08f2e8c2765cf26f0ca9007d34a5dd07b69775cf06ab517c2a56926c46ade8bb7a782f492512 -DIST ffmpeg-2.6.4.tar.bz2 7811925 SHA256 184f49e6b359426c398ad6c67d89abd362558373a43d3d92f86e554571655a5d SHA512 76c8bb3b23f2d2bac73b1561ef31bb3d1da49b2e182d84a13bf0bf49ea84cd0d64566c9dfafc4ac9d660aa4cecc0f08272b9ee284d1d09776e4599b87920c308 WHIRLPOOL 2d68715fb284979d703905919289c897c5cb002c3d466aca6c9759ca9f93443b749a24747cf218d005d728680ad137990880ec99210b6fb49038587966dd79f4 -DIST ffmpeg-2.8.5.tar.bz2 8580755 SHA256 3b6d9951533323ee64a21d0aa7667a780b3470bfe4e0fb7c1b33307ce290615a SHA512 2a46bef5ac99d114be7d3ece561ae71d09b87eaecba5da3c02ff1fe7e5cf4913e1b6feecca405540d1d70f9126591c209055edd7df1ad1d8bbf02f107701929e WHIRLPOOL 59ef96e7536a098ccf42526f64173df750558d489afb641c49168e2fc45672b160519d8a9e9e3093e1fd02a1af8ca1936de7f29c316685ac25946636890c760e DIST ffmpeg-2.8.6.tar.bz2 8582420 SHA256 40611e329bc354592c6f8f1deb033c31b91f80e91f5707ca4f9afceca78d8e62 SHA512 68fb41884b95953025b9c56496b17e13062196800ff9834dac43a12e9a0048d4a763f50a2256418c91cc850b63713e1debbf9170737f29621f48946adef152dc WHIRLPOOL 20a4b12b5a03f187b753cca43c65bd75b49cc21c9ffabad31b8ac0ab47fc8e017931ad5076b701c303bb594b20acb403d3ec2dabdf647fd262c070c8dabf1eea DIST ffmpeg-3.0.tar.bz2 8879514 SHA256 f19ff77a2f7f736a41dd1499eef4784bf3cb7461f07c13a268164823590113c0 SHA512 0128ab248dbc8134054ef58dccb1316971b7abdb52c593e2d2be7fadea2aa5a07afecbc330dbc7a088fb4559e1d0a5cf42d51ae7f957155a45b73ee516f13071 WHIRLPOOL 5872023db97df3d4f1b42eb0a988cfe9f9fcc423df07d8bad2f7eaab910dcbfd3d4bc1071506a919ac491eeacaa40736c6a1c4d0d0cda61c4c4c048760a56ddf diff --git a/media-video/ffmpeg/ffmpeg-2.6.3.ebuild b/media-video/ffmpeg/ffmpeg-2.6.3.ebuild deleted file mode 100644 index 146a372..000 --- a/media-video/ffmpeg/ffmpeg-2.6.3.ebuild +++ /dev/null @@ -1,450 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -# Subslot: libavutil major.libavcodec major.libavformat major -# Since FFmpeg ships several libraries, subslot is kind of limited here. -# Most consumers will use those three libraries, if a "less used" library -# changes its soname, consumers will have to be rebuilt the old way -# (preserve-libs). -# If, for example, a package does not link to libavformat and only libavformat -# changes its ABI then this package will be rebuilt needlessly. Hence, such a -# package is free _not_ to := depend on FFmpeg but I would strongly encourage -# doing so since such a case is unlikely. -FFMPEG_SUBSLOT=54.56.56 - -SCM="" -if [ "${PV#}" != "${PV}" ] ; then - SCM="git-2" - EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git" -fi - -inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM} - -DESCRIPTION="Complete solution to record, convert and stream audio and video. Includes libavcodec" -HOMEPAGE="http://ffmpeg.org/"; -if [ "${PV#}" != "${PV}" ] ; then - SRC_URI="" -elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot - SRC_URI="mirror://gentoo/${P}.tar.bz2" -else # Release - SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2"; -fi -FFMPEG_REVISION="${PV#*_p}" - -SLOT="0/${FFMPEG_SUBSLOT}" -LICENSE=" - !gpl? ( LGPL-2.1 ) - gpl? ( GPL-2 ) - amr? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - encode? ( - aac? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - amrenc? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - ) - samba? ( GPL-3 ) -" -if [ "${PV#}" = "${PV}" ] ; then - KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x
[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/
commit: d3b1227d3bc41c0683b799e83b242c3a8c862518 Author: Amy Winston gentoo org> AuthorDate: Mon Mar 21 08:17:22 2016 + Commit: Amy Winston gentoo org> CommitDate: Mon Mar 21 08:40:58 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3b1227d dev-scheme/racket: description changed Package-Manager: portage-2.2.26 dev-scheme/racket/racket-5.3.6.ebuild | 4 ++-- dev-scheme/racket/racket-6.0.1.ebuild | 4 ++-- dev-scheme/racket/racket-6.2.1.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-scheme/racket/racket-5.3.6.ebuild b/dev-scheme/racket/racket-5.3.6.ebuild index b121258..0ed44d3 100644 --- a/dev-scheme/racket/racket-5.3.6.ebuild +++ b/dev-scheme/racket/racket-5.3.6.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$ @@ -9,7 +9,7 @@ EAPI="4" inherit eutils #inherit git-2 -DESCRIPTION="Racket is a general-purpose programming language with strong support for domain-specific languages" +DESCRIPTION="General purpose, multi-paradigm programming language in the Lisp-Scheme family." HOMEPAGE="http://racket-lang.org/"; SRC_URI="http://download.racket-lang.org/installers/${PV}/${PN}/${P}-src-unix.tgz"; #SRC_URI="http://pre.racket-lang.org/installers/plt-${PV}-src-unix.tgz"; diff --git a/dev-scheme/racket/racket-6.0.1.ebuild b/dev-scheme/racket/racket-6.0.1.ebuild index 8453648..d05b2a0 100644 --- a/dev-scheme/racket/racket-6.0.1.ebuild +++ b/dev-scheme/racket/racket-6.0.1.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$ @@ -9,7 +9,7 @@ EAPI="5" inherit eutils pax-utils #inherit git-2 -DESCRIPTION="Racket is a general-purpose programming language with strong support for domain-specific languages" +DESCRIPTION="General purpose, multi-paradigm programming language in the Lisp-Scheme family." HOMEPAGE="http://racket-lang.org/"; SRC_URI="minimal? ( http://download.racket-lang.org/installers/${PV}/${PN}-minimal-${PV}-src-builtpkgs.tgz ) !minimal? ( http://download.racket-lang.org/installers/${PV}/${P}-src-builtpkgs.tgz )" #SRC_URI="http://pre.racket-lang.org/installers/plt-${PV}-src-unix.tgz"; diff --git a/dev-scheme/racket/racket-6.2.1.ebuild b/dev-scheme/racket/racket-6.2.1.ebuild index 20e48f0..171c433 100644 --- a/dev-scheme/racket/racket-6.2.1.ebuild +++ b/dev-scheme/racket/racket-6.2.1.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$ @@ -9,7 +9,7 @@ EAPI="5" inherit eutils pax-utils #inherit git-2 -DESCRIPTION="Racket is a general-purpose programming language with strong support for domain-specific languages" +DESCRIPTION="General purpose, multi-paradigm programming language in the Lisp-Scheme family." HOMEPAGE="http://racket-lang.org/"; SRC_URI="minimal? ( http://download.racket-lang.org/installers/${PV}/${PN}-minimal-${PV}-src-builtpkgs.tgz ) !minimal? ( http://download.racket-lang.org/installers/${PV}/${P}-src-builtpkgs.tgz )" #SRC_URI="http://pre.racket-lang.org/installers/plt-${PV}-src-unix.tgz";
[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/
commit: bba8cd02f6a1f3a7cf264dc0a12603b08ffc4c89 Author: Amy Winston gentoo org> AuthorDate: Mon Mar 21 08:38:58 2016 + Commit: Amy Winston gentoo org> CommitDate: Mon Mar 21 08:41:00 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bba8cd02 dev-scheme/racket: version bump 6.4 bug #567358 Package-Manager: portage-2.2.26 dev-scheme/racket/Manifest | 2 ++ dev-scheme/racket/racket-6.4.ebuild | 72 + 2 files changed, 74 insertions(+) diff --git a/dev-scheme/racket/Manifest b/dev-scheme/racket/Manifest index 6a95b0c..557d6c2 100644 --- a/dev-scheme/racket/Manifest +++ b/dev-scheme/racket/Manifest @@ -1,5 +1,7 @@ DIST racket-5.3.6-src-unix.tgz 19278914 SHA256 7fe0ffc1231f888cd481f175e428f0217257dd136d2513bde73954af5a7cfb8a SHA512 08e8b599e800f41c9497b07e163ed43ae02ae9d9bcc3e20da31eb2f6aa20aa4b0071db51e93696ae1bd644ddfa1c3aea587a334db24ced4a3654dcf5da138e8f WHIRLPOOL c2c34de08d0ec9942f040cc23ea7f2a9bb743d0dcc7125e1b5336b0845482e67abd46b1b5cb821e898c3db50767312f3a27e386a0b7046bf068feb23a1b1bf52 DIST racket-6.0.1-src-builtpkgs.tgz 101425779 SHA256 2b5f2bccb21d408041e167a4476115075c3b230ab50e1d66fe1a3c0ab205bfa1 SHA512 b51fade0afa33b11c4be7da8aec910a8b33bb1cc097748362ecc342b3cd50dcd1c6c52c68c3485b91bddd74a15f8767d357d911151c8cd263a0caa5d72a888a5 WHIRLPOOL d7944c7e1851bb48cc08c29d93763fb0c269ecbc33b59e02bbd6fc1592287376434c0c8c87bada29289d235d7816420170bc6c0f12f684eb9a32a7508342ce0b DIST racket-6.2.1-src-builtpkgs.tgz 113159311 SHA256 04429315159d86c71037e4c1157a724476065803e32346abc0ee37708aed0fcd SHA512 1776e22412d37de69019147e670c88b015d31c31c654cc647ee6598588e94cad32b8d52e4d1738febe3ed47aaf1dc89c5db03878a0e3a4baff75dab302c2a294 WHIRLPOOL 9de2f3068061b13067c6e05289ae6ca233c9c0a90ef639a6e9853df5deb9e1358f2609e712e472312bd599a0cbe79973c4525c5fa99bbc9cd59837d674498b68 +DIST racket-6.4-src-builtpkgs.tgz 120269476 SHA256 5feb8279d9b3b1adf8642714dcb4cb8514832cb17135174be8733b92e1a0078a SHA512 58ef8a27afe61a44ee65f00a1096dbbb833f5d2e8a1fddd1dd4a250164031358216c88c21ef6b9a3a84996a4317338175301493511c49e92a80135653af8159c WHIRLPOOL 9e4258bd2cdb1758546db7e149a8c3429f43f3fd71cafabb6fb3d7012098d56e68420bf743571adfd9082639da5455e4dbe98baa64a50746e5969af20b906378 DIST racket-minimal-6.0.1-src-builtpkgs.tgz 9139061 SHA256 f58aa4e3e831417b72d5c19aba20a5b0eaaaf2f1afa3096b0a4e83b860a3 SHA512 99c7ecf5d7e1de40358a03a5878271e2864fa9e6fe11bab71bd68784bd058a2edbb4ec65ba455dbff2a943c78ec0f9a9b0f46b1532fc1b55be500593160da313 WHIRLPOOL bc3dc19d8c23129866adeb71d125314d66ce2e505d1a453f26c09e9aa42bc98626cba2ddb87d8ae53c7ad5939443defc88c4f1c4ce174567a01b1f56be9788ea DIST racket-minimal-6.2.1-src-builtpkgs.tgz 9736885 SHA256 47eceb5f23ab66a939650fa44dd89ffcb17a6227f58c6bc80e90aa8999c86b36 SHA512 048f247136b15c2b118f497e9058a34dc7135ad4fbe707345290238e1268dd72e0ba35d3fd1690d0f9e97e56748f8964eb80c23c6be278bc6e5e819414c0d4a9 WHIRLPOOL 3c475a8204cea6c802043f4e823d2b1cdc50055ebc3288768988d5e3bf8e502b32300228360603743a9b1d065a845bb1e22d12e4b0fe79a4a6132e2ba335be53 +DIST racket-minimal-6.4-src-builtpkgs.tgz 10880010 SHA256 cf717d4983f4198fce8973ead5d427bc9da78b73bd51fee16b58c894c2a146e8 SHA512 7ff59dcfe97e96d1d8a22b2cfcc28e32833742dae93839d0bcd80a43ff3834a02128681f9b9adab0f66ae99745f3b6cf87f6fa39f71f9a288f14cf22e6cc4629 WHIRLPOOL 74633074ed9f44e4c99c2eb0808ee393c8dbc66f84f2c9787ad1ab359bb4c60b3cda86a858d08fabe38680a8fe42e5f856c8baab780e9847aa3a2eb0fb1e0158 diff --git a/dev-scheme/racket/racket-6.4.ebuild b/dev-scheme/racket/racket-6.4.ebuild new file mode 100644 index 000..2cd5718 --- /dev/null +++ b/dev-scheme/racket/racket-6.4.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +# for live ebuilds uncomment inherit git-2, comment SRC_URI and empty KEYWORDS + +inherit eutils pax-utils +#inherit git-2 + +#DESCRIPTION="Racket is a general-purpose programming language with strong support for domain-specific languages" +DESCRIPTION="General purpose, multi-paradigm programming language in the Lisp-Scheme family." +HOMEPAGE="http://racket-lang.org/"; +SRC_URI="minimal? ( http://download.racket-lang.org/installers/${PV}/${PN}-minimal-${PV}-src-builtpkgs.tgz ) !minimal? ( http://download.racket-lang.org/installers/${PV}/${P}-src-builtpkgs.tgz )" +#SRC_URI="http://pre.racket-lang.org/installers/plt-${PV}-src-unix.tgz"; +EGIT_REPO_URI="git://git.racket-lang.org/plt.git" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="doc +futures +jit minimal +places +threads +X" +REQUIRED_USE="futures? ( jit )" + +# see bug 426316: racket/draw (which depends on cairo) is sometimes used in compile-time code or when rendering documentation +RDEPEND="dev-db/sqlite:3 x11-libs/cairo[X?] virtual/libffi" +DEPEND="${RDEPEND}" + +EGIT_SOURCEDIR="${WORKDIR}/${P}" +S="${WORKDIR}/${P}/src" + +src_prepare() { + #remo
[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/
commit: 32620c22dae2927b1aef66bc5cb8ac9b400dbd64 Author: Amy Winston gentoo org> AuthorDate: Mon Mar 21 08:14:08 2016 + Commit: Amy Winston gentoo org> CommitDate: Mon Mar 21 08:40:56 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32620c22 dev-scheme/racket: old versions removed Package-Manager: portage-2.2.26 dev-scheme/racket/Manifest| 6 --- dev-scheme/racket/racket-5.1.2.ebuild | 71 -- dev-scheme/racket/racket-5.2.1.ebuild | 71 -- dev-scheme/racket/racket-5.3.1.ebuild | 71 -- dev-scheme/racket/racket-5.3.2.ebuild | 71 -- dev-scheme/racket/racket-5.3.3.ebuild | 71 -- dev-scheme/racket/racket-5.3.4.ebuild | 72 --- 7 files changed, 433 deletions(-) diff --git a/dev-scheme/racket/Manifest b/dev-scheme/racket/Manifest index aee4d65..6a95b0c 100644 --- a/dev-scheme/racket/Manifest +++ b/dev-scheme/racket/Manifest @@ -1,9 +1,3 @@ -DIST racket-5.1.2-src-unix.tgz 15960181 SHA256 99871d6c17c383eb31c5788e17e52849144b51494bd96d2ff1ab396d8041175b SHA512 bafcefeb4788621463745d19aa018d1e0a996585d0a025669dda0006893be76884aefd15d1a1213287fb777cca4f3a5136ad09c1af28b50164656085e1062243 WHIRLPOOL f7aab8936f902018f2d34781530ea3e596d21fa7b2487a61493991560f3084487d86f6e9b7bf6800cb4c52318f1253ea6e7a1af1b6ae1caf8fb44825b02af5d4 -DIST racket-5.2.1-src-unix.tgz 17210561 SHA256 69942a4efbfc2b17d836b5252e6f77b4aa40887a8a4a04ec228a44b7cfddb3ec SHA512 b60d259878cc237e26952ffcd07aa483c460a14a1f62e0a939466a4a51ad4ddfb8eda6845962823c0394268ceb3f050a88d1ab364013381f7ebcf077c4571e3e WHIRLPOOL 7b4eddf90a0dd17579aaf19e8df3a6867b9fa06349d254728b0a2cbd56ea83968fb5e1ac3202cb1001e62726cd4160dd174d6e5bf8310918eb4e8d84ba8913ef -DIST racket-5.3.1-src-unix.tgz 18296513 SHA256 2abfcd4edf39db9eafcc8a456ccf216fe486cb718e1f70210f902cc6b1d418c3 SHA512 3586a5e06dd7ba0357fca0478df967ec2984ff9457137f4a6947a690e0b66c372ea4785d9608069938234947127ebb8120cc5adf944dc4bf4bca903596a42435 WHIRLPOOL 3ba50e678b361dba059667bcd3421a0e736c1c27079b48cdc5f22786733737b36ccdcc013d2bb9821af5a67cf344b7276bee99274805a77a76bb14ce4f4d2a08 -DIST racket-5.3.2-src-unix.tgz 18903002 SHA256 dfbb4d305388c23bd80352a18b19a3746a8e402a23e0081416cd6f61b55701fb SHA512 36293de679530e85f4bf4e416d1028cb6fe7cc6d012e7b7f3a0b2203603e7d04c449dee5d0d0b6ab8cf3386e758a557d752119cd60c1a0aec12ea8815a17e413 WHIRLPOOL aae25f4507dd54dabc8b2e5ce4f11202cf69d25bffcf1fd8575ddd1623c5a2249f6f5a9750fc5ff7843c9c152587b6cfc94f1421581ddfd79c176c54461b4b23 -DIST racket-5.3.3-src-unix.tgz 18903284 SHA256 4772a01c0d1db32827b390b3239263f2a44a1c6bdcf63224dd7d36027575e0e2 SHA512 fdf1cfad87f5324a839dd766ac46681928f2d555b1b91ecfbe234ba1d83fc1412f7fe9d4e9586f0e9d36a724185b6c382de9cf0b74426d64570e9c22d0d057f1 WHIRLPOOL d6434fc970dc88476593233b5ff970d6a307350b8a34788bc42f81baedac0efa51910919581b10ca48a2e47f9c645432682819185e2ef9acc46fddd34e279ef1 -DIST racket-5.3.4-src-unix.tgz 19314579 SHA256 4d1fb86e001c497af674199f1ddff5534843bb94f21b9f0c1209b8bfdbad2d7b SHA512 35a05e31a11a8569d938af152a784358479cdad9f5007b04890d485ce92f04554df09d46179042478df96e018756b06e6c7c544b4f113272c31234b75ca740a9 WHIRLPOOL e114c4b18d4c18c8852627c9de207dd543e1f63b056bd1e8cbdecbe5e2a2a916d3144585ddb620c539ceb4c0710e0ee237803ffd4fa5b45e73434f7f017673e0 DIST racket-5.3.6-src-unix.tgz 19278914 SHA256 7fe0ffc1231f888cd481f175e428f0217257dd136d2513bde73954af5a7cfb8a SHA512 08e8b599e800f41c9497b07e163ed43ae02ae9d9bcc3e20da31eb2f6aa20aa4b0071db51e93696ae1bd644ddfa1c3aea587a334db24ced4a3654dcf5da138e8f WHIRLPOOL c2c34de08d0ec9942f040cc23ea7f2a9bb743d0dcc7125e1b5336b0845482e67abd46b1b5cb821e898c3db50767312f3a27e386a0b7046bf068feb23a1b1bf52 DIST racket-6.0.1-src-builtpkgs.tgz 101425779 SHA256 2b5f2bccb21d408041e167a4476115075c3b230ab50e1d66fe1a3c0ab205bfa1 SHA512 b51fade0afa33b11c4be7da8aec910a8b33bb1cc097748362ecc342b3cd50dcd1c6c52c68c3485b91bddd74a15f8767d357d911151c8cd263a0caa5d72a888a5 WHIRLPOOL d7944c7e1851bb48cc08c29d93763fb0c269ecbc33b59e02bbd6fc1592287376434c0c8c87bada29289d235d7816420170bc6c0f12f684eb9a32a7508342ce0b DIST racket-6.2.1-src-builtpkgs.tgz 113159311 SHA256 04429315159d86c71037e4c1157a724476065803e32346abc0ee37708aed0fcd SHA512 1776e22412d37de69019147e670c88b015d31c31c654cc647ee6598588e94cad32b8d52e4d1738febe3ed47aaf1dc89c5db03878a0e3a4baff75dab302c2a294 WHIRLPOOL 9de2f3068061b13067c6e05289ae6ca233c9c0a90ef639a6e9853df5deb9e1358f2609e712e472312bd599a0cbe79973c4525c5fa99bbc9cd59837d674498b68 diff --git a/dev-scheme/racket/racket-5.1.2.ebuild b/dev-scheme/racket/racket-5.1.2.ebuild deleted file mode 100644 index 090b35b..000 --- a/dev-scheme/racket/racket-5.1.2.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -# for l
[gentoo-commits] repo/gentoo:master commit in: app-misc/pwsafe/
commit: 2b8edb489d051c1cc418230f4627435cd463f6a1 Author: Christopher Head chead ca> AuthorDate: Mon Mar 21 04:55:20 2016 + Commit: Ian Delaney gentoo org> CommitDate: Mon Mar 21 08:50:25 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b8edb48 app-misc/pwsafe: add Github remote-id to metadata Package-Manager: portage-2.2.26 Closes: https://github.com/gentoo/gentoo/pull/1102 app-misc/pwsafe/metadata.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app-misc/pwsafe/metadata.xml b/app-misc/pwsafe/metadata.xml index 767bb48..6fcce0a 100644 --- a/app-misc/pwsafe/metadata.xml +++ b/app-misc/pwsafe/metadata.xml @@ -22,5 +22,6 @@ Nicolas Dade pwsafe +nsd20463/pwsafe
[gentoo-commits] repo/gentoo:master commit in: app-misc/pwsafe/
commit: bdce70b59450d37bc12df9ed87b1bb6bfccb0353 Author: Christopher Head chead ca> AuthorDate: Mon Mar 21 05:29:56 2016 + Commit: Ian Delaney gentoo org> CommitDate: Mon Mar 21 08:50:25 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdce70b5 app-misc/pwsafe: revbump to vn. 0.2.0-r3 bump EAPI to 6, upgrade ebuild to suit accordingly Package-Manager: portage-2.2.26 Closes: https://github.com/gentoo/gentoo/pull/1102 app-misc/pwsafe/pwsafe-0.2.0-r3.ebuild | 43 ++ 1 file changed, 43 insertions(+) diff --git a/app-misc/pwsafe/pwsafe-0.2.0-r3.ebuild b/app-misc/pwsafe/pwsafe-0.2.0-r3.ebuild new file mode 100644 index 000..441d09f --- /dev/null +++ b/app-misc/pwsafe/pwsafe-0.2.0-r3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A Password Safe compatible command-line password manager" +HOMEPAGE="http://nsd.dyndns.org/pwsafe/"; +SRC_URI="http://nsd.dyndns.org/pwsafe/releases/${P}.tar.gz"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="X readline" + +DEPEND="sys-libs/ncurses:0= + dev-libs/openssl:0= + readline? ( sys-libs/readline:0= ) + X? ( x11-libs/libSM + x11-libs/libICE + x11-libs/libXmu + x11-libs/libX11 )" +RDEPEND="${DEPEND}" + +src_prepare() { + eapply -p0 "${FILESDIR}/${P}-cvs-1.57.patch" + eapply -p0 "${FILESDIR}/${P}-printf.patch" + eapply -p0 "${FILESDIR}/${P}-fake-readline.patch" + eapply -p0 "${FILESDIR}/${P}-man-page-option-syntax.patch" + eapply -p0 "${FILESDIR}/${P}-XChangeProperty.patch" + eapply_user +} + +src_configure() { + econf $(use_with X x) $(use_with readline) +} + +src_install() { + doman pwsafe.1 + dobin pwsafe + dodoc README NEWS +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/drive/
commit: f2ebd6535d66e0ba011c1a1beeb33df570dcff8d Author: Zac Medico gentoo org> AuthorDate: Mon Mar 21 09:22:31 2016 + Commit: Zac Medico gentoo org> CommitDate: Mon Mar 21 09:23:27 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ebd653 net-misc/drive: new package Package-Manager: portage-2.2.28 net-misc/drive/Manifest | 25 + net-misc/drive/drive-0.3.5.ebuild | 112 ++ net-misc/drive/metadata.xml | 11 3 files changed, 148 insertions(+) diff --git a/net-misc/drive/Manifest b/net-misc/drive/Manifest new file mode 100644 index 000..4c5b72a --- /dev/null +++ b/net-misc/drive/Manifest @@ -0,0 +1,25 @@ +DIST binding-8aaceec3b52c275477f32c95ea5c6e8ccaba04c5.tar.gz 16506 SHA256 2aad0204bd7062c3da2bb30af443b2fffd8331756deeab93ec1734be8a96bceb SHA512 a549d1f5f28be195153bd1a34ecacb42b6cb82477d5fa8cf2ee62b44ec9c34e4e6858659fafca8c85a25f914c4514116b16861d846b509302d6511fabae0711f WHIRLPOOL e3b34ce3294614e0c76594f0c4a6a69aa2a339f5e6aae0d96c88ee8865e471122e56dcdc2432cd32e01e468858008fb0c6dd8eb5b23717793872584be41f7902 +DIST bolt-2f846c3551b76d7710f159be840d66c3d064abbe.tar.gz 78184 SHA256 4358157d83f88a3e0fdd5b2faa810ce0e8569ce5594ce893634f0042b2dfcdab SHA512 429391842ac0ed04fb73587a1d21c2bf03a3c41f79fa192cc601ad4748a02ecd9a5ed024779a7267278f4c7a7152b1cf6d4e48ae1ceb31e52179506792ac4b51 WHIRLPOOL f0d5eabcd2936897124bc7bfc1c5e616c79d7deb0f465e9cbd2b28c6d45173e26c71303afc1a9f6e1ef513548d192d9e8c6e5addba4af4ef40edc564f82245f0 +DIST cache-baf8e436bc97557118cb0bf118ab8ac6aeeda381.tar.gz 3525 SHA256 3dcd26929a993bb0e652118bca2883f9fad1ba16398416e45e8226a316715d12 SHA512 547f5923824fe422bb3bc6240dd7bc2c13fa499352c168ba69bc650549e4f39e5f52cfd0ab30fc86221bebe600401e72a530b3365575e40e9d0e72b1f83bd522 WHIRLPOOL 8c7bff31928e3c25bdeeaddc4e328645bed9eb168f1cf1ee2c9c5e234087b67cc81d6dc96f6b35aa2eff5cfd31468512dd8b582f8944a04eb239002a1ffaa613 +DIST cli-spinner-610063bb4aeef25f7645b3e6080456655ec0fb33.tar.gz 2376 SHA256 02b26aa2fde9f8f4286bc9e38ac7c78c022e8cfa3522c68e65e23070c37b75b5 SHA512 91dcf9cf1634691685c091a78609cc6cbd87b4bc9677092bb4d078cb3680b75dec131444e0afe813dc35f5703a164029a77497482b44e11f7d88ee976d73ed26 WHIRLPOOL d36a854c7e7c97a3e3464e0b7ebf489b413cdbf895c2e6e244ecb53b667e23386af01734008eb819ce466bfeb05ade379ec1f7eeebfedecc702a1bcd84152db0 +DIST command-91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561.tar.gz 4078 SHA256 f7685aabda1994d95f996eb687b3575d15a85f1a1e84f61688b0cacf4bcba85c SHA512 2efb78236313bd0ddc82f7322f752e0b0bf351e8bcd1f1643efeeec7185ba1757a34d6c640b89429b60bae29cffe0ee093b0af7e63861deab38ee5feaf5bb73a WHIRLPOOL 1b25a3db5ed2e92197782df65d7b32d0979456582e9a4c33106b131d5bf18dc45c410ce12786687344c098768377659d69b7889ad67e3ee3900adbcd52ee98c1 +DIST drive-0.3.5.tar.gz 323960 SHA256 f5f0a45c60818526fa6fd7f25024d91425b4f2f9ed841d324ba89c794bc9cc3f SHA512 52890f117bd2065ca7fc1fcae96bfff46342bc17c9c4f5010f74b20bbe94220be5773126da654194257c5fd8a68bc48e2e447c970df84ee571f18f6263040816 WHIRLPOOL 0dd3489c61bab76266b1c3448b09b353860083b6a97aa607c2700bbb97873a6e75e4372f8141afd037c92f6f09b3b939af790a2689a08b89ab22550528f61581 +DIST exponential-backoff-96e25d36ae36ad09ac02cbfe653b44c4043a8e09.tar.gz 2188 SHA256 b2984a02ef1c5dfcc943172a39718d11ad1e4d242f8d717e60f86ab7e364575b SHA512 3bca870fc1e2b9920442ac8672f937e6a346ec5794e3acbd831b01d287e1bcc7c9cbbf1996766369e2ee65e886aced2e1a6d3274818d7b69b6ed13cbf4e5595e WHIRLPOOL c51cfca17b99a02a8f47656cdb39847f15bccd501c79ca293a0c647fae151dd898417c02f11f51d83dfa08268d8dc3c3f840bfa29e1943964587bf6b1f19508d +DIST extractor-801861aedb854c7ac5e1329e9713023e9dc2b4d4.tar.gz 1750 SHA256 1a52d0bcae0803bea4322ce8b9372ca1fefafbf13065cf9212cdea227b40e7fe SHA512 6cc47a2aa73357e6a6ca1f0fd0ae5750db1efe9f0eb966b654b670b14f672bf872310dd633a5530d8d0bc05c745f401ad2f3985e477706bb012b5477f2975856 WHIRLPOOL 27f15f47b2c5a9d09bced08fad6bc428b9ebf5bd2b8ce105f2c5ba867fbd59696870a2700d617e2fa22e3cdb6bb1f5f882c07e707b6487284d6068561fe63e46 +DIST gcloud-golang-872c736f496c2ba12786bedbb8325576bbdb33cf.tar.gz 217728 SHA256 d4dc2064cc999c9c527fe50a05c44357d3471379bea3f82a95bfebbaa5373552 SHA512 45f0533c842a59dfee3b6d3f1facb9535466119601644a9a2c8c8b4f573889713b1d82d0acdeef96ea246d47d79402d09592b25da3ffbf73953bd28bf5b92ed9 WHIRLPOOL fadd0c32fbfcca9c01ad0a11f64ea4625cda858e4d241bcad35cdc1292bf258a370f4fdd73ecb7bb613fc1f0e8a52154dc3582dbcd776517713468cb2ab7c18a +DIST go-isatty-56b76bdf51f7708750eac80fa38b952bb9f32639.tar.gz 1955 SHA256 a6f1ac857812224bd8a33e338b9baefcce2b1ca1777e8f359dff0a7bffb4bb3a SHA512 451ee7d6a42f967b2dd57a70f58690f3bbb21f0d6c18522772d3d9ca270ff9bbdd38d7e54e5404d303a615dcdca3c96fd9dd27075ac6d9efd88611b82f4c3662 WHIRLPOOL 39b094ea2f5a9fc808d160166973dd4e5a465408cb72c65d9450d1bf71f756eed7bbb5f98272482b177c2d2c2c2b7f4fc7e40ee75b51bc3d7a999cf550f1b9a9 +DIST go-net-0_pre20160216.tar.gz 741192 SHA256 482a17771601dc706945eee7e0c3a339d57a140dc3cb8ada
[gentoo-commits] proj/emacs:master commit in: app-editors/emacs-vcs/
commit: f752454e2ea479ff6ef2f60f8cd3f621eba676ce Author: Ulrich Müller gentoo org> AuthorDate: Sun Mar 20 18:21:34 2016 + Commit: Ulrich Müller gentoo org> CommitDate: Mon Mar 21 09:44:30 2016 + URL:https://gitweb.gentoo.org/proj/emacs.git/commit/?id=f752454e app-editors/emacs-vcs: Sync from Portage tree. Package-Manager: portage-2.2.28 ...999-r2.ebuild => emacs-vcs-25.1.-r1.ebuild} | 103 + app-editors/emacs-vcs/metadata.xml | 8 +- 2 files changed, 67 insertions(+), 44 deletions(-) diff --git a/app-editors/emacs-vcs/emacs-vcs-25.0.-r2.ebuild b/app-editors/emacs-vcs/emacs-vcs-25.1.-r1.ebuild similarity index 80% rename from app-editors/emacs-vcs/emacs-vcs-25.0.-r2.ebuild rename to app-editors/emacs-vcs/emacs-vcs-25.1.-r1.ebuild index 2e9d5f4..5457c54 100644 --- a/app-editors/emacs-vcs/emacs-vcs-25.0.-r2.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-25.1.-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit autotools elisp-common eutils flag-o-matic multilib readme.gentoo +inherit autotools elisp-common flag-o-matic multilib readme.gentoo-r1 if [[ ${PV##*.} = ]]; then inherit git-r3 @@ -13,37 +13,38 @@ if [[ ${PV##*.} = ]]; then EGIT_CHECKOUT_DIR="${WORKDIR}/emacs" S="${EGIT_CHECKOUT_DIR}" else - SRC_URI="http://dev.gentoo.org/~ulm/distfiles/emacs-${PV}.tar.xz + SRC_URI="https://dev.gentoo.org/~ulm/distfiles/emacs-${PV}.tar.xz mirror://gnu-alpha/emacs/pretest/emacs-${PV}.tar.xz" # FULL_VERSION keeps the full version number, which is needed in # order to determine some path information correctly for copy/move # operations later on FULL_VERSION="${PV%%_*}" S="${WORKDIR}/emacs-${FULL_VERSION}" + [[ ${FULL_VERSION} != ${PV} ]] && S="${WORKDIR}/emacs" fi DESCRIPTION="The extensible, customizable, self-documenting real-time display editor" -HOMEPAGE="http://www.gnu.org/software/emacs/"; +HOMEPAGE="https://www.gnu.org/software/emacs/"; LICENSE="GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2" SLOT="25" -IUSE="acl alsa aqua athena dbus games gconf gfile gif gnutls gpm gsettings gtk gtk3 gzip-el hesiod imagemagick +inotify jpeg kerberos libxml2 livecd m17n-lib motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int X Xaw3d xft +xpm zlib" +IUSE="acl alsa aqua athena cairo dbus games gconf gfile gif gpm gsettings gtk +gtk3 gzip-el hesiod imagemagick +inotify jpeg kerberos libxml2 livecd m17n-lib motif pax_kernel png selinux sound source ssl svg tiff toolkit-scroll-bars wide-int X Xaw3d xft +xpm xwidgets zlib" REQUIRED_USE="?? ( aqua X )" -RDEPEND="sys-libs/ncurses +RDEPEND="sys-libs/ncurses:0 >=app-eselect/eselect-emacs-1.16 - >=app-emacs/emacs-common-gentoo-1.4-r2[games?,X?] + >=app-emacs/emacs-common-gentoo-1.5[games?,X?] net-libs/liblockfile acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) - gfile? ( >=dev-libs/glib-2.28.6 ) - gnutls? ( net-libs/gnutls ) gpm? ( sys-libs/gpm ) hesiod? ( net-dns/hesiod ) + !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) selinux? ( sys-libs/libselinux ) + ssl? ( net-libs/gnutls ) zlib? ( sys-libs/zlib ) X? ( x11-libs/libXmu @@ -51,7 +52,7 @@ RDEPEND="sys-libs/ncurses x11-misc/xbitmaps gconf? ( >=gnome-base/gconf-2.26.2 ) gsettings? ( >=dev-libs/glib-2.28.6 ) - gif? ( media-libs/giflib ) + gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) @@ -62,20 +63,27 @@ RDEPEND="sys-libs/ncurses media-libs/fontconfig media-libs/freetype x11-libs/libXft + cairo? ( >=x11-libs/cairo-1.12.18 ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) - gtk3? ( x11-libs/gtk+:3 ) - !gtk3? ( - gtk? ( x11-libs/gtk+:2 ) - !gtk? ( - motif? ( >=x11-libs/motif-2.3:0 ) - !motif? ( - Xaw3d? ( x11-libs/libXaw3d ) - !Xaw3d? ( athena? ( x11-libs/libXaw ) ) - ) + gtk? ( + xwidget
[gentoo-commits] proj/emacs:master commit in: app-emacs/emacs-common-gentoo/
commit: 7d2508da633f786dd0b6fe95bfd6af85fd80481b Author: Ulrich Müller gentoo org> AuthorDate: Mon Mar 21 09:43:25 2016 + Commit: Ulrich Müller gentoo org> CommitDate: Mon Mar 21 09:44:30 2016 + URL:https://gitweb.gentoo.org/proj/emacs.git/commit/?id=7d2508da app-emacs/emacs-common-gentoo: Update to EAPI 6. Package-Manager: portage-2.2.28 app-emacs/emacs-common-gentoo/emacs-common-gentoo-.ebuild | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-emacs/emacs-common-gentoo/emacs-common-gentoo-.ebuild b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-.ebuild index 539333d..2da35b7 100644 --- a/app-emacs/emacs-common-gentoo/emacs-common-gentoo-.ebuild +++ b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-.ebuild @@ -1,17 +1,17 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 EGIT_REPO_URI="git://anongit.gentoo.org/proj/emacs-tools.git" EGIT_BRANCH="${PN}" EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}" -inherit elisp-common eutils fdo-mime gnome2-utils readme.gentoo user git-r3 +inherit elisp-common eutils fdo-mime gnome2-utils readme.gentoo-r1 user git-r3 DESCRIPTION="Common files needed by all GNU Emacs versions" -HOMEPAGE="http://wiki.gentoo.org/wiki/Project:Emacs"; +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"; LICENSE="GPL-3+" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: dev-util/checkbashisms/
commit: abe572048961018249a8ea0fff81f77264649958 Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 21 10:02:48 2016 + Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 21 10:02:48 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abe57204 dev-util/checkbashisms: Bump to version 2.16.2 Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> dev-util/checkbashisms/Manifest| 1 + dev-util/checkbashisms/checkbashisms-2.16.2.ebuild | 39 ++ 2 files changed, 40 insertions(+) diff --git a/dev-util/checkbashisms/Manifest b/dev-util/checkbashisms/Manifest index 08ab7e4..4f5ecef 100644 --- a/dev-util/checkbashisms/Manifest +++ b/dev-util/checkbashisms/Manifest @@ -1,2 +1,3 @@ DIST devscripts_2.15.10.tar.xz 679536 SHA256 8659779f03563aea6187f744b083cea2dfe637da2bb12ff52e38dd2e6f3762f9 SHA512 700e7734876325af6d8ae1d9b833b3f5cd8fee00cd1de63cab8da5eb643357c204e9a5f626cc1923d80a376850adbc931f51c46aebd1a2ad95ce4a13c7323657 WHIRLPOOL 0f62462308b7741ad7459eff12867988667b7a43e9a35b8845c5e8d0c741c623c2a6ff0c22509b7319399cb7d91bb3c4023c143678e0f7cb11d7c4380f9cf59c DIST devscripts_2.15.9.tar.xz 627784 SHA256 409c7527ea91dda844688707b365485a9f5cc2e733e93f996fb597c64c78589d SHA512 24ed788730a1df4250706261fe89b836dac63b955060943797f29c02b3a3833b346b4524dbe1fd0a9a0999382577cd4e6f85b0710a91f75755a770fa03c62538 WHIRLPOOL 6feab0f3c6db74fe6b54f02033a0f4d1b33f0774cfeb0cb28f7fa8ce4e9d4867e4d33fa22b1cf34f0e8e4dce7eeaa01809521d5a2a31d84dc8cd7bf85dc8b702 +DIST devscripts_2.16.2.tar.xz 686080 SHA256 847507a2636c4e2eb0bea50b77be70b52e149496a603c78b0c0143e763649f62 SHA512 cbb76bf2b04349e905d895c31df30c3c72b3563f378559d0df4117dbbe20867c76f9aa4826dea6820bd72b4c3c73ed0e0fa952d8bfe1257585eaea502bc77b44 WHIRLPOOL badb15197e284fb00da3390c35a4565fa3cc4a1067422547aa30d24122a3f9f7c07ee1059c02ff4713219fc5619473446ddfb7e7bf7e7bf03f8a11429aadb41d diff --git a/dev-util/checkbashisms/checkbashisms-2.16.2.ebuild b/dev-util/checkbashisms/checkbashisms-2.16.2.ebuild new file mode 100644 index 000..9d584f4 --- /dev/null +++ b/dev-util/checkbashisms/checkbashisms-2.16.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +MY_PN="devscripts" +MY_P="${MY_PN}-${PV}" + +inherit eutils + +DESCRIPTION="Perl script to check for commonly used bash features not defined by POSIX" +HOMEPAGE="https://packages.debian.org/devscripts https://anonscm.debian.org/cgit/collab-maint/devscripts.git"; +SRC_URI="mirror://debian/pool/main/d/${MY_PN}/${MY_P/-/_}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# Requires python packages to check tools we don't need anyway +RESTRICT="test" + +RDEPEND="dev-lang/perl + virtual/perl-Getopt-Long + !
[gentoo-commits] repo/gentoo:master commit in: dev-util/checkbashisms/
commit: 086ec843dc10ed919aa590181bf2936d095960af Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 21 10:03:22 2016 + Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 21 10:03:22 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=086ec843 dev-util/checkbashisms: Removed old. Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> dev-util/checkbashisms/Manifest| 1 - dev-util/checkbashisms/checkbashisms-2.15.9.ebuild | 37 -- 2 files changed, 38 deletions(-) diff --git a/dev-util/checkbashisms/Manifest b/dev-util/checkbashisms/Manifest index 4f5ecef..fc425e9 100644 --- a/dev-util/checkbashisms/Manifest +++ b/dev-util/checkbashisms/Manifest @@ -1,3 +1,2 @@ DIST devscripts_2.15.10.tar.xz 679536 SHA256 8659779f03563aea6187f744b083cea2dfe637da2bb12ff52e38dd2e6f3762f9 SHA512 700e7734876325af6d8ae1d9b833b3f5cd8fee00cd1de63cab8da5eb643357c204e9a5f626cc1923d80a376850adbc931f51c46aebd1a2ad95ce4a13c7323657 WHIRLPOOL 0f62462308b7741ad7459eff12867988667b7a43e9a35b8845c5e8d0c741c623c2a6ff0c22509b7319399cb7d91bb3c4023c143678e0f7cb11d7c4380f9cf59c -DIST devscripts_2.15.9.tar.xz 627784 SHA256 409c7527ea91dda844688707b365485a9f5cc2e733e93f996fb597c64c78589d SHA512 24ed788730a1df4250706261fe89b836dac63b955060943797f29c02b3a3833b346b4524dbe1fd0a9a0999382577cd4e6f85b0710a91f75755a770fa03c62538 WHIRLPOOL 6feab0f3c6db74fe6b54f02033a0f4d1b33f0774cfeb0cb28f7fa8ce4e9d4867e4d33fa22b1cf34f0e8e4dce7eeaa01809521d5a2a31d84dc8cd7bf85dc8b702 DIST devscripts_2.16.2.tar.xz 686080 SHA256 847507a2636c4e2eb0bea50b77be70b52e149496a603c78b0c0143e763649f62 SHA512 cbb76bf2b04349e905d895c31df30c3c72b3563f378559d0df4117dbbe20867c76f9aa4826dea6820bd72b4c3c73ed0e0fa952d8bfe1257585eaea502bc77b44 WHIRLPOOL badb15197e284fb00da3390c35a4565fa3cc4a1067422547aa30d24122a3f9f7c07ee1059c02ff4713219fc5619473446ddfb7e7bf7e7bf03f8a11429aadb41d diff --git a/dev-util/checkbashisms/checkbashisms-2.15.9.ebuild b/dev-util/checkbashisms/checkbashisms-2.15.9.ebuild deleted file mode 100644 index 4e72400..000 --- a/dev-util/checkbashisms/checkbashisms-2.15.9.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -MY_PN="devscripts" -MY_P="${MY_PN}-${PV}" - -inherit eutils - -DESCRIPTION="Perl script to check for commonly used bash features not defined by POSIX" -HOMEPAGE="https://packages.debian.org/devscripts https://anonscm.debian.org/cgit/collab-maint/devscripts.git"; -SRC_URI="mirror://debian/pool/main/d/${MY_PN}/${MY_P/-/_}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="dev-lang/perl - virtual/perl-Getopt-Long - !
[gentoo-commits] repo/gentoo:master commit in: app-text/ebook-tools/
commit: 3a926c800bfbb951cc31c691fb2ee30eb2bf1885 Author: Jan Chren gmail com> AuthorDate: Sat Mar 19 19:16:57 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 10:47:06 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a926c80 app-text/ebook-tools: Add lit2epub USE flag Gentoo-bug: 530430 app-text/ebook-tools/ebook-tools-0.2.2-r1.ebuild | 32 app-text/ebook-tools/metadata.xml| 3 +++ 2 files changed, 35 insertions(+) diff --git a/app-text/ebook-tools/ebook-tools-0.2.2-r1.ebuild b/app-text/ebook-tools/ebook-tools-0.2.2-r1.ebuild new file mode 100644 index 000..6d1374e --- /dev/null +++ b/app-text/ebook-tools/ebook-tools-0.2.2-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-utils multilib + +DESCRIPTION="Tools for accessing and converting various ebook file formats" +HOMEPAGE="http://sourceforge.net/projects/ebook-tools"; +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd" +IUSE="+lit2epub" + +DEPEND=" + dev-libs/libxml2 + dev-libs/libzip +" +RDEPEND="${DEPEND} + lit2epub? ( app-text/convertlit ) +" + +DOCS=( INSTALL README TODO ) + +src_prepare() { + default + + use lit2epub || sed -i -e '\|lit2epub|d' -- 'src/tools/CMakeLists.txt' || die +} diff --git a/app-text/ebook-tools/metadata.xml b/app-text/ebook-tools/metadata.xml index 6e691fb..b2aa1c1 100644 --- a/app-text/ebook-tools/metadata.xml +++ b/app-text/ebook-tools/metadata.xml @@ -8,4 +8,7 @@ ebook-tools + + Install lit2epub script +
[gentoo-commits] dev/xmw:master commit in: sci-geosciences/mobac/
commit: 2d3165479608c30d05ce8194707f19ba9a7754ce Author: Michael Weber xmw de> AuthorDate: Mon Mar 21 10:57:44 2016 + Commit: Michael Weber gentoo org> CommitDate: Mon Mar 21 10:57:44 2016 + URL:https://gitweb.gentoo.org/dev/xmw.git/commit/?id=2d316547 sci-geosciences/mobac: Version bump. Package-Manager: portage-2.2.28 Manifest-Sign-Key: 0x71D573A82F434065 sci-geosciences/mobac/Manifest | 21 --- .../{mobac-1.9.5.ebuild => mobac-1.9.16.ebuild}| 8 ++-- sci-geosciences/mobac/mobac-1.9.8.ebuild | 43 -- 3 files changed, 19 insertions(+), 53 deletions(-) diff --git a/sci-geosciences/mobac/Manifest b/sci-geosciences/mobac/Manifest index f53fe85..e86f59f 100644 --- a/sci-geosciences/mobac/Manifest +++ b/sci-geosciences/mobac/Manifest @@ -1,12 +1,21 @@ -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 -DIST mobac-1.9.5_src.zip 10316478 SHA256 47eef2e366763fab68ed5fbdfb591ec8a5c4a58edd1f657771349c5aef36addf -DIST mobac-1.9.8_src.zip 10850430 SHA256 599c634ab273b6b5856ae0d032732186aa39244b13a29f1bfc1e705ddbffd97b SHA512 8094ce0bf66d758d9bca94e72d0a376ce66791478fc7b71c9d66a4b6f95a9922197df952b33a0077da8be2abe8b43cd9e8aa1a3fa1391783b22b3b9eab3f7f0d WHIRLPOOL 95cceac112e0555a37942c20fb4380a4c8d055fc34aa70246d1b0d0c434117ca89f589bfd14fd25909fa25d9bfb589c39dab21202a3bf4875a102cb15753a243 +DIST mobac-1.9.16_src.zip 11715572 SHA256 6388bde68388770d9e4815f8137cf09f77359d4625d47458fbdb09784560 SHA512 f9f50494e2dc9fda1cfbc90a480f9c404878af75736922d35e6a7186f97a63a6aa922af6083859d0aee5037199001e35385ddc7e624ad2c3af5d6baf51b8cfde WHIRLPOOL e6a244e9df5fa3af3996b1475a51f4e336d75d09f8afa79a1f40d52c1279c74b642e3acada90ff7958399cbe6b24cd65e6abef4b56c99817af571ea26ff5 -BEGIN PGP SIGNATURE- -Version: GnuPG v2.0.20 (GNU/Linux) +Version: GnuPG v2 -iF4EAREIAAYFAlIKUIIACgkQknrdDGLu8JA3VgD/X6+oN/iPSRofQnmROaJ/PyZ4 -oEWtzxD4NSptiQcjRYAA/0FTlahSr2EmPyscXNEDmLXd4tfQHWlXTaw1ve9uBJaS -=5YBU +iQIcBAEBCAAGBQJW79OlAAoJEHHVc6gvQ0BlD5wQAI5RFsWsl/xME5agpIwVrp4O +r66v50ugl/dotchmknIEH5aRhsCxaNAHV9xeMsh9s1fHXPskgkqKvaE9HmccAwQV +EMTX/FJNbrNCCuUYdbpCnDhGdHIZ9qhnbniIJdCiP/BEsu7ouLFLXr2+9rOCctz9 +yLfkUquWlo+XCUqJ5qRwQACjYaMVtb2dVJxavR7Lrf62E1J6bdn8SdtiMXjKS7Pt +ELLJldllwN14PbAe5JTHG8lE8dpNzMjXZmwQkVHkNT86OQaow/95TQ/wGRM451n7 +dLEmt7W68WUgxlZa2LREbv7Y2pE0mpsal74Tgtu81B18WkJ4vOgxdvmh/XHOFI9m +nQj67Xr/r2LEQiYYypW1ru5CrkazaGW6zQXSlO8DZz1nsHl7M/PYIlFjG2wlwcmC +18N+9bRdu7f5WAcSxSvnQt2vFGG1aeSMlvI+6SbnIh0jNUvCK111xSrru+DTguqp +cvGyQZf9Pc1TjyYsOAHKtVo+jkKoM90TwtFIPkElfroopENKJI/9tk2irIrqJR4A +2GkuyNdvvXWh8g8ieoAIvO+bQ/dIQO8eAB0dKvZZm12d5y3oabnta6g/R+LcJGtc +36qs+zfeZU9JVEwGRV4spF02a/JH4Lrhv3Bjf4gAcVWMAVm2/Z2z9/m1H/jTlYkd +cqIbLAkHcr5Ogt4zHQdI +=9+dL -END PGP SIGNATURE- diff --git a/sci-geosciences/mobac/mobac-1.9.5.ebuild b/sci-geosciences/mobac/mobac-1.9.16.ebuild similarity index 92% rename from sci-geosciences/mobac/mobac-1.9.5.ebuild rename to sci-geosciences/mobac/mobac-1.9.16.ebuild index 037913c..bc95c9e 100644 --- a/sci-geosciences/mobac/mobac-1.9.5.ebuild +++ b/sci-geosciences/mobac/mobac-1.9.16.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: $ +# $Id$ -EAPI=4 +EAPI=5 EANT_BUILD_TARGET="build_mapsources shrink" inherit eutils java-pkg-2 java-ant-2 @@ -16,7 +16,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="virtual/jre:1.6" +RDEPEND="virtual/jre:1.7" DEPEND="${RDEPEND}" S=${WORKDIR} diff --git a/sci-geosciences/mobac/mobac-1.9.8.ebuild b/sci-geosciences/mobac/mobac-1.9.8.ebuild deleted file mode 100644 index 238e4bf..000 --- a/sci-geosciences/mobac/mobac-1.9.8.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 -EANT_BUILD_TARGET="build_mapsources shrink" - -inherit eutils java-pkg-2 java-ant-2 - -DESCRIPTION="creates offline atlases for GPS handhelds and cell phone applications" -HOMEPAGE="http://mobac.sourceforge.net/"; -SRC_URI="mirror://sourceforge/${PN}/Mobile%20Atlas%20Creator/Mobile%20Atlas%20Creator%20${PV}%20src.zip -> ${P}_src.zip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="virtual/jre:1.6" -DEPEND="${RDEPEND}" - -S=${WORKDIR} - -src_prepare() { - sed -e '/userSettingsDir/s:programDir:userAppDataDir:' \ - -e '/atlasProfilesDir/s:currentDir:userAppDataDir:' \ - -e '/tileStoreDir/s:programDir:userAppDataDir:' \ - -i src/main/java/mobac/program/DirectoryManager.java || die - - # fix bundled libs -} - -src_install() { - java-pkg_dojar Mobile_Atlas_Creator.jar - insinto ${JAVA_PKG_JARDEST} - doins -r mapsources - - java-pkg_dolauncher ${PN} Mobile_Atlas_Creator.jar - doicon misc/mobac.ico - make_desktop_entry
[gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox/
commit: 35bb2ab3c6ad7dde3c8c1ad0579aa36a6b295c9a Author: Patrick Lauer gentoo org> AuthorDate: Mon Mar 21 10:55:51 2016 + Commit: Patrick Lauer gentoo org> CommitDate: Mon Mar 21 10:58:07 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35bb2ab3 app-emulation/virtualbox: Whitespace, fix description Package-Manager: portage-2.2.28 app-emulation/virtualbox/virtualbox-4.3.32.ebuild| 2 +- app-emulation/virtualbox/virtualbox-4.3.34.ebuild| 2 +- app-emulation/virtualbox/virtualbox-4.3.36.ebuild| 2 +- app-emulation/virtualbox/virtualbox-5.0.14.ebuild| 2 +- app-emulation/virtualbox/virtualbox-5.0.16-r1.ebuild | 3 +-- app-emulation/virtualbox/virtualbox-5.0.16.ebuild| 2 +- 6 files changed, 6 insertions(+), 7 deletions(-) diff --git a/app-emulation/virtualbox/virtualbox-4.3.32.ebuild b/app-emulation/virtualbox/virtualbox-4.3.32.ebuild index 0d7f103..07cd32e 100644 --- a/app-emulation/virtualbox/virtualbox-4.3.32.ebuild +++ b/app-emulation/virtualbox/virtualbox-4.3.32.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2 https://dev.gentoo.org/~polynomial-c/${PN}/patchsets/${PN}-4.3.16-patches-01.tar.xz"; S="${WORKDIR}/${MY_P}" -DESCRIPTION="Family of powerful x86 virtualization products for enterprise as well as home use" +DESCRIPTION="Family of powerful x86 virtualization products for enterprise and home use" HOMEPAGE="http://www.virtualbox.org/"; LICENSE="GPL-2" diff --git a/app-emulation/virtualbox/virtualbox-4.3.34.ebuild b/app-emulation/virtualbox/virtualbox-4.3.34.ebuild index 118b333..6d93580 100644 --- a/app-emulation/virtualbox/virtualbox-4.3.34.ebuild +++ b/app-emulation/virtualbox/virtualbox-4.3.34.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2 https://dev.gentoo.org/~polynomial-c/${PN}/patchsets/${PN}-4.3.16-patches-01.tar.xz"; S="${WORKDIR}/${MY_P}" -DESCRIPTION="Family of powerful x86 virtualization products for enterprise as well as home use" +DESCRIPTION="Family of powerful x86 virtualization products for enterprise and home use" HOMEPAGE="http://www.virtualbox.org/"; LICENSE="GPL-2" diff --git a/app-emulation/virtualbox/virtualbox-4.3.36.ebuild b/app-emulation/virtualbox/virtualbox-4.3.36.ebuild index f1f5859..0b79d12 100644 --- a/app-emulation/virtualbox/virtualbox-4.3.36.ebuild +++ b/app-emulation/virtualbox/virtualbox-4.3.36.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2 https://dev.gentoo.org/~polynomial-c/${PN}/patchsets/${PN}-4.3.16-patches-01.tar.xz"; S="${WORKDIR}/${MY_P}" -DESCRIPTION="Family of powerful x86 virtualization products for enterprise as well as home use" +DESCRIPTION="Family of powerful x86 virtualization products for enterprise and home use" HOMEPAGE="http://www.virtualbox.org/"; LICENSE="GPL-2" diff --git a/app-emulation/virtualbox/virtualbox-5.0.14.ebuild b/app-emulation/virtualbox/virtualbox-5.0.14.ebuild index 4c09818..8491f2c 100644 --- a/app-emulation/virtualbox/virtualbox-5.0.14.ebuild +++ b/app-emulation/virtualbox/virtualbox-5.0.14.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2 https://dev.gentoo.org/~polynomial-c/${PN}/patchsets/${PN}-5.0.2-patches-01.tar.xz"; S="${WORKDIR}/${MY_P}" -DESCRIPTION="Family of powerful x86 virtualization products for enterprise as well as home use" +DESCRIPTION="Family of powerful x86 virtualization products for enterprise and home use" HOMEPAGE="http://www.virtualbox.org/"; LICENSE="GPL-2" diff --git a/app-emulation/virtualbox/virtualbox-5.0.16-r1.ebuild b/app-emulation/virtualbox/virtualbox-5.0.16-r1.ebuild index 52335e1..bf4cc33 100644 --- a/app-emulation/virtualbox/virtualbox-5.0.16-r1.ebuild +++ b/app-emulation/virtualbox/virtualbox-5.0.16-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2 https://dev.gentoo.org/~polynomial-c/${PN}/patchsets/${PN}-5.0.16-patches-01.tar.xz"; S="${WORKDIR}/${MY_P}" -DESCRIPTION="Family of powerful x86 virtualization products for enterprise as well as home use" +DESCRIPTION="Family of powerful x86 virtualization products for enterprise and home use" HOMEPAGE="http://www.virtualbox.org/"; LICENSE="GPL-2" @@ -343,7 +343,6 @@ src_install() { popd &>/dev/null || die fi - if use lvm ; then vbox_inst VBoxVolInfo 4750 dosym ${vbox_inst_path}/VBoxVolInfo /usr/bin/VBoxVolInfo diff --git a/app-emulation/virtualbox/virtualbox-5.0.16.ebuild b/app-emulation/virtualbox/virtualbox-5.0.16.ebuild index f08a021..2ce9873 100644 --- a/app-emulation/virtualbox/virtualbox-5.0.16.ebuild +++ b/app-emulation/virtualbox/virtualbox-5.0.16.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${M
[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/normaliz/
commit: bf2acdcde070cc0f18e701ab04de26550fe8aeef Author: Thomas Kahle gentoo org> AuthorDate: Mon Mar 21 11:19:01 2016 + Commit: Thomas Kahle gentoo org> CommitDate: Mon Mar 21 11:19:16 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf2acdcd sci-mathematics/normaliz: remove old Package-Manager: portage-2.2.26 sci-mathematics/normaliz/Manifest | 1 - sci-mathematics/normaliz/normaliz-3.0.0.ebuild | 65 -- 2 files changed, 66 deletions(-) diff --git a/sci-mathematics/normaliz/Manifest b/sci-mathematics/normaliz/Manifest index 441eaca..32669fe 100644 --- a/sci-mathematics/normaliz/Manifest +++ b/sci-mathematics/normaliz/Manifest @@ -1,3 +1,2 @@ DIST Normaliz2.12.2.zip 6432949 SHA256 230772425b3c9964b9e144c0919c75fac0ec95260a1943c10a8a94eea9d7273e SHA512 fd42071cb87b8efbaf9af0885c173a0583e0b38dedb8821a83225eeebb44060a7b5748c44adfc4faeac20c3a1706071bcb9883cb4447e4a1ff3aeb770bd22038 WHIRLPOOL cb2974e02eac6e6d51c234214a719a24ad2e12d1400f0a6f8aee3e7a4ba3aa2ba053beec65c9032f42726e4dd4f1866820bb5b7b96f7c3d34cd132fcdbdb91af -DIST Normaliz3.0.0.zip 8607387 SHA256 4dbc315de34a1f115a911194b22628948a32a993c486bda03623e6786172857b SHA512 b4ce7b5ab849982ee986e3b1cbef1ed620ddf57c8d89ef3d5973509ead52d49c2a59a2924357fb70838963ec1490f68cfe0c5c294b05c571402f8445234bdbf5 WHIRLPOOL f90b81eb7ea426a393cd515932765ad9e48b888e47c07a709ab085f15960c4cda4c70f90ba61bf590bbe9a2ee2ca125a46bd9a24bb0940c1e2b09203b0f16452 DIST Normaliz3.1.0.zip 5734218 SHA256 dfb6b801c4a4bb9aeec6601c58eca2c92bfc420d126c5e0dce0e1f2cdb7d8200 SHA512 835f39cfcd7b6b39139a7c731320e297df2e7a41d0e68e0bfb4d72b9d6905a8b83b1ef61408458c071315933968290d5166470445cd19af4ef1b5ac6ba04496a WHIRLPOOL 25fedc897515fc4b8ce2ec82f70a2c2474b63d928c22126f140f69836af3f7af0cf9de9e1849ae6a886155e5ceabcedc8a42b234ad939648f5278302cb7a1950 diff --git a/sci-mathematics/normaliz/normaliz-3.0.0.ebuild b/sci-mathematics/normaliz/normaliz-3.0.0.ebuild deleted file mode 100644 index 35bdef5..000 --- a/sci-mathematics/normaliz/normaliz-3.0.0.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils toolchain-funcs versionator - -MYPV=$(get_version_component_range 1-2) -MYP="Normaliz${MYPV}" - -DESCRIPTION="Tool for computations in affine monoids and more" -HOMEPAGE="http://www.mathematik.uni-osnabrueck.de/normaliz/"; -SRC_URI="http://www.mathematik.uni-osnabrueck.de/${PN}/${MYP}/Normaliz${PV}.zip"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc extras openmp" - -RDEPEND="dev-libs/gmp[cxx]" -DEPEND="${RDEPEND} - app-arch/unzip - dev-libs/boost" -# Only a boost header is needed -> not RDEPEND - -S=${WORKDIR}/${MYP} - -src_prepare () { - epatch "${FILESDIR}/${P}-gmp61-compat.patch" - epatch "${FILESDIR}/${P}-respect-flags.patch" - epatch "${FILESDIR}/${PN}-2.12.2-gcc49.patch" - - # Respect users AR tool (Bug 474532) - sed -e "s:ar -cr:$(tc-getAR) -cr:" -i source/libnormaliz/Makefile || die - - if use openmp && tc-has-openmp; then - export OPENMP=yes - else - export OPENMP=no - fi -} - -src_compile(){ - emake CXX="$(tc-getCXX)" OPENMP="${OPENMP}" -C source -} - -src_install() { - dobin source/normaliz - if use doc ; then - dodoc doc/"Normaliz.pdf" - dodoc doc/"NmzIntegrate.pdf" - fi - if use extras; then - elog "You have selected to install extras which consist of Macaulay2" - elog "and Singular packages. These have been installed into " - elog "/usr/share/${PN}, and cannot be used without additional setup. Please refer" - elog "to the homepages of the respective projects for additional information." - elog "Note however, Gentoo's versions of Singular and Macaulay2 bring their own" - elog "copies of these interface packages. Usually you don't need normaliz's versions." - insinto "/usr/share/${PN}" - doins Singular/normaliz.lib - doins Macaulay2/Normaliz.m2 - fi -}
[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/normaliz/
commit: 9a7b2115e09ee80284bbaddf58ef0141a79c3212 Author: Thomas Kahle gentoo org> AuthorDate: Mon Mar 21 11:17:41 2016 + Commit: Thomas Kahle gentoo org> CommitDate: Mon Mar 21 11:19:13 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a7b2115 sci-mathematics/normaliz: ~arm added to latest version. Package-Manager: portage-2.2.26 sci-mathematics/normaliz/normaliz-3.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-mathematics/normaliz/normaliz-3.1.0.ebuild b/sci-mathematics/normaliz/normaliz-3.1.0.ebuild index 161c894..b0818aa 100644 --- a/sci-mathematics/normaliz/normaliz-3.1.0.ebuild +++ b/sci-mathematics/normaliz/normaliz-3.1.0.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://www.normaliz.uni-osnabrueck.de/wp-content/uploads/2016/02/Norma LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc extras openmp" RDEPEND="dev-libs/gmp[cxx]"
[gentoo-commits] repo/gentoo:master commit in: app-forensics/chkrootkit/
commit: ae6d6ffd8eed52b9ee9c484c6674b8e2e1d236ca Author: Michael Weber gentoo org> AuthorDate: Mon Mar 21 11:38:27 2016 + Commit: Michael Weber gentoo org> CommitDate: Mon Mar 21 11:39:00 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6d6ffd app-forensics/chkrootkit: Version bump (bug 529308, thanks Paolo Pedroni). Package-Manager: portage-2.2.28 app-forensics/chkrootkit/Manifest | 2 + app-forensics/chkrootkit/chkrootkit-0.50.ebuild | 53 + 2 files changed, 55 insertions(+) diff --git a/app-forensics/chkrootkit/Manifest b/app-forensics/chkrootkit/Manifest index c7a7ac6..12d104e 100644 --- a/app-forensics/chkrootkit/Manifest +++ b/app-forensics/chkrootkit/Manifest @@ -1,2 +1,4 @@ DIST chkrootkit-0.49-gentoo.diff.bz2 5472 SHA256 85a01c8bb159420fc7681b5f3ec6529bc69cf10b3484daee0a5c126ef4a7b5d8 SHA512 4121d09f7bb6ad7d3f2ed42c914087f4724877def3c591fd6b7fa8e2b2b23a1b32b1bb1ba94dc079914c967d2483ebd614582b13afb4c1c801701a58ada89b62 WHIRLPOOL 25df5424700c72d19201faf6555790b04b878af3ef185f52f44807e018701926cd9e8d112343b86168ad6688df8fffcc2829c11886d8f628b03ff7f63f1ac7d0 DIST chkrootkit-0.49.tar.gz 39421 SHA256 ccb87be09e8923d51f450a167f484414f70c36c942f8ef5b9e5e4a69b7baa17f SHA512 b796547fc483635ff6ee4e953f7dda34913189459de05b547522b79f8edeef5adae72cc05515b8ff9382cbabffd93cae7d114a40636e14c55da513bb42b05909 WHIRLPOOL c94f96f185ae5f5dd038a7b2ffd9603ee8c0f2fcbaeb3eb73d20260898f1677a2c1aad5cd6a257b29ca540d02916dca59434ff10b807567447889cf23f65b25e +DIST chkrootkit-0.50-gentoo.diff.bz2 5010 SHA256 0b29ad086d0c75df6a0826bc8fd9046d5b1086173652af77f01991f367032779 SHA512 067a0a33fad2389a7ef942f76a63bed6c206d08576a77fd758ae171960804fb74d3164bc6eb582f5d8b722e9e863dc4380f5632940bc9a8c1821b46ed1062a50 WHIRLPOOL 4bc08be7be6d566bb2f52ece6c9010967c107696ce924461a4032947f66e848183921232f3f1a971cf6f932cbaad7ac9ce18af765837e3e69f7c0a57b39ceaed +DIST chkrootkit-0.50.tar.gz 38616 SHA256 9548fc922b0cb8ddf055faff4a4887f140a31c45f2f5e3aa64aad91ecfa56cc7 SHA512 9f26fd34e85b58b13dedc5f38a889ae258bb2c0f1ff40e99c149e23f93890e956f94204b1bb2241584454e99168c53b583f52777083454237f3ba343424dba1c WHIRLPOOL d6c6afe6a14e5a9a0331202b894ed5c3e43855e15605cc9a6cbf69dbd09f180754ee587cf4eba88cb0ceb4d7fcd9924f4f02110154450fd06e992fc1710b91d8 diff --git a/app-forensics/chkrootkit/chkrootkit-0.50.ebuild b/app-forensics/chkrootkit/chkrootkit-0.50.ebuild new file mode 100644 index 000..d5fc12d --- /dev/null +++ b/app-forensics/chkrootkit/chkrootkit-0.50.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils toolchain-funcs + +DESCRIPTION="Tool to locally check for signs of a rootkit" +HOMEPAGE="http://www.chkrootkit.org/"; +SRC_URI="ftp://ftp.pangeia.com.br/pub/seg/pac/${P}.tar.gz + https://dev.gentoo.org/~xmw/${P}-gentoo.diff.bz2"; + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="+cron" + +RDEPEND="cron? ( virtual/cron )" + +src_prepare() { + epatch "${WORKDIR}"/${P}-gentoo.diff + sed -e 's:/var/adm/:/var/log/:g' \ + -i chklastlog.c || die +} + +src_compile() { + emake CC="$(tc-getCC)" STRIP=true sense +} + +src_install() { + dosbin chkdirs chklastlog chkproc chkrootkit chkwtmp chkutmp ifpromisc strings-static + dodoc ACKNOWLEDGMENTS README* + + if use cron ; then + exeinto /etc/cron.weekly + newexe "${FILESDIR}"/${PN}.cron ${PN} + fi +} + +pkg_postinst() { + if use cron ; then + elog + elog "Edit /etc/cron.weekly/chkrootkit to activate chkrootkit!" + elog + fi + + elog + elog "Some applications, such as portsentry, will cause chkrootkit" + elog "to produce false positives. Read the chkrootkit FAQ at" + elog "http://www.chkrootkit.org/ for more information." + elog +}
[gentoo-commits] repo/gentoo:master commit in: app-admin/consul/
commit: c8f952566b1f8384c9f6fc03bf22d4cc7ad9cea5 Author: Zac Medico gentoo org> AuthorDate: Mon Mar 21 11:40:05 2016 + Commit: Zac Medico gentoo org> CommitDate: Mon Mar 21 11:41:30 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f95256 app-admin/consul: version bump to 0.6.4 Package-Manager: portage-2.2.28 app-admin/consul/Manifest| 16 +++ app-admin/consul/consul-0.6.4.ebuild | 183 +++ 2 files changed, 199 insertions(+) diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest index 1178ce3..aaa5fbd 100644 --- a/app-admin/consul/Manifest +++ b/app-admin/consul/Manifest @@ -4,12 +4,18 @@ DIST circbuf-bbbad097214e2918d8543d5201d12bfd7bca254d.tar.gz 2884 SHA256 eec8f65 DIST circbuf-f092b4f207b6e5cce0569056fba9e1a2735cb6cf.tar.gz 2748 SHA256 b67d2ffc0a725b6844895680d52ba4a63757987637c8dabbb2c3e4d836512d52 SHA512 0e1db19e79cd0f584adcb0ec0d6f04cad1e855abf0872a5bcf4ac5fedace55374a50e2c5c2086f26d20c63ff46d9f370119959d6ff20ead32bb4888df16e6948 WHIRLPOOL a375ffa2214e527c47815b82579bee7a270bb652582605a83c1a0d13087b2ef2f09cc6ee16f7e735fa61846c106203f3db51822d38eac18345f26f9e942a1ca2 DIST cli-6cc8bc522243675a2882b81662b0b0d2e04b99c9.tar.gz 12690 SHA256 87d7f733c0f2e778fa72951c55a7fe65ea8694f2a1f621c368ecffb111098b05 SHA512 942f8a30a4570f04932ad263bb6760ec8d940d46058c65e56ffc81b1b5cc2d205afd61908260ce7d8dee44db879c861aafc0112335493b0b5018fa7b3b91fb62 WHIRLPOOL 5ea03493adee35661ed7bd30e857b171160a1a71d10c65aa8eee6e439ddf7d9c7f5ae9c1b9e3c0d70cf2a82d513b3b5570fcb089912822a50cc123fe4bc3ad68 DIST cli-cb6853d606ea4a12a15ac83cc43503df99fd28fb.tar.gz 15706 SHA256 d3b85664d5a7c3e37f88c7b2437491eb04614ff1ab54fd77c4c8de5aa853a638 SHA512 4a27bb1f00098aee99edb94a986e0e1af504d9d77039e61d711d348d0f36df81345c0ff7c5f8ff85f453f8ed02e2862d7e856ac5ea6a3c9510bfc80b4c770d55 WHIRLPOOL b4401d7efaa992a0587da6d7a34e7359d58759d264e59d0a7ff809146cb3580e2840e2212ced9f5771efe908a379f6c13cd2d6b0274f5ffd493ca0131f698e10 +DIST client_golang-90c15b5efa0dc32a7d259234e02ac9a99e6d3b82.tar.gz 65254 SHA256 f4605954dbbc1dc63fe0d48150d4bfff2f068031fc0f9c9c3d4f53c8d983 SHA512 0cb41a6693683d5a3fb1397da60a3eda92c7e418becc76bcfeab4f3d36074ac26b074fffa08118901b61c2fc2f017b7a8883c01e31832190050c120fae93ca29 WHIRLPOOL 07ca7b37914b109a18058da8d2dd8bd6c9f280a42a483b25dce198c8b4d78c312cd1a4f6acb1928c8cd798799244be7c89662eac0ba50a01d508ea07b3d5f462 +DIST client_model-fa8ad6fec33561be4280a8f0514318c79d7f6cb6.tar.gz 54855 SHA256 d29d75de6645bd67452df27cda2e4a09848161f9ecacc62b1c1818d0a701cff9 SHA512 9d4d52142888edff091f23496aad70ab2924dff3a27930cb6df81c5452ca897b9d61eff74fbd092372ecb4bb005b4d362ea6b0602e1764ea4f2a30e23048a81d WHIRLPOOL 54a1085567a2081b70f975c9be620f15de025673cb0f5c75163867924f7e48a64b68ae4e7a8c57a0e50b2fbf78806a797a12870e4ab65a767db7532e04e26dfc DIST columnize-44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a.tar.gz 3680 SHA256 504519c9befbac3045a00a7a70e82cc437622294ece6ac19b85ffd4aa915369f SHA512 1117d4a7efc1f029aef27ad711073fe4f8cff4ddf42021f917ad44cdf246153a39ca9a911892b783128563d09594aec5ffc4f8ee1d44218dd8ead1635ab4a040 WHIRLPOOL bb0417093ff993358cbacfade5df8c416e911ef352ebd760152dbce37b9e3c7c2d0064decc3efee7fe61672b13372b077cc19c579f186128175d2b05fc32d0c4 DIST columnize-983d3a5fab1bf04d1b412465d2d9f8430e2e917e.tar.gz 3811 SHA256 1a087a5abbdea9adde033622079930af7a7b171693bef481c2291746ceb333f8 SHA512 0c746f39fe3f5b9ab0c62c188fe92183c23908fce2952d4ada366cedf204dc58883d717666d71fc1b37f5ed00411da39cfbd4d37ce5cf10012cdecc5704149b1 WHIRLPOOL d325bf6486d7e18da71eacd73d0dbac083a6179048aaa5120beb22372ace0d43fc04f80765c635c291924279adf4463ea42c4f61a2a59428cd88d5ecfb9dd5bc +DIST common-40456948a47496dc22168e6af39297a2f8fbf38c.tar.gz 62809 SHA256 96c62f3441fb41eca0ba19601fc0be862b9f30053f5483b982d3bd67892723ff SHA512 96898a77e49993e9d7420ab734663654535fef071ceb43269d24725534ac0cfa52f2827c8f7ade835bf96b6f47d4cded0af078acf99682735005926226c7f968 WHIRLPOOL e3a29587c3ed430496d8748a85ee4eba9278b430222bb7e7d2eecc00e19be8273f61bd49b2d766c13ad6ee49523987d72f408ccc145e1ff4a530a2e9f1e96ec7 DIST consul-0.5.2.tar.gz 1821228 SHA256 acaa3b7a7c874d247175faaa9178bb1e93eabb2d810dc842c79ccf272b4518b6 SHA512 77e76cd090f668a963202aa68fcf5c676edeb30078de1f35ff9af6681c34dd4171eb0da24fedcd376cbe5fa0fa87f7a3453dda4075bfc55a8ba949d4c407ef04 WHIRLPOOL 746cef01f7733838de0774fcde4ef1b8f7c686ed90593218e623a3fc68bd6d590ecda427c8b94d1b412f1e83ebf76b4a357ecb89c39695ebdd890fc9f7976eb1 DIST consul-0.6.3.tar.gz 2224536 SHA256 5cdc21d6f20f9b703d38e19d3d2ed1c037dcbb236b80bff6a9b9c481ded74435 SHA512 c80b96e18c283f8d2dc7542393e9d788c8247200890b1f2ecdf292b545c01c971f1452f6b37b23b92654409a191fbd4608710b1ca31d6c426ff77b53c4840c4b WHIRLPOOL b021bb7ecc97c2a99e88a8dd17dc1958fe7b2d17848c9e629edb0627d72d5651f96ef625cda4280989463e66c4b48880690b5e4a1180117bc762062be3b0566a +DIST consul-0.6.4.tar.gz 3912207 SHA256 327c72211af1d6613477856c15bf7bcfc3c80d23542f
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/
commit: 846f5aa623679e960fee7b296b01dd8d9dbbef0f Author: Mike Pagano gentoo org> AuthorDate: Mon Mar 21 11:45:06 2016 + Commit: Mike Pagano gentoo org> CommitDate: Mon Mar 21 11:45:06 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=846f5aa6 sys-kernel/gentoo-sources: Linux patch 4.1.15-r1 Package-Manager: portage-2.2.28 RepoMan-Options: --force sys-kernel/gentoo-sources/Manifest | 3 +++ .../gentoo-sources/gentoo-sources-4.1.15-r1.ebuild | 31 ++ 2 files changed, 34 insertions(+) diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 6526c91..f32e28a 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -59,6 +59,9 @@ DIST genpatches-4.0-6.extras.tar.xz 16280 SHA256 205c87c3d133a57d6ca42e2ce107cf6 DIST genpatches-4.1-16.base.tar.xz 390916 SHA256 c36edc8f56a26e0ae74fa28e9a50d02d8196f5d29447d6d2cdbf17ad71f70902 SHA512 981c4589a2f448a8c58276590eae9db25e716e0df584f4e431e7d29e69714695078112e30b84179038879071dcb94adb0753a94bcc3cf3e4c3a676244543f0aa WHIRLPOOL 6f3bf0ec325a1d7363315fd7828da31901916c497cbb8adb212e515ee7fae1179f276116f9e484fb23f2200e2fa61ad315baa8de1c073c5412dd1ff3ce624cf9 DIST genpatches-4.1-16.experimental.tar.xz 215996 SHA256 0840ccdcad7c4b03cd4fd54940e3ca31d0d738184abe1c9340d5d0f9c3943009 SHA512 95b8bc22413b24627ac1906830a345689c7e98a77beb1405e9a6c5b97f48c4fa7dbd15a2ffe66f24ef9dd8617a83a4913a26acbcb387f4a0add6d5f37c3343a9 WHIRLPOOL b19fbda05c354c17df10a8fe3e482798926e6631c5b5f96685e2d99cc016f10c37fbe5aef633c8a77bc427d045b02390815469f5aa2850dd76d5cb374a916cc0 DIST genpatches-4.1-16.extras.tar.xz 16176 SHA256 a6e00246f5e8feef952529d7be51104657f0acfea1d17b5c7a1e9fd800bd62ee SHA512 0ec02e89fef967286851d8cc0bd8c6d908d0b72c79ef55da30747cc151878340c3c882f9e1067edff3476851f136032674180e58cbc46a6a48d9f501c28c4f56 WHIRLPOOL 0aa25106c9346d8ec2eb3ff56b315312a07363e36039efcce7d52b2e73eebf4c6ffba65dac45ee49a3b6b0ffab05ed42905a86f3e7ead3d6be7bd998e5dbf8b6 +DIST genpatches-4.1-20.base.tar.xz 452816 SHA256 74b7e3355fdd999b17ed0cd955a20551ddaa0cc4d8608f5b80d31f8059a79549 SHA512 fd2d6c1ce75c899254b944798d230144c25caa8e36103388fa4dd3aa1a1a9e310435b442535be13a933b16d1a142c125bd5e754fb4aa621573599c36b6ac4bfd WHIRLPOOL a22aa9175d0cdf315c345ab60655476b141a472c4ebe505838440402b1bd65802ab21e6ad897f7883bf2846b61b9b414b2f55af29ee9372ea30d62df3257fc73 +DIST genpatches-4.1-20.experimental.tar.xz 61652 SHA256 155bbcf04d07d2b02523c9e64323f000ea24fa2b06d1472ceaf125e70e2ece25 SHA512 5f03d99b5c35384a158a2568516a41b9bfba8c373f1b004e1493bb2071b4de321b66ddd623bf71cd6fd85f4c3af1d2d45316dd3b2424b113f292ff4104e976c3 WHIRLPOOL ff6668b2f2301e34ba3a387a1216d8ab65f720acc6b2a6218f2d883c2ac0c1fa608e1cd0b07033eb6e114e4ae9a88ad7e3ef6ce7a4f6da8b241149ae08a8ec23 +DIST genpatches-4.1-20.extras.tar.xz 16180 SHA256 8f44981c6574aedf1484c7e643cfa3dfc1362fdce415947382c77098082d34d7 SHA512 5ae28d62ece98e9f39b68e6ffbc205c3c7e47b9048a67e461f944f1b05e39de865973c11a4fa6dcf34dea65e2cf883f537be4aaf24c704ff311c0769c68a286a WHIRLPOOL 58c8389b43898e4700d81fd12496acbf954152e6879e0f2d0535686ebeded273032080569c18fd739a8e2c07c6b55f8fe58adc2ff21c436c33d20e2a8eed6fdf DIST genpatches-4.1-25.base.tar.xz 646368 SHA256 2ea739dbf0674c01afcbf5285f25bd09f9fe449d1dc1c24bbcec7c31f7149d9f SHA512 0c0479c24aef139420430ae7e15c57d9910426a7f675afaf967e568d0979fb512372bc23b2ab333098c155e10dce4f576794eb08c329944f85fe0cecbe36bc23 WHIRLPOOL 56800435244fce2adfe6f71160347b44734aaeb566260a860c64e0038d329ae20334f33736916dbca49113e3ce4fa96e4816db83651b37af28d4c7bdd756a359 DIST genpatches-4.1-25.experimental.tar.xz 61620 SHA256 374198231df29d1fadb29d39f2d09839d418631c7db40fa9e6b9862a7a97a866 SHA512 4bad53c4e60adae84172e2c9730cebd062db88412f85c827ef40999abf8f93e3aa8e5e53f253880a31e8827436093608b69614c3c377dc0f552bab20db1e1925 WHIRLPOOL e5c1f49f571347518de11762a24d8955288f60bd1f86c1b1e87bdee22ce03d4759fe40a9af842e86ed908e0be8abdad48e66165f617d5997f6865f305994e3f1 DIST genpatches-4.1-25.extras.tar.xz 16180 SHA256 94e62b880f7466ec0a3fb64f37813e91e55d45d76cb273b00349545ba799e953 SHA512 9af9a8e6aeec2a639183978e2b0bb13839c18116624aee1b14a5aa2cea98f2267c5570db84f78aaabbe57d3a26fb33140168f452c98dc2d84c0ff1b18a0b7d4f WHIRLPOOL 2f6684798bb0f6f5b32ce521f9d3dc65f7aa1599fc1fe624d8ae5a410b71800589deae9490fd838f64da7dcefa41c6aa2991763cfcd1e61c991697724554a7eb diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.1.15-r1.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.1.15-r1.ebuild new file mode 100644 index 000..c0a9455 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.1.15-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="20" +K_DEBLOB_AVAILABLE="0" +K_KDBUS_AVAILABLE="0" + +inherit kernel-2 +
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 3e38a839ce27771e91584b1700cf4fb67c9d8e80 Author: Aaron Bauman gentoo org> AuthorDate: Mon Mar 21 11:49:58 2016 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Mar 21 11:49:58 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e38a839 package.mask: security mask media-sound/shoutcast-server-bin and media-sound/shoutcast-trans-bin per bug #261182 profiles/package.mask | 6 ++ 1 file changed, 6 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index 81187c4..21ea4ad 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,6 +30,12 @@ #--- END OF EXAMPLES --- +# Aaron Bauman (19 Mar 2016) +# Unpatched security vulnerability per bug #261182. +# Masked for removal in 30 days. +media-sound/shoutcast-server-bin +media-sound/shoutcast-trans-bin + # Lars Wendler (20 Mar 2016) # Don't work with latest claws-mail package. Most plugins are now part of # claws-mail sources and can be en-/disabled via USE flags.
[gentoo-commits] repo/gentoo:master commit in: media-sound/podget/
commit: 68e0c36e368da7219a13b29c5f5ae363ffc6e847 Author: Kitcat490 gmail com> AuthorDate: Sun Mar 20 12:52:00 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 11:40:00 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e0c36e media-sound/podget: Clean up old. Closes: https://github.com/gentoo/gentoo/pull/1094 media-sound/podget/Manifest | 1 - media-sound/podget/podget-0.7.10.ebuild | 32 2 files changed, 33 deletions(-) diff --git a/media-sound/podget/Manifest b/media-sound/podget/Manifest index 76b6b26..1b01523 100644 --- a/media-sound/podget/Manifest +++ b/media-sound/podget/Manifest @@ -1,3 +1,2 @@ -DIST podget-0.7.10.tar.gz 61812 SHA256 51018176dab74fb931045ac7169713529d23c39bdfa59e589f894a697a0a8391 SHA512 82cbb21dd7288dc4a2df8a851f25f85e4709cd5c385b1a8df2d9369303e62ead8f7225a65a29c6614660a5d3795f422f786c8be5bb5ca709752fca2d65d84e1f WHIRLPOOL 622094442dc12b2031c60de710867216662c28f8da420b6a272eadbed0e2cc9b093299c0187a48280aed83b68edd02de4615f6976d68ee7906bc23457676f0d9 DIST podget-0.7.12.tar.gz 62150 SHA256 ec2aebbf75b81eaa531077eea03abefdc05b6640b1d47bee92609344d2dedb35 SHA512 feb14172877378f5149862e3995df4c22eca0ab69eff950d399b9a5cf4f4f3f586cf9753204a979c8501c907e734fc96735fa1818cac4a5cd9b172462780e362 WHIRLPOOL 357d1d6d70060c355f7c98adc9980da24a366ee7c5e2ebf56f9d3283d354eba0600be053bcc9c1b9a8435391198c3dd6253c22cfefe790acb8ec7fa5288465e4 DIST podget-0.7.9.tar.gz 50898 SHA256 dd866f8a740592b0a6b1e859f73e12691e5a05c6f386006ff2a53e88090d853b SHA512 b67ee7619580ff0acfbe070bd2be4f990e035060740ffe98d5efdd24956c5fa239ac53553bc56afe1a3aaa1e70bee82d58982bbaa1059abef876f3223a473fc1 WHIRLPOOL 7ddbecd7c0dd4c71369fd0bda28e8df7f8812fbea05383b3d188eba08dd4c09b13a62af323f1f88e818519aea0d5d6eec4f78b175bdd5e2264bfca423d744617 diff --git a/media-sound/podget/podget-0.7.10.ebuild b/media-sound/podget/podget-0.7.10.ebuild deleted file mode 100644 index f9f26af..000 --- a/media-sound/podget/podget-0.7.10.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -DESCRIPTION="A simple podcast aggregator" -HOMEPAGE="http://podget.sourceforge.net/ https://github.com/dvehrs/podget"; -SRC_URI="https://github.com/dvehrs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -RDEPEND=" - net-misc/wget - virtual/libiconv -" - -DOCS=( README Changelog ) - -src_compile() { - # There is a Makefile that we don't want to use. - :; -} - -src_install() { - dobin ${PN} - doman DOC/${PN}.7 - einstalldocs -}
[gentoo-commits] repo/gentoo:master commit in: media-sound/podget/
commit: 727c923923907310fba89cd740ba246746c73875 Author: Kitcat490 gmail com> AuthorDate: Sun Mar 20 12:34:27 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 11:39:57 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727c9239 media-sound/podget: Version bump. Closes: https://github.com/gentoo/gentoo/pull/1094 media-sound/podget/Manifest | 1 + media-sound/podget/podget-0.7.12.ebuild | 32 2 files changed, 33 insertions(+) diff --git a/media-sound/podget/Manifest b/media-sound/podget/Manifest index 96bd539..76b6b26 100644 --- a/media-sound/podget/Manifest +++ b/media-sound/podget/Manifest @@ -1,2 +1,3 @@ DIST podget-0.7.10.tar.gz 61812 SHA256 51018176dab74fb931045ac7169713529d23c39bdfa59e589f894a697a0a8391 SHA512 82cbb21dd7288dc4a2df8a851f25f85e4709cd5c385b1a8df2d9369303e62ead8f7225a65a29c6614660a5d3795f422f786c8be5bb5ca709752fca2d65d84e1f WHIRLPOOL 622094442dc12b2031c60de710867216662c28f8da420b6a272eadbed0e2cc9b093299c0187a48280aed83b68edd02de4615f6976d68ee7906bc23457676f0d9 +DIST podget-0.7.12.tar.gz 62150 SHA256 ec2aebbf75b81eaa531077eea03abefdc05b6640b1d47bee92609344d2dedb35 SHA512 feb14172877378f5149862e3995df4c22eca0ab69eff950d399b9a5cf4f4f3f586cf9753204a979c8501c907e734fc96735fa1818cac4a5cd9b172462780e362 WHIRLPOOL 357d1d6d70060c355f7c98adc9980da24a366ee7c5e2ebf56f9d3283d354eba0600be053bcc9c1b9a8435391198c3dd6253c22cfefe790acb8ec7fa5288465e4 DIST podget-0.7.9.tar.gz 50898 SHA256 dd866f8a740592b0a6b1e859f73e12691e5a05c6f386006ff2a53e88090d853b SHA512 b67ee7619580ff0acfbe070bd2be4f990e035060740ffe98d5efdd24956c5fa239ac53553bc56afe1a3aaa1e70bee82d58982bbaa1059abef876f3223a473fc1 WHIRLPOOL 7ddbecd7c0dd4c71369fd0bda28e8df7f8812fbea05383b3d188eba08dd4c09b13a62af323f1f88e818519aea0d5d6eec4f78b175bdd5e2264bfca423d744617 diff --git a/media-sound/podget/podget-0.7.12.ebuild b/media-sound/podget/podget-0.7.12.ebuild new file mode 100644 index 000..f9f26af --- /dev/null +++ b/media-sound/podget/podget-0.7.12.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A simple podcast aggregator" +HOMEPAGE="http://podget.sourceforge.net/ https://github.com/dvehrs/podget"; +SRC_URI="https://github.com/dvehrs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND=" + net-misc/wget + virtual/libiconv +" + +DOCS=( README Changelog ) + +src_compile() { + # There is a Makefile that we don't want to use. + :; +} + +src_install() { + dobin ${PN} + doman DOC/${PN}.7 + einstalldocs +}
[gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/files/, net-p2p/deluge/
commit: 900dcc34dcda0cbc21d152fb9011907a632c0e31 Author: PPed72 iol it> AuthorDate: Mon Mar 21 09:58:31 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 11:43:56 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=900dcc34 net-p2p/deluge: fix scheduler plugin Reporter: Giacomo Tazzari gmail.com> Gentoo-Bug: https://bugs.gentoo.org/577848 Closes: https://github.com/gentoo/gentoo/pull/1103 net-p2p/deluge/deluge-1.3.12-r3.ebuild | 1 + .../files/deluge-1.3.12-fix_scheduler_plugin.patch | 22 ++ 2 files changed, 23 insertions(+) diff --git a/net-p2p/deluge/deluge-1.3.12-r3.ebuild b/net-p2p/deluge/deluge-1.3.12-r3.ebuild index cd671e1..1327cd2 100644 --- a/net-p2p/deluge/deluge-1.3.12-r3.ebuild +++ b/net-p2p/deluge/deluge-1.3.12-r3.ebuild @@ -50,6 +50,7 @@ RDEPEND=">=net-libs/rb_libtorrent-0.14.9[python] python_prepare_all() { local PATCHES=( "${FILESDIR}"/${PN}-1.3.5-disable_libtorrent_internal_copy.patch + "${FILESDIR}"/${PN}-1.3.12-fix_scheduler_plugin.patch ) distutils-r1_python_prepare_all diff --git a/net-p2p/deluge/files/deluge-1.3.12-fix_scheduler_plugin.patch b/net-p2p/deluge/files/deluge-1.3.12-fix_scheduler_plugin.patch new file mode 100644 index 000..fda64aa --- /dev/null +++ b/net-p2p/deluge/files/deluge-1.3.12-fix_scheduler_plugin.patch @@ -0,0 +1,22 @@ +From cdf301601fe71bd697f3796cf0a5656d437d140e Mon Sep 17 00:00:00 2001 +From: Calum Lind +Date: Wed, 16 Sep 2015 15:11:56 +0100 +Subject: [Scheduler] Revert erroneous fix backported from develop branch + + * The issue this was intended to fix only occurs on develop branch +--- + deluge/plugins/scheduler/scheduler/core.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/deluge/plugins/scheduler/scheduler/core.py b/deluge/plugins/scheduler/scheduler/core.py +index 9fb81df..f0e2392 100644 +--- a/deluge/plugins/scheduler/scheduler/core.py b/deluge/plugins/scheduler/scheduler/core.py +@@ -127,7 +127,7 @@ class Core(CorePluginBase): + """ + core_config = deluge.configmanager.ConfigManager("core.conf") + for setting in CONTROLLED_SETTINGS: +-component.get("PreferencesManager").do_config_set_func(setting, core_config[setting]) ++core_config.apply_set_functions(setting) + # Resume the session if necessary + component.get("Core").session.resume()
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 00539acdd0f6eec5eade0e5cd1b15f87836f668e Author: Aaron Bauman gentoo org> AuthorDate: Mon Mar 21 12:07:19 2016 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Mar 21 12:07:19 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00539acd package.mask: app-forensics/chkrootkit adjust mask to 0.49 only profiles/package.mask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/package.mask b/profiles/package.mask index 21ea4ad..f962e93 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -70,7 +70,7 @@ x11-libs/libview # Aaron Bauman (19 Mar 2016) # Unpatched security vulnerability per bug #512356. # Masked for removal in 30 days. -app-forensics/chkrootkit +=app-forensics/chkrootkit-0.49 # Aaron Bauman (19 Mar 2016) # Unpatched security vulnerability per bug #529712.
[gentoo-commits] repo/gentoo:master commit in: virtual/mysql/
commit: 857621f827a000dfce648c0a38eceeb3b0b3f4e5 Author: Brian Evans gentoo org> AuthorDate: Mon Mar 21 12:27:15 2016 + Commit: Brian Evans gentoo org> CommitDate: Mon Mar 21 12:27:15 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857621f8 virtual/mysql: Drop old revisions wrt bug 577910 Package-Manager: portage-2.2.28 virtual/mysql/mysql-5.6-r2.ebuild | 25 - virtual/mysql/mysql-5.6-r5.ebuild | 28 2 files changed, 53 deletions(-) diff --git a/virtual/mysql/mysql-5.6-r2.ebuild b/virtual/mysql/mysql-5.6-r2.ebuild deleted file mode 100644 index 2bc383d..000 --- a/virtual/mysql/mysql-5.6-r2.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -inherit multilib-build - -DESCRIPTION="Virtual for MySQL client or database" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0/18" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="embedded minimal static static-libs" - -DEPEND="" -RDEPEND="|| ( - =dev-db/mariadb-10.0*[embedded=,minimal=,static=,static-libs=,${MULTILIB_USEDEP}] - =dev-db/mysql-${PV}*[embedded=,minimal=,static=,static-libs=,${MULTILIB_USEDEP}] - =dev-db/percona-server-${PV}*[embedded=,minimal=,static=,static-libs=,${MULTILIB_USEDEP}] - =dev-db/mariadb-galera-10.0*[embedded=,minimal=,static=,static-libs=,${MULTILIB_USEDEP}] - =dev-db/mysql-cluster-7.3*[embedded=,minimal=,static=,static-libs=,${MULTILIB_USEDEP}] -)" diff --git a/virtual/mysql/mysql-5.6-r5.ebuild b/virtual/mysql/mysql-5.6-r5.ebuild deleted file mode 100644 index bf7ac39..000 --- a/virtual/mysql/mysql-5.6-r5.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -inherit multilib-build - -DESCRIPTION="Virtual for MySQL database server" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0/18" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="embedded static static-libs" - -DEPEND="" -RDEPEND=" - virtual/libmysqlclient[static-libs?,${MULTILIB_USEDEP}] - || ( - =dev-db/mariadb-10.1*[embedded=,static=] - =dev-db/mariadb-10.0*[embedded=,static=] - =dev-db/mysql-${PV}*[embedded=,static=] - =dev-db/percona-server-${PV}*[embedded=,static=] - =dev-db/mariadb-galera-10.0*[embedded=,static=] - =dev-db/mysql-cluster-7.3*[embedded=,static=] - )"
[gentoo-commits] repo/gentoo:master commit in: net-irc/znc/files/, net-irc/znc/
commit: 942dfd926c80e680f564099f0b9535a2777c0245 Author: Louis Sautier gmail com> AuthorDate: Sat Mar 19 17:10:18 2016 + Commit: Ian Delaney gentoo org> CommitDate: Mon Mar 21 13:11:34 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=942dfd92 net-irc/znc: bump to 1.6.3, EAPI=6 - use the proper LICENSE - remove the ZNC_DATADIR variable - the libressl patch is no longer required → drop patch - swig is not needed to build bindings from a release, removed from DEPEND - configure uses python3 by default → don't specify it any more - move informational postinst messages to a README.gentoo file - fix the systemd unit by setting a valid HOME for the znc user - delete the custom src_unpack function, provide the full path to gtest Gentoo-Bug: https://bugs.gentoo.org/567344 Gentoo-Bug: https://bugs.gentoo.org/571366 Gentoo-Bug: https://bugs.gentoo.org/521916 Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/1086 net-irc/znc/Manifest| 1 + net-irc/znc/files/README.gentoo | 22 +++ net-irc/znc/znc-1.6.3.ebuild| 126 3 files changed, 149 insertions(+) diff --git a/net-irc/znc/Manifest b/net-irc/znc/Manifest index 2e4aebe..dc1f820 100644 --- a/net-irc/znc/Manifest +++ b/net-irc/znc/Manifest @@ -2,3 +2,4 @@ DIST gtest-1.7.0.zip 1164254 SHA256 247ca18dd83f53deb1328be17e4b1be31514cedfc1e3 DIST znc-1.2.tar.gz 1235150 SHA256 d9a2cd2a484ff23e6fc9cbde8dd8a43efbcd8d288afca7b1268914ca0d18701d SHA512 dff24e56127e5599d64b4c62de967d5d48d8ebf23ca8597d33bf0b3622640512db7a462bfa7c2031cd8307f402bab8efa345f6d1fc813e78eb0dcae581de3cf7 WHIRLPOOL b0810eb66e63be762f74f04eb2289e3634b18d6ecbd36d55f6a6772697e0397637d59b9ea01eaf62ef1cbe5f6e65b06432a254f4ada35194aa06b65c4a2f7994 DIST znc-1.4.tar.gz 1239648 SHA256 86e98fd0ed182d39828c926809f8075d836ee3b70a6dd43dfbb434822f2a7b52 SHA512 0c33b05e8232084999812cbaa467dc7d37b80cafc1001b82e89c702b4303d8db9a27b948fe653e7090404eb1c66f5492f02f3524bc39efabade4be8bdb476671 WHIRLPOOL 420e665fa193b3f0284a070e021c4c467e3d40a0812eedeef9b2f65a6626a050b7af8bf15a754ac571d12261705832cfa18a0f7a7817cce96d220028a86230cf DIST znc-1.6.1.tar.gz 1463397 SHA256 ba49397364f48d6d32ae5242bc1166f21d972f85dd390d6bbe68a63ecbb6c140 SHA512 92c0acca6b585df394cf8d6d295948fc1342ff7b15d081017d2e0ba521129f914fa2b019a82d801f826f1009456294e4f578e978f34677bbfe436e87e2734aba WHIRLPOOL ff4a22742d5e1e8da66325fdc8a2fd88a467674a5f13f6d353b1c3588affd86f2c33c24d48f1b61dfba14311d6f1c13b2939851316cb302ab031073baa05ec17 +DIST znc-1.6.3.tar.gz 1464200 SHA256 631c46de76fe601a41ef7676bc974958e9a302b72b25fc92b4a603a25d89b827 SHA512 777279b6c973310b4e78a0472bd1e355c2adf3e4fbe9ebedde3dd4706e5c0b208d4330eb2318a8d9e0d7d7146bee0a4a428cbe5a3f230c8f6aa692a477e86e2b WHIRLPOOL 2a41e0ac90038a8cc8f289d4ffc0494d29eda75450f650b8870c076fb809eb9c5829720bb39eb43d38ee4ac7f9bea6000ad90fcdd8c0eea461bf04f88cc17b52 diff --git a/net-irc/znc/files/README.gentoo b/net-irc/znc/files/README.gentoo new file mode 100644 index 000..5b222a2 --- /dev/null +++ b/net-irc/znc/files/README.gentoo @@ -0,0 +1,22 @@ +To run znc as a user, run 'znc --makeconf' to create a configuration file. + +If znc was compiled with the 'daemon' use flag, you may run +emerge --config znc +to configure it. + +To generate a new SSL certificate, run: +znc --system-wide-config-as znc --makepem -d /var/lib/znc +as root. + +If migrating from a user-based install, you can copy the existing +configuration files: + mkdir /var/lib/znc + mv /home/$USER/.znc/* /var/lib/znc + rm -rf /home/$USER/.znc + chown -R znc:znc /var/lib/znc +You may also adjust the location of the files and the user running znc +in /etc/conf.d/znc instead. + +To run as a daemon, please make sure that your configuration contains +PidFile = /run/znc/znc.pid +or that the PidFile value matches the one in /etc/conf.d/znc. diff --git a/net-irc/znc/znc-1.6.3.ebuild b/net-irc/znc/znc-1.6.3.ebuild new file mode 100644 index 000..eb37727 --- /dev/null +++ b/net-irc/znc/znc-1.6.3.ebuild @@ -0,0 +1,126 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{3_3,3_4,3_5} ) +inherit eutils python-single-r1 readme.gentoo-r1 systemd user + +MY_PV=${PV/_/-} +GTEST_VER="1.7.0" +GTEST_URL="https://googletest.googlecode.com/files/gtest-${GTEST_VER}.zip"; +DESCRIPTION="An advanced IRC Bouncer" + +SRC_URI="http://znc.in/releases/${PN}-${MY_PV}.tar.gz + test? ( ${GTEST_URL} )" +KEYWORDS="~amd64 ~arm ~x86" + +HOMEPAGE="http://znc.in"; +LICENSE="Apache-2.0" +SLOT="0" +IUSE="daemon debug ipv6 libressl perl python ssl sasl tcl test" + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND=" + dev-libs/icu:= + sys-libs/zlib + perl? ( >=dev-lang/perl-5.10 ) + python? ( ${PYTHON_DEPS} ) + sasl? ( >=dev-libs/cyrus-sasl-2 ) + ssl?
[gentoo-commits] repo/gentoo:master commit in: net-irc/znc/
commit: 4c0486e78e12d3f71d6845aef2094a0ef4a65997 Author: Louis Sautier gmail com> AuthorDate: Sat Mar 19 22:47:51 2016 + Commit: Ian Delaney gentoo org> CommitDate: Mon Mar 21 13:11:34 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0486e7 net-irc/znc: update metadata, add myself as proxied maintainer Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/1086 net-irc/znc/metadata.xml | 27 --- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/net-irc/znc/metadata.xml b/net-irc/znc/metadata.xml index 26e7668..a2861e7 100644 --- a/net-irc/znc/metadata.xml +++ b/net-irc/znc/metadata.xml @@ -1,11 +1,24 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - wi...@gentoo.org - Alex Alexander - - - Allow znc to run as a system-wide service. Installs an init script and creates a znc user:group. - + + wi...@gentoo.org + Alex Alexander + + + sautier.lo...@gmail.com + Louis Sautier + Proxied maintainer; set to assignee in all bugs + + + proxy-ma...@gentoo.org + Proxy Maintainers + + + Allow znc to run as a system-wide service. Installs an init script and creates a znc user:group. + + + znc/znc + https://github.com/znc/znc/issues +
[gentoo-commits] repo/gentoo:master commit in: net-irc/znc/
commit: b837168389dc2e3be892704b59c2b2cf8e3ade0d Author: Louis Sautier gmail com> AuthorDate: Sat Mar 19 17:19:15 2016 + Commit: Ian Delaney gentoo org> CommitDate: Mon Mar 21 13:11:34 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8371683 net-irc/znc: remove old Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/1086 net-irc/znc/znc-1.6.1.ebuild | 186 --- 1 file changed, 186 deletions(-) diff --git a/net-irc/znc/znc-1.6.1.ebuild b/net-irc/znc/znc-1.6.1.ebuild deleted file mode 100644 index dc7a99d..000 --- a/net-irc/znc/znc-1.6.1.ebuild +++ /dev/null @@ -1,186 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python{3_3,3_4} ) -inherit eutils python-single-r1 systemd user - -MY_PV=${PV/_/-} -GTEST_VER="1.7.0" -GTEST_URL="https://googletest.googlecode.com/files/gtest-${GTEST_VER}.zip"; -DESCRIPTION="An advanced IRC Bouncer" - -SRC_URI="http://znc.in/releases/${PN}-${MY_PV}.tar.gz - test? ( ${GTEST_URL} )" -KEYWORDS="~amd64 ~arm ~x86" - -HOMEPAGE="http://znc.in"; -LICENSE="GPL-2" -SLOT="0" -IUSE="daemon debug ipv6 perl python ssl sasl tcl test" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - dev-libs/icu - sys-libs/zlib - perl? ( >=dev-lang/perl-5.10 ) - python? ( ${PYTHON_DEPS} ) - sasl? ( >=dev-libs/cyrus-sasl-2 ) - ssl? ( >=dev-libs/openssl-0.9.7d:0 ) - tcl? ( dev-lang/tcl:0= ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig - perl? ( - >=dev-lang/swig-2.0.12 - ) - python? ( - >=dev-lang/swig-2.0.12 - ) -" - -S=${WORKDIR}/${PN}-${MY_PV} - -PATCHES=( - "${FILESDIR}"/${PN}-1.6.1-systemwideconfig.patch - "${FILESDIR}"/${PN}-1.6.1-create-pidfile-per-default.patch -) - -ZNC_DATADIR="${ZNC_DATADIR:-"/var/lib/znc"}" - -pkg_setup() { - if use python; then - python-single-r1_pkg_setup - fi - if use daemon; then - enewgroup ${PN} - enewuser ${PN} -1 -1 /dev/null ${PN} - fi -} - -src_unpack() { - default - - if use test; then - cd "${S}"/test || die "Failed to chdir into '${S}/test'" - unpack ${GTEST_URL##*/} - mv gtest-${GTEST_VER} gtest \ - || die "Failed to rename '${S}/test/gtest-${GTEST_VER}' dir" - fi -} - -src_prepare() { - epatch ${PATCHES[@]} -} - -src_configure() { - econf \ - --with-systemdsystemunitdir=$(systemd_get_unitdir) \ - $(use_enable debug) \ - $(use_enable ipv6) \ - $(use_enable perl) \ - $(use python && echo "--enable-python=python3") \ - $(use_enable sasl cyrus) \ - $(use_enable ssl openssl) \ - $(use_enable tcl tcl) \ - $(use_with test gtest "${S}/test/gtest") -} - -src_install() { - emake install DESTDIR="${D%/}" - dodoc NOTICE README.md - if use daemon; then - newinitd "${FILESDIR}"/znc.initd-r1 znc - newconfd "${FILESDIR}"/znc.confd-r1 znc - fi -} - -pkg_postinst() { - if use !daemon; then - elog - elog "Run 'znc --makeconf' as the user you want to run ZNC as" - elog "to make a configuration file" - elog - else - elog - elog "An init-script was installed in /etc/init.d" - elog "A config file was installed in /etc/conf.d" - if [[ ! -d "${EROOT}${ZNC_DATADIR}" ]]; then - elog - elog "Run 'emerge --config znc' under portage" - elog "or 'cave config znc' under paludis to configure ZNC" - elog "as a system-wide daemon." - elog - elog "To generate a new SSL certificate, run:" - elog " znc --system-wide-config-as znc --makepem -d ${ZNC_DATADIR}" - elog "as root" - elog - elog "If migrating from a user-based install" - elog "you can use your existing config files:" - elog " mkdir ${ZNC_DATADIR}" - elog " mv /home/\$USER/.znc/* ${ZNC_DATADIR}" - elog " rm -rf /home/\$USER/.znc" - elog " chown -R znc:znc ${ZNC_DATADIR}" - elog - elog "If you already have znc set up and want take advantage of the" - elog "init script but skip of all the above, you can also edit" - elog " /etc/conf.d/znc" - elog "and adjust the variables to your current znc user a
[gentoo-commits] proj/kde:master commit in: sets/
commit: 5e1275a34d21be47ce9054edecbdc2ab9f137d40 Author: Vadim A. Misbakh-Soloviov mva name> AuthorDate: Mon Mar 21 13:19:55 2016 + Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Mon Mar 21 13:19:55 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5e1275a3 sets/kdepim-live: removed kaddressbookgrantlee (in kdepim-apps-libs) Signed-off-by: Vadim A. Misbakh-Soloviov mva.name> sets/kdepim-live | 1 - 1 file changed, 1 deletion(-) diff --git a/sets/kdepim-live b/sets/kdepim-live index 1e225e2..8c21fe8 100644 --- a/sets/kdepim-live +++ b/sets/kdepim-live @@ -14,7 +14,6 @@ ~kde-apps/grantleetheme- ~kde-apps/incidenceeditor- ~kde-apps/kaddressbook- -~kde-apps/kaddressbookgrantlee- ~kde-apps/kalarmcal- ~kde-apps/kblog- ~kde-apps/kcalcore-
[gentoo-commits] dev/dev-zero:master commit in: dev-libs/poco/, dev-libs/poco/files/
commit: 5e73e0ed7381f90bd98366cbfd4a1e3e29470542 Author: Tiziano Müller gentoo org> AuthorDate: Mon Mar 21 13:44:37 2016 + Commit: Tiziano Müller gentoo org> CommitDate: Mon Mar 21 13:44:37 2016 + URL:https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=5e73e0ed dev-libs/poco: add version bump for bug #550976, one test is still failing dev-libs/poco/Manifest| 1 + dev-libs/poco/files/poco-1.7.1-iodbc-incdir.patch | 13 +++ dev-libs/poco/metadata.xml| 31 +++ dev-libs/poco/poco-1.7.1.ebuild | 108 ++ 4 files changed, 153 insertions(+) diff --git a/dev-libs/poco/Manifest b/dev-libs/poco/Manifest new file mode 100644 index 000..fba93d5 --- /dev/null +++ b/dev-libs/poco/Manifest @@ -0,0 +1 @@ +DIST poco-1.7.1.tar.gz 7927255 SHA256 6dbbc2018912ad9af6af96f605933ed91354a1e7423e5dbd04d8e9a2b2d15c05 SHA512 55b3c4dc93111674ea72d99bcdb0e571f75423cffd9df6be114cf3e0f6fbe55be05082bc2e9e6087fef8afec542d65cbf19b739d6f3e7029b0d1bf1e707c8f9d WHIRLPOOL 13e80a6242a3dd294e82f13e8bb1556e461fc93441cbad7b77461745f79eedc4749e3660c6ffd931e8bd0f25edb945e35baebdb6c0f89a9469489f4a9836041a diff --git a/dev-libs/poco/files/poco-1.7.1-iodbc-incdir.patch b/dev-libs/poco/files/poco-1.7.1-iodbc-incdir.patch new file mode 100644 index 000..e41d8f3 --- /dev/null +++ b/dev-libs/poco/files/poco-1.7.1-iodbc-incdir.patch @@ -0,0 +1,13 @@ +diff --git a/cmake/FindODBC.cmake b/cmake/FindODBC.cmake +index 9e229ed..5d79c7e 100644 +--- a/cmake/FindODBC.cmake b/cmake/FindODBC.cmake +@@ -16,7 +16,7 @@ + find_path(ODBC_INCLUDE_DIRECTORIES + NAMES sql.h + HINTS +- /usr/include ++ /usr/include/iodbc + /usr/include/odbc + /usr/local/include + /usr/local/include/odbc diff --git a/dev-libs/poco/metadata.xml b/dev-libs/poco/metadata.xml new file mode 100644 index 000..929b5dc --- /dev/null +++ b/dev-libs/poco/metadata.xml @@ -0,0 +1,31 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + + to...@gentoo.org + Thomas Sachau (Tommy[D]) + + + c...@gentoo.org + Gentoo C++ Project + + +POCO, the C++ Portable Components, is a collection of open source +C++ class libraries that simplify and accelerate the development of +network-centric, portable applications in C++. The libraries integrate +perfectly with the C++ Standard Library and fill many of the functional +gaps left open by it. Their modular and efficient design and implementation +makes the C++ Portable Components extremely well suited for embedded +development, an area where the C++ programming language is becoming +increasingly popular, due to its suitability for both low-level (device +I/O, interrupt handlers, etc.) and high-level object-oriented development. +Of course, POCO is also ready for enterprise-level challenges. + +The POCO libraries free developers from re-inventing the wheel, and allow +them to spend their time on more worthwhile areas, such as getting things +done quickly and working on the features that make their application unique. + + + poco + + diff --git a/dev-libs/poco/poco-1.7.1.ebuild b/dev-libs/poco/poco-1.7.1.ebuild new file mode 100644 index 000..844d784 --- /dev/null +++ b/dev-libs/poco/poco-1.7.1.ebuild @@ -0,0 +1,108 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="C++ class libraries to simplify the development of network-centric, portable applications" +HOMEPAGE="http://pocoproject.org/"; +SRC_URI="https://github.com/pocoproject/${PN}/archive/${P}-release.tar.gz -> ${P}.tar.gz" +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="7z apache cppparser +crypto +data examples +file2pagecompiler +json +pagecompiler iodbc libressl +mongodb mysql +net odbc pdf pocodoc sqlite +ssl test +util +xml +zip" +REQUIRED_USE="apache? ( net util ) + file2pagecompiler? ( pagecompiler ) + iodbc? ( odbc ) + mongodb? ( data ) + mysql? ( data ) + odbc? ( data ) + pagecompiler? ( json net util xml ) + pocodoc? ( cppparser util xml ) + sqlite? ( data ) + test? ( data? ( sqlite ) json util xml )" + +RDEPEND=">=dev-libs/libpcre-8.13 + xml? ( dev-libs/expat ) + apache? ( dev-libs/apr + dev-libs/apr-util + www-servers/apache ) + mysql? ( virtual/mysql ) + odbc? ( iodbc? ( dev-db/libiodbc ) + !iodbc? ( dev-db/unixODBC ) ) + ssl? ( + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + ) + sqlite? ( dev-db/sqlite:3 ) + zip? ( sys-libs/zlib )" +DEPEND="${DEPEND} + virtual/pkgconfig" + +S="${WORKDIR}/${PN}-${P}-release" + +PATCHES=( "${FILESDIR}/${P}-iodbc-incdir.patc
[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-applications-live/, ...
commit: 0fb6e8871ada88120f984c39280cbdd589549cd3 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 13:44:48 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 13:44:48 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0fb6e887 Documentation: Update KDE Applications live Documentation/package.accept_keywords/.kde-applications-live/kdepim-live | 1 - Documentation/package.accept_keywords/kde-applications-live.keywords | 1 - Documentation/package.mask/kde-applications-live | 1 - Documentation/package.unmask/kde-applications-live | 1 - 4 files changed, 4 deletions(-) diff --git a/Documentation/package.accept_keywords/.kde-applications-live/kdepim-live b/Documentation/package.accept_keywords/.kde-applications-live/kdepim-live index a7c87e4..d6c0a0c 100644 --- a/Documentation/package.accept_keywords/.kde-applications-live/kdepim-live +++ b/Documentation/package.accept_keywords/.kde-applications-live/kdepim-live @@ -14,7 +14,6 @@ ~kde-apps/grantleetheme- ** ~kde-apps/incidenceeditor- ** ~kde-apps/kaddressbook- ** -~kde-apps/kaddressbookgrantlee- ** ~kde-apps/kalarmcal- ** ~kde-apps/kblog- ** ~kde-apps/kcalcore- ** diff --git a/Documentation/package.accept_keywords/kde-applications-live.keywords b/Documentation/package.accept_keywords/kde-applications-live.keywords index c0c7068..cb130f9 100644 --- a/Documentation/package.accept_keywords/kde-applications-live.keywords +++ b/Documentation/package.accept_keywords/kde-applications-live.keywords @@ -111,7 +111,6 @@ ~kde-apps/grantleetheme- ** ~kde-apps/incidenceeditor- ** ~kde-apps/kaddressbook- ** -~kde-apps/kaddressbookgrantlee- ** ~kde-apps/kalarmcal- ** ~kde-apps/kblog- ** ~kde-apps/kcalcore- ** diff --git a/Documentation/package.mask/kde-applications-live b/Documentation/package.mask/kde-applications-live index fffd8e0..d64d702 100644 --- a/Documentation/package.mask/kde-applications-live +++ b/Documentation/package.mask/kde-applications-live @@ -111,7 +111,6 @@ ~kde-apps/grantleetheme- ~kde-apps/incidenceeditor- ~kde-apps/kaddressbook- -~kde-apps/kaddressbookgrantlee- ~kde-apps/kalarmcal- ~kde-apps/kblog- ~kde-apps/kcalcore- diff --git a/Documentation/package.unmask/kde-applications-live b/Documentation/package.unmask/kde-applications-live index fffd8e0..d64d702 100644 --- a/Documentation/package.unmask/kde-applications-live +++ b/Documentation/package.unmask/kde-applications-live @@ -111,7 +111,6 @@ ~kde-apps/grantleetheme- ~kde-apps/incidenceeditor- ~kde-apps/kaddressbook- -~kde-apps/kaddressbookgrantlee- ~kde-apps/kalarmcal- ~kde-apps/kblog- ~kde-apps/kcalcore-
[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: core/var/lib/portage/, core/etc/grs/
commit: 13e37176de230699e2d5f82d9de0a7d5b576124c Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 13:59:12 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 13:59:12 2016 + URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=13e37176 world: drop ogg-vorbits-header and libview, masked on the tree core/etc/grs/world.conf| 3 --- core/var/lib/portage/world.CYCLE.4 | 2 -- 2 files changed, 5 deletions(-) diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf index b60e0e7..4e47edf 100644 --- a/core/etc/grs/world.conf +++ b/core/etc/grs/world.conf @@ -8169,9 +8169,6 @@ package.use : x11-libs/libva:0 -egl -vdpau -video_cards_dummy -video_cards_fglrx [x11-libs/libvdpau:0] package.use : x11-libs/libvdpau:0 -doc -test dri -[x11-libs/libview:0] -package.use : x11-libs/libview:0 static-libs - [x11-libs/libwnck:1] package.use : x11-libs/libwnck:1 introspection startup-notification diff --git a/core/var/lib/portage/world.CYCLE.4 b/core/var/lib/portage/world.CYCLE.4 index aad376b..1641f43 100644 --- a/core/var/lib/portage/world.CYCLE.4 +++ b/core/var/lib/portage/world.CYCLE.4 @@ -1073,7 +1073,6 @@ dev-perl/gtk2-trayicon dev-perl/gtk2-traymanager dev-perl/libvorbis-perl dev-perl/mecab-perl -dev-perl/ogg-vorbis-header dev-perl/rename dev-perl/text-wrapper dev-python/3to2 @@ -3144,7 +3143,6 @@ x11-libs/gtkhotkey x11-libs/hippo-canvas x11-libs/libXfontcache x11-libs/libva-vdpau-driver -x11-libs/libview x11-libs/libxkbui x11-libs/qwtplot3d x11-misc/3ddesktop
[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/etc/grs/, core/var/lib/portage/
commit: 606f2e93e21847cf98827176146d5d0e68979ea8 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 13:59:12 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 13:59:57 2016 + URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=606f2e93 world: drop ogg-vorbits-header and libview, masked on the tree core/etc/grs/world.conf| 3 --- core/var/lib/portage/world.CYCLE.4 | 1 - 2 files changed, 4 deletions(-) diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf index bca57ae..f27b7ab 100644 --- a/core/etc/grs/world.conf +++ b/core/etc/grs/world.conf @@ -8208,9 +8208,6 @@ package.use : x11-libs/libva:0 -egl -vdpau -video_cards_dummy -video_cards_fglrx [x11-libs/libvdpau:0] package.use : x11-libs/libvdpau:0 -doc -test dri -[x11-libs/libview:0] -package.use : x11-libs/libview:0 static-libs - [x11-libs/libwnck:1] package.use : x11-libs/libwnck:1 introspection startup-notification diff --git a/core/var/lib/portage/world.CYCLE.4 b/core/var/lib/portage/world.CYCLE.4 index dc15113..10e8f2f 100644 --- a/core/var/lib/portage/world.CYCLE.4 +++ b/core/var/lib/portage/world.CYCLE.4 @@ -3137,7 +3137,6 @@ x11-libs/gtkhotkey x11-libs/hippo-canvas x11-libs/libXfontcache x11-libs/libva-vdpau-driver -x11-libs/libview x11-libs/libxkbui x11-libs/qwtplot3d x11-misc/3ddesktop
[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: core/var/lib/portage/, core/etc/grs/
commit: bf09931b362fd9f1f789a505b81d3ec1cbcdad5e Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 13:59:12 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 13:59:42 2016 + URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=bf09931b world: drop ogg-vorbits-header and libview, masked on the tree core/etc/grs/world.conf| 3 --- core/var/lib/portage/world.CYCLE.4 | 2 -- 2 files changed, 5 deletions(-) diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf index b4ed69c..4ea57b0 100644 --- a/core/etc/grs/world.conf +++ b/core/etc/grs/world.conf @@ -8328,9 +8328,6 @@ package.use : x11-libs/libva:0 -egl -vdpau -video_cards_dummy -video_cards_fglrx [x11-libs/libvdpau:0] package.use : x11-libs/libvdpau:0 -doc -test dri -[x11-libs/libview:0] -package.use : x11-libs/libview:0 static-libs - [x11-libs/libwnck:1] package.use : x11-libs/libwnck:1 introspection startup-notification diff --git a/core/var/lib/portage/world.CYCLE.4 b/core/var/lib/portage/world.CYCLE.4 index 1026a42..a9e9696 100644 --- a/core/var/lib/portage/world.CYCLE.4 +++ b/core/var/lib/portage/world.CYCLE.4 @@ -1073,7 +1073,6 @@ dev-perl/gtk2-trayicon dev-perl/gtk2-traymanager dev-perl/libvorbis-perl dev-perl/mecab-perl -dev-perl/ogg-vorbis-header dev-perl/rename dev-perl/text-wrapper dev-python/3to2 @@ -3144,7 +3143,6 @@ x11-libs/gtkhotkey x11-libs/hippo-canvas x11-libs/libXfontcache x11-libs/libva-vdpau-driver -x11-libs/libview x11-libs/libxkbui x11-libs/qwtplot3d x11-misc/3ddesktop
[gentoo-commits] repo/gentoo:master commit in: net-irc/znc/
commit: feeff63379a395f1e708ced64fc12541e1d4d6b6 Author: Louis Sautier gmail com> AuthorDate: Mon Mar 21 13:28:20 2016 + Commit: Ian Delaney gentoo org> CommitDate: Mon Mar 21 13:54:52 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feeff633 net-irc/znc: update LICENSE for older ebuilds Gentoo-Bug: https://bugs.gentoo.org/571366 Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/1104 net-irc/znc/znc-1.2-r1.ebuild | 4 ++-- net-irc/znc/znc-1.4-r1.ebuild | 4 ++-- net-irc/znc/znc-1.4.ebuild | 4 ++-- net-irc/znc/znc-1.6.1-r1.ebuild | 4 ++-- net-irc/znc/znc-.ebuild | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/net-irc/znc/znc-1.2-r1.ebuild b/net-irc/znc/znc-1.2-r1.ebuild index b8acfc2..8322a7f 100644 --- a/net-irc/znc/znc-1.2-r1.ebuild +++ b/net-irc/znc/znc-1.2-r1.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$ @@ -21,7 +21,7 @@ else fi HOMEPAGE="http://znc.in"; -LICENSE="GPL-2" +LICENSE="Apache-2.0" SLOT="0" IUSE="daemon debug ipv6 perl python ssl sasl tcl" diff --git a/net-irc/znc/znc-1.4-r1.ebuild b/net-irc/znc/znc-1.4-r1.ebuild index 4551bd3..9f6deef 100644 --- a/net-irc/znc/znc-1.4-r1.ebuild +++ b/net-irc/znc/znc-1.4-r1.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$ @@ -21,7 +21,7 @@ else fi HOMEPAGE="http://znc.in"; -LICENSE="GPL-2" +LICENSE="Apache-2.0" SLOT="0" IUSE="daemon debug ipv6 perl python ssl sasl tcl" diff --git a/net-irc/znc/znc-1.4.ebuild b/net-irc/znc/znc-1.4.ebuild index bcc2710..99ad525 100644 --- a/net-irc/znc/znc-1.4.ebuild +++ b/net-irc/znc/znc-1.4.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$ @@ -21,7 +21,7 @@ else fi HOMEPAGE="http://znc.in"; -LICENSE="GPL-2" +LICENSE="Apache-2.0" SLOT="0" IUSE="daemon debug ipv6 perl python ssl sasl tcl" diff --git a/net-irc/znc/znc-1.6.1-r1.ebuild b/net-irc/znc/znc-1.6.1-r1.ebuild index a6f8c03..6f7e05b 100644 --- a/net-irc/znc/znc-1.6.1-r1.ebuild +++ b/net-irc/znc/znc-1.6.1-r1.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$ @@ -17,7 +17,7 @@ SRC_URI="http://znc.in/releases/${PN}-${MY_PV}.tar.gz KEYWORDS="~amd64 ~arm ~x86" HOMEPAGE="http://znc.in"; -LICENSE="GPL-2" +LICENSE="Apache-2.0" SLOT="0" IUSE="daemon debug ipv6 libressl perl python ssl sasl tcl test" diff --git a/net-irc/znc/znc-.ebuild b/net-irc/znc/znc-.ebuild index 561efde..cfdcfd9 100644 --- a/net-irc/znc/znc-.ebuild +++ b/net-irc/znc/znc-.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$ @@ -16,7 +16,7 @@ SRC_URI="" KEYWORDS="" HOMEPAGE="http://znc.in"; -LICENSE="GPL-2" +LICENSE="Apache-2.0" SLOT="0" IUSE="daemon debug ipv6 libressl perl python ssl sasl tcl"
[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome/, www-client/google-chrome-beta/, ...
commit: 8dc9d1a610bd5cf941d958603037e3b8423dea66 Author: Mike Gilbert gentoo org> AuthorDate: Mon Mar 21 14:43:00 2016 + Commit: Mike Gilbert gentoo org> CommitDate: Mon Mar 21 14:44:36 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dc9d1a6 Revert "www-client/google-chrome: Add REQUIRED_USE="abi_x86_64"" This reverts commit 8e336a3b9265100c300094900f4601296e317333. Adding this REQUIRED_USE constraint is pretty hacky and users will quickly figure out that the ebuild doesn't work anyway. www-client/google-chrome-beta/google-chrome-beta-50.0.2661.37_p1.ebuild | 2 -- .../google-chrome-unstable/google-chrome-unstable-51.0.2679.0_p1.ebuild | 2 -- www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild | 2 -- 3 files changed, 6 deletions(-) diff --git a/www-client/google-chrome-beta/google-chrome-beta-50.0.2661.37_p1.ebuild b/www-client/google-chrome-beta/google-chrome-beta-50.0.2661.37_p1.ebuild index 6639731..95fd11b 100644 --- a/www-client/google-chrome-beta/google-chrome-beta-50.0.2661.37_p1.ebuild +++ b/www-client/google-chrome-beta/google-chrome-beta-50.0.2661.37_p1.ebuild @@ -33,8 +33,6 @@ KEYWORDS="-* ~amd64" IUSE="+plugins" RESTRICT="bindist mirror strip" -REQUIRED_USE="abi_x86_64" - DEPEND="" RDEPEND=" app-arch/bzip2 diff --git a/www-client/google-chrome-unstable/google-chrome-unstable-51.0.2679.0_p1.ebuild b/www-client/google-chrome-unstable/google-chrome-unstable-51.0.2679.0_p1.ebuild index 6639731..95fd11b 100644 --- a/www-client/google-chrome-unstable/google-chrome-unstable-51.0.2679.0_p1.ebuild +++ b/www-client/google-chrome-unstable/google-chrome-unstable-51.0.2679.0_p1.ebuild @@ -33,8 +33,6 @@ KEYWORDS="-* ~amd64" IUSE="+plugins" RESTRICT="bindist mirror strip" -REQUIRED_USE="abi_x86_64" - DEPEND="" RDEPEND=" app-arch/bzip2 diff --git a/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild b/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild index 6639731..95fd11b 100644 --- a/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild +++ b/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild @@ -33,8 +33,6 @@ KEYWORDS="-* ~amd64" IUSE="+plugins" RESTRICT="bindist mirror strip" -REQUIRED_USE="abi_x86_64" - DEPEND="" RDEPEND=" app-arch/bzip2
[gentoo-commits] dev/dev-zero:master commit in: dev-libs/poco/, dev-libs/poco/files/
commit: 5407dc6d051406c0230ae9f1e8ae5807e179483d Author: Tiziano Müller gentoo org> AuthorDate: Mon Mar 21 14:59:14 2016 + Commit: Tiziano Müller gentoo org> CommitDate: Mon Mar 21 14:59:14 2016 + URL:https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=5407dc6d dev-libs/poco: version bump .../{poco-1.7.1-iodbc-incdir.patch => poco-1.7.2-iodbc-incdir.patch} | 0 dev-libs/poco/{poco-1.7.1.ebuild => poco-1.7.2.ebuild}| 0 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/dev-libs/poco/files/poco-1.7.1-iodbc-incdir.patch b/dev-libs/poco/files/poco-1.7.2-iodbc-incdir.patch similarity index 100% rename from dev-libs/poco/files/poco-1.7.1-iodbc-incdir.patch rename to dev-libs/poco/files/poco-1.7.2-iodbc-incdir.patch diff --git a/dev-libs/poco/poco-1.7.1.ebuild b/dev-libs/poco/poco-1.7.2.ebuild similarity index 100% rename from dev-libs/poco/poco-1.7.1.ebuild rename to dev-libs/poco/poco-1.7.2.ebuild
[gentoo-commits] dev/dev-zero:master commit in: dev-libs/poco/
commit: ffc383cef5aa3921f42fcd6d710d5fe0ca13 Author: Tiziano Müller gentoo org> AuthorDate: Mon Mar 21 15:05:35 2016 + Commit: Tiziano Müller gentoo org> CommitDate: Mon Mar 21 15:05:35 2016 + URL:https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=ffc383ce dev-libs/poco: update manifest dev-libs/poco/Manifest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/poco/Manifest b/dev-libs/poco/Manifest index fba93d5..4cbede4 100644 --- a/dev-libs/poco/Manifest +++ b/dev-libs/poco/Manifest @@ -1 +1 @@ -DIST poco-1.7.1.tar.gz 7927255 SHA256 6dbbc2018912ad9af6af96f605933ed91354a1e7423e5dbd04d8e9a2b2d15c05 SHA512 55b3c4dc93111674ea72d99bcdb0e571f75423cffd9df6be114cf3e0f6fbe55be05082bc2e9e6087fef8afec542d65cbf19b739d6f3e7029b0d1bf1e707c8f9d WHIRLPOOL 13e80a6242a3dd294e82f13e8bb1556e461fc93441cbad7b77461745f79eedc4749e3660c6ffd931e8bd0f25edb945e35baebdb6c0f89a9469489f4a9836041a +DIST poco-1.7.2.tar.gz 7928115 SHA256 cfd311ecbc9e58accf1c4ea70170af88f92f88e73dd14944e528e7f6229e6cab SHA512 e214d678ae7fd4892d81194c2a7ffae7bc41678a5703eebcf36437c54a8ecabd305b25515ad868abfa59252d4ef9d3873500f229d7514c10726b41246179edfa WHIRLPOOL ab7097eb5f00a28c75026a83181a44b08663af7bb4e30244dfe473710f9bb4c2eb876e0b01e9f48a1623ae8f4967b1a46d77e0488fe809a8cf3552e8e16fa0a0
[gentoo-commits] proj/kde:master commit in: net-libs/jreen/
commit: 141528b786e81b49617b760d3319beacd35a8ebc Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:12:58 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:12:58 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=141528b7 net-libs/jreen: EAPI 6 Package-Manager: portage-2.2.28 net-libs/jreen/jreen-.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-libs/jreen/jreen-.ebuild b/net-libs/jreen/jreen-.ebuild index 4c3da0d..1544368 100644 --- a/net-libs/jreen/jreen-.ebuild +++ b/net-libs/jreen/jreen-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 if [[ ${PV} != ** ]]; then SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" @@ -29,8 +29,8 @@ DEPEND=" net-libs/libgsasl sys-libs/zlib qt4? ( - >=dev-qt/qtcore-4.6.0:4[ssl] - >=dev-qt/qtgui-4.6.0:4 + dev-qt/qtcore:4[ssl] + dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5
[gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
commit: 867c530871a2dd8348d4369f40bacbf80ab40e44 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:12:15 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:12:15 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=867c5308 net-libs/jreen: Version bump 1.2.1 Package-Manager: portage-2.2.28 net-libs/jreen/Manifest | 1 + net-libs/jreen/jreen-1.2.1.ebuild | 75 +++ 2 files changed, 76 insertions(+) diff --git a/net-libs/jreen/Manifest b/net-libs/jreen/Manifest index 9bf0273..f6246a0 100644 --- a/net-libs/jreen/Manifest +++ b/net-libs/jreen/Manifest @@ -1 +1,2 @@ DIST jreen-1.2.0.tar.gz 279435 SHA256 cee3762015357bfd88f7f3eb71dd7f90ddf37fdff07c5cf99881fda051c5fe1b SHA512 36b5fb892c16fd113574904671c8d5d3da6b50e0ea128b8e24715cb517c97212adcc8641a2a230ba1edd4c7735f46211ea4729f9e27fbea14e292ad098c78b0c WHIRLPOOL 90f0904e35345a21db8fda314455421762e7e7d5f3150bc94d73a70b4337690e16cc69a70f1a4fc2000507172544813b265c34720d7f292fb4f1537dc9df676f +DIST jreen-1.2.1.tar.gz 279584 SHA256 be5de04b6f54e47bdec92707600441a39e46add958181ad2b5b2d1bf92693fbd SHA512 3ab28cf2a2c2a595892b15acb9e49c7aa64dbb3b2ac13138ce011b16c2c6b3abeb524231d271fb0f4a6da028548ae6995b34bd70ee9c40fb54e6d64fac2633a2 WHIRLPOOL ff0f76b18252b8601e2e3c7a6c784bf3eb579c4e421e44081a24f726ea10a3cb1a3373c4a80bbf51200ddf346cff43453667182c080acd500097a1c28b18fb94 diff --git a/net-libs/jreen/jreen-1.2.1.ebuild b/net-libs/jreen/jreen-1.2.1.ebuild new file mode 100644 index 000..1544368 --- /dev/null +++ b/net-libs/jreen/jreen-1.2.1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +if [[ ${PV} != ** ]]; then + SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~ppc ~x86" +else + GIT_ECLASS="git-r3" + EGIT_REPO_URI=( "git://github.com/euroelessar/${PN}" ) + KEYWORDS="" +fi + +inherit cmake-utils multibuild ${GIT_ECLASS} + +DESCRIPTION="Qt XMPP library" +HOMEPAGE="https://github.com/euroelessar/jreen"; + +LICENSE="GPL-2" +SLOT="0" +IUSE="debug +qt4 qt5" + +REQUIRED_USE="|| ( qt4 qt5 )" + +DEPEND=" + media-libs/speex + net-libs/libgsasl + sys-libs/zlib + qt4? ( + dev-qt/qtcore:4[ssl] + dev-qt/qtgui:4 + ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 + ) +" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS ChangeLog README.md ) + +pkg_setup() { + MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) ) +} + +src_configure() { + myconfigure() { + local mycmakeargs=() + + if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then + mycmakeargs+=( -DJREEN_FORCE_QT4=ON ) + fi + if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then + mycmakeargs+=( -DJREEN_FORCE_QT4=OFF ) + fi + + cmake-utils_src_configure + } + + multibuild_foreach_variant myconfigure +} + +src_compile() { + multibuild_foreach_variant cmake-utils_src_compile +} + +src_install() { + multibuild_foreach_variant cmake-utils_src_install +} + +src_test() { + multibuild_foreach_variant cmake-utils_src_test +}
[gentoo-commits] repo/gentoo:master commit in: dev-util/dwdiff/
commit: 573f8286e7d70bf5c74a37f3864cd441e2cdb094 Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 21 14:16:20 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 15:10:27 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573f8286 dev-util/dwdiff: EAPI 6 bump. Package-Manager: portage-2.2.26 dev-util/dwdiff/dwdiff-2.1.0-r1.ebuild | 48 ++ 1 file changed, 48 insertions(+) diff --git a/dev-util/dwdiff/dwdiff-2.1.0-r1.ebuild b/dev-util/dwdiff/dwdiff-2.1.0-r1.ebuild new file mode 100644 index 000..ddaef12 --- /dev/null +++ b/dev-util/dwdiff/dwdiff-2.1.0-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils toolchain-funcs + +DESCRIPTION="diff-like program that operates at the word level instead of the line level" +HOMEPAGE="http://os.ghalkes.nl/dwdiff.html"; +SRC_URI="http://os.ghalkes.nl/dist/${P}.tar.bz2"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="nls" + +CDEPEND="dev-libs/icu:=" + +RDEPEND=" + ${CDEPEND} + sys-apps/diffutils" + +DEPEND=" + ${CDEPEND} + nls? ( sys-devel/gettext )" + +src_prepare() { + default + + sed -i \ + -e '/INSTALL/s:COPYING::' \ + Makefile.in || die +} + +src_configure() { + ./configure \ + --prefix=/usr \ + $(use_with nls gettext) +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + emake prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" install +}
[gentoo-commits] proj/kde:master commit in: net-libs/libkgapi/
commit: e421ac8c6e4d2d3340ff18c616aa50afcfff7c4b Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:17:00 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:17:00 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e421ac8c net-libs/libkgapi: EAPI 6 Package-Manager: portage-2.2.28 net-libs/libkgapi/libkgapi-5.1.0.ebuild | 2 +- net-libs/libkgapi/libkgapi-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/libkgapi/libkgapi-5.1.0.ebuild b/net-libs/libkgapi/libkgapi-5.1.0.ebuild index bcd9591..80024f6 100644 --- a/net-libs/libkgapi/libkgapi-5.1.0.ebuild +++ b/net-libs/libkgapi/libkgapi-5.1.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 KDE_DOXYGEN="true" KDE_TEST="true" diff --git a/net-libs/libkgapi/libkgapi-.ebuild b/net-libs/libkgapi/libkgapi-.ebuild index 45b391b..4f9687f 100644 --- a/net-libs/libkgapi/libkgapi-.ebuild +++ b/net-libs/libkgapi/libkgapi-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 KDE_DOXYGEN="true" KDE_TEST="true"
[gentoo-commits] repo/gentoo:master commit in: app-text/html-xml-utils/
commit: f74e6f4cacc1f82a4b38aef75476a36b175e6875 Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 21 13:33:37 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 15:10:23 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74e6f4c app-text/html-xml-utils: EAPI 6. Package-Manager: portage-2.2.26 .../html-xml-utils/html-xml-utils-6.9-r1.ebuild| 22 ++ 1 file changed, 22 insertions(+) diff --git a/app-text/html-xml-utils/html-xml-utils-6.9-r1.ebuild b/app-text/html-xml-utils/html-xml-utils-6.9-r1.ebuild new file mode 100644 index 000..60893fd --- /dev/null +++ b/app-text/html-xml-utils/html-xml-utils-6.9-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A number of simple utilities for manipulating HTML and XML files" +SRC_URI="http://www.w3.org/Tools/HTML-XML-utils/${P}.tar.gz"; +HOMEPAGE="http://www.w3.org/Tools/HTML-XML-utils/"; + +LICENSE="W3C" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND="net-misc/curl" +DEPEND="${RDEPEND}" + +src_prepare() { + default + sed -e "/doc_DATA = COPYING/d" -i Makefile.in || die +}
[gentoo-commits] proj/kde:master commit in: net-libs/libmediawiki/
commit: 109f4734a8ce1f5741174730f2ad22daf60da650 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:19:13 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:19:13 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=109f4734 net-libs/libmediawiki: EAPI 6 Package-Manager: portage-2.2.28 net-libs/libmediawiki/libmediawiki-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-libs/libmediawiki/libmediawiki-.ebuild b/net-libs/libmediawiki/libmediawiki-.ebuild index b0251e1..6556487 100644 --- a/net-libs/libmediawiki/libmediawiki-.ebuild +++ b/net-libs/libmediawiki/libmediawiki-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit kde5
[gentoo-commits] repo/gentoo:master commit in: app-shells/pdmenu/
commit: 1851b20078ab6cb9cd703891c18dd6b683d7c13b Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 21 13:31:51 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 15:10:20 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1851b200 app-shells/pdmenu: EAPI 6 bump. Package-Manager: portage-2.2.26 app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild | 63 1 file changed, 63 insertions(+) diff --git a/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild b/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild new file mode 100644 index 000..5f16ae5 --- /dev/null +++ b/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils toolchain-funcs + +DESCRIPTION="A simple console menu program" +HOMEPAGE="http://joeyh.name/code/pdmenu/"; +SRC_URI="mirror://debian/pool/main/p/${PN}/pdmenu_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~x86" +IUSE="nls gpm examples" + +DEPEND=" + sys-libs/slang + gpm? ( sys-libs/gpm ) + nls? ( sys-devel/gettext )" + +S="${WORKDIR}/${PN}" + +RESTRICT="test" + +PATCHES=( + "${FILESDIR}"/${PN}-impl-dec.patch +) + +src_prepare() { + default + sed \ + -e 's:\(-o pdmenu\):$(LDFLAGS) \1:g' \ + -i Makefile || die +} + +src_configure() { + CC=$(tc-getCC) econf \ + $(use_with gpm) \ + $(use_enable nls) +} + +src_compile() { + emake CC=$(tc-getCC) +} + +src_install() { + dobin "${PN}" + dodoc doc/ANNOUNCE doc/BUGS doc/TODO + use examples && dodoc -r examples + mv "doc/${PN}.man" "doc/${PN}.1" || die + mv "doc/${PN}rc.man" "doc/${PN}rc.5" || die + doman "doc/${PN}.1" "doc/${PN}rc.5" + +} + +pkg_postinst() { + ewarn "Note this part from man page: Security warning! Any exec command" + ewarn "that uses the 'edit' flag will be a security hole. The user need" + ewarn "only to enter text with a ';' in it, and they can run an" + ewarn "arbitrary command after the semicolon!" +}
[gentoo-commits] proj/kde:master commit in: net-libs/libqinfinity/
commit: 49edf1f7adf0dcbd709a4c11b579768eb0fb99a8 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:21:38 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:21:38 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=49edf1f7 net-libs/libqinfinity: EAPI 6 Package-Manager: portage-2.2.28 net-libs/libqinfinity/libqinfinity-.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/libqinfinity/libqinfinity-.ebuild b/net-libs/libqinfinity/libqinfinity-.ebuild index f51fe49..c2a37e6 100644 --- a/net-libs/libqinfinity/libqinfinity-.ebuild +++ b/net-libs/libqinfinity/libqinfinity-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 MY_P="${PN}-v${PV}" inherit cmake-utils git-r3 @@ -26,4 +26,4 @@ DEPEND="${RDEPEND} app-arch/xz-utils " -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}"
[gentoo-commits] repo/gentoo:master commit in: app-shells/hstr/
commit: 387bf9a8f6dc07da900f10e9697c3e31348d4b40 Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 21 12:05:22 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 15:10:16 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=387bf9a8 app-shells/hstr: Fix DESCRIPTION length. Package-Manager: portage-2.2.26 app-shells/hstr/hstr-1.19.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-shells/hstr/hstr-1.19.ebuild b/app-shells/hstr/hstr-1.19.ebuild index 57a6535..7877fa7 100644 --- a/app-shells/hstr/hstr-1.19.ebuild +++ b/app-shells/hstr/hstr-1.19.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$ @@ -8,13 +8,13 @@ AUTOTOOLS_AUTORECONF=true inherit autotools-utils -DESCRIPTION="Shell history suggest box - easily view, navigate, search and manage your command history" +DESCRIPTION="Shell history suggest box" HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com"; SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="Apache-2.0" -KEYWORDS="~amd64 ~x86 ~ppc ~ppc64 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ppc ppc64 ~amd64-linux ~x86-linux" IUSE="" RDEPEND="sys-libs/ncurses:0="
[gentoo-commits] repo/gentoo:master commit in: sys-process/memwatch/
commit: b02e140454b97001ae09db7496cabfd6a093bbe3 Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 21 15:09:59 2016 + Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 15:10:30 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b02e1404 sys-process/memwatch: EAPI 6 bump. Package-Manager: portage-2.2.26 sys-process/memwatch/memwatch-0.0.2-r1.ebuild | 35 +++ 1 file changed, 35 insertions(+) diff --git a/sys-process/memwatch/memwatch-0.0.2-r1.ebuild b/sys-process/memwatch/memwatch-0.0.2-r1.ebuild new file mode 100644 index 000..7ac38fb --- /dev/null +++ b/sys-process/memwatch/memwatch-0.0.2-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Interactive memory viewer" +HOMEPAGE="https://bitbucket.org/PascalRD/memwatch/"; +SRC_URI="http://unixdev.ru/src/${P}.tar.gz"; + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-libs/ncurses:0=" +RDEPEND="${DEPEND}" + +src_prepare() { + default + einfo "Regenerating autotools files..." + ./autogen.sh || die "autogen failed" +} + +src_configure() { + econf +} + +src_compile() { + emake +} + +src_install() { + emake DESTDIR="${D}" install +}
[gentoo-commits] proj/kde:master commit in: net-libs/libkfbapi/
commit: 452f7d1e76323f8cc497fcde81ea489060f8bf5d Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:15:40 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:15:40 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=452f7d1e net-libs/libkfbapi: EAPI 6 Package-Manager: portage-2.2.28 net-libs/libkfbapi/libkfbapi-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-libs/libkfbapi/libkfbapi-.ebuild b/net-libs/libkfbapi/libkfbapi-.ebuild index b5c1e03..18f898f 100644 --- a/net-libs/libkfbapi/libkfbapi-.ebuild +++ b/net-libs/libkfbapi/libkfbapi-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 EGIT_BRANCH="frameworks" inherit kde5
[gentoo-commits] proj/kde:master commit in: net-libs/telepathy-logger-qt/
commit: 639167d118bae35c318dce789156a485042c9771 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:23:30 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:23:30 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=639167d1 net-libs/telepathy-logger-qt: EAPI 6 Package-Manager: portage-2.2.28 net-libs/telepathy-logger-qt/telepathy-logger-qt-.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/telepathy-logger-qt/telepathy-logger-qt-.ebuild b/net-libs/telepathy-logger-qt/telepathy-logger-qt-.ebuild index 60e9946..451b44c 100644 --- a/net-libs/telepathy-logger-qt/telepathy-logger-qt-.ebuild +++ b/net-libs/telepathy-logger-qt/telepathy-logger-qt-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 ) inherit kde5 python-any-r1 @@ -21,10 +21,10 @@ LICENSE="LGPL-2.1" IUSE="" RDEPEND=" + $(add_qt_dep qtdbus) dev-libs/dbus-glib dev-libs/glib:2 dev-libs/libxml2 - $(add_qt_dep qtdbus) net-im/telepathy-logger net-libs/telepathy-glib net-libs/telepathy-qt[qt5]
[gentoo-commits] proj/kde:master commit in: net-libs/libkvkontakte/
commit: 38edf6059e6aa3d440684cfda0fad5f51bb7c65b Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:18:17 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:18:17 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=38edf605 net-libs/libkvkontakte: EAPI 6 Package-Manager: portage-2.2.28 net-libs/libkvkontakte/libkvkontakte-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-libs/libkvkontakte/libkvkontakte-.ebuild b/net-libs/libkvkontakte/libkvkontakte-.ebuild index 8c20dae..2e7e604 100644 --- a/net-libs/libkvkontakte/libkvkontakte-.ebuild +++ b/net-libs/libkvkontakte/libkvkontakte-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 KDE_TEST="true" inherit kde5
[gentoo-commits] proj/kde:master commit in: kde-apps/kmail/
commit: b4f6ee8dbeb7589503342e53bb34dc6bbbfd7ad7 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:52:37 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:52:37 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b4f6ee8d kde-apps/kmail: Shorten DESCRIPTION Package-Manager: portage-2.2.28 kde-apps/kmail/kmail-4.14.11_pre20160211.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-apps/kmail/kmail-4.14.11_pre20160211.ebuild b/kde-apps/kmail/kmail-4.14.11_pre20160211.ebuild index 6ac7823..80418ac 100644 --- a/kde-apps/kmail/kmail-4.14.11_pre20160211.ebuild +++ b/kde-apps/kmail/kmail-4.14.11_pre20160211.ebuild @@ -10,7 +10,7 @@ EGIT_BRANCH="KDE/4.14" VIRTUALX_REQUIRED=test inherit flag-o-matic kde4-meta -DESCRIPTION="KMail is the email component of Kontact, the integrated personal information manager of KDE" +DESCRIPTION="Email component of Kontact, the integrated personal information manager of KDE" HOMEPAGE="https://www.kde.org/applications/internet/kmail/"; COMMIT_ID="2aec255c6465676404e4694405c153e485e477d9" SRC_URI="https://quickgit.kde.org/?p=kdepim.git&a=snapshot&h=${COMMIT_ID}&fmt=tgz -> ${KMNAME}-${PV}.tar.gz"
[gentoo-commits] repo/gentoo:master commit in: kde-apps/kmail/
commit: e8e79a1d3ec92fa6024e9b4bc7c5b8853c1f233a Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 15:57:58 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 15:58:09 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8e79a1d kde-apps/kmail: Shorten DESCRIPTION Package-Manager: portage-2.2.28 kde-apps/kmail/kmail-4.14.10.ebuild | 4 ++-- kde-apps/kmail/kmail-4.14.8.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kde-apps/kmail/kmail-4.14.10.ebuild b/kde-apps/kmail/kmail-4.14.10.ebuild index 47e0d60..cc163c0 100644 --- a/kde-apps/kmail/kmail-4.14.10.ebuild +++ b/kde-apps/kmail/kmail-4.14.10.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$ @@ -10,7 +10,7 @@ EGIT_BRANCH="KDE/4.14" VIRTUALX_REQUIRED=test inherit flag-o-matic kde4-meta -DESCRIPTION="KMail is the email component of Kontact, the integrated personal information manager of KDE" +DESCRIPTION="Email component of Kontact, the integrated personal information manager of KDE" HOMEPAGE="https://www.kde.org/applications/internet/kmail/"; KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" IUSE="debug" diff --git a/kde-apps/kmail/kmail-4.14.8.ebuild b/kde-apps/kmail/kmail-4.14.8.ebuild index 9678dae..963ab62 100644 --- a/kde-apps/kmail/kmail-4.14.8.ebuild +++ b/kde-apps/kmail/kmail-4.14.8.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$ @@ -10,7 +10,7 @@ EGIT_BRANCH="KDE/4.14" VIRTUALX_REQUIRED=test inherit flag-o-matic kde4-meta -DESCRIPTION="KMail is the email component of Kontact, the integrated personal information manager of KDE" +DESCRIPTION="Email component of Kontact, the integrated personal information manager of KDE" HOMEPAGE="https://www.kde.org/applications/internet/kmail/"; KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux" IUSE="debug"
[gentoo-commits] repo/gentoo:master commit in: profiles/, www-apache/mod_auth_pgsql/files/, www-apache/mod_auth_pgsql/
commit: 31bd551b4294b9dfd39858efc1e8a44b013da966 Author: Aaron W. Swenson gentoo org> AuthorDate: Mon Mar 21 16:08:19 2016 + Commit: Aaron Swenson gentoo org> CommitDate: Mon Mar 21 16:18:00 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31bd551b www-apache/mod_auth_pgsql: Removal www-apache/mod_auth_pgsql was removed per bug 548974. It hasn’t been updated for somewhere around 10 years and has been superseded by mod_authn_dbd for quite some time. Additionally, mod_auth_pgsql is susceptible to severe security bug(s) that have gone unresolved by upstream, which has also disappeared. If you’re still using mod_auth_pgsql, may God have mercy on your soul. Bug: 255033, 548974 profiles/package.mask | 6 - www-apache/mod_auth_pgsql/Manifest | 1 - .../mod_auth_pgsql/files/80_mod_auth_pgsql.conf| 9 - .../files/mod_auth_pgsql-2.0.3-apache-2.4.patch| 341 - .../files/mod_auth_pgsql-2.0.3-documentation.patch | 124 .../files/mod_auth_pgsql-2.0.3-encoding.patch | 283 - .../files/mod_auth_pgsql-2.0.3-fixdoublefree.patch | 87 -- www-apache/mod_auth_pgsql/metadata.xml | 8 - .../mod_auth_pgsql/mod_auth_pgsql-2.0.3-r1.ebuild | 31 -- .../mod_auth_pgsql/mod_auth_pgsql-2.0.3-r2.ebuild | 40 --- 10 files changed, 930 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index f962e93..ddf7371 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -325,12 +325,6 @@ media-libs/evas # ghc-7.10, bug #561122 dev-haskell/extra:0 -# Aaron W. Swenson (11 Jan 2016) -# Masked for removal after 2016-03-11. Package hasn't been updated in -# some time and doesn't work with Apache 2.4 without patching by -# Gentoo. (Bug 548974) Use Apache Module mod_authn_dbd instead. -www-apache/mod_auth_pgsql - # Andreas K. Hüttel (9 Jan 2016) # Errorneously added. Is already in perl-core. Please uninstall. dev-perl/ExtUtils-Constant diff --git a/www-apache/mod_auth_pgsql/Manifest b/www-apache/mod_auth_pgsql/Manifest deleted file mode 100644 index 55f24a8..000 --- a/www-apache/mod_auth_pgsql/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mod_auth_pgsql-2.0.3.tar.gz 15474 SHA256 51651609d742e21bbc587fd4951b41a39deda53262cbf931b9b40bdda3b5cb92 SHA512 9ec9d9c1075d37e62e98f0f5519147d9fb2042ef7e149ff50461f3966d548afceefc330f4a1c3bd8fc64b5e93ed3e85508571a5b1b9832974c84267737e89cb0 WHIRLPOOL dea354fb9b3a06f668b8b039339b5972e295abd7357d6c5a61f6192a5c3bbcad1227f86a3d9b552e4b564476b8da9ded5f7b175d77f4cba0c3e360567aef13b2 diff --git a/www-apache/mod_auth_pgsql/files/80_mod_auth_pgsql.conf b/www-apache/mod_auth_pgsql/files/80_mod_auth_pgsql.conf deleted file mode 100644 index 96ea129..000 --- a/www-apache/mod_auth_pgsql/files/80_mod_auth_pgsql.conf +++ /dev/null @@ -1,9 +0,0 @@ -# To make this module work with apache 2.2 you have to specify -# `AuthBasicAuthoritative Off' in your authentication section. See -# http://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html#authbasicauthoritative - - -LoadModule auth_pgsql_module modules/mod_auth_pgsql.so - - -# vim: ts=4 filetype=apache diff --git a/www-apache/mod_auth_pgsql/files/mod_auth_pgsql-2.0.3-apache-2.4.patch b/www-apache/mod_auth_pgsql/files/mod_auth_pgsql-2.0.3-apache-2.4.patch deleted file mode 100644 index d9818eb..000 --- a/www-apache/mod_auth_pgsql/files/mod_auth_pgsql-2.0.3-apache-2.4.patch +++ /dev/null @@ -1,341 +0,0 @@ -From: Marco Nenciarini -Date: Sat, 20 Jul 2013 18:47:04 +0200 -Subject: apache 2.4 - - mod_auth_pgsql.c | 196 --- - 1 file changed, 41 insertions(+), 155 deletions(-) - -diff --git a/mod_auth_pgsql.c b/mod_auth_pgsql.c -index 639537d..26d7f90 100644 a/mod_auth_pgsql.c -+++ b/mod_auth_pgsql.c -@@ -109,6 +109,8 @@ - #include "http_request.h" - #include "util_script.h" - -+#include "mod_auth.h" -+ - #ifdef WIN32 - #define crypt apr_password_validate - #else -@@ -191,7 +193,7 @@ module AP_MODULE_DECLARE_DATA auth_pgsql_module; - - - static int pg_log_auth_user(request_rec * r, pg_auth_config_rec * sec, -- char *user, char *sent_pw); -+ const char *user, const char *sent_pw); - static char *do_pg_query(request_rec * r, char *query, - pg_auth_config_rec * sec); - -@@ -442,9 +444,8 @@ static char pg_errstr[MAX_STRING_LEN]; - * failures separately - */ - --static char *auth_pg_md5(char *pw) -+static char *auth_pg_md5(const char *pw) - { -- apr_md5_ctx_t ctx; - unsigned char digest[APR_MD5_DIGESTSIZE]; - static unsigned char md5hash[APR_MD5_DIGESTSIZE * 2 + 1]; - int i; -@@ -459,14 +460,15 @@ static char *auth_pg_md5(char *pw) - } - - --static char *auth_pg_base64(char *pw) -+static char *auth_pg_base64(const char *pw) - { - if (auth_pgsql_pool_base64 == NULL) - apr_po
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/
commit: 0157ce3aa751ddc60bf899bf54182db63de5e167 Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 06:21:49 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:14:24 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0157ce3a dev-ruby/net-ssh: cleanup Package-Manager: portage-2.2.26 dev-ruby/net-ssh/Manifest | 2 -- dev-ruby/net-ssh/net-ssh-2.9.2.ebuild | 31 --- dev-ruby/net-ssh/net-ssh-3.0.1.ebuild | 31 --- 3 files changed, 64 deletions(-) diff --git a/dev-ruby/net-ssh/Manifest b/dev-ruby/net-ssh/Manifest index a3b8c4b..d749f07 100644 --- a/dev-ruby/net-ssh/Manifest +++ b/dev-ruby/net-ssh/Manifest @@ -1,5 +1,3 @@ DIST net-ssh-git-2.10.0.tgz 172885 SHA256 ef063f3f967ec614df49acd74ede7694124f7ffc28c20c7434ac3841c181429a SHA512 f66db6465667baf0c253868cc15aab3261675a8c15ca4b244c3cd587ae5e8b7a273959b97d5fc498ff1b19e1f06f51ea571573d243366a59ef56faf41c2ae347 WHIRLPOOL 1460082033e0cef7dc6ddb2a645943039c0619573701c25fd6e0f784b596b8010142eef295e7df84a30f4239c8da743c500571ed557081b72d5a0212ffb8e9d0 DIST net-ssh-git-2.8.0.tgz 164483 SHA256 313c63f205f72469aa48d25690b8f98c14cbe0bf90ed2d577191599d609a5b4f SHA512 b16394cdd8d0e3c92f5b22fc882615ef7309606b5d8a413711dda9b76f628c74bc29bad96f0166d31d9de55c14bed1df178053e2d8afa47d78d5d8053e70a631 WHIRLPOOL 1dc057363d847df650e8e704f50bbbe095859f4bda1e617c86f234da28bfbaf57ea5a65ea9b48ea3c999e0dc02a7345bb6a060820509f75bb17aeb6aa521963a -DIST net-ssh-git-2.9.2.tgz 170078 SHA256 5a657655c76feeb22e726ca54e9d422ed2a7825bedf64c505b4765c6f8ef3105 SHA512 c60ccbf8bc387405c36c230ba4702400841e5f6cc19c99b17d6eba86e97cc65f853839fa322d8f70654bbdb2a2be9ffa5952ab2cab25bb90ed76f54711091206 WHIRLPOOL 29d4780129f77582c2d702c784fa1b1b6c57fae88e4f93401031496abf03e590d10623854767d813cfe60e3f40fb7dc24d162256425691d2d69fb0c77287da30 -DIST net-ssh-git-3.0.1.tgz 173414 SHA256 a27cbfa7471920f5d80696434eb83d27d53af8f119f661826d73c95c30776bbb SHA512 dfbf087ab4c514a091514022103ded3a59e49f5b6c9c9acd78b1f18bd360c1838857f45bdbe17a1de1b671c75905da02ee7d6372ea222ed7f1e3a363d1a0a3dd WHIRLPOOL e31fc2afa4ed805b7e3ff07b1aa2b72ba3d858f358b820307a833729451575c5070294ec918add50b5286c50002a12fa3f26069cec01fd34ed8db26db861fbc9 DIST net-ssh-git-3.0.2.tgz 175130 SHA256 3d9ffc60b621f3aac4a6687e625759358b6b404122cf0bf0492f23b16c72467b SHA512 a55bab7d79b660f5cf16ad498732edeb8d555777cf70973b7d89f46f111374f2e0d6143202fd9e50cc0112aad79dd7fcfeafe0e5a470c9917650700e03ca756c WHIRLPOOL d1d78a59697fe3c4afc5c35a6492ff5cea55a891b47d1cc7daca628b1c8a92dfa6af6ae5262b1de7e62607bb8fcaa99c6b32386642457d8786467e8c784ab6b6 diff --git a/dev-ruby/net-ssh/net-ssh-2.9.2.ebuild b/dev-ruby/net-ssh/net-ssh-2.9.2.ebuild deleted file mode 100644 index 492cbdc..000 --- a/dev-ruby/net-ssh/net-ssh-2.9.2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc THANKS.txt" -RUBY_FAKEGEM_EXTRAINSTALL="support" - -inherit ruby-fakegem - -DESCRIPTION="Non-interactive SSH processing in pure Ruby" -HOMEPAGE="http://net-ssh.rubyforge.org/"; -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> net-ssh-git-${PV}.tgz" - -LICENSE="GPL-2" -SLOT="2.6" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="test" - -ruby_add_rdepend "virtual/ruby-ssl" -ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )" - -each_ruby_test() { - ${RUBY} -Ilib:test test/test_all.rb || die "Tests failed." -} diff --git a/dev-ruby/net-ssh/net-ssh-3.0.1.ebuild b/dev-ruby/net-ssh/net-ssh-3.0.1.ebuild deleted file mode 100644 index e88466d..000 --- a/dev-ruby/net-ssh/net-ssh-3.0.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc THANKS.txt" -RUBY_FAKEGEM_EXTRAINSTALL="support" - -inherit ruby-fakegem - -DESCRIPTION="Non-interactive SSH processing in pure Ruby" -HOMEPAGE="https://github.com/net-ssh/net-ssh"; -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> net-ssh-git-${PV}.tgz" - -LICENSE="GPL-2" -SLOT="3" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="test" - -ruby_add_rdepend "virtual/ruby-ssl" -ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )" - -each_ruby_test() { - ${RUBY} -Ilib:test test/test_all.rb || die "Tests failed." -}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/
commit: bd5b2ee174fa1317212a0c598a2dc2ca7083c306 Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 06:29:36 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:14:42 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd5b2ee1 dev-ruby/net-ssh: add 3.1.0. Package-Manager: portage-2.2.26 dev-ruby/net-ssh/Manifest | 1 + dev-ruby/net-ssh/net-ssh-3.1.0.ebuild | 31 +++ 2 files changed, 32 insertions(+) diff --git a/dev-ruby/net-ssh/Manifest b/dev-ruby/net-ssh/Manifest index d749f07..0a95af2 100644 --- a/dev-ruby/net-ssh/Manifest +++ b/dev-ruby/net-ssh/Manifest @@ -1,3 +1,4 @@ DIST net-ssh-git-2.10.0.tgz 172885 SHA256 ef063f3f967ec614df49acd74ede7694124f7ffc28c20c7434ac3841c181429a SHA512 f66db6465667baf0c253868cc15aab3261675a8c15ca4b244c3cd587ae5e8b7a273959b97d5fc498ff1b19e1f06f51ea571573d243366a59ef56faf41c2ae347 WHIRLPOOL 1460082033e0cef7dc6ddb2a645943039c0619573701c25fd6e0f784b596b8010142eef295e7df84a30f4239c8da743c500571ed557081b72d5a0212ffb8e9d0 DIST net-ssh-git-2.8.0.tgz 164483 SHA256 313c63f205f72469aa48d25690b8f98c14cbe0bf90ed2d577191599d609a5b4f SHA512 b16394cdd8d0e3c92f5b22fc882615ef7309606b5d8a413711dda9b76f628c74bc29bad96f0166d31d9de55c14bed1df178053e2d8afa47d78d5d8053e70a631 WHIRLPOOL 1dc057363d847df650e8e704f50bbbe095859f4bda1e617c86f234da28bfbaf57ea5a65ea9b48ea3c999e0dc02a7345bb6a060820509f75bb17aeb6aa521963a DIST net-ssh-git-3.0.2.tgz 175130 SHA256 3d9ffc60b621f3aac4a6687e625759358b6b404122cf0bf0492f23b16c72467b SHA512 a55bab7d79b660f5cf16ad498732edeb8d555777cf70973b7d89f46f111374f2e0d6143202fd9e50cc0112aad79dd7fcfeafe0e5a470c9917650700e03ca756c WHIRLPOOL d1d78a59697fe3c4afc5c35a6492ff5cea55a891b47d1cc7daca628b1c8a92dfa6af6ae5262b1de7e62607bb8fcaa99c6b32386642457d8786467e8c784ab6b6 +DIST net-ssh-git-3.1.0.tgz 177270 SHA256 10895e9acb9da3d4ef8a55d667ffe12c1055c7b29e7dd9fb03e7748a81e6babc SHA512 f0c1e4020ef9fe8a5803289deaeaf189b8ee7db20fd3f5dd5820f3de2ea712a91796a42dc25a2d4f46862f950f96057c93e8c3a34c90e16fafb2dce19467f27d WHIRLPOOL 310a368fc182065465791a2ac1d4728d2e172b951dd8bbd4ce59a3e4fa5536cb4f818414a378292708fc7ef0a546c0c5684dcada47416a5b60831cfca35b8796 diff --git a/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild new file mode 100644 index 000..dfc9c63 --- /dev/null +++ b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc THANKS.txt" +RUBY_FAKEGEM_EXTRAINSTALL="support" + +inherit ruby-fakegem + +DESCRIPTION="Non-interactive SSH processing in pure Ruby" +HOMEPAGE="https://github.com/net-ssh/net-ssh"; +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> net-ssh-git-${PV}.tgz" + +LICENSE="GPL-2" +SLOT="3" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="test" + +ruby_add_rdepend "virtual/ruby-ssl" +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )" + +each_ruby_test() { + ${RUBY} -Ilib:test test/test_all.rb || die "Tests failed." +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/introspection/
commit: c4a74789226a5b2e186026e08311e34266973b73 Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 16:31:50 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:36:07 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a74789 dev-ruby/introspection: add ruby23 Package-Manager: portage-2.2.26 dev-ruby/introspection/introspection-0.0.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/introspection/introspection-0.0.3.ebuild b/dev-ruby/introspection/introspection-0.0.3.ebuild index 954902e..5a81357 100644 --- a/dev-ruby/introspection/introspection-0.0.3.ebuild +++ b/dev-ruby/introspection/introspection-0.0.3.ebuild @@ -4,7 +4,7 @@ EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" # No documentation task RUBY_FAKEGEM_TASK_DOC=""
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/mocha/
commit: 24a0497b21b40d4532cf0d2095772371fecadb2b Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 16:34:04 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:36:09 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a0497b dev-ruby/mocha: add ruby23 Package-Manager: portage-2.2.26 dev-ruby/mocha/mocha-1.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/mocha/mocha-1.1.0.ebuild b/dev-ruby/mocha/mocha-1.1.0.ebuild index 1c8bf1a..1b54619 100644 --- a/dev-ruby/mocha/mocha-1.1.0.ebuild +++ b/dev-ruby/mocha/mocha-1.1.0.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" RUBY_FAKEGEM_TASK_TEST="test:units"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/instantiator/
commit: abc39ab8a00f8c6662685c57cf6fa7a44da69c0f Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 16:25:47 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:36:05 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc39ab8 dev-ruby/instantiator: add ruby23 Package-Manager: portage-2.2.26 dev-ruby/instantiator/instantiator-0.0.6.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/instantiator/instantiator-0.0.6.ebuild b/dev-ruby/instantiator/instantiator-0.0.6.ebuild index 91f4b58..040e4a1 100644 --- a/dev-ruby/instantiator/instantiator-0.0.6.ebuild +++ b/dev-ruby/instantiator/instantiator-0.0.6.ebuild @@ -4,7 +4,7 @@ EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="README.md" @@ -19,7 +19,7 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" -ruby_add_rdepend "dev-ruby/blankslate" +ruby_add_rdepend "dev-ruby/blankslate:*" all_ruby_prepare() { sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/timecop/
commit: 8ecac7933dd72ab742b5bf190a1b11d3f6695f3b Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 16:44:19 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:44:19 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ecac793 dev-ruby/timecop: drop ruby19, add ruby23 Package-Manager: portage-2.2.26 dev-ruby/timecop/timecop-0.8.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/timecop/timecop-0.8.0.ebuild b/dev-ruby/timecop/timecop-0.8.0.ebuild index 1c43f76..6324449 100644 --- a/dev-ruby/timecop/timecop-0.8.0.ebuild +++ b/dev-ruby/timecop/timecop-0.8.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" RUBY_FAKEGEM_TASK_TEST="test"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/
commit: 59d0e61764159d7bd275508cf91cfd9f816cd41d Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 16:41:52 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:41:52 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59d0e617 dev-ruby/net-ssh: add ruby23 Package-Manager: portage-2.2.26 dev-ruby/net-ssh/net-ssh-3.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild index dfc9c63..8997747 100644 --- a/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild +++ b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" RUBY_FAKEGEM_TASK_TEST=""
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/introspection/
commit: e8468cc261867e3ca2c1be794714a1b282677bd1 Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 21 16:16:21 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 21 16:36:02 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8468cc2 dev-ruby/introspection: drop ruby19 Package-Manager: portage-2.2.26 dev-ruby/introspection/introspection-0.0.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/introspection/introspection-0.0.3.ebuild b/dev-ruby/introspection/introspection-0.0.3.ebuild index 66876e8..954902e 100644 --- a/dev-ruby/introspection/introspection-0.0.3.ebuild +++ b/dev-ruby/introspection/introspection-0.0.3.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22" # No documentation task RUBY_FAKEGEM_TASK_DOC=""
[gentoo-commits] repo/gentoo:master commit in: dev-util/fatrace/
commit: 77939245c23aaa0bd1604fcb70a78fd007d625d1 Author: Michael Weber gentoo org> AuthorDate: Mon Mar 21 17:03:46 2016 + Commit: Michael Weber gentoo org> CommitDate: Mon Mar 21 17:07:35 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77939245 dev-util/fatrace: drop old. Package-Manager: portage-2.2.28 dev-util/fatrace/Manifest | 2 -- dev-util/fatrace/fatrace-0.4.ebuild | 44 - dev-util/fatrace/fatrace-0.5.ebuild | 35 - 3 files changed, 81 deletions(-) diff --git a/dev-util/fatrace/Manifest b/dev-util/fatrace/Manifest index f259b6d..be79225 100644 --- a/dev-util/fatrace/Manifest +++ b/dev-util/fatrace/Manifest @@ -1,4 +1,2 @@ DIST fatrace-0.10.tar.bz2 19178 SHA256 2afb6ed0f69abe51f290515398216e2cb3201f5362a3f0afe7e6b8a797d80c60 SHA512 9e2e932f965ca95dcd2687d542c7d39701fca9db6279431f3e4a2f14dae4d56cc0012ab5bdaef57b711caa39d4e16ce012fb6a0eda9ba158ab768b0c836bfdb6 WHIRLPOOL b2f91b9c9ab8d951c3933f0f2ac192f9fde7d4e95c1a3cd83343ea29d2f2cb5c6009f4d7c8f4e8b47c71ad2217249572d6244b1bd5908d2309881d57d8db1474 -DIST fatrace-0.4.tar.bz2 18155 SHA256 8abd5d382610e3284f4057dc202f565ff653a5432f3bbc65463be61647e2ef94 SHA512 bd2e31a16f79127294a9599094c41043a612609241653f33fdb8adef17da99a781b5029f6b1af1731b7c939e7ae3c1d2c19f985dde72c9f409e6945d4dc1f7ce WHIRLPOOL c28337e5ca3d14b045704bb23ce386034c5a71559f8ed1a5bb471b4f4202af87088120d7e8e3de76ceae1d860b47179aceead09f277297895753c75ebfc2186e -DIST fatrace-0.5.tar.bz2 18310 SHA256 de7e04df5650d84da9b1cecd60b0f1dade50adf7cff57835a8617bc94f2becf0 SHA512 e0357e6e74683f4d6ffaa958a704bca996823406a77b92c36537ff2bb4a47b39dd909186b0f0a5cb46672bf48d0ba64c07288d9a1f7fc83bc3928bce5bf91b2d WHIRLPOOL 0bf8ddf1370e9ab95945ed4a5df5f37c3c81e3cff7f22b05f23a86ec48507dc16541e30f58871f426624877df8afafaec3f925ed010745ef0313647bb7134efc DIST fatrace-0.9.tar.bz2 18828 SHA256 c028d822ffde68805e5d1f62c4e2d0f4b3d4ae565802cc9468c82b25b92e68cd SHA512 a1dbc17e1e408ddfc145e8f70580b0f5ce500fb53736d6a22547c370c4b221b362973c19a40df3c2dd911c899d74e9dc944a881eea99f9d143f6de7e213146c3 WHIRLPOOL d9b8e05cd32a9fe3904b2f1ba41ddff3e70e44610ae0f05940bb70aa54f40ed5cf6890fd6abd7b5eb4b8015a209c77e49dee6919e7afe3875a32f17f25f4ae53 diff --git a/dev-util/fatrace/fatrace-0.4.ebuild b/dev-util/fatrace/fatrace-0.4.ebuild deleted file mode 100644 index 2f6f7dc..000 --- a/dev-util/fatrace/fatrace-0.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 -PYTHON_DEPEND="powertop? *" - -inherit linux-info python toolchain-funcs - -DESCRIPTION="report file access events from all running processes" -HOMEPAGE="https://launchpad.net/fatrace"; -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="powertop" - -RDEPEND="powertop? ( =sys-power/powertop-1.13 )" -DEPEND="" - -CONFIG_CHECK="~FANOTIFY" - -pkg_setup() { - linux-info_pkg_setup - python_pkg_setup -} - -src_prepare() { - if use powertop ; then - sed -e "s/powertop-1.13/powertop/g" \ - -i power-usage-report || die - fi - - tc-export CC -} - -src_install() { - dosbin fatrace - use powertop && dosbin power-usage-report - - doman fatrace.1 - dodoc NEWS -} diff --git a/dev-util/fatrace/fatrace-0.5.ebuild b/dev-util/fatrace/fatrace-0.5.ebuild deleted file mode 100644 index 7308375..000 --- a/dev-util/fatrace/fatrace-0.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python{3_3,3_4} ) - -inherit linux-info python-single-r1 toolchain-funcs - -DESCRIPTION="report file access events from all running processes" -HOMEPAGE="https://launchpad.net/fatrace"; -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="powertop" - -RDEPEND="powertop? ( ${PYTHON_DEPS} )" -DEPEND="" - -CONFIG_CHECK="~FANOTIFY" - -src_prepare() { - tc-export CC -} - -src_install() { - dosbin fatrace - use powertop && dosbin power-usage-report - - doman fatrace.1 - dodoc NEWS -}
[gentoo-commits] repo/gentoo:master commit in: dev-util/fatrace/
commit: 6458271ca7c6400650442506cb76efb086e66ac4 Author: Michael Weber gentoo org> AuthorDate: Mon Mar 21 17:07:00 2016 + Commit: Michael Weber gentoo org> CommitDate: Mon Mar 21 17:07:38 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6458271c dev-util/fatrace: Version bump. Package-Manager: portage-2.2.28 dev-util/fatrace/Manifest| 1 + dev-util/fatrace/fatrace-0.11.ebuild | 36 2 files changed, 37 insertions(+) diff --git a/dev-util/fatrace/Manifest b/dev-util/fatrace/Manifest index be79225..5713c09 100644 --- a/dev-util/fatrace/Manifest +++ b/dev-util/fatrace/Manifest @@ -1,2 +1,3 @@ DIST fatrace-0.10.tar.bz2 19178 SHA256 2afb6ed0f69abe51f290515398216e2cb3201f5362a3f0afe7e6b8a797d80c60 SHA512 9e2e932f965ca95dcd2687d542c7d39701fca9db6279431f3e4a2f14dae4d56cc0012ab5bdaef57b711caa39d4e16ce012fb6a0eda9ba158ab768b0c836bfdb6 WHIRLPOOL b2f91b9c9ab8d951c3933f0f2ac192f9fde7d4e95c1a3cd83343ea29d2f2cb5c6009f4d7c8f4e8b47c71ad2217249572d6244b1bd5908d2309881d57d8db1474 +DIST fatrace-0.11.tar.bz2 19354 SHA256 9aa04de50d8549c152f86fab0e2bf81df553af6548b4b31d72cb512b84d8e7b8 SHA512 4849f5f2aff423f915caedb63323c3888146124f856e141090bdc8eeff812b473ed194116684edd7ca0f10239c7e765740f109f0da0d364cd231430f6f5da441 WHIRLPOOL a4d631706c62c437ea0cdb61b1277b45d218e01a4ccdaaf12106fa6a25d624d23dfe943e2917095ed38ba2808574f041f7cd6b4ebad11e176c596017c8769660 DIST fatrace-0.9.tar.bz2 18828 SHA256 c028d822ffde68805e5d1f62c4e2d0f4b3d4ae565802cc9468c82b25b92e68cd SHA512 a1dbc17e1e408ddfc145e8f70580b0f5ce500fb53736d6a22547c370c4b221b362973c19a40df3c2dd911c899d74e9dc944a881eea99f9d143f6de7e213146c3 WHIRLPOOL d9b8e05cd32a9fe3904b2f1ba41ddff3e70e44610ae0f05940bb70aa54f40ed5cf6890fd6abd7b5eb4b8015a209c77e49dee6919e7afe3875a32f17f25f4ae53 diff --git a/dev-util/fatrace/fatrace-0.11.ebuild b/dev-util/fatrace/fatrace-0.11.ebuild new file mode 100644 index 000..fa0f30f --- /dev/null +++ b/dev-util/fatrace/fatrace-0.11.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{3_3,3_4,3_5} ) + +inherit linux-info python-r1 toolchain-funcs + +DESCRIPTION="report file access events from all running processes" +HOMEPAGE="https://launchpad.net/fatrace"; +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="powertop" + +RDEPEND="powertop? ( ${PYTHON_DEPS} )" +DEPEND="${RDEPEND}" +REQUIRED_USE="powertop? ( ${PYTHON_REQUIRED_USE} )" + +CONFIG_CHECK="~FANOTIFY" + +src_prepare() { + tc-export CC +} + +src_install() { + dosbin fatrace + use powertop && dosbin power-usage-report + + doman fatrace.1 + dodoc NEWS +}
[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: core/var/lib/portage/, core/etc/grs/
commit: 33923c029a3f95970d9ec85ff2dc2719dbda414e Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 17:31:43 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 17:31:43 2016 + URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=33923c02 world: drop chkrootkit, masked in tree core/etc/grs/world.conf| 3 --- core/var/lib/portage/world.CYCLE.4 | 1 - 2 files changed, 4 deletions(-) diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf index 4e47edf..b7bfecd 100644 --- a/core/etc/grs/world.conf +++ b/core/etc/grs/world.conf @@ -494,9 +494,6 @@ package.use : app-forensics/aide:0 -audit -mhash -nls -postgres -prelink -selinu [app-forensics/air:0] package.use : app-forensics/air:0 crypt -[app-forensics/chkrootkit:0] -package.use : app-forensics/chkrootkit:0 cron - [app-forensics/sleuthkit:0] package.use : app-forensics/sleuthkit:0 -aff -ewf static-libs diff --git a/core/var/lib/portage/world.CYCLE.4 b/core/var/lib/portage/world.CYCLE.4 index 1641f43..49ce7d9 100644 --- a/core/var/lib/portage/world.CYCLE.4 +++ b/core/var/lib/portage/world.CYCLE.4 @@ -402,7 +402,6 @@ app-eselect/eselect-unison app-forensics/aide app-forensics/air app-forensics/autopsy -app-forensics/chkrootkit app-forensics/cmospwd app-forensics/examiner app-forensics/foremost
[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: core/var/lib/portage/, core/etc/grs/
commit: 2cc588e0f4f9f0f354e4c3483b5a33cb41783c94 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 17:31:43 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 17:32:06 2016 + URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=2cc588e0 world: drop chkrootkit, masked in tree core/etc/grs/world.conf| 3 --- core/var/lib/portage/world.CYCLE.4 | 1 - 2 files changed, 4 deletions(-) diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf index 4ea57b0..51f70f1 100644 --- a/core/etc/grs/world.conf +++ b/core/etc/grs/world.conf @@ -506,9 +506,6 @@ package.use : app-forensics/aide:0 -audit -mhash -nls -postgres -prelink -selinu [app-forensics/air:0] package.use : app-forensics/air:0 crypt -[app-forensics/chkrootkit:0] -package.use : app-forensics/chkrootkit:0 cron - [app-forensics/sleuthkit:0] package.use : app-forensics/sleuthkit:0 -aff -ewf static-libs diff --git a/core/var/lib/portage/world.CYCLE.4 b/core/var/lib/portage/world.CYCLE.4 index a9e9696..f691ce3 100644 --- a/core/var/lib/portage/world.CYCLE.4 +++ b/core/var/lib/portage/world.CYCLE.4 @@ -402,7 +402,6 @@ app-eselect/eselect-unison app-forensics/aide app-forensics/air app-forensics/autopsy -app-forensics/chkrootkit app-forensics/cmospwd app-forensics/examiner app-forensics/foremost
[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/var/lib/portage/, core/etc/grs/
commit: 7fd0c9a82020f0c2a7829e3c49bffc391c34d4cb Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 17:31:43 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 17:39:38 2016 + URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=7fd0c9a8 world: drop chkrootkit, masked in tree core/etc/grs/world.conf| 3 --- core/var/lib/portage/world.CYCLE.4 | 1 - 2 files changed, 4 deletions(-) diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf index f27b7ab..6bb0aa3 100644 --- a/core/etc/grs/world.conf +++ b/core/etc/grs/world.conf @@ -496,9 +496,6 @@ package.use : app-forensics/aide:0 -audit -mhash -nls -postgres -prelink -selinu [app-forensics/air:0] package.use : app-forensics/air:0 crypt -[app-forensics/chkrootkit:0] -package.use : app-forensics/chkrootkit:0 cron - [app-i18n/anthy:0] package.use : app-i18n/anthy:0 -canna-2ch -emacs static-libs diff --git a/core/var/lib/portage/world.CYCLE.4 b/core/var/lib/portage/world.CYCLE.4 index 10e8f2f..d730f12 100644 --- a/core/var/lib/portage/world.CYCLE.4 +++ b/core/var/lib/portage/world.CYCLE.4 @@ -401,7 +401,6 @@ app-eselect/eselect-sh app-eselect/eselect-unison app-forensics/aide app-forensics/air -app-forensics/chkrootkit app-forensics/cmospwd app-forensics/examiner app-forensics/foremost
[gentoo-commits] proj/gamerlay:master commit in: games-fps/redeclipse/
commit: f8a9a7244a87d29a16c638fb114eeb033bc91472 Author: Azamat H. Hackimov gmail com> AuthorDate: Mon Mar 21 17:49:03 2016 + Commit: Azamat H. Hackimov gentoo ru> CommitDate: Mon Mar 21 17:49:03 2016 + URL:https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=f8a9a724 [games-fps/redeclipse] Min req libenet is 1.3.9 Thanks to post from maillist. games-fps/redeclipse/redeclipse-1.5.3.ebuild | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/games-fps/redeclipse/redeclipse-1.5.3.ebuild b/games-fps/redeclipse/redeclipse-1.5.3.ebuild index 325466e..50b4f9d 100644 --- a/games-fps/redeclipse/redeclipse-1.5.3.ebuild +++ b/games-fps/redeclipse/redeclipse-1.5.3.ebuild @@ -26,7 +26,7 @@ DEPEND="!dedicated? ( virtual/opengl x11-libs/libX11 ) - net-libs/enet:1.3 + >=net-libs/enet-1.3.9:1.3 sys-libs/zlib" RDEPEND="${DEPEND}" @@ -45,6 +45,8 @@ src_prepare() { -e "s:@DATADIR@:${GAMES_DATADIR}:g" \ -e "s:@DOCDIR@:${GAMES_DATADIR_BASE}/doc/${PF}:" \ -e "s:@REDECLIPSE@:${PN}:g" \ + -e "s:@APPNAME@:${PN}:g" \ + -e "s:@CAPPNAME@:REDECLIPSE:g" \ doc/man/redeclipse.6.am \ > doc/man/redeclipse.6 @@ -52,6 +54,8 @@ src_prepare() { -e "s:@DATADIR@:${GAMES_DATADIR}:g" \ -e "s:@DOCDIR@:${GAMES_DATADIR_BASE}/doc/${PF}:" \ -e "s:@REDECLIPSE@:${PN}:g" \ + -e "s:@APPNAME@:${PN}:g" \ + -e "s:@CAPPNAME@:REDECLIPSE:g" \ doc/man/redeclipse-server.6.am \ > doc/man/redeclipse-server.6 }
[gentoo-commits] proj/kde:master commit in: dev-libs/libdbusmenu-qt/
commit: e8ad76eb2adbbeea3d5da003dc67375cbb49edfe Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 17:43:53 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 17:43:53 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e8ad76eb dev-libs/libdbusmenu-qt: EAPI 6 Package-Manager: portage-2.2.28 dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild index 4f0e76e..368fc09 100644 --- a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild +++ b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 EBZR_REPO_URI="lp:libdbusmenu-qt" @@ -64,13 +64,13 @@ src_prepare() { [[ ${PV} == * ]] && bzr_src_prepare cmake-utils_src_prepare - comment_add_subdirectory tools - use test || comment_add_subdirectory tests + cmake_comment_add_subdirectory tools + use test || cmake_comment_add_subdirectory tests } multilib_src_configure() { local mycmakeargs=( - $(cmake-utils_use_with doc) + -DWITH_DOC=$(usex doc) -DUSE_QT${QT_MULTIBUILD_VARIANT}=ON -DQT_QMAKE_EXECUTABLE="/usr/$(get_libdir)/qt${QT_MULTIBUILD_VARIANT}/bin/qmake" )
[gentoo-commits] proj/kde:master commit in: dev-libs/funambol-sdk-cpp/
commit: cbe573335668eca18b7a4d1edc301b0e0d105d8d Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 17:51:13 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 17:51:13 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=cbe57333 dev-libs/funambol-sdk-cpp: Remove package - dead upstream - no consumer .../funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild | 25 -- dev-libs/funambol-sdk-cpp/metadata.xml | 8 --- 2 files changed, 33 deletions(-) diff --git a/dev-libs/funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild b/dev-libs/funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild deleted file mode 100644 index eb02e05..000 --- a/dev-libs/funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils autotools - -DESCRIPTION="Funambol Client SDK, C++ part only" -HOMEPAGE="https://www.forge.funambol.org/download/"; -SRC_URI="http://dev.gentooexperimental.org/~dreeevil/${P}.tar.bz2"; - -LICENSE="AGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}/build/autotools" - -src_prepare() { - eautoreconf -} diff --git a/dev-libs/funambol-sdk-cpp/metadata.xml b/dev-libs/funambol-sdk-cpp/metadata.xml deleted file mode 100644 index 2fdbf33..000 --- a/dev-libs/funambol-sdk-cpp/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - -http://www.gentoo.org/dtd/metadata.dtd";> - - - k...@gentoo.org - Gentoo KDE Project - -
[gentoo-commits] proj/kde:master commit in: dev-libs/statusnotifier/
commit: fd4f7c7d5a262cb67f28cf86b22c2b22ad2ec5b9 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 17:48:37 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 17:48:37 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fd4f7c7d dev-libs/statusnotifier: EAPI 6 Package-Manager: portage-2.2.28 dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild index 1438a04..da39b69 100644 --- a/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild +++ b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit autotools @@ -23,6 +23,7 @@ DEPEND="${RDEPEND} src_prepare() { eautoreconf + eapply_user } src_configure() {
[gentoo-commits] proj/kde:master commit in: dev-libs/purpose/
commit: 0cf2dfe206053d6bfa8f68cec3376d780a389e10 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 16:47:19 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 16:47:19 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0cf2dfe2 dev-libs/purpose: EAPI 6 Package-Manager: portage-2.2.28 dev-libs/purpose/purpose-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/purpose/purpose-.ebuild b/dev-libs/purpose/purpose-.ebuild index 7054938..37c8b47 100644 --- a/dev-libs/purpose/purpose-.ebuild +++ b/dev-libs/purpose/purpose-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 KDE_TEST="forceoptional" inherit kde5
[gentoo-commits] proj/kde:master commit in: dev-libs/xembed-sni-proxy/
commit: 41b4cc78aace8caa82b202fe9646f61749856c3f Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 16:46:17 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 16:46:17 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=41b4cc78 dev-libs/xembed-sni-proxy: EAPI 6 Package-Manager: portage-2.2.28 dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild b/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild index 0a97ded..058b9d4 100644 --- a/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild +++ b/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit kde5
[gentoo-commits] proj/kde:master commit in: net-irc/konversation/
commit: 308dc9ed14595d5b6faba096223cffe5d5ca84f6 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 18:00:08 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 18:00:08 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=308dc9ed net-irc/konversation: EAPI 6 Package-Manager: portage-2.2.28 net-irc/konversation/konversation-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-irc/konversation/konversation-.ebuild b/net-irc/konversation/konversation-.ebuild index c37b9d3..03b10b3 100644 --- a/net-irc/konversation/konversation-.ebuild +++ b/net-irc/konversation/konversation-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 KDE_HANDBOOK="true" inherit kde5
[gentoo-commits] proj/kde:master commit in: www-client/rekonq/
commit: ffe31522a629b74b9ae39e7c393ba780dcb037be Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 17:59:00 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 17:59:00 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ffe31522 www-client/rekonq: EAPI 6 Package-Manager: portage-2.2.28 www-client/rekonq/rekonq-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www-client/rekonq/rekonq-.ebuild b/www-client/rekonq/rekonq-.ebuild index 2dc5404..9b38369 100644 --- a/www-client/rekonq/rekonq-.ebuild +++ b/www-client/rekonq/rekonq-.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 KDE_HANDBOOK="true" EGIT_BRANCH="frameworks"
[gentoo-commits] repo/gentoo:master commit in: dev-util/fatrace/
commit: 422a75a3caa98640e29bfc11080ccadfc6bb9969 Author: Michael Weber gentoo org> AuthorDate: Mon Mar 21 18:17:03 2016 + Commit: Michael Weber gentoo org> CommitDate: Mon Mar 21 18:17:03 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422a75a3 dev-util/fatrace: Version bump, fix python pkg_setup (bug 482848, thanks vapier & mgorny). Package-Manager: portage-2.2.28 dev-util/fatrace/fatrace-0.11.ebuild | 4 1 file changed, 4 insertions(+) diff --git a/dev-util/fatrace/fatrace-0.11.ebuild b/dev-util/fatrace/fatrace-0.11.ebuild index fa0f30f..a9b362e 100644 --- a/dev-util/fatrace/fatrace-0.11.ebuild +++ b/dev-util/fatrace/fatrace-0.11.ebuild @@ -23,6 +23,10 @@ REQUIRED_USE="powertop? ( ${PYTHON_REQUIRED_USE} )" CONFIG_CHECK="~FANOTIFY" +pkg_setup() { + use powertop && python-single-r1_pkg_setup +} + src_prepare() { tc-export CC }
[gentoo-commits] repo/gentoo:master commit in: sys-apps/busybox/files/, sys-apps/busybox/
commit: 596b078da777fa1b066d57366803a13855a0c652 Author: Mike Frysinger gentoo org> AuthorDate: Mon Mar 21 18:45:08 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Mon Mar 21 18:45:08 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596b078d sys-apps/busybox: version bump to 1.24.2 #577610 sys-apps/busybox/Manifest | 1 + sys-apps/busybox/busybox-1.24.2.ebuild | 305 + .../files/busybox-1.24.2-CVE-2016-2147.patch | 72 + .../files/busybox-1.24.2-CVE-2016-2148.patch | 55 .../busybox-1.24.2-ash-recursive-heredocs.patch| 83 ++ 5 files changed, 516 insertions(+) diff --git a/sys-apps/busybox/Manifest b/sys-apps/busybox/Manifest index b8590e5..f3487c1 100644 --- a/sys-apps/busybox/Manifest +++ b/sys-apps/busybox/Manifest @@ -2,3 +2,4 @@ DIST busybox-1.21.0.tar.bz2 2200841 SHA256 eb9d268627783297f5f459cb9bd61a94e395d DIST busybox-1.23.1.tar.bz2 2252635 SHA256 300f1db0a7ca4ecee8f8d8027aba250b903372e8339b7d9123d37c1e900473bf SHA512 60849c220dde596c4197f16dd844573b24dd46c8544345a2d5a2b1976fa0ac340d22fbc97f5a1437b7de1c04f4e16aa07b3d62bc77eb83b2467582a50ed4b362 WHIRLPOOL 7cd25e42e74663849b094df699a72deaf02b1088064a511341f76aaa419c936557bbafd54523c6818082dfd4e17605f06ee51abed238ef57a56a9be12c910f99 DIST busybox-1.23.2.tar.bz2 2252786 SHA256 05a6f9e21aad8c098e388ae77de7b2361941afa7157ef74216703395b14e319a SHA512 209c8ef26e40ccb81510f6b663202b080f9bbecac7faf386bbabf7e36a43d63b15dd6ce9f7a84c1ccc5345c524999812251da1e113ef9faadc6af1fedd24c7c9 WHIRLPOOL a0396f7f49ae702f1617e72d5d4646aceec4eba67219c7125bd8d0926d1acb1ef41ea15a7406c3cf5e5e0d8925cc75910ed5128e5fbdd257b80e2cb4f7a048a2 DIST busybox-1.24.1.tar.bz2 2068803 SHA256 37d03132cc078937360b392170b7a1d0e5b322eee9f57c0b82292a8b1f0afe3d SHA512 3afc757ebaae61ae13c2c69097ee734717434f9e658eb77093a8b7b49af3326cbca2d723483ff84a1da99544b822fd2b47d9a97c68f09962e11754e5daf124ca WHIRLPOOL 5e827d08d737caac832e7e5923da624094ff27ee2edbb46dadc339e95edba65378a8fa3db412682724476a2092eee41a804f8f36c2eec0b9f883f5ba855f3ad0 +DIST busybox-1.24.2.tar.bz2 2066822 SHA256 e71ef53ec656f31c42633918d301405d40dea1d97eca12f272217ae4a971c855 SHA512 4d20fb68ee440be2855231c7fd5f3cb9dd9bfcc1a688f0b59cd3f7a55c8819e9cc44bd15f91500713571f2a84e5e44adc0fa8ae0ae3ebf63961dfc9e1c9ef8e0 WHIRLPOOL 2d89e3fded8d61567873acdb1e1e21888a4447e19c1b893543bbe82de52e8e3cf091adb10f34aa155da573994d89ae42f40ecce65ec0d32a641d103c8d8ce053 diff --git a/sys-apps/busybox/busybox-1.24.2.ebuild b/sys-apps/busybox/busybox-1.24.2.ebuild new file mode 100644 index 000..ade4b52 --- /dev/null +++ b/sys-apps/busybox/busybox-1.24.2.ebuild @@ -0,0 +1,305 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# See `man savedconfig.eclass` for info on how to use USE=savedconfig. + +EAPI="4" +inherit eutils flag-o-matic savedconfig toolchain-funcs multilib + +DESCRIPTION="Utilities for rescue and embedded systems" +HOMEPAGE="http://www.busybox.net/"; +if [[ ${PV} == "" ]] ; then + MY_P=${PN} + EGIT_REPO_URI="git://busybox.net/busybox.git" + inherit git-2 +else + MY_P=${PN}-${PV/_/-} + SRC_URI="http://www.busybox.net/downloads/${MY_P}.tar.bz2"; + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" +fi + +LICENSE="GPL-2" # GPL-2 only +SLOT="0" +IUSE="debug ipv6 livecd make-symlinks math mdev pam selinux sep-usr static syslog systemd" +RESTRICT="test" + +COMMON_DEPEND="!static? ( selinux? ( sys-libs/libselinux ) ) + pam? ( sys-libs/pam )" +DEPEND="${COMMON_DEPEND} + static? ( selinux? ( sys-libs/libselinux[static-libs(+)] ) ) + >=sys-kernel/linux-headers-2.6.39" +RDEPEND="${COMMON_DEPEND} + mdev? ( !.*set:CONFIG_$1=y:g" .config + else + sed -i -e "s:CONFIG_$1=y:# CONFIG_$1 is not set:g" .config + fi + einfo $(grep "CONFIG_$1[= ]" .config || echo Could not find CONFIG_$1 ...) + shift + done +} + +busybox_config_enabled() { + local val=$(sed -n "/^CONFIG_$1=/s:^[^=]*=::p" .config) + case ${val} in + "") return 1 ;; + y) return 0 ;; + *) echo "${val}" | sed -r 's:^"(.*)"$:\1:' ;; + esac +} + +src_prepare() { + unset KBUILD_OUTPUT #88088 + append-flags -fno-strict-aliasing #310413 + use ppc64 && append-flags -mminimal-toc #130943 + + # patches go here! + epatch "${FILESDIR}"/${PN}-1.19.0-bb.patch + epatch "${FILESDIR}"/busybox-1.24.1-trylink-ldflags.patch + epatch "${FILESDIR}"/busybox-1.24.2-ash-recursive-heredocs.patch + epatch "${FILESDIR}"/busybox-1.24.2-CVE-2016-2147.patch + epatch "${FILESDIR}"/busybox-1.24.2-CVE-2016-2148.patch + cp "${FILESDIR}"/ginit.c init/ || die + + # flag
[gentoo-commits] proj/linux-patches: New tag: 3.4-94
commit: Commit: Mike Pagano gentoo org> CommitDate: Mon Mar 21 19:23:11 2016 + New tag: 3.4-94
[gentoo-commits] repo/gentoo:master commit in: app-emulation/vmware-modules/
commit: a6a9a2af223971361600ca5ce798a3463e049417 Author: Evan Teran gmail com> AuthorDate: Mon Mar 21 01:35:46 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Mon Mar 21 19:30:49 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6a9a2af app-emulation/vmware-modules: enabling a patch that makes 308.x build on 4.5 kernels :-) Package-Manager: portage-2.2.26 app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild b/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild index 98a4bd4..0412eca 100644 --- a/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild +++ b/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild @@ -96,10 +96,11 @@ src_prepare() { kernel_is ge 3 19 0 && epatch "${FILESDIR}/${PV_MAJOR}-3.19-05-vmci_qpair.patch" kernel_is ge 3 19 0 && epatch "${FILESDIR}/${PV_MAJOR}-3.19-06-vsock.patch" kernel_is ge 3 19 0 && epatch "${FILESDIR}/${PV_MAJOR}-3.19-07-vsock.patch" - kernel_is ge 4 01 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.01-00-vsock.patch" - kernel_is ge 4 02 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.02-00-nd_set_link.patch" - kernel_is ge 4 02 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.02-01-sk_alloc.patch" - kernel_is ge 4 03 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.03-00-vmci-misc_deregister.patch" + kernel_is ge 4 1 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.01-00-vsock.patch" + kernel_is ge 4 2 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.02-00-nd_set_link.patch" + kernel_is ge 4 2 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.02-01-sk_alloc.patch" + kernel_is ge 4 3 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.03-00-vmci-misc_deregister.patch" + kernel_is ge 4 5 0 && epatch "${FILESDIR}/${PV_MAJOR}-4.05-00-vmblock-follow_link.patch" # Allow user patches so they can support RC kernels and whatever else epatch_user
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/genkernel/
commit: cc60ea4b1d1081d55e20dba50c609386c0002fd7 Author: Mike Frysinger gentoo org> AuthorDate: Mon Mar 21 20:42:48 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Mon Mar 21 20:45:19 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc60ea4b sys-kernel/genkernel: mark 3.4.52.3 stable for all sys-kernel/genkernel/genkernel-3.4.52.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild b/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild index d2b0f66..161d2b8 100644 --- a/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild +++ b/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild @@ -43,7 +43,7 @@ else inherit bash-completion-r1 eutils SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz ${COMMON_URI}" - KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86" + KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" fi DESCRIPTION="Gentoo automatic kernel building scripts"
[gentoo-commits] repo/gentoo:master commit in: kde-apps/kmail/
commit: 05ad935080c4a9b67cd5a8cebe366a731ddb5efd Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 20:58:22 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 20:58:37 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ad9350 kde-apps/kmail: Update pkg_postinst Gentoo-bug: 577948 Reported-by: yves.caniou ens-lyon.fr Package-Manager: portage-2.2.28 kde-apps/kmail/kmail-4.14.10.ebuild | 6 +++--- kde-apps/kmail/kmail-4.14.8.ebuild | 6 +++--- kde-apps/kmail/kmail-4.4.2015.06.ebuild | 4 ++-- kde-apps/kmail/kmail-4.4.2016.01.ebuild | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/kde-apps/kmail/kmail-4.14.10.ebuild b/kde-apps/kmail/kmail-4.14.10.ebuild index cc163c0..d92a869 100644 --- a/kde-apps/kmail/kmail-4.14.10.ebuild +++ b/kde-apps/kmail/kmail-4.14.10.ebuild @@ -96,9 +96,9 @@ pkg_postinst() { elog "For groupware functionality, please install kde-apps/kdepim-kresources:${SLOT}" echo fi - if ! has_version kde-base/kleopatra:${SLOT}; then + if ! has_version kde-apps/kleopatra:${SLOT}; then echo - elog "For certificate management and the gnupg log viewer, please install kde-base/kleopatra:${SLOT}" + elog "For certificate management and the gnupg log viewer, please install kde-apps/kleopatra:${SLOT}" echo fi @@ -106,7 +106,7 @@ pkg_postinst() { ewarn ewarn "We strongly recommend you set your Akonadi database backend to QMYSQL in your" ewarn "user configuration. This is the backend recommended by KDE upstream." - ewarn "Reports indicate that kde-base/kmail-4.10 does not work properly with the sqlite" + ewarn "Reports indicate that kde-apps/kmail-4.10 does not work properly with the sqlite" ewarn "backend anymore." if has_version "app-office/akonadi-server[-mysql]"; then ewarn "FOR THAT, YOU WILL HAVE TO RE-BUILD app-office/akonadi-server WITH mysql USEFLAG ENABLED." diff --git a/kde-apps/kmail/kmail-4.14.8.ebuild b/kde-apps/kmail/kmail-4.14.8.ebuild index 963ab62..ad4ff35 100644 --- a/kde-apps/kmail/kmail-4.14.8.ebuild +++ b/kde-apps/kmail/kmail-4.14.8.ebuild @@ -94,9 +94,9 @@ pkg_postinst() { elog "For groupware functionality, please install kde-apps/kdepim-kresources:${SLOT}" echo fi - if ! has_version kde-base/kleopatra:${SLOT}; then + if ! has_version kde-apps/kleopatra:${SLOT}; then echo - elog "For certificate management and the gnupg log viewer, please install kde-base/kleopatra:${SLOT}" + elog "For certificate management and the gnupg log viewer, please install kde-apps/kleopatra:${SLOT}" echo fi @@ -104,7 +104,7 @@ pkg_postinst() { ewarn ewarn "We strongly recommend you set your Akonadi database backend to QMYSQL in your" ewarn "user configuration. This is the backend recommended by KDE upstream." - ewarn "Reports indicate that kde-base/kmail-4.10 does not work properly with the sqlite" + ewarn "Reports indicate that kde-apps/kmail-4.10 does not work properly with the sqlite" ewarn "backend anymore." if has_version "app-office/akonadi-server[-mysql]"; then ewarn "FOR THAT, YOU WILL HAVE TO RE-BUILD app-office/akonadi-server WITH mysql USEFLAG ENABLED." diff --git a/kde-apps/kmail/kmail-4.4.2015.06.ebuild b/kde-apps/kmail/kmail-4.4.2015.06.ebuild index 99b1ef1..741b12d 100644 --- a/kde-apps/kmail/kmail-4.4.2015.06.ebuild +++ b/kde-apps/kmail/kmail-4.4.2015.06.ebuild @@ -67,9 +67,9 @@ pkg_postinst() { elog "For groupware functionality, please install kde-apps/kdepim-kresources:${SLOT}" echo fi - if ! has_version kde-base/kleopatra:${SLOT}; then + if ! has_version kde-apps/kleopatra:${SLOT}; then echo - elog "For certificate management and the gnupg log viewer, please install kde-base/kleopatra:${SLOT}" + elog "For certificate management and the gnupg log viewer, please install kde-apps/kleopatra:${SLOT}" echo fi } diff --git a/kde-apps/kmail/kmail-4.4.2016.01.ebuild b/kde-apps/kmail/kmail-4.4.2016.01.ebuild index 670e394..ebfaf98 100644 --- a/kde-apps/kmail/kmail-4.4.2016.01.ebuild +++ b/kde-apps/kmail/kmail-4.4.2016.01.ebuild @@ -68,9 +68,9 @@ pkg_postinst() { elog "For groupware functionality, please install kde-apps/kdepim-kresources:${SLOT}" echo fi - if ! has_version kde-base/kleopatra:${SLOT}; then + if ! has_version kde-apps/kleopatra:${SLOT}; then echo - elog "Fo
[gentoo-commits] repo/gentoo:master commit in: sci-libs/geos/
commit: 8d475f3f9f2705d229ebe7e7254d673c77d86f7a Author: Aaron W. Swenson gentoo org> AuthorDate: Mon Mar 21 21:10:51 2016 + Commit: Aaron Swenson gentoo org> CommitDate: Mon Mar 21 21:10:51 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d475f3f sci-libs/geos: Removing Old Remove old versions. Bug: 567204 Package-Manager: portage-2.2.26 sci-libs/geos/Manifest | 2 -- sci-libs/geos/geos-3.4.1-r1.ebuild | 61 -- sci-libs/geos/geos-3.4.2-r1.ebuild | 58 3 files changed, 121 deletions(-) diff --git a/sci-libs/geos/Manifest b/sci-libs/geos/Manifest index 830e082..6996dd7 100644 --- a/sci-libs/geos/Manifest +++ b/sci-libs/geos/Manifest @@ -1,3 +1 @@ -DIST geos-3.4.1.tar.bz2 1813303 SHA256 d07ac375f3edd12425d6ce5a96db9739d5ff358cbdf60c6804f7a9e565af8ff2 SHA512 69d02630856f63bd0617db383b9936ad07e94d2b2fda4a3865657057626887439b52fd7b74602d529aff5cf8c7fbfea72672ccde807395b2dc1cc73c93c2567b WHIRLPOOL 35a6673a98d1fa1f10113c8cfef4dc32ba9b68dcc23e5522252870c2591537f80841913105425bd23ebecaa63d520ceccbfe7824a00e70e9c1461aa919bf2469 -DIST geos-3.4.2.tar.bz2 1813726 SHA256 15e8bfdf7e29087a957b56ac543ea9a80321481cef4d4f63a7b268953ad26c53 SHA512 c335608ff5e719ec6f3a6edc157c11fe5aaf9a813bf3c4b1e8a05de7a52584f6f64d5c42e646410c09a2e3cdfd3f8f994bedba37fc60454bbaa7c25ba1d36c9b WHIRLPOOL 5090bb4a4413b4c6fa00651058acfd5cb98bb8a2e68b1175baaf4ade6c737792239a08a6f9f3831c963e896469f9e9a4c1410bdddfb152638f1e72cbdb7c05e0 DIST geos-3.5.0.tar.bz2 1949397 SHA256 49982b23bcfa64a5dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02 SHA512 cd9c008c19213eb90959f950b03958e6abd9c22d83e6eb5f5a9020263ad8b0045dd5c5af60417c548fc130a57756ae1ef706710086cc277498b9ba6a0a6256b7 WHIRLPOOL f7530e1dc6b99b4ad83d9a01c44b8e6256e118f7615a473d666b00549296df00ca3c86d7ab4d0ae717a3b329b3a9ecac587bc475ee51cbd7e436922860d00ab9 diff --git a/sci-libs/geos/geos-3.4.1-r1.ebuild b/sci-libs/geos/geos-3.4.1-r1.ebuild deleted file mode 100644 index 7eb33e1..000 --- a/sci-libs/geos/geos-3.4.1-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -PYTHON_COMPAT=( python2_7 ) -inherit autotools eutils python-single-r1 python-utils-r1 - -DESCRIPTION="Geometry engine library for Geographic Information Systems" -HOMEPAGE="http://trac.osgeo.org/geos/"; -SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2"; - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 x86 ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris" -IUSE="doc php python ruby static-libs" - -RDEPEND=" - php? ( >=dev-lang/php-5.3[-threads] ) - ruby? ( dev-lang/ruby ) -" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - php? ( dev-lang/swig ) - python? ( dev-lang/swig ${PYTHON_DEPS} ) - ruby? ( dev-lang/swig ) -" - -src_prepare() { - epatch "${FILESDIR}"/3.4.1-solaris-isnan.patch - eautoreconf - echo "#!${EPREFIX}/bin/bash" > py-compile -} - -src_configure() { - econf \ - $(use_enable python) \ - $(use_enable ruby) \ - $(use_enable php) \ - $(use_enable static-libs static) -} - -src_compile() { - emake - - use doc && emake -C "${S}/doc" doxygen-html -} - -src_install() { - emake DESTDIR="${D}" install - - # https://bugs.gentoo.org/show_bug.cgi?id=487068 - insinto /usr/include/geos - doins include/geos/platform.h - - use doc && dohtml -r doc/doxygen_docs/html/* - use python && python_optimize "${D}$(python_get_sitedir)"/geos/ - - find "${ED}" -name '*.la' -exec rm -f {} + -} diff --git a/sci-libs/geos/geos-3.4.2-r1.ebuild b/sci-libs/geos/geos-3.4.2-r1.ebuild deleted file mode 100644 index 567d3ea..000 --- a/sci-libs/geos/geos-3.4.2-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -PYTHON_COMPAT=( python2_7 ) -inherit autotools eutils python-single-r1 python-utils-r1 - -DESCRIPTION="Geometry engine library for Geographic Information Systems" -HOMEPAGE="http://trac.osgeo.org/geos/"; -SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2"; - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris" -IUSE="doc php python ruby static-libs" - -RDEPEND=" - php? ( >=dev-lang/php-5.3[-threads] ) - ruby? ( dev-lang/ruby ) -" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - php? ( dev-lang/swig ) - python? ( dev-lang/swig ${PYTHON_DEPS} ) - ruby? ( dev-lang/swig ) -" - -src_prepare() { - epatch "${FILESDIR}"/3.4.2-solaris-isnan.p
[gentoo-commits] repo/gentoo:master commit in: app-accessibility/edbrowse/
commit: 4f7c9faa26a969cedaadeb8368731d1760e18e36 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:18:29 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:19:10 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f7c9faa app-accessibility/edbrowse: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-accessibility/edbrowse/edbrowse-3.5.1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild b/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild index 853813e..c26fb87 100644 --- a/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild +++ b/app-accessibility/edbrowse/edbrowse-3.5.1.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$ @@ -16,8 +16,8 @@ COMMON_DEPEND=">=dev-lang/spidermonkey-24.0:24 >=sys-libs/readline-6.0 >=net-misc/curl-7.36.0 >=dev-libs/libpcre-7.8 - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) odbc? ( dev-db/unixODBC )" DEPEND="${COMMON_DEPEND} virtual/pkgconfig
[gentoo-commits] repo/gentoo:master commit in: app-admin/apache-tools/
commit: 3eb1c448a4217999e118d8c3ed75a650f66eb168 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:22:01 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:22:01 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb1c448 app-admin/apache-tools: fix libressl slot Package-Manager: portage-2.2.26 app-admin/apache-tools/apache-tools-2.4.18.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-admin/apache-tools/apache-tools-2.4.18.ebuild b/app-admin/apache-tools/apache-tools-2.4.18.ebuild index 9728647..f29452a 100644 --- a/app-admin/apache-tools/apache-tools-2.4.18.ebuild +++ b/app-admin/apache-tools/apache-tools-2.4.18.ebuild @@ -22,7 +22,7 @@ RDEPEND=">=dev-libs/apr-1.5.0:1 kernel_linux? ( sys-apps/util-linux ) ssl? ( !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) + libressl? ( dev-libs/libressl:0= ) )" DEPEND="${RDEPEND}
[gentoo-commits] repo/gentoo:master commit in: app-admin/lastpass-cli/
commit: 75e8a96e67b312ab0856e764561090b3318fb88e Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:25:01 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:25:01 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75e8a96e app-admin/lastpass-cli: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild | 4 ++-- app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild b/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild index 9caa545..be1b314 100644 --- a/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild +++ b/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild @@ -17,8 +17,8 @@ IUSE="libressl X +pinentry" RDEPEND=" X? ( || ( x11-misc/xclip x11-misc/xsel ) ) - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) net-misc/curl dev-libs/libxml2 pinentry? ( app-crypt/pinentry ) diff --git a/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild b/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild index 08569aa..5802fe2 100644 --- a/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild +++ b/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild @@ -17,8 +17,8 @@ IUSE="libressl X +pinentry" RDEPEND=" X? ( || ( x11-misc/xclip x11-misc/xsel ) ) - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) net-misc/curl dev-libs/libxml2 pinentry? ( app-crypt/pinentry )
[gentoo-commits] repo/gentoo:master commit in: app-admin/gkrellm/
commit: 5227a51d80e125db67682dc997e49f3511eb3ddb Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:27:32 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:27:32 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5227a51d app-admin/gkrellm: fix libressl slot Package-Manager: portage-2.2.26 app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild b/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild index fa3ef34..d6e25ea 100644 --- a/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild +++ b/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild @@ -24,7 +24,7 @@ RDEPEND=" !gnutls? ( ssl? ( !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) + libressl? ( dev-libs/libressl:0= ) ) ) lm_sensors? ( sys-apps/lm_sensors )
[gentoo-commits] repo/gentoo:master commit in: kde-apps/kate/
commit: 93a31d3b78fafd8a8bf6b171bddaf1ca3dda399e Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 21 21:27:11 2016 + Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 21 21:27:48 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a31d3b kde-apps/kate: Fix pkg_postinst Package-Manager: portage-2.2.28 kde-apps/kate/kate-4.14.3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kde-apps/kate/kate-4.14.3.ebuild b/kde-apps/kate/kate-4.14.3.ebuild index 061b05d..ea84142 100644 --- a/kde-apps/kate/kate-4.14.3.ebuild +++ b/kde-apps/kate/kate-4.14.3.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$ @@ -53,9 +53,9 @@ src_configure() { pkg_postinst() { kde4-meta_pkg_postinst - if ! has_version kde-base/kaddressbook:${SLOT}; then + if ! has_version kde-apps/kaddressbook:${SLOT}; then echo - elog "File templates plugin requires kde-base/kaddressbook:${SLOT}." + elog "File templates plugin requires kde-apps/kaddressbook:${SLOT}." elog "Please install it if you plan to use this plugin." echo fi
[gentoo-commits] repo/gentoo:master commit in: app-admin/syslog-ng/
commit: 6256710672b4b2914d1008570035cf50b3c975b9 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:28:48 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:28:59 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62567106 app-admin/syslog-ng: fix libressl slot Package-Manager: portage-2.2.26 app-admin/syslog-ng/syslog-ng-3.7.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild b/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild index 22e18b0..b1ca716 100644 --- a/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild +++ b/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild @@ -31,7 +31,7 @@ RDEPEND=" tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) dev-libs/libpcre !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) + libressl? ( dev-libs/libressl:0= ) >=dev-libs/eventlog-0.2.12 >=dev-libs/glib-2.10.1:2" DEPEND="${RDEPEND}
[gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
commit: 531e564ad455ba55d4c8857ee78be826df16f92a Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:31:26 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:31:26 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531e564a app-admin/tripwire: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild index 2d7da69..d8e135a 100644 --- a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild +++ b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild @@ -18,8 +18,8 @@ IUSE="libressl ssl static +tools" DEPEND="sys-devel/automake sys-devel/autoconf ssl? ( - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) )" RDEPEND="virtual/cron virtual/mta
[gentoo-commits] repo/gentoo:master commit in: app-admin/conserver/
commit: c0a6ab71c4c10347f3fd12a88ba02966a3ceaaa6 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:30:37 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:30:37 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a6ab71 app-admin/conserver: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-admin/conserver/conserver-8.1.18-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-admin/conserver/conserver-8.1.18-r1.ebuild b/app-admin/conserver/conserver-8.1.18-r1.ebuild index 7e60c04..7cc4d1e 100644 --- a/app-admin/conserver/conserver-8.1.18-r1.ebuild +++ b/app-admin/conserver/conserver-8.1.18-r1.ebuild @@ -16,8 +16,8 @@ KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="kerberos libressl pam ssl tcpd debug" DEPEND="ssl? ( - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) ) pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers )
[gentoo-commits] repo/gentoo:master commit in: app-admin/rsyslog/
commit: b54bccd59ba8a415dca5506044a21c22a2c627c5 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:34:22 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:34:22 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54bccd5 app-admin/rsyslog: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-admin/rsyslog/rsyslog-8.13.0.ebuild| 4 ++-- app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-admin/rsyslog/rsyslog-8.13.0.ebuild b/app-admin/rsyslog/rsyslog-8.13.0.ebuild index cdeb747..d99d7c1 100644 --- a/app-admin/rsyslog/rsyslog-8.13.0.ebuild +++ b/app-admin/rsyslog/rsyslog-8.13.0.ebuild @@ -65,8 +65,8 @@ RDEPEND=" relp? ( >=dev-libs/librelp-1.2.5 ) rfc3195? ( >=dev-libs/liblogging-1.0.1:=[rfc3195] ) rfc5424hmac? ( - !libressl? ( >=dev-libs/openssl-0.9.8y:0= ) - libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) ) snmp? ( >=net-analyzer/net-snmp-5.7.2 ) ssl? ( >=net-libs/gnutls-2.12.23 ) diff --git a/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild b/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild index 4075140..301563a 100644 --- a/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild +++ b/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild @@ -66,8 +66,8 @@ RDEPEND=" relp? ( >=dev-libs/librelp-1.2.5 ) rfc3195? ( >=dev-libs/liblogging-1.0.1:=[rfc3195] ) rfc5424hmac? ( - !libressl? ( >=dev-libs/openssl-0.9.8y:0= ) - libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) ) snmp? ( >=net-analyzer/net-snmp-5.7.2 ) ssl? ( >=net-libs/gnutls-2.12.23:0= )
[gentoo-commits] repo/gentoo:master commit in: app-admin/monit/
commit: 972d29d18433a0b1432d6f525ca690349a40d15f Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:36:23 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:36:23 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972d29d1 app-admin/monit: fix libressl slot Package-Manager: portage-2.2.26 app-admin/monit/monit-5.16.1.ebuild | 2 +- app-admin/monit/monit-5.17.1.ebuild | 2 +- app-admin/monit/monit-5.17.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-admin/monit/monit-5.16.1.ebuild b/app-admin/monit/monit-5.16.1.ebuild index df1ef80..369c57a 100644 --- a/app-admin/monit/monit-5.16.1.ebuild +++ b/app-admin/monit/monit-5.16.1.ebuild @@ -17,7 +17,7 @@ IUSE="libressl pam ssl" RDEPEND=" ssl? ( !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl ) + libressl? ( dev-libs/libressl:0= ) )" DEPEND="${RDEPEND} sys-devel/flex diff --git a/app-admin/monit/monit-5.17.1.ebuild b/app-admin/monit/monit-5.17.1.ebuild index df1ef80..369c57a 100644 --- a/app-admin/monit/monit-5.17.1.ebuild +++ b/app-admin/monit/monit-5.17.1.ebuild @@ -17,7 +17,7 @@ IUSE="libressl pam ssl" RDEPEND=" ssl? ( !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl ) + libressl? ( dev-libs/libressl:0= ) )" DEPEND="${RDEPEND} sys-devel/flex diff --git a/app-admin/monit/monit-5.17.ebuild b/app-admin/monit/monit-5.17.ebuild index df1ef80..369c57a 100644 --- a/app-admin/monit/monit-5.17.ebuild +++ b/app-admin/monit/monit-5.17.ebuild @@ -17,7 +17,7 @@ IUSE="libressl pam ssl" RDEPEND=" ssl? ( !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl ) + libressl? ( dev-libs/libressl:0= ) )" DEPEND="${RDEPEND} sys-devel/flex
[gentoo-commits] repo/gentoo:master commit in: app-admin/clustershell/
commit: 0d30cbb3cfa778197840b55189308aa12831dd40 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:38:20 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:38:20 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d30cbb3 app-admin/clustershell: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-admin/clustershell/clustershell-1.6-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-admin/clustershell/clustershell-1.6-r1.ebuild b/app-admin/clustershell/clustershell-1.6-r1.ebuild index 4b24802..d078b71 100644 --- a/app-admin/clustershell/clustershell-1.6-r1.ebuild +++ b/app-admin/clustershell/clustershell-1.6-r1.ebuild @@ -20,8 +20,8 @@ KEYWORDS="~amd64 ~x86" IUSE="doc libressl" RDEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl )" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= )" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" src_install() {
[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/
commit: 4a601ee022f33455841521c03e31292217c75fd7 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:37:32 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:37:32 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a601ee0 app-admin/radmind: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-admin/radmind/radmind-1.14.1-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild b/app-admin/radmind/radmind-1.14.1-r1.ebuild index ed0b79b..45bb581 100644 --- a/app-admin/radmind/radmind-1.14.1-r1.ebuild +++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild @@ -16,8 +16,8 @@ KEYWORDS="~amd64 ~x86" IUSE="libressl" DEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl )" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= )" RDEPEND="${DEPEND}" src_prepare() {
[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/
commit: 0232fb5701f08fac2f6cc7ba06abdf9bd120de3a Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:45:07 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:45:07 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0232fb57 app-antivirus/clamav: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-antivirus/clamav/clamav-0.98.7-r1.ebuild | 4 ++-- app-antivirus/clamav/clamav-0.99.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-antivirus/clamav/clamav-0.98.7-r1.ebuild b/app-antivirus/clamav/clamav-0.98.7-r1.ebuild index 565b0c5..9132cdc 100644 --- a/app-antivirus/clamav/clamav-0.98.7-r1.ebuild +++ b/app-antivirus/clamav/clamav-0.98.7-r1.ebuild @@ -22,8 +22,8 @@ CDEPEND="bzip2? ( app-arch/bzip2 ) milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) dev-libs/libtommath >=sys-libs/zlib-1.2.2 - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) sys-devel/libtool" # openssl is now *required* see this link as to why # http://blog.clamav.net/2014/02/introducing-openssl-as-dependency-to.html diff --git a/app-antivirus/clamav/clamav-0.99.ebuild b/app-antivirus/clamav/clamav-0.99.ebuild index 28b0309..e48b3b2 100644 --- a/app-antivirus/clamav/clamav-0.99.ebuild +++ b/app-antivirus/clamav/clamav-0.99.ebuild @@ -22,8 +22,8 @@ CDEPEND="bzip2? ( app-arch/bzip2 ) milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) dev-libs/libtommath >=sys-libs/zlib-1.2.2 - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) sys-devel/libtool !!
[gentoo-commits] repo/gentoo:master commit in: app-arch/dump/
commit: 9276ab9875faddbc3419364313c791208a47010f Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:46:40 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:46:40 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9276ab98 app-arch/dump: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-arch/dump/dump-0.4.44-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-arch/dump/dump-0.4.44-r2.ebuild b/app-arch/dump/dump-0.4.44-r2.ebuild index 94b0c0b..e1f140e 100644 --- a/app-arch/dump/dump-0.4.44-r2.ebuild +++ b/app-arch/dump/dump-0.4.44-r2.ebuild @@ -20,8 +20,8 @@ RDEPEND=">=sys-fs/e2fsprogs-1.27 >=app-arch/bzip2-1.0.2 >=sys-libs/zlib-1.1.4 ermt? ( - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) ) readline? ( sys-libs/readline:0=
[gentoo-commits] repo/gentoo:master commit in: app-arch/libarchive/
commit: 0ef8f18a9a55c6503a96d7488f1d7bacf7eb91a9 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Mar 21 21:48:25 2016 + Commit: Anthony G. Basile gentoo org> CommitDate: Mon Mar 21 21:48:25 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ef8f18a app-arch/libarchive: fix openssl and libressl slots Package-Manager: portage-2.2.26 app-arch/libarchive/libarchive-3.1.2-r2.ebuild | 4 ++-- app-arch/libarchive/libarchive-3.1.2-r3.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-arch/libarchive/libarchive-3.1.2-r2.ebuild b/app-arch/libarchive/libarchive-3.1.2-r2.ebuild index 01329bb..5b56888 100644 --- a/app-arch/libarchive/libarchive-3.1.2-r2.ebuild +++ b/app-arch/libarchive/libarchive-3.1.2-r2.ebuild @@ -15,8 +15,8 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~s IUSE="acl +bzip2 +e2fsprogs expat +iconv kernel_linux libressl +lzma lzo nettle static-libs xattr +zlib" RDEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) acl? ( virtual/acl ) bzip2? ( app-arch/bzip2 ) expat? ( dev-libs/expat ) diff --git a/app-arch/libarchive/libarchive-3.1.2-r3.ebuild b/app-arch/libarchive/libarchive-3.1.2-r3.ebuild index 8153c43..2f77f2e 100644 --- a/app-arch/libarchive/libarchive-3.1.2-r3.ebuild +++ b/app-arch/libarchive/libarchive-3.1.2-r3.ebuild @@ -15,8 +15,8 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~s IUSE="acl +bzip2 +e2fsprogs expat +iconv kernel_linux libressl +lzma lzo nettle static-libs xattr +zlib" RDEPEND=" - !libressl? ( dev-libs/openssl:0[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) + !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] ) acl? ( virtual/acl[${MULTILIB_USEDEP}] ) bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] ) expat? ( dev-libs/expat[${MULTILIB_USEDEP}] )
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/hashie/
commit: 3aa0d6a175ffd9b4e08af50362c7129a2f18ef5b Author: Manuel Rüger gentoo org> AuthorDate: Mon Mar 21 21:48:03 2016 + Commit: Manuel Rüger gentoo org> CommitDate: Mon Mar 21 21:48:46 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aa0d6a1 dev-ruby/hashie: Remove ruby19 Package-Manager: portage-2.2.28 dev-ruby/hashie/hashie-2.1.2-r1.ebuild | 4 ++-- dev-ruby/hashie/hashie-2.1.2.ebuild| 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-ruby/hashie/hashie-2.1.2-r1.ebuild b/dev-ruby/hashie/hashie-2.1.2-r1.ebuild index 52a5683..9b94926 100644 --- a/dev-ruby/hashie/hashie-2.1.2-r1.ebuild +++ b/dev-ruby/hashie/hashie-2.1.2-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22" RUBY_FAKEGEM_RECIPE_TEST="rspec" diff --git a/dev-ruby/hashie/hashie-2.1.2.ebuild b/dev-ruby/hashie/hashie-2.1.2.ebuild index e414318..8fb4f7e 100644 --- a/dev-ruby/hashie/hashie-2.1.2.ebuild +++ b/dev-ruby/hashie/hashie-2.1.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby20" RUBY_FAKEGEM_RECIPE_TEST="rspec"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/hashie/
commit: 15d4cdf645b4895876732f01732488e5c69cf955 Author: Manuel Rüger gentoo org> AuthorDate: Mon Mar 21 21:47:09 2016 + Commit: Manuel Rüger gentoo org> CommitDate: Mon Mar 21 21:48:46 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d4cdf6 dev-ruby/hashie: Remove old Package-Manager: portage-2.2.28 dev-ruby/hashie/Manifest| 1 - dev-ruby/hashie/hashie-3.4.2.ebuild | 31 --- 2 files changed, 32 deletions(-) diff --git a/dev-ruby/hashie/Manifest b/dev-ruby/hashie/Manifest index ba30922..1f5237e 100644 --- a/dev-ruby/hashie/Manifest +++ b/dev-ruby/hashie/Manifest @@ -1,3 +1,2 @@ DIST hashie-2.1.2.gem 34816 SHA256 a9e1e4928bf4f5a5683ea9c7ef29e50fb93f72542f9a9550e205fe33a6568923 SHA512 6f72998710da58a2584939b4e74a114ae54168902020dc16ec5ea0422a91316b84aa6835fffb36a2985634f24ff5b0d01bcdb50134a414a269a4881ebcd728ac WHIRLPOOL 6b67c04ef9dc33a9ffdf25d14440bdd3ce621f1bde9b4eb806de63fa39edc76627f80d10435efc708fc48d24f1450046f33aceb20d76238a0cf8b67ddcf72e78 -DIST hashie-3.4.2.gem 56320 SHA256 b68373c5f6589c5222638433918bc3e256acbaead7f883e5ec18420f507b17ca SHA512 9081d91ad014914f59ec4e18b92c27b6f316f03f476c94d3b469bda54f201d339d553ef142018f0e605d3571418af784d57e25211a6c141cd8eb5a56497c28d6 WHIRLPOOL cc76a268a7b8abc618b236a1958db783a5dc9e14c92b719782db71dd1a518e436b4e801f6854e5c8958298d4212814bae23893c1fe2a42561de28ba993847b2f DIST hashie-3.4.3.gem 58880 SHA256 29213491e9f74158b9a7ec0806b3698039357209a6b24553cfd767f6418365c7 SHA512 1a9f3169308e99559c67e021f0d4174618fd6e4cb6a53b4c7889b609ea32e2d7cde7216de2e3d485f496fa73491702e3af81b6875071b35ecfe5609d925225f7 WHIRLPOOL 09ab898ad08a975c69beb12bf2154c20d9ca00b698610101497705370f17c66f7d389b55b92378c83b02d53f3218351c3ccca119c8df5f80ce199dd7acb08722 diff --git a/dev-ruby/hashie/hashie-3.4.2.ebuild b/dev-ruby/hashie/hashie-3.4.2.ebuild deleted file mode 100644 index d65b458..000 --- a/dev-ruby/hashie/hashie-3.4.2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby19 ruby20 ruby21" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -inherit ruby-fakegem - -DESCRIPTION="Hashie is a small collection of tools that make hashes more powerful" -HOMEPAGE="http://intridea.com/posts/hashie-the-hash-toolkit"; - -LICENSE="MIT" -SLOT="3" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_bdepend "test? ( dev-ruby/activesupport )" - -all_ruby_prepare() { - # Remove bundler and fix one spec that depends on its requires - #rm Gemfile || die - sed -i -e '/[Bb]undler/d' Rakefile || die - sed -e '/pry/ s:^:#:' -i spec/spec_helper.rb || die -}
[gentoo-commits] repo/gentoo:master commit in: dev-libs/yajl/
commit: aa0f46bdea9225d036ec8ac61bdcfe052cf905e4 Author: Doug Goldstein gentoo org> AuthorDate: Sat Mar 19 05:23:53 2016 + Commit: Doug Goldstein gentoo org> CommitDate: Mon Mar 21 21:49:22 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0f46bd dev-libs/yajl: fix license Upstream has used ISC since version 2.0.0. Package-Manager: portage-2.2.26 Signed-off-by: Doug Goldstein gentoo.org> dev-libs/yajl/yajl-2.0.4-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/yajl/yajl-2.0.4-r3.ebuild b/dev-libs/yajl/yajl-2.0.4-r3.ebuild index a8937c5..c6d954f 100644 --- a/dev-libs/yajl/yajl-2.0.4-r3.ebuild +++ b/dev-libs/yajl/yajl-2.0.4-r3.ebuild @@ -10,7 +10,7 @@ DESCRIPTION="Small event-driven (SAX-style) JSON parser" HOMEPAGE="https://lloyd.github.com/yajl/"; SRC_URI="https://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz" -LICENSE="BSD" +LICENSE="ISC" SLOT="0" KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs"