[gentoo-commits] proj/ruby-overlay:master commit in: dev-ruby/pmap/
commit: 9b0a1fa0d2600f3e64ea830cba1436c0589e22f0 Author: Hans de Graaff degraaff org> AuthorDate: Sun May 22 06:32:10 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sun May 22 06:32:10 2016 + URL:https://gitweb.gentoo.org/proj/ruby-overlay.git/commit/?id=9b0a1fa0 dev-ruby/pmap: initial import for ruby-tinderbox Package-Manager: portage-2.2.28 dev-ruby/pmap/metadata.xml | 11 +++ dev-ruby/pmap/pmap-1.1.1.ebuild | 22 ++ 2 files changed, 33 insertions(+) diff --git a/dev-ruby/pmap/metadata.xml b/dev-ruby/pmap/metadata.xml new file mode 100644 index 000..e326491 --- /dev/null +++ b/dev-ruby/pmap/metadata.xml @@ -0,0 +1,11 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + +r...@gentoo.org +Gentoo Ruby Project + + +bruceadams/pmap + + diff --git a/dev-ruby/pmap/pmap-1.1.1.ebuild b/dev-ruby/pmap/pmap-1.1.1.ebuild new file mode 100644 index 000..039cfcc --- /dev/null +++ b/dev-ruby/pmap/pmap-1.1.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="Add parallel methods into Enumerable: pmap and peach" +HOMEPAGE="https://github.com/bruceadams/pmap"; + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/
commit: f7986ed8222ddbb5e9b107d5d358a132b4e0b48a Author: Louis Sautier gmail com> AuthorDate: Sun May 22 01:44:31 2016 + Commit: Dirkjan Ochtman gentoo org> CommitDate: Sun May 22 06:30:41 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7986ed8 net-p2p/syncthing: bump to 0.13.2 Gentoo-Bug: 583666 Package-Manager: portage-2.3.0_rc1 net-p2p/syncthing/Manifest| 1 + net-p2p/syncthing/syncthing-0.13.2.ebuild | 64 +++ 2 files changed, 65 insertions(+) diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest index 1cf62c1..1ac84dd 100644 --- a/net-p2p/syncthing/Manifest +++ b/net-p2p/syncthing/Manifest @@ -1 +1,2 @@ DIST syncthing-0.12.25.tar.gz 4469275 SHA256 0374721434d0cb8bdd9464f63ff9705fe0ca14ab1e20d916780cb6347c91e72d SHA512 5bdb03ae5f76faddd54304994e04683f2a950419c8b4902553ea83d623976039bc05195f77fe59e2ef19615e91da308adc93b05061265e485a9dc941f2b750d4 WHIRLPOOL e6a10d1142dca73174bd9514526ad8f8357c930aa02fb2a2940adbd690fd209bcad15c3397daabd77052c5962d320665362a86fcafca3d19513ca6d06adcfd37 +DIST syncthing-0.13.2.tar.gz 3928871 SHA256 98dac8cf18967f96e213dc307ede3ed5c6407bd66faeb81e904de4011e89 SHA512 84a751c6eecd7753a1c52effd3074cb9b75f82050833ce1f1b5070711b21897d0fde3a8bed98b61bcf92ba45aa5fe38c4339a2c9d0908982ca6f25ff6ac8368a WHIRLPOOL b80ed15c954bfec64114958bb57b0f68ff70967877a1be21210e9cb97a9bf72868a47467188ba30478515c1ccebb040a81f6de0ab4b7861db2cc817712b1a5c5 diff --git a/net-p2p/syncthing/syncthing-0.13.2.ebuild b/net-p2p/syncthing/syncthing-0.13.2.ebuild new file mode 100644 index 000..79d5258 --- /dev/null +++ b/net-p2p/syncthing/syncthing-0.13.2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGO_PN="github.com/syncthing/syncthing" +EGIT_COMMIT=v${PV} + +inherit golang-vcs-snapshot systemd user versionator + +DESCRIPTION="Open Source Continuous File Synchronization" +HOMEPAGE="https://syncthing.net"; +SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~arm" +IUSE="" + +DEPEND="" +RDEPEND="" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} +} + +src_compile() { + export GOPATH="${S}:$(get_golibdir_gopath)" + cd src/${EGO_PN} + go run build.go -version "v${PV}" -no-upgrade || die "build failed" +} + +src_test() { + cd src/${EGO_PN} + go run build.go test || die "test failed" +} + +src_install() { + cd src/${EGO_PN} + doman man/*.[157] + dobin bin/* + dodoc README.md AUTHORS CONTRIBUTING.md + systemd_dounit "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}@.service \ + "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}-resume.service + systemd_douserunit "${S}"/src/${EGO_PN}/etc/linux-systemd/user/${PN}.service + newconfd "${FILESDIR}/${PN}.confd" ${PN} + newinitd "${FILESDIR}/${PN}.initd" ${PN} + keepdir /var/{lib,log}/${PN} + fowners ${PN}:${PN} /var/{lib,log}/${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotate" ${PN} +} + +pkg_postinst() { + if [[ $(get_version_component_range 2) -gt \ + $(get_version_component_range 2 ${REPLACING_VERSIONS}) ]]; then + ewarn "Version ${PV} is not protocol-compatible with version" \ + "0.$(($(get_version_component_range 2) - 1)).x or lower." + ewarn "Make sure all your devices are running at least version" \ + "0.$(get_version_component_range 2).0." + fi +}
[gentoo-commits] repo/gentoo:master commit in: dev-python/coverage/
commit: d1c2895388c67a4035aa71af60b45b55548c093c Author: Dirkjan Ochtman gentoo org> AuthorDate: Sun May 22 06:26:08 2016 + Commit: Dirkjan Ochtman gentoo org> CommitDate: Sun May 22 06:26:08 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1c28953 dev-python/coverage: version bump to 4.1 Package-Manager: portage-2.2.28 dev-python/coverage/Manifest| 1 + dev-python/coverage/coverage-4.1.ebuild | 44 + 2 files changed, 45 insertions(+) diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest index 502d247..c38fdeb 100644 --- a/dev-python/coverage/Manifest +++ b/dev-python/coverage/Manifest @@ -1,2 +1,3 @@ DIST coverage-3.7.1.tar.gz 284735 SHA256 d1aea1c4aa61b8366d6a42dd3650622fbf9c634ed24eaf7f379c8b970e5ed44e SHA512 d198b06db938119fad8c13b9a7bbf018a5406c29327c943014e3b9b33ea85f0fbadaef6565fba26a461a3f1ee31f4cbfb42503420cc587c846ce499e80fd5133 WHIRLPOOL f07d239053bf357fe3dca7bec04d390db9b6610060fd848c9f15ea9de2f0a141d66e68cba5833a63bde860f4377c9029574e6ea7ed76ffe2fda332703e3100ab DIST coverage-4.0.3.tar.gz 354482 SHA256 85b1275b6d7a61ccc8024a4e9a4c9e896394776edce1a5d075ec116f91925462 SHA512 eeb4d91de7caeba0be5df18ad9c30ca3d7b738a0983cc76074f9be1d2030b7f2b4ed5244756ca9f508d770aab075248a7d3da4da65b45b2107ab0905774a46b7 WHIRLPOOL 2571f60afdd34250c5f64d424107f2027b145dc860f015d92e858198f9828c3e7acc49370e041aa31ddc94561e5ebec31e43d0c6a019bb46376b5908402ac482 +DIST coverage-4.1.tar.gz 370815 SHA256 41632b5e2c0ec510e4c0f1f0f02a702477d1f837693964390553539217c92b07 SHA512 3f8380b7d9639692b9782a52f3f8bf842b65f1ee893a1ffd6c0deb46fd4b3e25169a126f6090d845851575196863687aa43299871a92abde1f91e4b91a6c5ef6 WHIRLPOOL 7bd2e9ec0c8f9009e8a8ff3f99d4a6fc54c16fe6cad0f23bee6a7c2c1f2dc6a121145199c23c6a2fb3590d06344a89d018bf5038a36d36a464c0b3ef16cf49f4 diff --git a/dev-python/coverage/coverage-4.1.ebuild b/dev-python/coverage/coverage-4.1.ebuild new file mode 100644 index 000..1840049 --- /dev/null +++ b/dev-python/coverage/coverage-4.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Code coverage measurement for Python" +HOMEPAGE="http://nedbatchelder.com/code/coverage/ https://pypi.python.org/pypi/coverage"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~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="test" + +RDEPEND="" +DEPEND=" + >=dev-python/setuptools-18.4[${PYTHON_USEDEP}] + test? ( + dev-python/PyContracts[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +python_compile() { + if [[ ${EPYTHON} == python2.7 ]]; then + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + fi + + distutils-r1_python_compile +} + +python_test() { + cd "${BUILD_DIR}"/lib || die + [[ "${PYTHON}" =~ pypy ]] && export COVERAGE_NO_EXTENSION=no + ${PYTHON} "${S}"/igor.py test_with_tracer py || die + ${PYTHON} "${S}"/igor.py test_with_tracer c || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-python/coverage/
commit: f73ed4acd05c504c63422e64bb493c130c06a2d7 Author: Dirkjan Ochtman gentoo org> AuthorDate: Sun May 22 06:18:26 2016 + Commit: Dirkjan Ochtman gentoo org> CommitDate: Sun May 22 06:18:26 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f73ed4ac dev-python/coverage: remove old versions Package-Manager: portage-2.2.28 dev-python/coverage/Manifest | 5 dev-python/coverage/coverage-3.6.ebuild | 30 - dev-python/coverage/coverage-3.7.ebuild | 30 - dev-python/coverage/coverage-4.0.1.ebuild | 43 -- dev-python/coverage/coverage-4.0.2.ebuild | 44 --- dev-python/coverage/coverage-4.0.ebuild | 31 -- 6 files changed, 183 deletions(-) diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest index ab9c667..502d247 100644 --- a/dev-python/coverage/Manifest +++ b/dev-python/coverage/Manifest @@ -1,7 +1,2 @@ -DIST coverage-3.6.tar.gz 232067 SHA256 df3bf169d4727f3fad146ca715a49a1f72a8258689651ef9de908022e739700d SHA512 fb9f26ba20dced48d01929251a08b0b9da2bc5910ccc734910aed76634bd98b538983880e2e29c2c4604f6b97ed3a947871dfe8c9a43acc4556484e4c77ee68e WHIRLPOOL c6163901763dadd4cfba13953dd2535778b0da73a4f08f1400534135d49d54558736c46253146cbe03f9680d33f3cd2a33f8be7795ff17054bf0608393ac6eca DIST coverage-3.7.1.tar.gz 284735 SHA256 d1aea1c4aa61b8366d6a42dd3650622fbf9c634ed24eaf7f379c8b970e5ed44e SHA512 d198b06db938119fad8c13b9a7bbf018a5406c29327c943014e3b9b33ea85f0fbadaef6565fba26a461a3f1ee31f4cbfb42503420cc587c846ce499e80fd5133 WHIRLPOOL f07d239053bf357fe3dca7bec04d390db9b6610060fd848c9f15ea9de2f0a141d66e68cba5833a63bde860f4377c9029574e6ea7ed76ffe2fda332703e3100ab -DIST coverage-3.7.tar.gz 283419 SHA256 c50ee4c391a083d87e2345b0094a7ec24a07b98b4e435f134d02a62ea3827fdb SHA512 62d20d8a3f5be93c8eae513b61330cd5876df94cb7269ff90bcc0d4b946dd426b7bad9bcb74e2b6334a5c14178c408667c7dfd00d5362ee499c203d4ac55d189 WHIRLPOOL 910e766d2eaa7918611325beacb4ab2dd220cccf2478b01e635b8339f4bdd11823b69a1c5a630d20342188db7e1aae0ab0d26e85743ce3f0e24c1ead5f49e64b -DIST coverage-4.0.1.tar.gz 349737 SHA256 bc10f57a83863e8ca8916f763f13b4b249e2f85b553df3958281cb7f4f402d5b SHA512 457a39fe122daf4c92d1e54d2295eb538db7045fb09f56bdd385a322293b1949443a468133069b723799b78d5e6cb7831cd9fb660064bb0ce8611591e0e68b17 WHIRLPOOL c07ba967261105a50c8707b2dc7ebc04fe38affca5a6e61259f4a6c43900538e018c3e31237360410e4755a4beea460626a1ad8fd33105a00fb4a41890d71cb6 -DIST coverage-4.0.2.tar.gz 352797 SHA256 a9bac9b1d17f0c776e3e575f42cf2572a0eab240a223945238719e0982ff28bb SHA512 ba3ec08bc1dfb297b792efdf30708d631075c29d5d40d7d27e0515fa318c023379200b6a6f2c1a70c68a6f1bfd92b8a8cecd8667219aff6bc26f6285cec73ebc WHIRLPOOL e346539f5f19baf28f038142309501607dc34c3817fe48d94fdbaaa8673323c4222527a3b731aa21f7100cb81248801062a40849948c73a0c7759ebc12ddd25f DIST coverage-4.0.3.tar.gz 354482 SHA256 85b1275b6d7a61ccc8024a4e9a4c9e896394776edce1a5d075ec116f91925462 SHA512 eeb4d91de7caeba0be5df18ad9c30ca3d7b738a0983cc76074f9be1d2030b7f2b4ed5244756ca9f508d770aab075248a7d3da4da65b45b2107ab0905774a46b7 WHIRLPOOL 2571f60afdd34250c5f64d424107f2027b145dc860f015d92e858198f9828c3e7acc49370e041aa31ddc94561e5ebec31e43d0c6a019bb46376b5908402ac482 -DIST coverage-4.0.tar.gz 166399 SHA256 b1244343e39cb2835f9c89c2d8fbcad8e4a5b4945344b434a4d8b6e9e7431390 SHA512 ef8c4cf9025df16d8d2a60bc7c09cf7507118104df98212504c56df7c0758af603995bc6734a939631c83d9d8532d2f85fb903e7dc2ea6694b18b4b1a1162e0f WHIRLPOOL 15db3f5d793009154fdd496a917e2494f81466b220b481a9f74e474ea70610b837c3c830f83a3df743231c9e786e42f6a253515c152b9c5f34b2921b6e7ecf08 diff --git a/dev-python/coverage/coverage-3.6.ebuild b/dev-python/coverage/coverage-3.6.ebuild deleted file mode 100644 index bec51d5..000 --- a/dev-python/coverage/coverage-3.6.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_3} pypy ) -PYTHON_REQ_USE="threads(+)" -inherit distutils-r1 - -DESCRIPTION="Code coverage measurement for Python" -HOMEPAGE="http://nedbatchelder.com/code/coverage/ https://pypi.python.org/pypi/coverage"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" - -python_compile() { - if [[ ${EPYTHON} == python2.[67] ]]; then - local CFLAGS="${CFLAGS} -fno-strict-aliasing" - export CFLAGS - fi - - distutils-r1_python_compile -} diff --git a/dev-python/coverage/coverage-3.7.ebuild b/dev-python/coverage/coverage-3.7.ebuild deleted file mode 100644 index 9afd420..000 --- a/dev-pyt
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/slim/
commit: 23defe6ac5b62c009e841f07ab164b26475b6f81 Author: Hans de Graaff gentoo org> AuthorDate: Sun May 22 05:59:01 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sun May 22 05:59:01 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23defe6a dev-ruby/slim: add 3.0.7 Package-Manager: portage-2.2.28 dev-ruby/slim/Manifest | 1 + dev-ruby/slim/slim-3.0.7.ebuild | 45 + 2 files changed, 46 insertions(+) diff --git a/dev-ruby/slim/Manifest b/dev-ruby/slim/Manifest index e4866fc..f1f1af0 100644 --- a/dev-ruby/slim/Manifest +++ b/dev-ruby/slim/Manifest @@ -1 +1,2 @@ DIST slim-3.0.6.gem 96256 SHA256 1315604e79dcf6c89916007ad297e716c35109e19d2d6ce42b5557006138faeb SHA512 06b13f2880752be7e00ee61a86f0d88926b1f0f108b496355a40b30d32101bb777062079b4727eafe7166d404374badb9d2ee50c53dbf4d2206d583c71fb6e7c WHIRLPOOL 4485de92621f7944d74400a561220e1434d0c009cf985864a0169699794028db404ea93d3872e739d49b0c781454e46d85c10d0f5c6b5ba8505c109f1c17362a +DIST slim-3.0.7.gem 97280 SHA256 1747e293c161fdb21547f27b2eb585af26c19baa3110866a28e10d3b05ab5088 SHA512 b410ed35941a3cfc68f8ab5649450381f830f94c8503e062afcd097f5a669df4cf8035d0baefd42bffaad5d12766baf70bad3eed82149fd861f615649ee469c0 WHIRLPOOL 941e29de5ef4d9a8e720e98ed65b6992089b954f9991b4f9481b977d0f9eac295d9f07374403c5875a9a22ebc2687fe13e66e6808f17e0ad69f5686f029d9300 diff --git a/dev-ruby/slim/slim-3.0.7.ebuild b/dev-ruby/slim/slim-3.0.7.ebuild new file mode 100644 index 000..03858e3 --- /dev/null +++ b/dev-ruby/slim/slim-3.0.7.ebuild @@ -0,0 +1,45 @@ +# 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_EXTRADOC="CHANGES README.md" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_TASK_DOC="yard" + +inherit ruby-fakegem + +DESCRIPTION="A template language aiming to reduce the syntax to the essential parts" +HOMEPAGE="http://slim-lang.com/"; +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="0" +IUSE="doc" + +ruby_add_rdepend ">=dev-ruby/tilt-1.3.3:* =dev-ruby/temple-0.7.3:0.7" + +ruby_add_bdepend "doc? ( dev-ruby/yard dev-ruby/redcarpet )" + +ruby_add_bdepend "test? ( dev-ruby/sass )" + +all_ruby_prepare() { + sed -i -e '/bundler/I s:^:#:' Rakefile || die + + # This sinatra code expects tests to be installed but we strip those. + sed -i -e "s/require 'sinatra'/require 'bogussinatra'/" Rakefile || die + + # Avoid tests for things we don't have. + sed -i -e '/test_wip_render_with_asciidoc/,/^ end/ s:^:#:' \ + -e '/test_render_with_wiki/,/^ end/ s:^:#:' \ + -e '/test_render_with_creole/,/^ end/ s:^:#:' \ + -e '/test_render_with_org/,/^ end/ s:^:#:' test/core/test_embedded_engines.rb || die +} + +each_ruby_prepare() { + sed -i -e '/Open3/ s:ruby:'${RUBY}':' test/core/test_commands.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/actionpack-action_caching/
commit: 39fc0f915e7b642282d81d86edebd072cf2befa4 Author: Hans de Graaff gentoo org> AuthorDate: Sun May 22 05:41:17 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sun May 22 05:41:17 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39fc0f91 dev-ruby/actionpack-action_caching: drop ruby19 Package-Manager: portage-2.2.28 .../actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild b/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild index 2f73220..21b94ca 100644 --- a/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild +++ b/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild @@ -1,9 +1,9 @@ -# 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" +USE_RUBY="ruby20 ruby21" RUBY_FAKEGEM_TASK_DOC=""
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/temple/
commit: 77e16dd07220a99674a83f660e8be4c3488e2182 Author: Hans de Graaff gentoo org> AuthorDate: Sun May 22 06:14:36 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sun May 22 06:14:36 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77e16dd0 dev-ruby/temple: add 0.7.7 Package-Manager: portage-2.2.28 dev-ruby/temple/Manifest| 1 + dev-ruby/temple/temple-0.7.7.ebuild | 29 + 2 files changed, 30 insertions(+) diff --git a/dev-ruby/temple/Manifest b/dev-ruby/temple/Manifest index 7608fa9..8e641f2 100644 --- a/dev-ruby/temple/Manifest +++ b/dev-ruby/temple/Manifest @@ -1,2 +1,3 @@ DIST temple-0.6.10.gem 36864 SHA256 0161614497136071cf02cd88f18e9fd0d1d9598552181c6a11e7a4a7e322ffd3 SHA512 668d4b12ff2f5b28fa70755036c4b2d4612ee6fd0f66382cc534d5e1555e0105e6efff58ddfdadc62dd0a0f0066fe37ac9228299258a045ba7af7ad73600ba83 WHIRLPOOL d00aab4925212ff2573ba7b1bb9efe6646b18068ae721347fa53dc75d1d92054fe575f3a0f84c80021530d9ba16f68665a1c61ae051442faf240f974a509a12c DIST temple-0.7.6.gem 36864 SHA256 60c10cdab98d9023905ce4bf1ae497419ea5649cd9b75d3e016bd2b3297b SHA512 9b75e59dd07352f712fa8021bb25d327a470735f27a0283054de34b1aa20b6443098da3b8cf350b1a23ad25e61ef1e024d0ef93b28714d06e32f76af9718f6a5 WHIRLPOOL bcf6ccb9b8c7bfd30779142f12c9166765045689515517ee9bcccdecc720fb2778f92ff8c4be266ec0a4a480fd9de72de78ec3c3990b672e5e7fff4c1ab2a9f7 +DIST temple-0.7.7.gem 38400 SHA256 e63318989be2da09df121b447b234dedcbff87ef1641ee66254176315c0c8e76 SHA512 e7437e3b39cad78c20d9f99c8b00344a86589d38a964f2a55295099502d2f1a7bfdbe6ee98b63c4e73e1ba886107e0dd6f511d8e4e0643b96f77bbd9093e4955 WHIRLPOOL 517b81736ab9d6656c466feb821e0275fc8cb59b20a78ba9d50b6e570d79e0024c38e1a5b7a7730d4fb24a76d52c1c136541820d057164592c96d0cee671af9e diff --git a/dev-ruby/temple/temple-0.7.7.ebuild b/dev-ruby/temple/temple-0.7.7.ebuild new file mode 100644 index 000..b04b77b --- /dev/null +++ b/dev-ruby/temple/temple-0.7.7.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGES EXPRESSIONS.md README.md" + +RUBY_FAKEGEM_TASK_TEST="" + +inherit ruby-fakegem + +DESCRIPTION="An abstraction and a framework for compiling templates to pure Ruby" +HOMEPAGE="https://github.com/judofyr/temple"; + +LICENSE="MIT" +SLOT="0.7" +KEYWORDS="~amd64 ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/bacon + dev-ruby/erubis + >=dev-ruby/tilt-2.0.1 )" + +each_ruby_test() { + ${RUBY} -S bacon -Ilib -Itest --automatic --quiet || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/slim/
commit: 8bed18b5dc7f9ccdfc4526dc4668e6593e9f42ce Author: Hans de Graaff gentoo org> AuthorDate: Sun May 22 05:51:53 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sun May 22 05:51:53 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bed18b5 dev-ruby/slim: cleanup Package-Manager: portage-2.2.28 dev-ruby/slim/Manifest | 1 - dev-ruby/slim/slim-2.1.0.ebuild | 42 - 2 files changed, 43 deletions(-) diff --git a/dev-ruby/slim/Manifest b/dev-ruby/slim/Manifest index 7405087..e4866fc 100644 --- a/dev-ruby/slim/Manifest +++ b/dev-ruby/slim/Manifest @@ -1,2 +1 @@ -DIST slim-2.1.0.gem 92160 SHA256 de574c991afb2d2b3e081e9d1e4f4e20b339d3b2895b51f7bf022a35a82acd6b SHA512 a092689e62f1189aac9b6657572f76ee9915f1dbfcea7ed90c07386958cbeb6c974d25b7bc85f4cc6887312ab373487618e8dfd8e0f2b9f4dbd0574b0f4b928f WHIRLPOOL a7d141d7c9ce2e88770cc9ffb590465b0d597da1dd3df858a0e0843dc9b182426cc28793df9f56d06f770aff91208433c8fbdef8e5d9780c22edf91d2474989b DIST slim-3.0.6.gem 96256 SHA256 1315604e79dcf6c89916007ad297e716c35109e19d2d6ce42b5557006138faeb SHA512 06b13f2880752be7e00ee61a86f0d88926b1f0f108b496355a40b30d32101bb777062079b4727eafe7166d404374badb9d2ee50c53dbf4d2206d583c71fb6e7c WHIRLPOOL 4485de92621f7944d74400a561220e1434d0c009cf985864a0169699794028db404ea93d3872e739d49b0c781454e46d85c10d0f5c6b5ba8505c109f1c17362a diff --git a/dev-ruby/slim/slim-2.1.0.ebuild b/dev-ruby/slim/slim-2.1.0.ebuild deleted file mode 100644 index 0edb671..000 --- a/dev-ruby/slim/slim-2.1.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21" - -RUBY_FAKEGEM_EXTRADOC="CHANGES README.md" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_TASK_DOC="yard" - -inherit ruby-fakegem - -DESCRIPTION="A template language aiming to reduce the syntax to the essential parts" -HOMEPAGE="http://slim-lang.com/"; -LICENSE="MIT" - -KEYWORDS="~amd64" -SLOT="0" -IUSE="doc" - -ruby_add_rdepend ">=dev-ruby/tilt-1.3.3:0 - >=dev-ruby/temple-0.6.6:0" - -ruby_add_bdepend "doc? ( dev-ruby/yard dev-ruby/redcarpet )" - -ruby_add_bdepend "test? ( dev-ruby/sass )" - -all_ruby_prepare() { - sed -i -e '/bundler/I s:^:#:' Rakefile || die - - # This sinatra code expects tests to be installed but we strip those. - sed -i -e "s/require 'sinatra'/require 'bogussinatra'/" Rakefile || die - - # Avoid tests for things we don't have. - sed -i -e '/test_wip_render_with_asciidoc/,/^ end/ s:^:#:' \ - -e '/test_render_with_wiki/,/^ end/ s:^:#:' \ - -e '/test_render_with_creole/,/^ end/ s:^:#:' \ - -e '/test_render_with_org/,/^ end/ s:^:#:' test/core/test_embedded_engines.rb || die - -}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/mime-types-data/
commit: 7583cf8b57b624290b1eae1c1b580cbcc5462ff6 Author: Hans de Graaff gentoo org> AuthorDate: Sun May 22 05:45:50 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sun May 22 05:45:50 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7583cf8b dev-ruby/mime-types-data: add 3.2016.0521 Package-Manager: portage-2.2.28 dev-ruby/mime-types-data/Manifest | 1 + .../mime-types-data-3.2016.0521.ebuild | 22 ++ 2 files changed, 23 insertions(+) diff --git a/dev-ruby/mime-types-data/Manifest b/dev-ruby/mime-types-data/Manifest index c896359..ddbfb40 100644 --- a/dev-ruby/mime-types-data/Manifest +++ b/dev-ruby/mime-types-data/Manifest @@ -1,2 +1,3 @@ DIST mime-types-data-3.2015.1120.gem 100864 SHA256 2cc2d944557aacac49d15709247be3fba2028f65762bf474cea0212e80dfdf11 SHA512 4de8a9590add8b7df9685efcb07e9a86c70f73f67c990278ced0b6616ccc3eb7215c016b70e3d65088b93bc73396706d503bce4b62578cb9ff694906a09e5e62 WHIRLPOOL 0b99c8aff19b71cce6b51bcee17e1d9e1d89c9b83332232090de22106df0a956de021396cf92fdfb6b28e7c4063bbd36d6a03507069a024a4c4e484b5d99d17a DIST mime-types-data-3.2016.0221.gem 101376 SHA256 f6ce9f679d796f4d2647a93ca3d2c3bca4399924a744cdc3f5063a6b8195cf17 SHA512 1ec4bf90a50bfec9cb39b2f3f0f75aca5c1b257258b7533f14a2a272d6b833e90df35b433bc468d107622958f8c2adc549df694c39c69fbcc733db35175746ac WHIRLPOOL 8f4be1e01266f9b22e244f179bb27e49f801e142832740accfc9d317c61e99285ca0162480dd8c4e369bfe6e71bd1e2966f2e4914ce6e939af9c3b6dd79ebe0e +DIST mime-types-data-3.2016.0521.gem 101888 SHA256 7542bccff06d70c4ad94d1cf10b7dac6bd89958356e5d0d7f6447168c819be12 SHA512 3eb23e446f25a1b058408bec4f4867177ce42f579d188e3f8f1f31d8268e6566309e7439cdcafec214e54e3b22b7c29896c859bac26556b5573fc149eefeebc5 WHIRLPOOL d0e786fb49a572ccb939eed63ee1b857a52678f4e5c51acab87a6ab9c4d1bdd5a92ea3e2b20fdb5f6d1be0388fcc8b733badd36056b88792fa2015e5f5a5fcd9 diff --git a/dev-ruby/mime-types-data/mime-types-data-3.2016.0521.ebuild b/dev-ruby/mime-types-data/mime-types-data-3.2016.0521.ebuild new file mode 100644 index 000..650ac20 --- /dev/null +++ b/dev-ruby/mime-types-data/mime-types-data-3.2016.0521.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby20 ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="History.md README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="data" + +inherit ruby-fakegem + +DESCRIPTION="Registry for information about MIME media type definitions" +HOMEPAGE="https://github.com/mime-types/mime-types-data"; + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE=""
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/actionpack-action_caching/
commit: 06225266eafe97b23872e83f0a283171cced731f Author: Hans de Graaff gentoo org> AuthorDate: Sun May 22 05:42:34 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sun May 22 05:42:34 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06225266 dev-ruby/actionpack-action_caching: add ruby23 Package-Manager: portage-2.2.28 .../actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild b/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild index 21b94ca..e005afd 100644 --- a/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild +++ b/dev-ruby/actionpack-action_caching/actionpack-action_caching-1.1.1.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -USE_RUBY="ruby20 ruby21" +USE_RUBY="ruby20 ruby21 ruby22" RUBY_FAKEGEM_TASK_DOC="" @@ -17,7 +17,7 @@ KEYWORDS="~amd64" SLOT="0" IUSE="" -ruby_add_rdepend ">=dev-ruby/actionpack-4.0.0" +ruby_add_rdepend ">=dev-ruby/actionpack-4.0.0:*" ruby_add_bdepend "test? ( >=dev-ruby/activerecord-4.0.0 dev-ruby/mocha )"
[gentoo-commits] proj/catalyst:master commit in: catalyst/
commit: d923de2a758e67bcc7970dd2138395d8b1edc4b6 Author: Mike Frysinger gentoo org> AuthorDate: Sun May 22 03:48:05 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Sun May 22 03:48:05 2016 + URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=d923de2a support: enhance docstrings a bit catalyst/support.py | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/catalyst/support.py b/catalyst/support.py index 60cdaf6..9cc5d75 100644 --- a/catalyst/support.py +++ b/catalyst/support.py @@ -188,7 +188,7 @@ def pathcompare(path1,path2): def ismount(path): - "enhanced to handle bind mounts" + """Like os.path.ismount, but also support bind mounts""" if os.path.ismount(path): return 1 a=os.popen("mount") @@ -239,6 +239,12 @@ def countdown(secs=5, doing="Starting"): def normpath(mypath): + """Clean up a little more than os.path.normpath + + Namely: +- Make sure leading // is turned into /. +- Leave trailing slash intact. + """ TrailingSlash=False if mypath[-1] == "/": TrailingSlash=True
[gentoo-commits] proj/catalyst:master commit in: catalyst/
commit: f3983e2204c7dd474958e4b8cf2a349288f51657 Author: Mike Frysinger gentoo org> AuthorDate: Sun May 22 03:35:02 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Sun May 22 03:35:02 2016 + URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f3983e22 countdown: only run when interactive There's no point in sleeping when running from scripted sessions. catalyst/support.py | 4 1 file changed, 4 insertions(+) diff --git a/catalyst/support.py b/catalyst/support.py index f2ae5bb..60cdaf6 100644 --- a/catalyst/support.py +++ b/catalyst/support.py @@ -219,6 +219,10 @@ def addl_arg_parse(myspec,addlargs,requiredspec,validspec): def countdown(secs=5, doing="Starting"): + # If this is non-interactive (e.g. a cronjob), then sleeping is pointless. + if not os.isatty(sys.stdin.fileno()): + return + if secs: sys.stdout.write( ('>>> Waiting %s seconds before starting...\n'
[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/hppa/
commit: 5d4de9e4464565bec0af2588a2f45b770d0cd73b Author: Mike Frysinger gentoo org> AuthorDate: Sun May 22 03:36:55 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Sun May 22 03:36:55 2016 + URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=5d4de9e4 hppa: netboot: enable USE=unicode This is better for international users, and it fixes a build error with procps/ncurses deps. releases/weekly/specs/hppa/netboot2-hppa32.spec | 1 + releases/weekly/specs/hppa/netboot2-hppa64.spec | 1 + 2 files changed, 2 insertions(+) diff --git a/releases/weekly/specs/hppa/netboot2-hppa32.spec b/releases/weekly/specs/hppa/netboot2-hppa32.spec index 0a2ec33..3466a48 100644 --- a/releases/weekly/specs/hppa/netboot2-hppa32.spec +++ b/releases/weekly/specs/hppa/netboot2-hppa32.spec @@ -21,6 +21,7 @@ netboot2/use: shadow readline ssl + unicode netboot2/packages: sys-boot/palo diff --git a/releases/weekly/specs/hppa/netboot2-hppa64.spec b/releases/weekly/specs/hppa/netboot2-hppa64.spec index 4e014be..0b41736 100644 --- a/releases/weekly/specs/hppa/netboot2-hppa64.spec +++ b/releases/weekly/specs/hppa/netboot2-hppa64.spec @@ -20,6 +20,7 @@ netboot2/use: shadow readline ssl + unicode netboot2/packages: sys-boot/palo
[gentoo-commits] proj/catalyst:master commit in: catalyst/base/, catalyst/targets/
commit: 415c65624ff62f5ab139666cd5447bc35e1e9e8b Author: Mike Frysinger gentoo org> AuthorDate: Fri May 20 05:42:43 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Fri May 20 05:42:43 2016 + URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=415c6562 replace ad-hoc implementations of clear_dir A few places copy & paste the logic we have in the clear_dir func. Punt them with a simple call to clear_dir. catalyst/base/stagebase.py | 9 + catalyst/targets/netboot2.py | 10 ++ catalyst/targets/snapshot.py | 20 ++-- 3 files changed, 5 insertions(+), 34 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 78e5b94..f0f3ba9 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -3,7 +3,6 @@ import os import imp import shutil import sys -from stat import ST_UID, ST_GID, ST_MODE from snakeoil import fileutils @@ -1202,13 +1201,7 @@ class StageBase(TargetBase, ClearBase, GenBase): log.warning('not a directory or does not exist, skipping "empty" operation: %s', x) continue log.info('Emptying directory %s', x) - # stat the dir, delete the dir, recreate the dir and set - # the proper perms and ownership - mystat=os.stat(myemp) - shutil.rmtree(myemp) - ensure_dirs(myemp, mode=0o755) - os.chown(myemp,mystat[ST_UID],mystat[ST_GID]) - os.chmod(myemp,mystat[ST_MODE]) + clear_dir(myemp) self.resume.enable("empty") def remove(self): diff --git a/catalyst/targets/netboot2.py b/catalyst/targets/netboot2.py index da856ba..87dada3 100644 --- a/catalyst/targets/netboot2.py +++ b/catalyst/targets/netboot2.py @@ -4,12 +4,10 @@ netboot target, version 2 # NOTE: That^^ docstring has influence catalyst-spec(5) man page generation. import os -import shutil -from stat import ST_UID, ST_GID, ST_MODE from catalyst import log from catalyst.support import (CatalystError, normpath, cmd) -from catalyst.fileops import ensure_dirs, clear_path +from catalyst.fileops import (ensure_dirs, clear_dir, clear_path) from catalyst.base.stagebase import StageBase @@ -152,11 +150,7 @@ class netboot2(StageBase): log.info('Emptying directory %s', x) # stat the dir, delete the dir, recreate the dir and set # the proper perms and ownership - mystat=os.stat(myemp) - shutil.rmtree(myemp) - ensure_dirs(myemp, mode=0o755) - os.chown(myemp,mystat[ST_UID],mystat[ST_GID]) - os.chmod(myemp,mystat[ST_MODE]) + clear_dir(myemp) self.resume.enable("empty") def set_action_sequence(self): diff --git a/catalyst/targets/snapshot.py b/catalyst/targets/snapshot.py index 7ba94b2..8a9acdd 100644 --- a/catalyst/targets/snapshot.py +++ b/catalyst/targets/snapshot.py @@ -2,17 +2,13 @@ Snapshot target """ -import os -import shutil -from stat import ST_UID, ST_GID, ST_MODE - from DeComp.compress import CompressMap from catalyst import log from catalyst.support import normpath, cmd from catalyst.base.targetbase import TargetBase from catalyst.base.genbase import GenBase -from catalyst.fileops import ensure_dirs +from catalyst.fileops import (clear_dir, ensure_dirs) class snapshot(TargetBase, GenBase): @@ -102,16 +98,4 @@ class snapshot(TargetBase, GenBase): log.info('Cleaning up ...') def purge(self): - myemp=self.settings["tmp_path"] - if os.path.isdir(myemp): - log.notice('Emptying directory %s', myemp) - # stat the dir, delete the dir, recreate the dir and set - # the proper perms and ownership - mystat=os.stat(myemp) - # There's no easy way to change flags recursively in python - if os.uname()[0] == "FreeBSD": - os.system("chflags -R noschg "+myemp) - shutil.rmtree(myemp) - ensure_dirs(myemp, mode=0o755) - os.chown(myemp,mystat[ST_UID],mystat[ST_GID]) - os.chmod(myemp,mystat[ST_MODE]) + clear_dir(self.settings['tmp_path'])
[gentoo-commits] proj/catalyst:master commit in: catalyst/base/
commit: 64255565bf45bd07a66405d876bbbe58b7a0c441 Author: Mike Frysinger gentoo org> AuthorDate: Fri May 20 05:03:34 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Fri May 20 05:31:57 2016 + URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=64255565 use native code in more places for file ops Rather than shell out to cp/rm/mv, use python native code to do things. catalyst/base/stagebase.py | 39 +++ 1 file changed, 15 insertions(+), 24 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 2009ab6..0b25516 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1013,8 +1013,7 @@ class StageBase(TargetBase, ClearBase, GenBase): else: log.notice('Setting up chroot...') - cmd("cp /etc/resolv.conf " + self.settings["chroot_path"] + "/etc/", - env=self.env) + shutil.copy('/etc/resolv.conf', self.settings['chroot_path'] + '/etc/') # Copy over the envscript, if applicable if "envscript" in self.settings: @@ -1030,18 +1029,15 @@ class StageBase(TargetBase, ClearBase, GenBase): 'Catalyst Maintainers use VERY minimal envscripts, if used at all.\n' 'You have been warned.') - cmd("cp "+self.settings["envscript"]+" "+\ - self.settings["chroot_path"]+"/tmp/envscript",\ - env=self.env) + shutil.copy(self.settings['envscript'], + self.settings['chroot_path'] + '/tmp/envscript') # Copy over /etc/hosts from the host in case there are any # specialties in there - if os.path.exists(self.settings["chroot_path"]+"/etc/hosts"): - cmd("mv "+self.settings["chroot_path"]+"/etc/hosts "+\ - self.settings["chroot_path"]+"/etc/hosts.catalyst",\ - env=self.env) - cmd("cp /etc/hosts "+self.settings["chroot_path"]+"/etc/hosts",\ - env=self.env) + hosts_file = self.settings['chroot_path'] + '/etc/hosts' + if os.path.exists(hosts_file): + os.rename(hosts_file, hosts_file + '.catalyst') + shutil.copy('/etc/hosts', hosts_file) # Modify and write out make.conf (for the chroot) makepath = normpath(self.settings["chroot_path"] + @@ -1162,10 +1158,9 @@ class StageBase(TargetBase, ClearBase, GenBase): clear_path(self.settings["destpath"] + x) # Put /etc/hosts back into place - if os.path.exists(self.settings["chroot_path"]+"/etc/hosts.catalyst"): - cmd("mv -f "+self.settings["chroot_path"]+"/etc/hosts.catalyst "+\ - self.settings["chroot_path"]+"/etc/hosts",\ - env=self.env) + hosts_file = self.settings['chroot_path'] + '/etc/hosts' + if os.path.exists(hosts_file + '.catalyst'): + os.rename(hosts_file + '.catalyst', hosts_file) # Remove our overlay if os.path.exists(self.settings["chroot_path"] + self.settings["local_overlay"]): @@ -1565,11 +1560,8 @@ class StageBase(TargetBase, ClearBase, GenBase): env=self.env) if "boot/kernel/"+kname+"/initramfs_overlay" in self.settings: - if os.path.exists(self.settings["chroot_path"]+\ - "/tmp/initramfs_overlay/"): - log.notice('Cleaning up temporary overlay dir') - cmd("rm -R "+self.settings["chroot_path"]+\ - "/tmp/initramfs_overlay/",env=self.env) + log.notice('Cleaning up temporary overlay dir') + clear_dir(self.settings['chroot_path'] + '/tmp/initramfs_overlay/') self.resume.is_enabled("build_kernel_"+kname) @@ -1586,11 +1578,10 @@ class StageBase(TargetBase, ClearBase, GenBase): self.settings[key]) try: - cmd('cp ' + self.settings[key] + ' ' + - self.settings['chroot_path'] + '/var/tmp/' + kname + '.config', - env=self.env) + shutil.copy(self.settings[key], +
[gentoo-commits] proj/catalyst:master commit in: catalyst/base/, catalyst/
commit: 125ca190d30215de85fc3343c95784e658f75c37 Author: Mike Frysinger gentoo org> AuthorDate: Fri May 20 05:43:14 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Fri May 20 05:43:14 2016 + URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=125ca190 replace os.system with cmd Use the existing cmd() helper for running external programs. catalyst/base/stagebase.py | 11 ++- catalyst/fileops.py| 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index f0f3ba9..6695ac4 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -967,16 +967,17 @@ class StageBase(TargetBase, ClearBase, GenBase): if not ismount(target): continue - retval=os.system("umount " + target) - - if retval!=0: + try: + cmd(['umount', target]) + except CatalystError: log.warning('First attempt to unmount failed: %s', target) log.warning('Killing any pids still running in the chroot') self.kill_chroot_pids() - retval2 = os.system("umount " + target) - if retval2!=0: + try: + cmd(['umount', target]) + except CatalystError: ouch=1 log.warning("Couldn't umount bind mount: %s", target) diff --git a/catalyst/fileops.py b/catalyst/fileops.py index 4b9e200..6971911 100644 --- a/catalyst/fileops.py +++ b/catalyst/fileops.py @@ -22,7 +22,7 @@ from snakeoil.osutils import (ensure_dirs as snakeoil_ensure_dirs, # pylint: enable=unused-import from catalyst import log -from catalyst.support import CatalystError +from catalyst.support import (cmd, CatalystError) def ensure_dirs(path, gid=-1, uid=-1, mode=0o755, minimal=True, @@ -79,7 +79,7 @@ def clear_dir(target, mode=0o755, chg_flags=False, remove=False, mystat = os.stat(target) # There's no easy way to change flags recursively in python if chg_flags and os.uname()[0] == "FreeBSD": - os.system("chflags -R noschg " + target) + cmd(['chflags', '-R', 'noschg', target]) log.debug('shutil.rmtree()') shutil.rmtree(target) except Exception:
[gentoo-commits] proj/catalyst:master commit in: catalyst/, catalyst/targets/, catalyst/base/
commit: 70aa9439819c3b659c8aa3c1460b6ed2e46b7350 Author: Mike Frysinger gentoo org> AuthorDate: Fri May 20 05:34:19 2016 + Commit: Mike Frysinger gentoo org> CommitDate: Fri May 20 05:34:19 2016 + URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=70aa9439 cmd: add support for running commands directly Very few of the commands we execute actually need to be run through a shell. Extend the cmd helper to take an argv and convert the majority of calls over to that. catalyst/base/stagebase.py| 94 +++ catalyst/support.py | 48 +++--- catalyst/targets/grp.py | 9 +++-- catalyst/targets/netboot.py | 28 ++--- catalyst/targets/netboot2.py | 14 +++ catalyst/targets/snapshot.py | 14 +-- catalyst/targets/tinderbox.py | 6 +-- 7 files changed, 104 insertions(+), 109 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 0b25516..78e5b94 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -13,7 +13,7 @@ from catalyst import log from catalyst.defaults import (SOURCE_MOUNT_DEFAULTS, TARGET_MOUNT_DEFAULTS, PORT_LOGDIR_CLEAN) from catalyst.support import (CatalystError, file_locate, normpath, - cmd, list_bashify, read_makeconf, ismount, file_check) + cmd, read_makeconf, ismount, file_check) from catalyst.base.targetbase import TargetBase from catalyst.base.clearbase import ClearBase from catalyst.base.genbase import GenBase @@ -648,7 +648,7 @@ class StageBase(TargetBase, ClearBase, GenBase): killcmd = normpath(self.settings["sharedir"] + self.settings["shdir"] + "/support/kill-chroot-pids.sh") if os.path.exists(killcmd): - cmd(killcmd, env=self.env) + cmd([killcmd], env=self.env) def mount_safety_check(self): """ @@ -873,10 +873,9 @@ class StageBase(TargetBase, ClearBase, GenBase): clear_path(self.settings['chroot_path'] + self.settings['port_conf'] + '/make.profile') ensure_dirs(self.settings['chroot_path'] + self.settings['port_conf']) - cmd("ln -sf ../.." + self.settings["portdir"] + "/profiles/" + - self.settings["target_profile"] + " " + - self.settings["chroot_path"] + - self.settings["port_conf"] + "/make.profile", + cmd(['ln', '-sf', + '../..' + self.settings['portdir'] + '/profiles/' + self.settings['target_profile'], + self.settings['chroot_path'] + self.settings['port_conf'] + '/make.profile'], env=self.env) self.resume.enable("config_profile_link") @@ -892,7 +891,7 @@ class StageBase(TargetBase, ClearBase, GenBase): # The trailing slashes on both paths are important: # We want to make sure rsync copies the dirs into each # other and not as subdirs. - cmd('rsync -a %s/ %s/' % (self.settings['portage_confdir'], dest), + cmd(['rsync', '-a', self.settings['portage_confdir'] + '/', dest + '/'], env=self.env) self.resume.enable("setup_confdir") @@ -914,7 +913,7 @@ class StageBase(TargetBase, ClearBase, GenBase): "/root_overlay"]: if os.path.exists(x): log.info('Copying root_overlay: %s', x) - cmd('rsync -a ' + x + '/ ' + self.settings['chroot_path'], + cmd(['rsync', '-a', x + '/', self.settings['chroot_path']], env=self.env) def base_dirs(self): @@ -922,7 +921,6 @@ class StageBase(TargetBase, ClearBase, GenBase): def bind(self): for x in self.mounts: - _cmd = '' log.debug('bind(); x = %s', x) target = normpath(self.settings["chroot_path"] + self.target_mounts[x]) ensure_dirs(target, mode=0o755) @@ -935,23 +933,25 @@ class StageBase(TargetBase, ClearBase, GenBase): log.debug('bind(); src = %s', src) if "snapcache" in self.settings["options"] and x == "portdir": self.snapcache_lock.read_lock() + _cmd = None if os.uname()[0] == "FreeBSD": if src == "/dev": - _cmd =
[gentoo-commits] repo/gentoo:master commit in: games-util/nml/
commit: a9d579957e4650a6babe79efcab6040db8181842 Author: Michael Sterrett gentoo org> AuthorDate: Sun May 22 02:19:28 2016 + Commit: Michael Sterrett gentoo org> CommitDate: Sun May 22 02:19:56 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d57995 games-util/nml: add support for python 3.5 (bug #583590) Package-Manager: portage-2.2.28 games-util/nml/nml-0.4.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games-util/nml/nml-0.4.4.ebuild b/games-util/nml/nml-0.4.4.ebuild index d3901c0..39c1ef3 100644 --- a/games-util/nml/nml-0.4.4.ebuild +++ b/games-util/nml/nml-0.4.4.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{3_3,3_4} ) +PYTHON_COMPAT=( python{3_3,3_4,3_5} ) inherit distutils-r1 DESCRIPTION="Compiler of NML files into grf/nfo files"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Package-DeprecationManager/
commit: 12084ce92d2d12ed9b078d2fc695bc56e4bf60ec Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 23:53:19 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 23:53:19 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12084ce9 dev-perl/Package-DeprecationManager: Remove old Package-Manager: portage-2.3.0_rc1 dev-perl/Package-DeprecationManager/Manifest | 1 - .../Package-DeprecationManager-0.130.0-r1.ebuild | 28 -- 2 files changed, 29 deletions(-) diff --git a/dev-perl/Package-DeprecationManager/Manifest b/dev-perl/Package-DeprecationManager/Manifest index 6059b5e..be19a0b 100644 --- a/dev-perl/Package-DeprecationManager/Manifest +++ b/dev-perl/Package-DeprecationManager/Manifest @@ -1,3 +1,2 @@ -DIST Package-DeprecationManager-0.13.tar.gz 10961 SHA256 d1e12143c9a6e9d4f101e43142622ab4894087d42937621e2c7430defbc07b3a SHA512 393841bc8a6a96dfc3ce9e2787d532f0e5ba45ef07a8d95be4450ad399b0ae3c4929f8abf07892194fca85c7de75c118a5b611a816b565a7945e34ebca36c4a8 WHIRLPOOL c6f5958b41333fd37006f94a727b4ae0adf65b4e3f43af738395e419bb9e789c2cf331d99025b8e69da4397cff54d922cf71df1460f4bcd1f40587434a181daf DIST Package-DeprecationManager-0.15.tar.gz 23626 SHA256 65c871f00849ba6a3369b3e4a5f206504e51bfb8eb2d2631fe2e18483fc29d61 SHA512 644aae95e7124f91dab9ab71e20679a310df869dc970ee3b180d8274657226d9ad91c79d56222f6b30ad026e92f4d86609b8933ce3fc1298247da15f4a5c542b WHIRLPOOL 0ef1e18212c6a85b5c13aafdba78a01a77f25705fe2830add4d13fc4d47acae516e08099d9b06fe8e32072079b04583e5be9e966a9d9b9b0f0e3f3e3c1a05f0e DIST Package-DeprecationManager-0.16.tar.gz 26872 SHA256 4018a06f7a3ba252c9eccc3fdcad9490cd003dfa6baf261545e96b5a82e784a7 SHA512 30723fd738907b68a2f2a2c09111ef6e2d01b3ec74b4805ce50b9464ed2e192e1d1604ad389e77cac963faf5fc299815735742207babf92c6a44d36120c4af27 WHIRLPOOL e229faa2cb5b9e5ee057e0db3a348c6434b330840910dff6c8c48f8b4fd4d148fd33c969e3d3c3c44e24b33f34fe2209c60a388da1afb7e9298e40031f0c55d9 diff --git a/dev-perl/Package-DeprecationManager/Package-DeprecationManager-0.130.0-r1.ebuild b/dev-perl/Package-DeprecationManager/Package-DeprecationManager-0.130.0-r1.ebuild deleted file mode 100644 index f1c57b0..000 --- a/dev-perl/Package-DeprecationManager/Package-DeprecationManager-0.130.0-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=DROLSKY -MODULE_VERSION=0.13 -inherit perl-module - -DESCRIPTION="Manage deprecation warnings for your distribution" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" -IUSE="test" - -RDEPEND="dev-perl/List-MoreUtils - dev-perl/Params-Util - dev-perl/Sub-Install" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.31 - test? ( dev-perl/Test-Fatal - >=virtual/perl-Test-Simple-0.88 - dev-perl/Test-Requires - dev-perl/Test-Output )" - -SRC_TEST="do"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Package-DeprecationManager/
commit: f4e49144466e1ca3797baeef0c2c238f72e98592 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 23:52:50 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 23:52:50 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e49144 dev-perl/Package-DeprecationManager: stable for alpha/hppa/ia64/ppc64/ppc/sparc/x86 (ALLARCHES), bug 579464 Package-Manager: portage-2.3.0_rc1 .../Package-DeprecationManager-0.150.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Package-DeprecationManager/Package-DeprecationManager-0.150.0.ebuild b/dev-perl/Package-DeprecationManager/Package-DeprecationManager-0.150.0.ebuild index 1b66271..ad48f42 100644 --- a/dev-perl/Package-DeprecationManager/Package-DeprecationManager-0.150.0.ebuild +++ b/dev-perl/Package-DeprecationManager/Package-DeprecationManager-0.150.0.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="Manage deprecation warnings for your distribution" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Inline/
commit: b1e5f0b1d21792ec047036ca46180991bad3f224 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 23:37:42 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 23:37:42 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e5f0b1 Revert "dev-perl/Inline: Remove old" - we still need it because of bug 576058 :/ This reverts commit cc0a33fe59f263ea3e661c7ca33cded8fde5c164. dev-perl/Inline/Inline-0.500.0-r1.ebuild | 29 + dev-perl/Inline/Manifest | 1 + 2 files changed, 30 insertions(+) diff --git a/dev-perl/Inline/Inline-0.500.0-r1.ebuild b/dev-perl/Inline/Inline-0.500.0-r1.ebuild new file mode 100644 index 000..054056d --- /dev/null +++ b/dev-perl/Inline/Inline-0.500.0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=SISYPHUS +MODULE_VERSION=0.50 +inherit perl-module + +DESCRIPTION="Write Perl subroutines in other languages" + +SLOT="0" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" +IUSE="test" + +RDEPEND="virtual/perl-Digest-MD5 + virtual/perl-File-Spec + dev-perl/Parse-RecDescent" +DEPEND="${RDEPEND} + test? ( + dev-perl/Test-Warn + )" + +SRC_TEST=do + +src_test() { + MAKEOPTS+=" -j1" perl-module_src_test # bug 384137 +} diff --git a/dev-perl/Inline/Manifest b/dev-perl/Inline/Manifest index d8de9ab..d88d58b 100644 --- a/dev-perl/Inline/Manifest +++ b/dev-perl/Inline/Manifest @@ -1 +1,2 @@ +DIST Inline-0.50.tar.gz 104632 SHA256 6263fa1145efe9e96bcd60d10f9eabd93313e00cb1e555abddda1e98b7c280d6 SHA512 58b2968d3602c0703cc191216ca3dd0ef877b833d5bf8848e4ad76fbbf06d5ab5e5953253334614d397fe961ba72446b639cac186709234fd26a99be37ba0c3c WHIRLPOOL b3c5e0ff14779111c727d6df868720527acd4727f71327be4478397edf947755c158c71b28e0ed6b0fc219e6f5bf5b5f2b4ce844c938c1bcd32571d72332f582 DIST Inline-0.80.tar.gz 78254 SHA256 7e2bd984b1ebd43e336b937896463f2c6cb682c956cbd2c311a464363d2ccef6 SHA512 e64f7752f32fd07c7c7a975429e04730f2987c9588f99b95502d4e5c87d458736a606c03943a68660940c3987cd632ad2f75ec3862342956c1754b1aca86e0bb WHIRLPOOL 1b16d389e793a99e5cb0d733852f97ab33ee177cc857fb56b0f5b76a113f8b12c982e816de35e7b6978baa752c81b26f15cac2874ab5ec3cdae2d0076b9f2880
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Inline-C/
commit: 0de91acfa39200d3e0fa851b563b9d48ae0a5c8d Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 23:33:48 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 23:33:48 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0de91acf dev-perl/Inline-C: Block old Inline versions, bug 573680 Package-Manager: portage-2.3.0_rc1 dev-perl/Inline-C/Inline-C-0.760.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-perl/Inline-C/Inline-C-0.760.0.ebuild b/dev-perl/Inline-C/Inline-C-0.760.0.ebuild index e182933..ca86749 100644 --- a/dev-perl/Inline-C/Inline-C-0.760.0.ebuild +++ b/dev-perl/Inline-C/Inline-C-0.760.0.ebuild @@ -22,6 +22,7 @@ RDEPEND=" >=dev-perl/Inline-0.790.0 >=dev-perl/Parse-RecDescent-1.967.9 >=dev-perl/Pegex-0.580.0 + !
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Inline/
commit: cc0a33fe59f263ea3e661c7ca33cded8fde5c164 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 23:32:05 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 23:32:05 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc0a33fe dev-perl/Inline: Remove old Package-Manager: portage-2.3.0_rc1 dev-perl/Inline/Inline-0.500.0-r1.ebuild | 29 - dev-perl/Inline/Manifest | 1 - 2 files changed, 30 deletions(-) diff --git a/dev-perl/Inline/Inline-0.500.0-r1.ebuild b/dev-perl/Inline/Inline-0.500.0-r1.ebuild deleted file mode 100644 index 054056d..000 --- a/dev-perl/Inline/Inline-0.500.0-r1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=SISYPHUS -MODULE_VERSION=0.50 -inherit perl-module - -DESCRIPTION="Write Perl subroutines in other languages" - -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" -IUSE="test" - -RDEPEND="virtual/perl-Digest-MD5 - virtual/perl-File-Spec - dev-perl/Parse-RecDescent" -DEPEND="${RDEPEND} - test? ( - dev-perl/Test-Warn - )" - -SRC_TEST=do - -src_test() { - MAKEOPTS+=" -j1" perl-module_src_test # bug 384137 -} diff --git a/dev-perl/Inline/Manifest b/dev-perl/Inline/Manifest index d88d58b..d8de9ab 100644 --- a/dev-perl/Inline/Manifest +++ b/dev-perl/Inline/Manifest @@ -1,2 +1 @@ -DIST Inline-0.50.tar.gz 104632 SHA256 6263fa1145efe9e96bcd60d10f9eabd93313e00cb1e555abddda1e98b7c280d6 SHA512 58b2968d3602c0703cc191216ca3dd0ef877b833d5bf8848e4ad76fbbf06d5ab5e5953253334614d397fe961ba72446b639cac186709234fd26a99be37ba0c3c WHIRLPOOL b3c5e0ff14779111c727d6df868720527acd4727f71327be4478397edf947755c158c71b28e0ed6b0fc219e6f5bf5b5f2b4ce844c938c1bcd32571d72332f582 DIST Inline-0.80.tar.gz 78254 SHA256 7e2bd984b1ebd43e336b937896463f2c6cb682c956cbd2c311a464363d2ccef6 SHA512 e64f7752f32fd07c7c7a975429e04730f2987c9588f99b95502d4e5c87d458736a606c03943a68660940c3987cd632ad2f75ec3862342956c1754b1aca86e0bb WHIRLPOOL 1b16d389e793a99e5cb0d733852f97ab33ee177cc857fb56b0f5b76a113f8b12c982e816de35e7b6978baa752c81b26f15cac2874ab5ec3cdae2d0076b9f2880
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: dac3a3d7945159ae070a60c8efde87e687c7889e Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 23:26:57 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 23:27:26 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dac3a3d7 package.mask: mask dev-perl/Gtk2-WebKit for removal profiles/package.mask | 6 ++ 1 file changed, 6 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index 14a3521..16db763 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,6 +30,12 @@ #--- END OF EXAMPLES --- +# Andreas K. Hüttel (21 May 2016) +# Unmaintained since 2011, needs old webkit-gtk:2 slot that has +# security issues, no consumers in tree, bug 573092 +# Removal in 30 days +dev-perl/Gtk2-WebKit + # Kent Fredric (15 May 2016) # Andreas K. Hüttel (21 May 2016) # Has been broken since app-arch/rar-5.0.0 due to List()
[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/
commit: 36861afc486c0fe1ab859bcfffa7a28c84cf4fb6 Author: Mike Gilbert gentoo org> AuthorDate: Sat May 21 22:18:01 2016 + Commit: Mike Gilbert gentoo org> CommitDate: Sat May 21 22:18:01 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36861afc www-client/chromium: replace es_LA with es_419 Package-Manager: portage-2.2.28_p107_p879860 www-client/chromium/Manifest | 1 - www-client/chromium/chromium-50.0.2661.102.ebuild | 2 +- www-client/chromium/chromium-51.0.2704.22.ebuild | 696 -- www-client/chromium/chromium-51.0.2704.36.ebuild | 2 +- www-client/chromium/chromium-51.0.2704.47.ebuild | 2 +- www-client/chromium/chromium-52.0.2716.0.ebuild | 2 +- www-client/chromium/chromium-52.0.2723.2.ebuild | 2 +- 7 files changed, 5 insertions(+), 702 deletions(-) diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest index edd43b5..278f40b 100644 --- a/www-client/chromium/Manifest +++ b/www-client/chromium/Manifest @@ -1,5 +1,4 @@ DIST chromium-50.0.2661.102.tar.xz 531505652 SHA256 12135ef890c2bd13b653a06e2a44e8f251a65fe9e91404c792d27e346c5d57c6 SHA512 277311b77df7331b996a1b08c2591c7407a57ba4ee9c93d82eaea63db7ffd1551647e04c64c5e460c58862ff2363d59a674043a41d6b7f05ff4b2b85f18c7e7e WHIRLPOOL 183c6e8dd0e195bc027a685c4064a0aaceaf880fae62b89b664a4cd1e1aedf9510961ce7b6c3e515f47222545bc695a5876a6ed4c8580ce599d1139cb3fd20f7 -DIST chromium-51.0.2704.22.tar.xz 459682528 SHA256 808ffd06a299a2f8d05deb8199c837cbd9e5b7091715ae48ec5872e8b5ef6bc0 SHA512 d09d2e78d87ed76df597fa764fd9487d04bf66016ce784cf34ac5e69d76535b2969d16d81c7abbd1a2286f35311ab050e4de98b211901a00c925c66b5a10383e WHIRLPOOL e15a330347b1b9b1fed3351ceddfa4eb847c08ebd87e9edf8917ee8e558a016a740da15260af92f3b9fad5ebe45f5654ee1a105d25334876b2948e3d9701b98d DIST chromium-51.0.2704.36.tar.xz 459762252 SHA256 3573249343c4dc19b5d56c51a6986c4742ba7f62c0c60fea14e2ff146c92d753 SHA512 b9f3abc0928ba0bb390c93da5ca8443e540e8199939a9a3fa574ba25053c45dbab14db7da585bd1048f8ce97d86eef7460fddb00c162a6c0e4a426c9e6891c89 WHIRLPOOL 1e484dc03bd56675f31d60144c85a646524e033c3f9dccc89d9d8b9b7555d94acf4932b363b80b0073420024a992a7bebd7a9de435924ff2490443fe69200f44 DIST chromium-51.0.2704.47.tar.xz 459894480 SHA256 22dcb396ce4c113d3237709a1962a24983667978da97e53111cc448839192450 SHA512 929f4fe79211ccf8aae9e1ff749e337a19304f341d5722e14aee4668781aaf501036f8018dc426e057505d753ff4886f7dce814f2aae45ec48957aea5032e75c WHIRLPOOL dc57ddbf2eb5bf8cb3e3fbf635d09b666e0e0a6b2b92cfdd12f06e754fe30b1efda0df1cdef4de3aa35fe7409fdd95f49a88f747949cf0710e4ea63675f9eaaa DIST chromium-52.0.2716.0.tar.xz 461514628 SHA256 c0f593a640fce7a8c93081725bfc16fae0c4a268c846343fdfeba11fd35755fe SHA512 25cda422bc1af230613004db56fe8fa0d9a7ed3f9c20b357ff60f788854509ac60f855c1454db05e8921a8f83ba0e95a4f841255d8d6390df68808f04f94826e WHIRLPOOL e49f3f56a63afb755c1432ea82b77b9f4b4ce02559e24b2e11bdaa199df67a20d4a80470b6c0ae86f5091b24d77bdabf3d79f37d3d40604e0db11b823e7e3500 diff --git a/www-client/chromium/chromium-50.0.2661.102.ebuild b/www-client/chromium/chromium-50.0.2661.102.ebuild index 0a2b6af..81fbc7a 100644 --- a/www-client/chromium/chromium-50.0.2661.102.ebuild +++ b/www-client/chromium/chromium-50.0.2661.102.ebuild @@ -5,7 +5,7 @@ EAPI="5" PYTHON_COMPAT=( python2_7 ) -CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he +CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_419 et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv sw ta te th tr uk vi zh_CN zh_TW" diff --git a/www-client/chromium/chromium-51.0.2704.22.ebuild b/www-client/chromium/chromium-51.0.2704.22.ebuild deleted file mode 100644 index 29cd475..000 --- a/www-client/chromium/chromium-51.0.2704.22.ebuild +++ /dev/null @@ -1,696 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he - hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr - sv sw ta te th tr uk vi zh_CN zh_TW" - -inherit check-reqs chromium eutils flag-o-matic multilib multiprocessing pax-utils \ - portability python-any-r1 readme.gentoo-r1 toolchain-funcs versionator virtualx - -DESCRIPTION="Open-source version of Google Chrome web browser" -HOMEPAGE="http://chromium.org/"; -SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz"; - -LICENSE="BSD hotwording? ( no-source-code )" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="cups gn gnome gnome-keyring gtk3 +hangouts hidpi hotwording kerberos neon pic +proprietary-codecs pulseaudio selinux +system-ffmpeg +tcmalloc widevine" -RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )" - -# TODO: bootstrapped gn binary
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: b4c580b4fd1f16da3a20349ba7b1c59752e13a34 Author: Mike Gilbert gentoo org> AuthorDate: Sat May 21 22:13:57 2016 + Commit: Mike Gilbert gentoo org> CommitDate: Sat May 21 22:13:57 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4c580b4 chromium.eclass: remove special-case for es_LA eclass/chromium.eclass | 16 ++-- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/eclass/chromium.eclass b/eclass/chromium.eclass index ae6a84b..5310251 100644 --- a/eclass/chromium.eclass +++ b/eclass/chromium.eclass @@ -64,23 +64,11 @@ if [[ ${CHROMIUM_LANGS} ]]; then fi _chromium_crlang() { - local x - for x in "$@"; do - case $x in - es_LA) echo es-419 ;; - *) echo "${x/_/-}" ;; - esac - done + echo "${@/_/-}" } _chromium_syslang() { - local x - for x in "$@"; do - case $x in - es-419) echo es_LA ;; - *) echo "${x/-/_}" ;; - esac - done + echo "${@/-/_}" } _chromium_strip_pak() {
[gentoo-commits] repo/gentoo:master commit in: dev-util/electron/
commit: 7c2815398fcdc8169ae4933adb9fefb9dd1e0199 Author: Mike Gilbert gentoo org> AuthorDate: Sat May 21 22:25:01 2016 + Commit: Mike Gilbert gentoo org> CommitDate: Sat May 21 22:25:01 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c281539 dev-util/electron: replace es_LA with es_419 Package-Manager: portage-2.2.28_p107_p880280 dev-util/electron/electron-0.36.12.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/electron/electron-0.36.12.ebuild b/dev-util/electron/electron-0.36.12.ebuild index 47691b7..6bb1381 100644 --- a/dev-util/electron/electron-0.36.12.ebuild +++ b/dev-util/electron/electron-0.36.12.ebuild @@ -5,7 +5,7 @@ EAPI="5" PYTHON_COMPAT=( python2_7 ) -CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he +CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_419 et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv sw ta te th tr uk vi zh_CN zh_TW"
[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome/, www-client/google-chrome-beta/, ...
commit: 41e5698d20107ca7b8918d10f9b53c9036828850 Author: Mike Gilbert gentoo org> AuthorDate: Sat May 21 22:19:55 2016 + Commit: Mike Gilbert gentoo org> CommitDate: Sat May 21 22:19:55 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e5698d www-client/google-chrome: replace es_LA with es_419 www-client/google-chrome-beta/google-chrome-beta-51.0.2704.54.ebuild| 2 +- .../google-chrome-unstable/google-chrome-unstable-52.0.2739.0.ebuild| 2 +- www-client/google-chrome/google-chrome-50.0.2661.102.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/www-client/google-chrome-beta/google-chrome-beta-51.0.2704.54.ebuild b/www-client/google-chrome-beta/google-chrome-beta-51.0.2704.54.ebuild index bc797d3..759c056 100644 --- a/www-client/google-chrome-beta/google-chrome-beta-51.0.2704.54.ebuild +++ b/www-client/google-chrome-beta/google-chrome-beta-51.0.2704.54.ebuild @@ -4,7 +4,7 @@ EAPI="6" -CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he +CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_419 et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv sw ta te th tr uk vi zh_CN zh_TW fake_bidi" diff --git a/www-client/google-chrome-unstable/google-chrome-unstable-52.0.2739.0.ebuild b/www-client/google-chrome-unstable/google-chrome-unstable-52.0.2739.0.ebuild index bc797d3..759c056 100644 --- a/www-client/google-chrome-unstable/google-chrome-unstable-52.0.2739.0.ebuild +++ b/www-client/google-chrome-unstable/google-chrome-unstable-52.0.2739.0.ebuild @@ -4,7 +4,7 @@ EAPI="6" -CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he +CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_419 et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv sw ta te th tr uk vi zh_CN zh_TW fake_bidi" diff --git a/www-client/google-chrome/google-chrome-50.0.2661.102.ebuild b/www-client/google-chrome/google-chrome-50.0.2661.102.ebuild index bc797d3..759c056 100644 --- a/www-client/google-chrome/google-chrome-50.0.2661.102.ebuild +++ b/www-client/google-chrome/google-chrome-50.0.2661.102.ebuild @@ -4,7 +4,7 @@ EAPI="6" -CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he +CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_419 et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv sw ta te th tr uk vi zh_CN zh_TW fake_bidi"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/CGI/
commit: 01e7ae8c45e8c8d29ac2789fd3f701ecd858e1b9 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 21:47:18 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 21:47:18 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e7ae8c dev-perl/CGI: Remove old Package-Manager: portage-2.3.0_rc1 dev-perl/CGI/CGI-4.220.0-r1.ebuild | 34 -- 1 file changed, 34 deletions(-) diff --git a/dev-perl/CGI/CGI-4.220.0-r1.ebuild b/dev-perl/CGI/CGI-4.220.0-r1.ebuild deleted file mode 100644 index b41f776..000 --- a/dev-perl/CGI/CGI-4.220.0-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -DIST_AUTHOR=LEEJO -DIST_VERSION=4.22 -inherit perl-module - -DESCRIPTION="Simple Common Gateway Interface Class" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test" - -RDEPEND=" - virtual/perl-Carp - virtual/perl-Encode - virtual/perl-Exporter - >=virtual/perl-File-Spec-0.820.0 - virtual/perl-File-Temp - >=dev-perl/HTML-Parser-3.690.0 - virtual/perl-if - >=virtual/perl-parent-0.225.0 -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - >=virtual/perl-Test-Simple-0.980.0 - dev-perl/Test-Warn - dev-perl/Test-NoWarnings - ) -"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/CGI/
commit: 5960753f49be0c3e9bcc9fb5d292b5764020cde2 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 21:46:13 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 21:46:13 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5960753f dev-perl/CGI: Add missing dependency, bug 571042 Package-Manager: portage-2.3.0_rc1 dev-perl/CGI/CGI-4.250.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-perl/CGI/CGI-4.250.0.ebuild b/dev-perl/CGI/CGI-4.250.0.ebuild index 6e45b87..17e1c00 100644 --- a/dev-perl/CGI/CGI-4.250.0.ebuild +++ b/dev-perl/CGI/CGI-4.250.0.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$ @@ -28,6 +28,7 @@ DEPEND="${RDEPEND} virtual/perl-ExtUtils-MakeMaker test? ( >=virtual/perl-Test-Simple-0.980.0 + dev-perl/Test-Deep dev-perl/Test-Warn dev-perl/Test-NoWarnings )
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Parse-Yapp/
commit: 83097f39a89c2c57cec6cb50389d64bb8126a212 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 21:37:53 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 21:40:30 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83097f39 dev-perl/Parse-Yapp: Block samba-4, bug 562918 Package-Manager: portage-2.3.0_rc1 dev-perl/Parse-Yapp/Parse-Yapp-1.50.0-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-perl/Parse-Yapp/Parse-Yapp-1.50.0-r1.ebuild b/dev-perl/Parse-Yapp/Parse-Yapp-1.50.0-r1.ebuild index e9face4..9882b7a 100644 --- a/dev-perl/Parse-Yapp/Parse-Yapp-1.50.0-r1.ebuild +++ b/dev-perl/Parse-Yapp/Parse-Yapp-1.50.0-r1.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$ @@ -14,6 +14,8 @@ SLOT="0" KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" +RDEPEND="!=net-fs/samba-4*" + src_install() { perl-module_src_install
[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/
commit: c2e9f6709312f4810c4108f263b03326604b835a Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 21:40:16 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 21:40:30 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2e9f670 net-fs/samba: Block dev-perl/Parse-Yapp, bug 562918. Samba upstream should fix their bundling fetish. Package-Manager: portage-2.3.0_rc1 net-fs/samba/samba-4.2.11.ebuild | 1 + net-fs/samba/samba-4.2.12.ebuild | 1 + net-fs/samba/samba-4.2.9.ebuild | 1 + net-fs/samba/samba-4.3.9.ebuild | 1 + net-fs/samba/samba-4.4.3.ebuild | 1 + 5 files changed, 5 insertions(+) diff --git a/net-fs/samba/samba-4.2.11.ebuild b/net-fs/samba/samba-4.2.11.ebuild index e831ea6..c404e53 100644 --- a/net-fs/samba/samba-4.2.11.ebuild +++ b/net-fs/samba/samba-4.2.11.ebuild @@ -80,6 +80,7 @@ DEPEND="${CDEPEND} RDEPEND="${CDEPEND} client? ( net-fs/cifs-utils[ads?] ) selinux? ( sec-policy/selinux-samba ) + !dev-perl/Parse-Yapp " REQUIRED_USE="addc? ( gnutls !system-mitkrb5 ) diff --git a/net-fs/samba/samba-4.2.12.ebuild b/net-fs/samba/samba-4.2.12.ebuild index 5e130d5..fa18542 100644 --- a/net-fs/samba/samba-4.2.12.ebuild +++ b/net-fs/samba/samba-4.2.12.ebuild @@ -80,6 +80,7 @@ DEPEND="${CDEPEND} RDEPEND="${CDEPEND} client? ( net-fs/cifs-utils[ads?] ) selinux? ( sec-policy/selinux-samba ) + !dev-perl/Parse-Yapp " REQUIRED_USE="addc? ( gnutls !system-mitkrb5 ) diff --git a/net-fs/samba/samba-4.2.9.ebuild b/net-fs/samba/samba-4.2.9.ebuild index 0d2e2f4..2fb9128 100644 --- a/net-fs/samba/samba-4.2.9.ebuild +++ b/net-fs/samba/samba-4.2.9.ebuild @@ -80,6 +80,7 @@ DEPEND="${CDEPEND} RDEPEND="${CDEPEND} client? ( net-fs/cifs-utils[ads?] ) selinux? ( sec-policy/selinux-samba ) + !dev-perl/Parse-Yapp " REQUIRED_USE="addc? ( gnutls !system-mitkrb5 ) diff --git a/net-fs/samba/samba-4.3.9.ebuild b/net-fs/samba/samba-4.3.9.ebuild index 0429f72..f58f54d 100644 --- a/net-fs/samba/samba-4.3.9.ebuild +++ b/net-fs/samba/samba-4.3.9.ebuild @@ -76,6 +76,7 @@ DEPEND="${CDEPEND} RDEPEND="${CDEPEND} client? ( net-fs/cifs-utils[ads?] ) selinux? ( sec-policy/selinux-samba ) + !dev-perl/Parse-Yapp " REQUIRED_USE="addc? ( gnutls !system-mitkrb5 ) diff --git a/net-fs/samba/samba-4.4.3.ebuild b/net-fs/samba/samba-4.4.3.ebuild index 11fa8ae..b865e71 100644 --- a/net-fs/samba/samba-4.4.3.ebuild +++ b/net-fs/samba/samba-4.4.3.ebuild @@ -75,6 +75,7 @@ DEPEND="${CDEPEND} RDEPEND="${CDEPEND} client? ( net-fs/cifs-utils[ads?] ) selinux? ( sec-policy/selinux-samba ) + !dev-perl/Parse-Yapp " REQUIRED_USE="addc? ( gnutls !system-mitkrb5 )
[gentoo-commits] proj/nxml-gentoo-schemas: New tag: nxml-gentoo-schemas-20160506
commit: Commit: Ulrich Müller gentoo org> CommitDate: Sat May 21 21:21:44 2016 + New tag: nxml-gentoo-schemas-20160506
[gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd/
commit: c068757391ff7d79fe9d9ceeb7d960da0661 Author: Matt Turner gentoo org> AuthorDate: Sat May 21 20:53:35 2016 + Commit: Matt Turner gentoo org> CommitDate: Sat May 21 21:04:43 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0687573 net-misc/dhcpcd: added alpha, bug 575240. net-misc/dhcpcd/dhcpcd-6.10.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/dhcpcd/dhcpcd-6.10.1.ebuild b/net-misc/dhcpcd/dhcpcd-6.10.1.ebuild index 38b38f9..ab2cb8b 100644 --- a/net-misc/dhcpcd/dhcpcd-6.10.1.ebuild +++ b/net-misc/dhcpcd/dhcpcd-6.10.1.ebuild @@ -11,7 +11,7 @@ else MY_P="${MY_P/_beta/-beta}" MY_P="${MY_P/_rc/-rc}" SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz"; - KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" + KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" S="${WORKDIR}/${MY_P}" fi
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Plucene/
commit: 86ff3320ea7003c1e790ff7090a823d0ea1c01ae Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 20:50:42 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 20:50:42 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86ff3320 dev-perl/Plucene: Sanitize dependencies and disable dysfunctional pod test Package-Manager: portage-2.3.0_rc1 dev-perl/Plucene/Plucene-1.250.0-r2.ebuild | 42 ++ 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/dev-perl/Plucene/Plucene-1.250.0-r2.ebuild b/dev-perl/Plucene/Plucene-1.250.0-r2.ebuild index 10ffab6..0122df8 100644 --- a/dev-perl/Plucene/Plucene-1.250.0-r2.ebuild +++ b/dev-perl/Plucene/Plucene-1.250.0-r2.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$ @@ -12,26 +12,34 @@ DESCRIPTION="Plucene - the Perl lucene port" SLOT="0" KEYWORDS="amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="virtual/perl-Memoize - dev-perl/Tie-Array-Sorted - dev-perl/Encode-compat - dev-perl/File-Slurp - dev-perl/Class-Virtual - dev-perl/Class-Accessor - virtual/perl-Time-Piece - virtual/perl-File-Spec - >=virtual/perl-Scalar-List-Utils-1.13 - dev-perl/Lingua-Stem - dev-perl/Bit-Vector-Minimal - dev-perl/IO-stringy" +IUSE="test" + +RDEPEND=" + >=dev-perl/Bit-Vector-Minimal-1.0.0 + virtual/perl-Carp + >=dev-perl/Class-Accessor-0.180.0 + >=dev-perl/Class-Virtual-0.30.0 + virtual/perl-Encode + virtual/perl-File-Spec + virtual/perl-IO + dev-perl/Lingua-Stem + >=virtual/perl-Scalar-List-Utils-1.130.0 + >=virtual/perl-Memoize-1.10.0 + >=dev-perl/Tie-Array-Sorted-1.100.0 + virtual/perl-Time-Piece + dev-perl/Encode-compat + dev-perl/File-Slurp + dev-perl/IO-stringy +" DEPEND="${RDEPEND} - >=virtual/perl-Test-Harness-2.30 - >=dev-perl/Module-Build-0.28" + >=dev-perl/Module-Build-0.280.0 + test? ( >=virtual/perl-Test-Harness-2.300.0 ) +" SRC_TEST="do" +PERL_RM_FILES=( t/99_pod.t ) + src_install() { perl-module_src_install rm -rf "${ED}"/usr/bin
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-Exception/
commit: b6386c67119190d048a984a6cda748b5e0ab0825 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 19:56:45 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 19:56:45 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6386c67 dev-perl/Test-Exception: Remove old Package-Manager: portage-2.3.0_rc1 dev-perl/Test-Exception/Manifest | 2 -- .../Test-Exception/Test-Exception-0.380.0.ebuild | 27 .../Test-Exception/Test-Exception-0.400.0.ebuild | 29 -- 3 files changed, 58 deletions(-) diff --git a/dev-perl/Test-Exception/Manifest b/dev-perl/Test-Exception/Manifest index 727fd58..f539778 100644 --- a/dev-perl/Test-Exception/Manifest +++ b/dev-perl/Test-Exception/Manifest @@ -1,4 +1,2 @@ DIST Test-Exception-0.32.tar.gz 18131 SHA256 ba4427e6004797ece8dce93c61d1d6c82df891b0f017e7d4a5c2505fa05c5a47 SHA512 fd394c2e3d24fc822810b77bd3bfe12ca75f59519ac0a0307f028be84a48386d12273967f0431f8c3a6671762c6426523420f620621ba7332c3268bc3a0706af WHIRLPOOL db6bdfbd4d1d45991ee9ecd78af37cc19911620a585a3284716faf3f80458194956ee8339a738fd3723b5b428bca4d70cff4467e30a3ce1b719c3a60239414d0 -DIST Test-Exception-0.38.tar.gz 15349 SHA256 7c6aa4c208c043c38631e2af8d28abf76d32a3dcd2ff4a94591f009a6ed3eab5 SHA512 9c0176e8d5bcf803ccec4e980ebc6057f15b5cd40c4df422c1e5a87db7df8f18f5f623340190ac9010b67eba7c0c1a1ede83b54ea18dca704d937d5bcb8c6d78 WHIRLPOOL e807354608b3eecb4f9d4806e6862f12d389a830f311a916da089c49023332382f7de82c94da4a81369f3f6d8a2c72a26882f04b6096d15249ba0e16aef46b52 -DIST Test-Exception-0.40.tar.gz 14801 SHA256 d92ccb566d93140abc93b07ec4c13e9b14c8f8f7d7858a2ab575d83b3bb51b26 SHA512 cf85ef0d1991b0797a5823f827a9ad33ceac78f163b97afab19e9c3a11e3cf7505c5a37518dadb5636db42f0337f53df8e0045a5f3fe2200159ee4d83a591902 WHIRLPOOL b141d86bda79b30ad3f040f63d65e34e119b463f1b0f4c0e591a8d42b1149ff3554f6537477278ffc36549451a9634195d512c3fc6249b50e3088b8e1cadbe7d DIST Test-Exception-0.43.tar.gz 15204 SHA256 156b13f07764f766d8b45a43728f2439af81a3512625438deab783b7883eb533 SHA512 f5ab65ce7b142ab7a96b0075838826a7f6b975a151a285e00d99db307bea07b359d5ca44eb678ba93d97b2ae37a112f0002ae1c06bb6e5654b80ce8c5473aa20 WHIRLPOOL 9bcf713fb22f63439e6823c6ae5dbda07e0c7699b00140d2098a956beebe2809607419d649d1ef67614d434e2276523c2716b04715dc94af901f2924d9180376 diff --git a/dev-perl/Test-Exception/Test-Exception-0.380.0.ebuild b/dev-perl/Test-Exception/Test-Exception-0.380.0.ebuild deleted file mode 100644 index 7f49ab6..000 --- a/dev-perl/Test-Exception/Test-Exception-0.380.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=ETHER -MODULE_VERSION=0.38 -inherit perl-module - -DESCRIPTION="Test functions for exception based code" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RDEPEND=" - virtual/perl-Carp - virtual/perl-Exporter - >=dev-perl/Sub-Uplevel-0.180.0 - virtual/perl-Test-Simple -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker -" - -SRC_TEST="do" diff --git a/dev-perl/Test-Exception/Test-Exception-0.400.0.ebuild b/dev-perl/Test-Exception/Test-Exception-0.400.0.ebuild deleted file mode 100644 index d5dfedd..000 --- a/dev-perl/Test-Exception/Test-Exception-0.400.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=EXODIST -MODULE_VERSION=0.40 -inherit perl-module - -DESCRIPTION="Test functions for exception based code" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="test" - -RDEPEND=" - virtual/perl-Carp - virtual/perl-Exporter - >=dev-perl/Sub-Uplevel-0.180.0 - virtual/perl-Test-Simple - >=virtual/perl-Test-Harness-2.30.0 -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( virtual/perl-Test-Simple ) -" - -SRC_TEST="do parallel"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-Inline/
commit: 17f1cf3864bb9edc599f93646535397bf7aae3c9 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 20:00:47 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 20:00:47 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17f1cf38 dev-perl/Test-Inline: Remove old Package-Manager: portage-2.3.0_rc1 dev-perl/Test-Inline/Manifest | 1 - dev-perl/Test-Inline/Test-Inline-2.212.0-r1.ebuild | 34 -- 2 files changed, 35 deletions(-) diff --git a/dev-perl/Test-Inline/Manifest b/dev-perl/Test-Inline/Manifest index 465a7b1..1f35e97 100644 --- a/dev-perl/Test-Inline/Manifest +++ b/dev-perl/Test-Inline/Manifest @@ -1,2 +1 @@ -DIST Test-Inline-2.212.tar.gz 60795 SHA256 01fbf7446a8914f091f6de568dd8c56c128a97c3abb80830442c849a451fc21b SHA512 4617e6811568991fad97db22ad7ba4abfe1f38bd2cab7999b8f53db55a23b12ff770b67e38c58dea35e579db75554781a173d6eb74c0acfdf5312cf8878a0a1c WHIRLPOOL ac0d44d7bd4f6b33ecf142ed4eead7d34b0fe0a798039e0bcbff80426ab6bb44f72ec3d00c23dee01bfcde64e007ce5c6170fac9179374507552ff9afaf2a864 DIST Test-Inline-2.213.tar.gz 61649 SHA256 cc76088b8e12d509b89ebe7826dfbb588ee1dd8d1b5eb07a0c37425f04e301b4 SHA512 2d5772b515a0c7260c8591a56f640ebb41ce91e32380ae46636f2e85b3c56656fcbf75a1b859e30bb437b9bdcaaf268b943cb1332365173ff413d15f6761b4a4 WHIRLPOOL cb6b60f625c4ab41aea5662de7c7053db685f677ba902aca81ce76b56d0839ffdb0d14645702c655d19427ab9887fb7d5b4afb677e0917ff82d1553eada0260e diff --git a/dev-perl/Test-Inline/Test-Inline-2.212.0-r1.ebuild b/dev-perl/Test-Inline/Test-Inline-2.212.0-r1.ebuild deleted file mode 100644 index e25d728..000 --- a/dev-perl/Test-Inline/Test-Inline-2.212.0-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=ADAMK -MODULE_VERSION=2.212 -inherit perl-module - -DESCRIPTION="Inline test suite support for Perl" - -SLOT="0" -KEYWORDS="amd64 hppa ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="test" - -RDEPEND=" - >=dev-perl/Algorithm-Dependency-1.02 - >=dev-perl/Config-Tiny-2.00 - >=dev-perl/File-Find-Rule-0.26 - >=dev-perl/File-Flat-1.00 - dev-perl/File-Remove - >=dev-perl/File-Slurp-.04 - >=virtual/perl-File-Spec-0.80 - dev-perl/File-chmod - >=dev-perl/Params-Util-0.05 - >=dev-perl/Pod-Tests-0.18 - virtual/perl-Test-Simple" -DEPEND="${RDEPEND} - test? ( - dev-perl/Test-Script - >=dev-perl/Test-ClassAPI-1.02 )" - -SRC_TEST="do"
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 3bcfb71425f15e237d6002ff3626e2e169df3f05 Author: Mike Gilbert gentoo org> AuthorDate: Fri May 6 13:25:50 2016 + Commit: Michał Górny gentoo org> CommitDate: Sat May 21 19:39:53 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bcfb714 distutils-r1.eclass: Do not modify the HOME variable This was only necessary when we ran phases in parallel. Also, PMS says this variable should not be modified. eclass/distutils-r1.eclass | 6 -- 1 file changed, 6 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index afd29ed..dbc55ff 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -632,12 +632,6 @@ distutils-r1_run_phase() { # in the sys.path_importer_cache) mkdir -p "${BUILD_DIR}/lib" || die - # We need separate home for each implementation, for .pydistutils.cfg. - if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then - local -x HOME=${HOME}/${EPYTHON} - mkdir -p "${HOME}" || die - fi - # Set up build environment, bug #513664. local -x AR=${AR} CC=${CC} CPP=${CPP} CXX=${CXX} tc-export AR CC CPP CXX
[gentoo-commits] repo/gentoo:master commit in: app-admin/eclean-kernel/
commit: c386256b252aab2e880e89deeed01b078c640662 Author: Michał Górny gentoo org> AuthorDate: Sat May 21 19:34:11 2016 + Commit: Michał Górny gentoo org> CommitDate: Sat May 21 19:38:36 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c386256b app-admin/eclean-kernel: Version bump app-admin/eclean-kernel/Manifest | 1 + app-admin/eclean-kernel/eclean-kernel-0.4.2.ebuild | 19 +++ 2 files changed, 20 insertions(+) diff --git a/app-admin/eclean-kernel/Manifest b/app-admin/eclean-kernel/Manifest index b889dc8..dc2e4ff 100644 --- a/app-admin/eclean-kernel/Manifest +++ b/app-admin/eclean-kernel/Manifest @@ -1,2 +1,3 @@ DIST eclean-kernel-0.4.1.tar.bz2 9540 SHA256 be877b4a9686abb665077e32e22dee7ad85bb5514f3db5ac6e179d3d3bc92dbb SHA512 8274c299221a1472b9408a8f3bbe547daba1c6377594ac0f5a6c5874a35235977b8b956232952d4b14296d11ebe2bd91c547ddd4de42dc2ed5f7f13970c8f15f WHIRLPOOL 49990795ae8061423985c8a96e213062124a1f5258872a26ad259835d1bf4aff44d3a621cdde74161fa801673c4e1995e69b466b77e6dcbad0130b19e65eadfe +DIST eclean-kernel-0.4.2.tar.bz2 9666 SHA256 42df20f9117707e48973a362b262093c1de239b27190e75b60576de0ef9e82d4 SHA512 6a69cfd54ee72a13a3a1a6ca460d73377170ef7731d3598b7cb1fc6263c95cd64dfbe0f260d1a8739d7c032e431523493a1fc8032bd92d1a537e672eb7436dec WHIRLPOOL a78c52c74ec071984634dae64ab42bde0660e90d8d418b205fe4ed0f01f6386c1529c5b8da35b5982a8b9c75338877e8031fd5a27dfa032f2e54df9c4e21fa55 DIST eclean-kernel-0.4.tar.bz2 9408 SHA256 be9d85fcb0c0cd4c70b3e3e7793bcacf9673faf9069356ef0af9661c050cf928 SHA512 f7f4a1a910594bb28bf37792c87a7ee96daecea006376cf98d0eeeb4d4c3c2a59e46fd986a5c7d34d0a54520bef58b225a498f926d4858d5ba2a4d3941ed3f36 WHIRLPOOL 3f8a168562082a12de34d5cca1e8fda2a5730607678bea55ff5c68f96399e3500681efccfe16201017f510ef916376b9da2495b39913ae5183f81ed8fae97b57 diff --git a/app-admin/eclean-kernel/eclean-kernel-0.4.2.ebuild b/app-admin/eclean-kernel/eclean-kernel-0.4.2.ebuild new file mode 100644 index 000..0474a6a --- /dev/null +++ b/app-admin/eclean-kernel/eclean-kernel-0.4.2.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Remove outdated built kernels" +HOMEPAGE="https://bitbucket.org/mgorny/eclean-kernel/"; +SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2"; + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="kernel_linux? ( dev-python/pymountboot[${PYTHON_USEDEP}] )"
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 9f10af2ddb28388fb8150ae545f1f028ad998dce Author: Michał Górny gentoo org> AuthorDate: Sun May 15 09:25:51 2016 + Commit: Michał Górny gentoo org> CommitDate: Sat May 21 19:38:36 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f10af2d distutils-r1.eclass: Do not apply patches if DISTUTILS_OPTIONAL is used Do not apply PATCHES and user patches (either via the EAPI 6 default or pre-EAPI 5 code) when DISTUTILS_OPTIONAL is being used. In this case, distutils functions are usually called conditionally, in a subdirectory, while both PATCHES and user patches are usually intended to be applied top-level. There is no ebuild relying on distutils-r1_src_prepare applying patches with DISTUTILS_OPTIONAL. In fact, there are ebuilds which work around this behavior. eclass/distutils-r1.eclass | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index e8de5ad..afd29ed 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -315,11 +315,13 @@ _distutils-r1_disable_ez_setup() { distutils-r1_python_prepare_all() { debug-print-function ${FUNCNAME} "${@}" - if [[ ${EAPI} != [45] ]]; then - default - else - [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" - epatch_user + if [[ ! ${DISTUTILS_OPTIONAL} ]]; then + if [[ ${EAPI} != [45] ]]; then + default + else + [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" + epatch_user + fi fi # by default, use in-source build if python_prepare() is used
[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-FeedPP/
commit: e9543fc97e7422f0eac0b757b391b8e92a3df723 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 21 19:30:36 2016 + Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 21 19:30:47 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9543fc9 dev-perl/XML-FeedPP: New package Package-Manager: portage-2.3.0_rc1 dev-perl/XML-FeedPP/Manifest | 1 + dev-perl/XML-FeedPP/XML-FeedPP-0.430.0.ebuild | 23 +++ dev-perl/XML-FeedPP/metadata.xml | 8 3 files changed, 32 insertions(+) diff --git a/dev-perl/XML-FeedPP/Manifest b/dev-perl/XML-FeedPP/Manifest new file mode 100644 index 000..fd08a91 --- /dev/null +++ b/dev-perl/XML-FeedPP/Manifest @@ -0,0 +1 @@ +DIST XML-FeedPP-0.43.tar.gz 42762 SHA256 08852413e012a798f92ec4bc9f4d485305b96983f6bfe891979aaa63420e2352 SHA512 5e027ffac1308e78c4098c5d72f8ac1c484dec7f7a0cbe74d49df9a513de5eeab5bfc345571ed68344465ccb24b031ede24a3e0236a5deffdb1addbf57a2d80f WHIRLPOOL 8744a6e2ba88ada1d2e70f996f8aed155cd116b75129db3f90f686e1924ebefee82dddb89cfa7e040598e510bed3796eaf203d2e6d823ddf5e8e75707d3d6110 diff --git a/dev-perl/XML-FeedPP/XML-FeedPP-0.430.0.ebuild b/dev-perl/XML-FeedPP/XML-FeedPP-0.430.0.ebuild new file mode 100644 index 000..16de4a6 --- /dev/null +++ b/dev-perl/XML-FeedPP/XML-FeedPP-0.430.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_VERSION=0.43 +DIST_AUTHOR=KAWASAKI +inherit perl-module + +DESCRIPTION="Parse/write/merge/edit RSS/RDF/Atom syndication feeds" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-perl/XML-TreePP-0.390.0 +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( virtual/perl-Test-Simple ) +" diff --git a/dev-perl/XML-FeedPP/metadata.xml b/dev-perl/XML-FeedPP/metadata.xml new file mode 100644 index 000..8ad3d950 --- /dev/null +++ b/dev-perl/XML-FeedPP/metadata.xml @@ -0,0 +1,8 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + +p...@gentoo.org +Gentoo Perl Project + +
[gentoo-commits] repo/gentoo:master commit in: dev-vcs/kdesvn/
commit: 3b2941f2173ac2cdfd69bbcf076e6e60526542ed Author: Johannes Huber gentoo org> AuthorDate: Sat May 21 19:31:09 2016 + Commit: Johannes Huber gentoo org> CommitDate: Sat May 21 19:31:24 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b2941f2 dev-vcs/kdesvn: Indention Package-Manager: portage-2.3.0_rc1 dev-vcs/kdesvn/metadata.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-vcs/kdesvn/metadata.xml b/dev-vcs/kdesvn/metadata.xml index 4ada27b..2fdbf33 100644 --- a/dev-vcs/kdesvn/metadata.xml +++ b/dev-vcs/kdesvn/metadata.xml @@ -1,7 +1,7 @@ http://www.gentoo.org/dtd/metadata.dtd";> - + k...@gentoo.org Gentoo KDE Project
[gentoo-commits] repo/gentoo:master commit in: dev-util/cmake/, dev-util/cmake/files/
commit: aeefe0ac126a66ccdbb482cd24a035ca486aa54d Author: Michael Palimaka gentoo org> AuthorDate: Sat May 21 18:36:23 2016 + Commit: Michael Palimaka gentoo org> CommitDate: Sat May 21 18:36:50 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeefe0ac dev-util/cmake: fix build of Qt4-based applications on prefix Gentoo-bug: 582242 Package-Manager: portage-2.2.28 dev-util/cmake/cmake-3.5.2-r1.ebuild | 198 + dev-util/cmake/files/cmake-3.5.2-FindQt4.patch | 45 ++ 2 files changed, 243 insertions(+) diff --git a/dev-util/cmake/cmake-3.5.2-r1.ebuild b/dev-util/cmake/cmake-3.5.2-r1.ebuild new file mode 100644 index 000..315190d --- /dev/null +++ b/dev-util/cmake/cmake-3.5.2-r1.ebuild @@ -0,0 +1,198 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +CMAKE_REMOVE_MODULES="no" +inherit bash-completion-r1 elisp-common toolchain-funcs eutils versionator cmake-utils virtualx + +MY_P="${P/_/-}" + +DESCRIPTION="Cross platform Make" +HOMEPAGE="http://www.cmake.org/"; +SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz" + +LICENSE="CMake" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="doc emacs system-jsoncpp ncurses qt4 qt5" + +RDEPEND=" + >=app-arch/libarchive-3.0.0:= + >=dev-libs/expat-2.0.1 + >=net-misc/curl-7.21.5[ssl] + sys-libs/zlib + virtual/pkgconfig + emacs? ( virtual/emacs ) + ncurses? ( sys-libs/ncurses:0= ) + qt4? ( + dev-qt/qtcore:4 + dev-qt/qtgui:4 + ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ) + system-jsoncpp? ( >=dev-libs/jsoncpp-0.6.0_rc2:0= ) +" +DEPEND="${RDEPEND} + doc? ( dev-python/sphinx ) +" + +S="${WORKDIR}/${MY_P}" + +SITEFILE="50${PN}-gentoo.el" + +CMAKE_BINARY="${S}/Bootstrap.cmk/cmake" + +PATCHES=( + # prefix + "${FILESDIR}"/${PN}-3.4.0_rc1-darwin-bundle.patch + "${FILESDIR}"/${PN}-3.0.0-prefix-dirs.patch + "${FILESDIR}"/${PN}-3.1.0-darwin-isysroot.patch + + # handle gentoo packaging in find modules + "${FILESDIR}"/${PN}-2.8.12.1-FindImageMagick.patch + "${FILESDIR}"/${PN}-3.0.0-FindBLAS.patch + "${FILESDIR}"/${PN}-3.0.0-FindBoost-python.patch + "${FILESDIR}"/${PN}-3.0.2-FindLAPACK.patch + "${FILESDIR}"/${PN}-3.5.2-FindQt4.patch + + # respect python eclasses + "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch + "${FILESDIR}"/${PN}-3.1.0-FindPythonInterp.patch + + # upstream fixes (can usually be removed with a version bump) +) + +cmake_src_bootstrap() { + # Cleanup args to extract only JOBS. + # Because bootstrap does not know anything else. + echo ${MAKEOPTS} | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' > /dev/null + if [ $? -eq 0 ]; then + par_arg=$(echo ${MAKEOPTS} | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' | tail -n1 | egrep -o '[[:digit:]]+') + par_arg="--parallel=${par_arg}" + else + par_arg="--parallel=1" + fi + + # execinfo.h on Solaris isn't quite what it is on Darwin + if [[ ${CHOST} == *-solaris* ]] ; then + sed -i -e 's/execinfo\.h/blablabla.h/' Source/kwsys/CMakeLists.txt || die + fi + + tc-export CC CXX LD + + # bootstrap script isn't exactly /bin/sh compatible + ${CONFIG_SHELL:-sh} ./bootstrap \ + --prefix="${T}/cmakestrap/" \ + ${par_arg} \ + || die "Bootstrap failed" +} + +cmake_src_test() { + # fix OutDir and SelectLibraryConfigurations tests + # these are altered thanks to our eclass + sed -i -e 's:#IGNORE ::g' \ + "${S}"/Tests/{OutDir,CMakeOnly/SelectLibraryConfigurations}/CMakeLists.txt \ + || die + + pushd "${BUILD_DIR}" > /dev/null + + local ctestargs + [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" + + # Excluded tests: + #BootstrapTest: we actualy bootstrap it every time so why test it. + #BundleUtilities: bundle creation broken + #CTest.updatecvs: which fails to commit as root + #Fortran: requires fortran + #Qt4Deploy, which tries to break sandbox and ignores prefix + #TestUpload, which requires network access + "${BUILD_DIR}"/bin/ctest ${ctestargs} \ + -E "(BootstrapTest|BundleUtilities|CTest.UpdateCVS|Fortran|Qt4Deploy|TestUpload)" \ + || die "Tests failed" + +
[gentoo-commits] proj/kde:master commit in: dev-util/kdevelop/
commit: bf2314b101c1065be873c086131211246119b301 Author: Andreas Sturmlechner gmail com> AuthorDate: Mon May 16 20:04:07 2016 + Commit: Michael Palimaka gentoo org> CommitDate: Sat May 21 18:32:00 2016 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bf2314b1 dev-util/kdevelop: Fix dependencies, add USE=gdbui,okteta Package-Manager: portage-2.2.28 dev-util/kdevelop/kdevelop-5.0..ebuild | 21 - dev-util/kdevelop/kdevelop-.ebuild | 21 - dev-util/kdevelop/metadata.xml | 2 ++ 3 files changed, 34 insertions(+), 10 deletions(-) diff --git a/dev-util/kdevelop/kdevelop-5.0..ebuild b/dev-util/kdevelop/kdevelop-5.0..ebuild index 75a1014..7f88965 100644 --- a/dev-util/kdevelop/kdevelop-5.0..ebuild +++ b/dev-util/kdevelop/kdevelop-5.0..ebuild @@ -6,31 +6,36 @@ EAPI=6 EGIT_BRANCH="5.0" KDE_HANDBOOK="forceoptional" +KDE_TEST="true" VIRTUALX_REQUIRED="test" inherit kde5 DESCRIPTION="Integrated Development Environment, supporting KDE/Qt, C/C++ and much more" LICENSE="GPL-2 LGPL-2" -IUSE="+clang +cmake +cxx debug +ninja +plasma +qmake qthelp" +IUSE="+clang +cmake +cxx +gdbui +ninja okteta +plasma +qmake qthelp" KEYWORDS="" -# TODO: disabled upstream -# okteta? ( $(add_kdeapps_dep okteta) ) DEPEND=" + $(add_frameworks_dep kcmutils) $(add_frameworks_dep kcompletion) $(add_frameworks_dep kconfig) $(add_frameworks_dep kconfigwidgets) $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) $(add_frameworks_dep kdeclarative) $(add_frameworks_dep ki18n) $(add_frameworks_dep kiconthemes) $(add_frameworks_dep kio) + $(add_frameworks_dep kitemmodels) $(add_frameworks_dep kitemviews) $(add_frameworks_dep kjobwidgets) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep knotifyconfig) $(add_frameworks_dep kparts) $(add_frameworks_dep kservice) $(add_frameworks_dep ktexteditor) $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) $(add_frameworks_dep kxmlgui) $(add_frameworks_dep threadweaver) $(add_qt_dep qtdbus) @@ -40,7 +45,10 @@ DEPEND=" $(add_qt_dep qtwebkit) $(add_qt_dep qtwidgets) >=dev-util/kdevplatform-${PV}:5 + x11-misc/shared-mime-info cxx? ( clang? ( >=sys-devel/clang-3.5.0 ) ) + gdbui? ( $(add_plasma_dep ksysguard) ) + okteta? ( $(add_kdeapps_dep okteta) ) plasma? ( $(add_frameworks_dep krunner) $(add_frameworks_dep plasma) @@ -54,10 +62,10 @@ RDEPEND="${DEPEND} cxx? ( >=sys-devel/gdb-7.0[python] ) ninja? ( dev-util/ninja ) !dev-util/kdevelop:4 + !dev-util/kdevelop-clang !dev-util/kdevelop-qmake !dev-util/kdevelop-qmljs !=dev-util/kdevplatform-${PV}:5 + x11-misc/shared-mime-info cxx? ( clang? ( >=sys-devel/clang-3.5.0 ) ) + gdbui? ( $(add_plasma_dep ksysguard) ) + okteta? ( $(add_kdeapps_dep okteta) ) plasma? ( $(add_frameworks_dep krunner) $(add_frameworks_dep plasma) @@ -53,10 +61,10 @@ RDEPEND="${DEPEND} cxx? ( >=sys-devel/gdb-7.0[python] ) ninja? ( dev-util/ninja ) !dev-util/kdevelop:4 + !dev-util/kdevelop-clang !dev-util/kdevelop-qmake !dev-util/kdevelop-qmljs ! Prefer sys-devel/clang C++ backend over legacy Enable support for CMake build system + Enable GUI for attaching GDB to a running process Enable support for Ninja build system + Enable hex editor plugin via kde-apps/okteta Enable support for QMake build system Enable support for QtHelp documentation browsing
[gentoo-commits] repo/gentoo:master commit in: kde-base/kdelibs/, kde-base/kdelibs/files/
commit: 940f9abe893ef064fb6617a6242c62305ad75f87 Author: gtkgfxp gmx com> AuthorDate: Sat May 21 18:25:35 2016 + Commit: Michael Palimaka gentoo org> CommitDate: Sat May 21 18:27:31 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=940f9abe kde-base/kdelibs: fix build on prefix Gentoo-bug: 583506 Package-Manager: portage-2.2.28 .../kdelibs/files/kdelibs-4.14.20-FindQt4.patch| 39 +++ kde-base/kdelibs/kdelibs-4.14.20-r1.ebuild | 300 + 2 files changed, 339 insertions(+) diff --git a/kde-base/kdelibs/files/kdelibs-4.14.20-FindQt4.patch b/kde-base/kdelibs/files/kdelibs-4.14.20-FindQt4.patch new file mode 100644 index 000..2325fb1 --- /dev/null +++ b/kde-base/kdelibs/files/kdelibs-4.14.20-FindQt4.patch @@ -0,0 +1,39 @@ +Ensure that the correct version of Qt is always used. + +With the introduction qt-4.8.6, Qt binaries were moved from /usr/bin to +/usr/$(get_libdir)/qt4/bin, leaving behind in their place symlinks to qtchooser. + +There is no guarantee to which version of Qt these symlinks might point, so it +is necessary to find the correct version explicitly. + +Once qmake is found, it is queried for the correct location of all other items. + +Gentoo-bug: 562746 +Gentoo-bug: 583506 + +--- a/cmake/modules/FindQt4.cmake b/cmake/modules/FindQt4.cmake +@@ -446,6 +446,15 @@ GET_FILENAME_COMPONENT(qt_install_version "[HKEY_CURRENT_USER\\Software\\trollte + # check for qmake + # Debian uses qmake-qt4 + # macports' Qt uses qmake-mac ++if(CMAKE_BUILD_TYPE STREQUAL Gentoo) ++ find_program(QT_QMAKE_EXECUTABLE NAMES qmake ++PATHS ++ $ENV{EPREFIX}/usr/${CMAKE_INSTALL_LIBDIR}/qt4/bin ++ $ENV{EPREFIX}/usr/bin ++ NO_DEFAULT_PATH ++DOC "The qmake executable for the Qt installation to use" ++ ) ++else() + FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake qmake4 qmake-qt4 qmake-mac PATHS + "[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\4.0.0;InstallDir]/bin" + "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\4.0.0;InstallDir]/bin" +@@ -453,6 +462,7 @@ FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake qmake4 qmake-qt4 qmake-mac PATHS + $ENV{QTDIR}/bin + DOC "The qmake executable for the Qt installation to use" + ) ++endif() + + IF (QT_QMAKE_EXECUTABLE) + diff --git a/kde-base/kdelibs/kdelibs-4.14.20-r1.ebuild b/kde-base/kdelibs/kdelibs-4.14.20-r1.ebuild new file mode 100644 index 000..7efa698 --- /dev/null +++ b/kde-base/kdelibs/kdelibs-4.14.20-r1.ebuild @@ -0,0 +1,300 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +CMAKE_MIN_VERSION="3.3.1-r1" +CPPUNIT_REQUIRED="optional" +DECLARATIVE_REQUIRED="always" +OPENGL_REQUIRED="optional" +KDE_HANDBOOK="optional" +inherit kde4-base fdo-mime multilib toolchain-funcs flag-o-matic + +EGIT_BRANCH="KDE/4.14" +APPS_VERSION="16.04.1" # Don't forget to bump this + +DESCRIPTION="KDE libraries needed by all KDE programs" +[[ ${KDE_BUILD_TYPE} != live ]] && \ +SRC_URI="mirror://kde/stable/applications/${APPS_VERSION}/src/${P}.tar.xz" + +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +LICENSE="LGPL-2.1" +IUSE="cpu_flags_x86_3dnow acl altivec +bzip2 +crypt debug doc fam jpeg2k +kerberos libressl lzma cpu_flags_x86_mmx nls openexr +policykit spell +cpu_flags_x86_sse cpu_flags_x86_sse2 ssl +udev +udisks +upower zeroconf" + +REQUIRED_USE=" + udisks? ( udev ) + upower? ( udev ) +" + +# needs the kate regression testsuite from svn +RESTRICT="test" + +COMMONDEPEND=" + >=app-misc/strigi-0.7.7 + app-text/docbook-xml-dtd:4.2 + app-text/docbook-xsl-stylesheets + >=dev-libs/libattica-0.4.2 + >=dev-libs/libdbusmenu-qt-0.3.2[qt4(+)] + dev-libs/libpcre[unicode] + dev-libs/libxml2 + dev-libs/libxslt + media-libs/fontconfig + media-libs/freetype:2 + media-libs/giflib:= + media-libs/libpng:0= + media-libs/phonon[qt4] + sys-libs/zlib + virtual/jpeg:0 + >=x11-misc/shared-mime-info-0.60 + acl? ( virtual/acl ) + !aqua? ( + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau + x11-libs/libXcursor + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXft + x11-libs/libXpm + x11-libs/libXrender + x11-libs/libXScrnSaver + x11-libs/libXtst + !kernel_SunOS? ( + || ( + sys-libs/libutempter + >=sys-freebsd/freebsd-lib-9.0 + ) + ) + ) + bzip2? ( app-arch/bzip2 ) + crypt? ( app-crypt/qca:2[qt4(+)] ) + fam? ( virtual/fam ) + jpeg2k? ( media-libs/jasper ) + kerberos? ( virt
[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/, sys-boot/grub/files/
commit: 2e55308331d26b93a2dd2a0b6be1760db27e40d4 Author: Magnus Granberg gentoo org> AuthorDate: Sat May 21 17:57:34 2016 + Commit: Magnus Granberg gentoo org> CommitDate: Sat May 21 17:59:12 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e553083 sys-boot/grub-2.02_beta3 Add fix for gcc-6.1.0[pie] #583042 Package-Manager: portage-2.2.27 .../grub/files/2.02_beta3-gcc6-ld-no-pie.patch | 57 ++ sys-boot/grub/grub-2.02_beta3-r1.ebuild| 1 + 2 files changed, 58 insertions(+) diff --git a/sys-boot/grub/files/2.02_beta3-gcc6-ld-no-pie.patch b/sys-boot/grub/files/2.02_beta3-gcc6-ld-no-pie.patch new file mode 100644 index 000..0d81415 --- /dev/null +++ b/sys-boot/grub/files/2.02_beta3-gcc6-ld-no-pie.patch @@ -0,0 +1,57 @@ +2016-05-21 Magnus Granberg + + #583042 sys-boot/grub-2.02_beta3-r1: building w/gcc-6[pie]: error: + x86_64-pc-linux-gnu/bin/ld: -r and -shared may not be used together + + * acinclude.m4: Add -no-pie check. + * configure.ac: Add -no-pie to TARGET_LDFLAGS if needed. + +--- a/acinclude.m4 2015-11-11 20:56:52.0 +0100 b/acinclude.m4 2016-05-17 00:08:22.0 +0200 +@@ -390,6 +390,24 @@ else + [fi] + ]) + ++dnl Check if the Linker supports `-no-pie'. ++AC_DEFUN([grub_CHECK_NO_PIE], ++[AC_MSG_CHECKING([whether linker accepts -no-pie]) ++AC_CACHE_VAL(grub_cv_cc_ld_nopie, ++[save_LDFLAGS="$LDFLAGS" ++LDFLAGS="$LDFLAGS -no-pie" ++AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])], ++ [grub_cv_cc_ld_no_pie=yes], ++ [grub_cv_cc_ld_no_pie=no]) ++LDFLAGS="$save_LDFLAGS" ++]) ++AC_MSG_RESULT([$grub_cv_cc_ld_no_pie]) ++nopie_possible=no ++if test "x$grub_cv_cc_ld_no_pie" = xyes ; then ++ nopie_possible=yes ++fi ++]) ++ + dnl Check if the C compiler supports `-fPIC'. + AC_DEFUN([grub_CHECK_PIC],[ + [# Position independent executable. +--- a/configure.ac 2016-02-27 13:40:56.0 +0100 b/configure.ac 2016-05-17 00:57:29.47100 +0200 +@@ -1184,13 +1184,18 @@ CFLAGS="$TARGET_CFLAGS" + + # Position independent executable. + grub_CHECK_PIE ++grub_CHECK_NO_PIE + [# Need that, because some distributions ship compilers that include +-# `-fPIE' in the default specs. ++# `-fPIE' and '-pie' in the default specs. + if [ x"$pie_possible" = xyes ]; then + TARGET_CFLAGS="$TARGET_CFLAGS -fno-PIE" ++fi ++if [ x"$nopie_possible" = xyes ] && [ x"$pie_possible" = xyes ]; then ++ TARGET_LDFLAGS="$TARGET_LDFLAGS -no-pie" + fi] + + CFLAGS="$TARGET_CFLAGS" ++LDFLAGS="$TARGET_LDFLAGS" + + # Position independent executable. + grub_CHECK_PIC diff --git a/sys-boot/grub/grub-2.02_beta3-r1.ebuild b/sys-boot/grub/grub-2.02_beta3-r1.ebuild index ab05794..7fd67ee 100644 --- a/sys-boot/grub/grub-2.02_beta3-r1.ebuild +++ b/sys-boot/grub/grub-2.02_beta3-r1.ebuild @@ -35,6 +35,7 @@ PATCHES=( "${FILESDIR}"/grub-2.02_beta2-KERNEL_GLOBS.patch "${FILESDIR}"/2.02_beta3-10_linux-UUID.patch "${FILESDIR}"/2.02_beta3-sysmacros.patch + "${FILESDIR}"/2.02_beta3-gcc6-ld-no-pie.patch ) DEJAVU=dejavu-sans-ttf-2.35
[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/
commit: d2e453506e7d7bd5a3fa7c6bd68081edd8f93524 Author: Dirkjan Ochtman gentoo org> AuthorDate: Sat May 21 18:15:23 2016 + Commit: Dirkjan Ochtman gentoo org> CommitDate: Sat May 21 18:15:36 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e45350 net-p2p/syncthing: version bump to 0.12.25 (see bug 583676) Package-Manager: portage-2.2.28 net-p2p/syncthing/Manifest | 1 + net-p2p/syncthing/syncthing-0.12.25.ebuild | 54 ++ 2 files changed, 55 insertions(+) diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest index 23562e8..479790f 100644 --- a/net-p2p/syncthing/Manifest +++ b/net-p2p/syncthing/Manifest @@ -1,2 +1,3 @@ DIST syncthing-0.12.23.tar.gz 4469246 SHA256 e683c784fa423b598920b5c8f29ac6427dfe19000975b85a45f0f03fe2f0e3ff SHA512 f61c2fa6a513e2804f249433eddb3ee7e134a0c144902b56e4be90277f7e74dd163921cbc02b8c0ae284401b15f48f200f3bd75b61528789ea323574bde5e911 WHIRLPOOL bfcac1e2ebf86a6f006254ff740a5b8a093b34fbaf9ff04068ed7b246afc6cc19b6a0438dce43c7acb787a2041a8cca3282317a26372f011eff719815b07d900 DIST syncthing-0.12.24.tar.gz 4469779 SHA256 9faf913b27feb4c532d1febd6e4fc89e60c0b1cfd9aebef4a42851e220227044 SHA512 684c9f863c0427813c32b63aec8cc4d9a1c575dc4b2fb4b989e35b9e1e2b05222edd9935fdf8331b074f9962d4b03d82e67c008e01bf9ce42c01bf68229d46f3 WHIRLPOOL 79680c01eafae7fd853e39dfc9908f61be33627f86e2cf81c7b69dca8b079fa987ef591f1d6fb6b3dacdfd8763788706c226c263d7bf0c8919d923565c9b +DIST syncthing-0.12.25.tar.gz 4469275 SHA256 0374721434d0cb8bdd9464f63ff9705fe0ca14ab1e20d916780cb6347c91e72d SHA512 5bdb03ae5f76faddd54304994e04683f2a950419c8b4902553ea83d623976039bc05195f77fe59e2ef19615e91da308adc93b05061265e485a9dc941f2b750d4 WHIRLPOOL e6a10d1142dca73174bd9514526ad8f8357c930aa02fb2a2940adbd690fd209bcad15c3397daabd77052c5962d320665362a86fcafca3d19513ca6d06adcfd37 diff --git a/net-p2p/syncthing/syncthing-0.12.25.ebuild b/net-p2p/syncthing/syncthing-0.12.25.ebuild new file mode 100644 index 000..4aef0ac --- /dev/null +++ b/net-p2p/syncthing/syncthing-0.12.25.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGO_PN="github.com/syncthing/syncthing" +EGIT_COMMIT=v${PV} + +inherit golang-vcs-snapshot systemd user + +DESCRIPTION="Open Source Continuous File Synchronization" +HOMEPAGE="https://syncthing.net"; +SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~arm" +IUSE="" + +DEPEND="" +RDEPEND="" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} +} + +src_compile() { + export GOPATH="${S}:$(get_golibdir_gopath)" + cd src/${EGO_PN} + go run build.go -version "v${PV}" -no-upgrade || die "build failed" +} + +src_test() { + cd src/${EGO_PN} + go run build.go test || die "test failed" +} + +src_install() { + cd src/${EGO_PN} + doman man/*.[157] + dobin bin/* + dodoc README.md AUTHORS CONTRIBUTING.md + systemd_dounit "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}@.service \ + "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}-resume.service + systemd_douserunit "${S}"/src/${EGO_PN}/etc/linux-systemd/user/${PN}.service + newconfd "${FILESDIR}/${PN}.confd" ${PN} + newinitd "${FILESDIR}/${PN}.initd" ${PN} + keepdir /var/{lib,log}/${PN} + fowners ${PN}:${PN} /var/{lib,log}/${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotate" ${PN} +}
[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/
commit: 378fba6ce01dd64bf2e900937e6be05bc961265d Author: Dirkjan Ochtman gentoo org> AuthorDate: Sat May 21 18:16:21 2016 + Commit: Dirkjan Ochtman gentoo org> CommitDate: Sat May 21 18:16:21 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378fba6c net-p2p/syncthing: remove old (vulnerable) versions Package-Manager: portage-2.2.28 net-p2p/syncthing/Manifest | 2 -- net-p2p/syncthing/syncthing-0.12.23.ebuild | 54 -- net-p2p/syncthing/syncthing-0.12.24.ebuild | 54 -- 3 files changed, 110 deletions(-) diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest index 479790f..1cf62c1 100644 --- a/net-p2p/syncthing/Manifest +++ b/net-p2p/syncthing/Manifest @@ -1,3 +1 @@ -DIST syncthing-0.12.23.tar.gz 4469246 SHA256 e683c784fa423b598920b5c8f29ac6427dfe19000975b85a45f0f03fe2f0e3ff SHA512 f61c2fa6a513e2804f249433eddb3ee7e134a0c144902b56e4be90277f7e74dd163921cbc02b8c0ae284401b15f48f200f3bd75b61528789ea323574bde5e911 WHIRLPOOL bfcac1e2ebf86a6f006254ff740a5b8a093b34fbaf9ff04068ed7b246afc6cc19b6a0438dce43c7acb787a2041a8cca3282317a26372f011eff719815b07d900 -DIST syncthing-0.12.24.tar.gz 4469779 SHA256 9faf913b27feb4c532d1febd6e4fc89e60c0b1cfd9aebef4a42851e220227044 SHA512 684c9f863c0427813c32b63aec8cc4d9a1c575dc4b2fb4b989e35b9e1e2b05222edd9935fdf8331b074f9962d4b03d82e67c008e01bf9ce42c01bf68229d46f3 WHIRLPOOL 79680c01eafae7fd853e39dfc9908f61be33627f86e2cf81c7b69dca8b079fa987ef591f1d6fb6b3dacdfd8763788706c226c263d7bf0c8919d923565c9b DIST syncthing-0.12.25.tar.gz 4469275 SHA256 0374721434d0cb8bdd9464f63ff9705fe0ca14ab1e20d916780cb6347c91e72d SHA512 5bdb03ae5f76faddd54304994e04683f2a950419c8b4902553ea83d623976039bc05195f77fe59e2ef19615e91da308adc93b05061265e485a9dc941f2b750d4 WHIRLPOOL e6a10d1142dca73174bd9514526ad8f8357c930aa02fb2a2940adbd690fd209bcad15c3397daabd77052c5962d320665362a86fcafca3d19513ca6d06adcfd37 diff --git a/net-p2p/syncthing/syncthing-0.12.23.ebuild b/net-p2p/syncthing/syncthing-0.12.23.ebuild deleted file mode 100644 index 4aef0ac..000 --- a/net-p2p/syncthing/syncthing-0.12.23.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -EGO_PN="github.com/syncthing/syncthing" -EGIT_COMMIT=v${PV} - -inherit golang-vcs-snapshot systemd user - -DESCRIPTION="Open Source Continuous File Synchronization" -HOMEPAGE="https://syncthing.net"; -SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~arm" -IUSE="" - -DEPEND="" -RDEPEND="" - -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} -} - -src_compile() { - export GOPATH="${S}:$(get_golibdir_gopath)" - cd src/${EGO_PN} - go run build.go -version "v${PV}" -no-upgrade || die "build failed" -} - -src_test() { - cd src/${EGO_PN} - go run build.go test || die "test failed" -} - -src_install() { - cd src/${EGO_PN} - doman man/*.[157] - dobin bin/* - dodoc README.md AUTHORS CONTRIBUTING.md - systemd_dounit "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}@.service \ - "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}-resume.service - systemd_douserunit "${S}"/src/${EGO_PN}/etc/linux-systemd/user/${PN}.service - newconfd "${FILESDIR}/${PN}.confd" ${PN} - newinitd "${FILESDIR}/${PN}.initd" ${PN} - keepdir /var/{lib,log}/${PN} - fowners ${PN}:${PN} /var/{lib,log}/${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}/${PN}.logrotate" ${PN} -} diff --git a/net-p2p/syncthing/syncthing-0.12.24.ebuild b/net-p2p/syncthing/syncthing-0.12.24.ebuild deleted file mode 100644 index 4aef0ac..000 --- a/net-p2p/syncthing/syncthing-0.12.24.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -EGO_PN="github.com/syncthing/syncthing" -EGIT_COMMIT=v${PV} - -inherit golang-vcs-snapshot systemd user - -DESCRIPTION="Open Source Continuous File Synchronization" -HOMEPAGE="https://syncthing.net"; -SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~arm" -IUSE="" - -DEPEND="" -RDEPEND="" - -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} -} - -src_compile() { - export GOPATH="${S}:$(get_golibdir_gopath)" - cd src/${EGO_PN} - go run build.go -version "v${PV}" -no-upgrade || die "build failed" -} - -src_test() { - cd src/${EGO_PN} - go run build.go test || die "test failed" -} - -src_install() { - cd src/${EGO_PN} - doman man/*.[157] - dobin bin/* - dodoc README.md AUTHORS CONTRIBUTING.md - systemd_dounit "${S}"
[gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
commit: a081de3c97baf60f021a736a1fbcdd580effd2ce Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:57:07 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 17:51:41 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a081de3c app-misc/astrolog: Cleanup due to #343769 Package-Manager: portage-2.3.0_rc1 app-misc/astrolog/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/app-misc/astrolog/metadata.xml b/app-misc/astrolog/metadata.xml index b38baf5..097975e 100644 --- a/app-misc/astrolog/metadata.xml +++ b/app-misc/astrolog/metadata.xml @@ -1,8 +1,4 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -geo...@gentoo.org -George Shapovalov -
[gentoo-commits] repo/gentoo:master commit in: dev-vcs/kdesvn/
commit: cf02b1933c9c643f65c2df4592758ea0860992ac Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:57:47 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 17:51:44 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf02b193 dev-vcs/kdesvn: Cleanup due to #343769 Package-Manager: portage-2.3.0_rc1 dev-vcs/kdesvn/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-vcs/kdesvn/metadata.xml b/dev-vcs/kdesvn/metadata.xml index 059f580..4ada27b 100644 --- a/dev-vcs/kdesvn/metadata.xml +++ b/dev-vcs/kdesvn/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - geo...@gentoo.org - George Shapovalov - k...@gentoo.org Gentoo KDE Project
[gentoo-commits] repo/gentoo:master commit in: media-libs/esdl/
commit: 6a093240d008f4d739641a7f0e7f3532649c921d Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:58:13 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 17:51:46 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a093240 media-libs/esdl: Cleanup due to #343769 Package-Manager: portage-2.3.0_rc1 media-libs/esdl/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/media-libs/esdl/metadata.xml b/media-libs/esdl/metadata.xml index 56cb7e4..22ffd47 100644 --- a/media-libs/esdl/metadata.xml +++ b/media-libs/esdl/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -geo...@gentoo.org - graph...@gentoo.org Gentoo Graphics Project
[gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog-ephemeris/
commit: fb8d38030ec3954218183d911f186d01f3c2c59c Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:56:49 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 17:51:37 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb8d3803 app-misc/astrolog-ephemeris: Cleanup due to #343769 Package-Manager: portage-2.3.0_rc1 app-misc/astrolog-ephemeris/metadata.xml | 9 - 1 file changed, 9 deletions(-) diff --git a/app-misc/astrolog-ephemeris/metadata.xml b/app-misc/astrolog-ephemeris/metadata.xml index b1ca808..0c6991d 100644 --- a/app-misc/astrolog-ephemeris/metadata.xml +++ b/app-misc/astrolog-ephemeris/metadata.xml @@ -1,15 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - geo...@gentoo.org - George Shapovalov - - I'll be taking care of it. But since we need to have a herd in metadata - I've put sci there, as it seems the most related one. - - - s...@gentoo.org Gentoo Science Project
[gentoo-commits] repo/gentoo:master commit in: sys-apps/msr-tools/
commit: 6495c5e0c87f6e6a3d1a3f4bc5a900a989e2fb33 Author: Michael Palimaka gentoo org> AuthorDate: Sat May 21 17:14:13 2016 + Commit: Michael Palimaka gentoo org> CommitDate: Sat May 21 17:14:25 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6495c5e0 sys-apps/msr-tools: version bump Package-Manager: portage-2.2.28 sys-apps/msr-tools/Manifest | 1 + sys-apps/msr-tools/msr-tools-1.3.ebuild | 30 ++ 2 files changed, 31 insertions(+) diff --git a/sys-apps/msr-tools/Manifest b/sys-apps/msr-tools/Manifest index 19fc928..b5a69d4 100644 --- a/sys-apps/msr-tools/Manifest +++ b/sys-apps/msr-tools/Manifest @@ -1,2 +1,3 @@ DIST msr-tools-1.2.tar.gz 3382 SHA256 5184cdcabd3e88e37023a5ca5a1c3d5cac22f17c7f2e47023336738209f1e94a SHA512 5f4265a1ab4b2dd78e7e964e2f3eb26997ccf1eac8abb273b18ffc9e5f6671c4983d99b8f734ef6b80a82c3eb75b672fbb4769f84e5df8a398f835f5f6194971 WHIRLPOOL ce5bbd25a1392d864288141df972af1f71062e6a11e819d28b6236890cdf6d92c63245a2a76c533f2c708ec8bcb847d1f7a93532f00fa687aae8c060f99c4b33 +DIST msr-tools-1.3.zip 7693 SHA256 f9457b5340f5f274da4239a461f0db6b514142b40461559d9c6150f05aab1d1e SHA512 9605eed0b6211d0ecbe48a14d66b5d61965770f249c5c1b15416d4f2e9a37a68ecfde171077c3acc74bb6b951749bcff186acbb4d6d8a3051695d2d97c0e332b WHIRLPOOL 94442d0ecf36e1c2b21e7658dbf02d9c0516a5e83e3998fd77e56f175e1190184106fad3327c79e895c7e84ba28c74dfcf8ba4d5c8356e9c2e82760b09e9b45a DIST msr-tools_1.2-3.diff.gz 2276 SHA256 da0f4e9f4822a1b715190f4302f4cdeeb6545da7daebf82ab8ea299d62f1593c SHA512 eeaa35e45356042cb93ce0d1473dfebacbe9cf9099498827220bd5ec0036c88ee5c9842d602b5d147b2a0f2030358e9a02cec5bc77e4eb45e23b7ff2804fd6bd WHIRLPOOL 8e32d3adc4396e2136a96dc507495029b0d03105810a9bc08abe15f5c48db39ff30b432f928c19796b0fb885122d8775727a23a140bf7e4ddaf2258d4cef311b diff --git a/sys-apps/msr-tools/msr-tools-1.3.ebuild b/sys-apps/msr-tools/msr-tools-1.3.ebuild new file mode 100644 index 000..1ff4bdf --- /dev/null +++ b/sys-apps/msr-tools/msr-tools-1.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +CONFIG_CHECK="~X86_MSR" +inherit eutils linux-info toolchain-funcs + +DESCRIPTION="Utilities allowing the read and write of CPU model-specific registers (MSR)" +HOMEPAGE="https://01.org/msr-tools"; +SRC_URI="https://01.org/sites/default/files/downloads/${PN}/${P}.zip"; + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/unzip" + +S=${WORKDIR}/${PN}-master + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_install() { + dosbin rdmsr + dosbin wrmsr +}
[gentoo-commits] repo/gentoo:master commit in: profiles/desc/
commit: 19ef2e22d72be9b4f9ca47668194f183ea163675 Author: Ulrich Müller gentoo org> AuthorDate: Sat May 21 17:02:51 2016 + Commit: Ulrich Müller gentoo org> CommitDate: Sat May 21 17:11:30 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ef2e22 profiles: Fix a typo in linguas.desc and add "locale" consistently. profiles/desc/linguas.desc | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/profiles/desc/linguas.desc b/profiles/desc/linguas.desc index 442bcd2..5695aa2 100644 --- a/profiles/desc/linguas.desc +++ b/profiles/desc/linguas.desc @@ -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$ @@ -38,9 +38,9 @@ ca - Catalan locale ca@valencia - Catalan locale (Valencia) ca_ES - Catalan locale for Spain ca_XV - Asturian and Catalan locale (Valencia) -ckb - Kurdish (Sorani) +ckb - Kurdish (Sorani) locale cmn - Chinese (Mandarin) locale -co - Corsican +co - Corsican locale crh - Crimean Tatar (Crimean Turkish) locale cs - Czech locale cs_CZ - Czech locale for Czech Republic @@ -96,7 +96,7 @@ fr - French locale fr_CA - French locale for Canada fr_FR - French locale for France frp - Franco-Provençal locale -fur - Friullian +fur - Friullian locale fy - Frisian locale fy_NL - Frisian language locale for the Netherlands ga - Irish locale @@ -148,7 +148,7 @@ ksw - S'gaw Karen locale ku - Kurdish (latin) locale ky - Kyrgyz (Kirghiz) locale ky_KG - Kyrgyz (Kirghiz) locale for Kyrgyzstan -la - Latin2 locale +la - Latin locale lb - Luxembourgish locale lg - Ganda locale li - Limburgian locale @@ -214,7 +214,7 @@ rue - Rusyn locale rw - Kinyarwanda locale sa - Sanskrit locale sa_IN - Sanskrit locale for India -sah - Sakha (Yakut) +sah - Sakha (Yakut) locale sat - Santali locale sco - Scots locale sd - Sindhi locale
[gentoo-commits] repo/gentoo:master commit in: net-libs/rabbitmq-c/
commit: a67c7e45e611c36c59c83c712acf6a98a74d65c6 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:46:10 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:46:10 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a67c7e45 net-libs/rabbitmq-c: drop old Package-Manager: portage-2.3.0_rc1 net-libs/rabbitmq-c/Manifest| 1 - net-libs/rabbitmq-c/rabbitmq-c-0.3.0.ebuild | 46 - 2 files changed, 47 deletions(-) diff --git a/net-libs/rabbitmq-c/Manifest b/net-libs/rabbitmq-c/Manifest index f04b9bf..e0ab5ee 100644 --- a/net-libs/rabbitmq-c/Manifest +++ b/net-libs/rabbitmq-c/Manifest @@ -1,2 +1 @@ -DIST rabbitmq-c-v0.3.0.zip 156945 SHA256 77554c6d83c72af5248ad0179edd6fa227545d611159f3ad18e2ade5eb07a1b6 SHA512 8b05bb5847caae6e383de0aff0b5544cc44722da4af86b0c4670780e04de4cf8ee681ab848e44c16b082b8ea2025cec841b41703b0fe34747a81f53042f61050 WHIRLPOOL 3bd908f9fe454dcae6d5aa17c36a4d427cb5192a2bd31afc14b9fa1ae5b32f98b924a10dfc4958d09a7b1b98935e52039e0d0c46a5ae0f865f1903cb131c84bb DIST rabbitmq-c-v0.5.0.zip 234929 SHA256 91e883c5cc3c72c5cb351c598b39e2e531c891b5a3e6ad1f82ee261caa5a3e6c SHA512 7b30ecc4831f0145db68a1811b5cb7e4eb55a6b826efa0834a705c03f2ecba3d6d2b8187cdf1472e7da2af8dc77b67674916ec31fa6086e00a01304a097b4430 WHIRLPOOL acf08d02c0ddcc9f651aae2e5cef5f37f0748179cbd015d7c550405e2efb380c5d921faec49cb5eebdd442985aa73236cc9861b74925e8c3370a589dba7af602 diff --git a/net-libs/rabbitmq-c/rabbitmq-c-0.3.0.ebuild b/net-libs/rabbitmq-c/rabbitmq-c-0.3.0.ebuild deleted file mode 100644 index 1ccde50..000 --- a/net-libs/rabbitmq-c/rabbitmq-c-0.3.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -inherit cmake-utils eutils multilib - -DESCRIPTION="RabbitMQ C client" -HOMEPAGE="https://github.com/alanxz/rabbitmq-c"; - -if [[ ${PV} == ** ]]; then - inherit git-2 - EGIT_REPO_URI="git://github.com/alanxz/rabbitmq-c.git" - KEYWORDS="-*" -else - SRC_URI="https://github.com/alanxz/rabbitmq-c/archive/${PN}-v${PV}.zip"; - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="tools" - -DEPEND="" -RDEPEND="${DEPEND}" -DOCS=( "AUTHORS" "README.md" "THANKS" "TODO" ) -PATCHES=( "${FILESDIR}/xmlto.patch" ) - -src_unpack() { - if [[ ${PV} == ** ]]; then - git-2_src_unpack - else - unpack ${A} - mv ${PN}* ${P} || die - fi -} - -src_configure() { - mycmakeargs=( - -DCMAKE_SKIP_RPATH=ON - $(cmake-utils_use tools BUILD_TOOLS) - $(cmake-utils_use tools BUILD_TOOLS_DOCS) - ) - cmake-utils_src_configure -}
[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-mysqlnd_qc/
commit: 1ca085e309acc12f31d279f78799c77411c8754b Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:44:39 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:44:39 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ca085e3 dev-php/pecl-mysqlnd_qc: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/pecl-mysqlnd_qc/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-php/pecl-mysqlnd_qc/metadata.xml b/dev-php/pecl-mysqlnd_qc/metadata.xml index 7ffbac4..fb173f7 100644 --- a/dev-php/pecl-mysqlnd_qc/metadata.xml +++ b/dev-php/pecl-mysqlnd_qc/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Console_CommandLine/
commit: 1ac40e3bbfb965c7395b46c487312c542e45eba7 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:43:41 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:43:41 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ac40e3b dev-php/PEAR-Console_CommandLine: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/PEAR-Console_CommandLine/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-php/PEAR-Console_CommandLine/metadata.xml b/dev-php/PEAR-Console_CommandLine/metadata.xml index eb5b94e..1b669c9 100644 --- a/dev-php/PEAR-Console_CommandLine/metadata.xml +++ b/dev-php/PEAR-Console_CommandLine/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org -Ole Markus With - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-php/phpmd/
commit: 0b7c1dc2ced7f58d1a2280f7f741ecd21de3039f Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:45:34 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:45:34 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b7c1dc2 dev-php/phpmd: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/phpmd/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-php/phpmd/metadata.xml b/dev-php/phpmd/metadata.xml index 65c6305..8045126 100644 --- a/dev-php/phpmd/metadata.xml +++ b/dev-php/phpmd/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org -Ole Markus With - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-libevent/
commit: 1c841c7f5ac8ee3c900f55026552d4dd9b20a2c9 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:44:13 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:44:13 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c841c7f dev-php/pecl-libevent: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/pecl-libevent/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-php/pecl-libevent/metadata.xml b/dev-php/pecl-libevent/metadata.xml index 2d7ba26..034baa3 100644 --- a/dev-php/pecl-libevent/metadata.xml +++ b/dev-php/pecl-libevent/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org -Ole Markus With - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libxdiff/
commit: 3ba0db9d603e12901fc5823f20ebaf11c5271048 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:43:06 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:43:06 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ba0db9d dev-libs/libxdiff: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-libs/libxdiff/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-libs/libxdiff/metadata.xml b/dev-libs/libxdiff/metadata.xml index 8bef660..097975e 100644 --- a/dev-libs/libxdiff/metadata.xml +++ b/dev-libs/libxdiff/metadata.xml @@ -1,7 +1,4 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - olemar...@gentoo.org -
[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-yaml/
commit: a771af3ed518501f4f346a0abea00d7fa064e3bc Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:44:53 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:44:53 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a771af3e dev-php/pecl-yaml: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/pecl-yaml/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-php/pecl-yaml/metadata.xml b/dev-php/pecl-yaml/metadata.xml index 2fcb568..749b424 100644 --- a/dev-php/pecl-yaml/metadata.xml +++ b/dev-php/pecl-yaml/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - olemar...@gentoo.org - Ole Markus With - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: net-libs/rabbitmq-c/
commit: 2d57e0abe943891136972b81e53a6ba85a3ed82d Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:45:48 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:45:48 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d57e0ab net-libs/rabbitmq-c: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 net-libs/rabbitmq-c/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/net-libs/rabbitmq-c/metadata.xml b/net-libs/rabbitmq-c/metadata.xml index d819845..35a7e37 100644 --- a/net-libs/rabbitmq-c/metadata.xml +++ b/net-libs/rabbitmq-c/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - olemar...@gentoo.org - Ole Markus With - Builds cli tools to interact with brokers
[gentoo-commits] repo/gentoo:master commit in: dev-php/phpdepend/
commit: 654309c633b3dd9ab3f9387927387a660cb81c34 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:45:22 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:45:22 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654309c6 dev-php/phpdepend: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/phpdepend/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-php/phpdepend/metadata.xml b/dev-php/phpdepend/metadata.xml index 6637855..4a41df4 100644 --- a/dev-php/phpdepend/metadata.xml +++ b/dev-php/phpdepend/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org -Ole Markus With - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-php/php-codebrowser/
commit: 6c70d660c409d9dd9bfc04b38de80b0640f839d9 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:45:08 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:45:08 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c70d660 dev-php/php-codebrowser: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/php-codebrowser/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-php/php-codebrowser/metadata.xml b/dev-php/php-codebrowser/metadata.xml index e7542e5..596e8a4 100644 --- a/dev-php/php-codebrowser/metadata.xml +++ b/dev-php/php-codebrowser/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org -Ole Markus With - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-php/YAML/
commit: c2e738d7285befc61655e812bbb03eb1a16815d8 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:43:57 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:43:57 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2e738d7 dev-php/YAML: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/YAML/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-php/YAML/metadata.xml b/dev-php/YAML/metadata.xml index e6e6311..2c70ec4 100644 --- a/dev-php/YAML/metadata.xml +++ b/dev-php/YAML/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org -Ole Markus With - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libxdiff/
commit: 15ad77bc561d9a23e375a68b065783f39f4cd364 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:43:19 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:43:19 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15ad77bc dev-libs/libxdiff: drop old Package-Manager: portage-2.3.0_rc1 dev-libs/libxdiff/libxdiff-0.23.ebuild | 17 - 1 file changed, 17 deletions(-) diff --git a/dev-libs/libxdiff/libxdiff-0.23.ebuild b/dev-libs/libxdiff/libxdiff-0.23.ebuild deleted file mode 100644 index d536900..000 --- a/dev-libs/libxdiff/libxdiff-0.23.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -DESCRIPTION="Library for creating diff files" -HOMEPAGE="http://www.xmailserver.org/xdiff-lib.html"; -SRC_URI="http://www.xmailserver.org/${P}.tar.gz"; - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog -}
[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-mysqlnd_ms/
commit: 173bb660a5a165ecc43c98b9e03876fc43bc6a6b Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:44:25 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:44:25 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=173bb660 dev-php/pecl-mysqlnd_ms: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-php/pecl-mysqlnd_ms/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-php/pecl-mysqlnd_ms/metadata.xml b/dev-php/pecl-mysqlnd_ms/metadata.xml index 7fd3a84..9506145 100644 --- a/dev-php/pecl-mysqlnd_ms/metadata.xml +++ b/dev-php/pecl-mysqlnd_ms/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org - php-b...@gentoo.org PHP
[gentoo-commits] repo/gentoo:master commit in: dev-db/freetds/
commit: f462765f70f3536e85a73d1c5cd64696907c6f08 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:42:16 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:42:16 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f462765f dev-db/freetds: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-db/freetds/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-db/freetds/metadata.xml b/dev-db/freetds/metadata.xml index 8bef660..097975e 100644 --- a/dev-db/freetds/metadata.xml +++ b/dev-db/freetds/metadata.xml @@ -1,7 +1,4 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - olemar...@gentoo.org -
[gentoo-commits] repo/gentoo:master commit in: dev-db/libiodbc/
commit: 13ae1050856b2667aa0f81e3daa91878c17e5ef2 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:42:45 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:42:45 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13ae1050 dev-db/libiodbc: Cleanup due to #321263 Package-Manager: portage-2.3.0_rc1 dev-db/libiodbc/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-db/libiodbc/metadata.xml b/dev-db/libiodbc/metadata.xml index 298c436..bc533bf 100644 --- a/dev-db/libiodbc/metadata.xml +++ b/dev-db/libiodbc/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -olemar...@gentoo.org - openlink/iODBC
[gentoo-commits] repo/gentoo:master commit in: net-mail/mhonarc-gentoo/
commit: 13956d65194bc6d5abee9ebc8b7839bb4ab7393c Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:37:25 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:38:38 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13956d65 net-mail/mhonarc-gentoo: Cleanup due to #249864 Package-Manager: portage-2.3.0_rc1 net-mail/mhonarc-gentoo/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/net-mail/mhonarc-gentoo/metadata.xml b/net-mail/mhonarc-gentoo/metadata.xml index 398cb7c..097975e 100644 --- a/net-mail/mhonarc-gentoo/metadata.xml +++ b/net-mail/mhonarc-gentoo/metadata.xml @@ -1,8 +1,4 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - tampak...@gentoo.org - Theo Chatzimichos -
[gentoo-commits] repo/gentoo:master commit in: media-video/subdownloader/
commit: 06b302a65fd18141cb88f28c586d83abb3c9a6f0 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:37:02 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:38:35 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06b302a6 media-video/subdownloader: Cleanup due to #249864 Package-Manager: portage-2.3.0_rc1 media-video/subdownloader/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/media-video/subdownloader/metadata.xml b/media-video/subdownloader/metadata.xml index a661dc9..9a00093 100644 --- a/media-video/subdownloader/metadata.xml +++ b/media-video/subdownloader/metadata.xml @@ -5,10 +5,6 @@ thyarmageddon+gen...@gmail.com Elijah El Lazkani - - tampak...@gentoo.org - Theo Chatzimichos - proxy-ma...@gentoo.org Proxy Maintainers
[gentoo-commits] repo/gentoo:master commit in: www-apps/venus/
commit: 479627ab16b2d648f2618db385d8cde8a25b97c1 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:37:50 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:38:40 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=479627ab www-apps/venus: Cleanup due to #249864 Package-Manager: portage-2.3.0_rc1 www-apps/venus/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/www-apps/venus/metadata.xml b/www-apps/venus/metadata.xml index b0b5f71..1f74e91 100644 --- a/www-apps/venus/metadata.xml +++ b/www-apps/venus/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - tampak...@gentoo.org - web-a...@gentoo.org Gentoo Webapps
[gentoo-commits] repo/gentoo:master commit in: dev-python/edpwd/
commit: 1d888a511d3a052f8917e0e78fa2e3684df253b0 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:36:21 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:38:32 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d888a51 dev-python/edpwd: Cleanup due to #249864 Package-Manager: portage-2.3.0_rc1 dev-python/edpwd/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-python/edpwd/metadata.xml b/dev-python/edpwd/metadata.xml index 395914d..d2335e8 100644 --- a/dev-python/edpwd/metadata.xml +++ b/dev-python/edpwd/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -tampak...@gentoo.org -Theo Chatzimichos - edpwd
[gentoo-commits] repo/gentoo:master commit in: app-emacs/magit/
commit: 528093015c10c4725331a263ffef7ab8b622897a Author: Hans de Graaff gentoo org> AuthorDate: Sat May 21 15:36:31 2016 + Commit: Hans de Graaff gentoo org> CommitDate: Sat May 21 15:36:50 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52809301 app-emacs/magit: add 2.7.0 Package-Manager: portage-2.2.28 app-emacs/magit/Manifest | 1 + app-emacs/magit/magit-2.7.0.ebuild | 24 2 files changed, 25 insertions(+) diff --git a/app-emacs/magit/Manifest b/app-emacs/magit/Manifest index f3a517a..930920c 100644 --- a/app-emacs/magit/Manifest +++ b/app-emacs/magit/Manifest @@ -1,3 +1,4 @@ DIST magit-1.2.2.tar.gz 111245 SHA256 8ed300887909d0990cf17b1f4a3b902944db2471ca93dbf0202724b3f44e5d0c SHA512 c7817a5231485e593e8f7aab8c01db19f433ff9b77d6635c95eec6beabb45901f1dbd9d02fad718436f9e25516df14714e7ca1b05b53244e8465dcc14a8cee7a WHIRLPOOL 4b7116bf2568f786a859299ed8039bee32fda51322e29f7ddd139a9ee5e3f3a3caa9d245fffed3e6c28f11b0e068c398f424450275de94a4559a9812634639a0 DIST magit-2.6.1.tar.gz 273643 SHA256 b42a11168d95f7538bc72bcfa1c438c861139c29d6806f133d653b26d1595ebe SHA512 c52bb1ffd8697c3d4b728c785bb1031fef030a5a82bf01669446b5d5c6e441d65f2a749ef215d27b012a6977b7b2b90b22e8270b9365eb5f3770cdcc4fa3f110 WHIRLPOOL b0e8fe99785ae30f56627dec511dcb78e4266ea96995286220ce0782d23ed3a21115b68b3fbd8ee1bb5b876473948a3a3dffe6462f2bd0c5adf6554a3d4a5116 DIST magit-2.6.2.tar.gz 274584 SHA256 c76692d5e7b242dfb9df1f610bdfdd13fbfbc432923a99b355e525c17196a146 SHA512 4b7abd9f4f7457c8a4eee93cd633bcbb1f2ed0f0d80f56ae50ef608eb42a71ae0a377782c0b2f47cac74ccd5f2a8238060106aa6d0f8475858bf5dfb1cd9d5ef WHIRLPOOL 6eb7c6cad43f691933c0b1087a872e6f60a245cfd8abce7e0e94d2e3824fad8bc6d8896f5d2d353ef929632c9d19465bcf9198044386c8c1eecc016ad1da12a9 +DIST magit-2.7.0.tar.gz 282654 SHA256 f4625abbdf9537fb27751f3aa85fafc51cf793686615bb2501995160c544edcf SHA512 9206c93a9314449e1eae7eba2e7a485d80a656c9bc029affaed86dd7f8c4028bb57cd90dae4efb00c727e3ca207875254c87e7e7c7b1c542523f53125cec20bb WHIRLPOOL 145858db3f4b2755f5671f4b8ff98b7e820bd79cc9053d9ec3fe24d531c8ba5f6a4e59f7f9e911991b2b6289c2e130b865b2d7d310d43866750c163999c76a20 diff --git a/app-emacs/magit/magit-2.7.0.ebuild b/app-emacs/magit/magit-2.7.0.ebuild new file mode 100644 index 000..90e43f1 --- /dev/null +++ b/app-emacs/magit/magit-2.7.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +NEED_EMACS=24 + +inherit elisp + +DESCRIPTION="A Git porcelain inside Emacs" +HOMEPAGE="http://magit.vc/"; +SRC_URI="https://github.com/magit/magit/releases/download/${PV}/${P}.tar.gz"; + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +S="${WORKDIR}/${P}/lisp" +SITEFILE="50${PN}-gentoo.el" +ELISP_TEXINFO="../Documentation/*.texi" +DOCS="../README.md ../Documentation/AUTHORS.md ../Documentation/${PV}.txt" + +DEPEND=">=app-emacs/dash-2.12.1 >=app-emacs/with-editor-2.5.0" +RDEPEND="${DEPEND} >=dev-vcs/git-1.9.4"
[gentoo-commits] repo/gentoo:master commit in: games-simulation/corsix-th/
commit: d25cd07865add490effebee76f8fc1f6085f8319 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:08:05 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:02 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25cd078 games-simulation/corsix-th: Cleanup due to #231915 Package-Manager: portage-2.3.0_rc1 games-simulation/corsix-th/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/games-simulation/corsix-th/metadata.xml b/games-simulation/corsix-th/metadata.xml index 5259313..d45c30b 100644 --- a/games-simulation/corsix-th/metadata.xml +++ b/games-simulation/corsix-th/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - mik...@gentoo.org - Angelo Arrifano - Use ffmpeg for playing in-game cutscenes. Use OpenGL for rendering.
[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-jack/
commit: cabe4a074806cbb06f88abc3049347b49faa8034 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:09:27 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:07 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cabe4a07 media-plugins/gst-plugins-jack: Cleanup due to #231915 Package-Manager: portage-2.3.0_rc1 media-plugins/gst-plugins-jack/metadata.xml | 5 - 1 file changed, 5 deletions(-) diff --git a/media-plugins/gst-plugins-jack/metadata.xml b/media-plugins/gst-plugins-jack/metadata.xml index b8f2236..a569eaf 100644 --- a/media-plugins/gst-plugins-jack/metadata.xml +++ b/media-plugins/gst-plugins-jack/metadata.xml @@ -1,11 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - mik...@gentoo.org - Angelo Arrifano - Regular ebuild maintenance, bugs and stuff.. - gstrea...@gentoo.org GStreamer package maintainers
[gentoo-commits] repo/gentoo:master commit in: net-misc/youtube-dl/
commit: 053975273cd2982f04ab775723f395a857f79ea0 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:16:43 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:21 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05397527 net-misc/youtube-dl: Cleanup due to #239126 Package-Manager: portage-2.3.0_rc1 net-misc/youtube-dl/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/net-misc/youtube-dl/metadata.xml b/net-misc/youtube-dl/metadata.xml index 8e518c3..6a4728c 100644 --- a/net-misc/youtube-dl/metadata.xml +++ b/net-misc/youtube-dl/metadata.xml @@ -4,7 +4,4 @@ j...@gentoo.org - -nirbh...@gentoo.org -
[gentoo-commits] repo/gentoo:master commit in: media-fonts/source-pro/
commit: 70186d2a026fda1c9b71d6246f94563b36952cd1 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:16:14 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:18 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70186d2a media-fonts/source-pro: Cleanup due to #239126 Package-Manager: portage-2.3.0_rc1 media-fonts/source-pro/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/media-fonts/source-pro/metadata.xml b/media-fonts/source-pro/metadata.xml index 5c4b6a1..c1a4902 100644 --- a/media-fonts/source-pro/metadata.xml +++ b/media-fonts/source-pro/metadata.xml @@ -2,10 +2,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - nirbh...@gentoo.org - Nirbheek Chauhan - - ssuomi...@gentoo.org Samuli Suominen
[gentoo-commits] repo/gentoo:master commit in: dev-embedded/arduino/
commit: 7cc76d81323c0fe1c5a7970ea938463ea088915c Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:07:43 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:34:59 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc76d81 dev-embedded/arduino: Cleanup due to #231915 Package-Manager: portage-2.3.0_rc1 dev-embedded/arduino/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-embedded/arduino/metadata.xml b/dev-embedded/arduino/metadata.xml index 4a36a92..e3a5ffc 100644 --- a/dev-embedded/arduino/metadata.xml +++ b/dev-embedded/arduino/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - mik...@gentoo.org - embed...@gentoo.org Embedded Gentoo
[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-jack/
commit: de5f8b893af828ff60ce0262ed648d758f1404c4 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:09:56 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:10 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de5f8b89 media-plugins/gst-plugins-jack: drop old Package-Manager: portage-2.3.0_rc1 media-plugins/gst-plugins-jack/Manifest | 2 -- .../gst-plugins-jack/gst-plugins-jack-1.6.1.ebuild| 15 --- .../gst-plugins-jack/gst-plugins-jack-1.6.2.ebuild| 15 --- 3 files changed, 32 deletions(-) diff --git a/media-plugins/gst-plugins-jack/Manifest b/media-plugins/gst-plugins-jack/Manifest index b80266c..34149fa 100644 --- a/media-plugins/gst-plugins-jack/Manifest +++ b/media-plugins/gst-plugins-jack/Manifest @@ -1,5 +1,3 @@ DIST gst-plugins-good-0.10.31.tar.xz 2738016 SHA256 77a8436a7c0a15f876bad29616835046890df2bcaf72da02151bd91e3d292b64 SHA512 d153dcd5bb846450e9d76fe247f2b2e627e760feaad1bfd4c503a39af2128fad3630788463ea0d50539209236c864df0b2172ab9dac52f49cadff69ac7346809 WHIRLPOOL 952f65219d9e9645c9ab89b071c56d783e2c795fadbf59176e430ba86a5fcaeb6bfc93f0978d424158550a4526145b5567acf2ff1d59e0068241821d332fd3c9 DIST gst-plugins-good-1.4.5.tar.xz 3031588 SHA256 79b1b5f3f7bcaa8a615202eb5e176121eeb8336960f70687e536ad78dbc7e641 SHA512 0cf880af21956138e127508f6020fdc10f6ed01b765b0d3364d038c8e104947486c83c157c7b957193b82d59f724e342a6d12900b6a97abe6e2f3dac65d71be0 WHIRLPOOL a56ca2c2f2b73f299cb3c3605eb70ddbd97d9513d26ee11d91608c08589149df97f23490a6513d991c6b552a7b8a71f75463fd6dbf7579943ac859254eb0af3c -DIST gst-plugins-good-1.6.1.tar.xz 3188188 SHA256 86d4b814099f7b7b16be19d4b94fa41002ac01fdf1525b07c5764d54c0605935 SHA512 6b326d908a6df3af059ee23ff41b10a07ad21a1c88f542eff5223a6e8acc75ae97ddead6adcf455cafc9e93f27f7829f6b7476d1a5d3f1ff123f477f00b4f41f WHIRLPOOL 78bf3a445ec03fde8f6bd8d0c3f774d4b41deedff1d4d45b650d45f25c648ad17d3ab9256a049416594e0d5f2b1e0904e7118af6d1805fb2072d1b461cac0ced -DIST gst-plugins-good-1.6.2.tar.xz 3176060 SHA256 876e54dfce93274b98e024f353258d35fa4d49d1f9010069e676c530f6eb6a92 SHA512 b63391448cada4a1db6fb2c27f6e913edb339e7ac5bc47cab3ef09ef85c79a7aa01accfc2d9bfe74188b7a744d82988e39f97958e1ad8808765a451b721d6d23 WHIRLPOOL 9f286e09e85969989de561c2939262f77c1ca3ccc2d381ff79cc3b4385b549e49a7fc5adeff51b253c1285658a4e6840aca85c6c4cc803807b22efc14a3fb09a DIST gst-plugins-good-1.6.3.tar.xz 3193272 SHA256 24b19db70b2a83461ebddfe20033db432dadfdb5d4b54ffb1dfa0d830134a177 SHA512 33d4e85cd07ea8d6723c7a5f58cefeec15ddc5392693d131f1b88d8fc844cc24e37dc59d4a3cfbda090ebd15a90e1e9a28a0427b1f00e66a69b9ea40447d70b4 WHIRLPOOL 0279764c4ce1cafbb55f839fe045590782910fc79b20679af71731fc6a6ed3d0cfe36e13e4d0121d9587d2e07f7e8ba41849aad4e72b09654591d90e72a546a8 diff --git a/media-plugins/gst-plugins-jack/gst-plugins-jack-1.6.1.ebuild b/media-plugins/gst-plugins-jack/gst-plugins-jack-1.6.1.ebuild deleted file mode 100644 index c683268..000 --- a/media-plugins/gst-plugins-jack/gst-plugins-jack-1.6.1.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -GST_ORG_MODULE=gst-plugins-good -inherit gstreamer - -DESCRIPION="GStreamer source/sink to transfer audio data with JACK ports" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" -IUSE="" - -RDEPEND=">=media-sound/jack-audio-connection-kit-0.121.3-r1[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND}" diff --git a/media-plugins/gst-plugins-jack/gst-plugins-jack-1.6.2.ebuild b/media-plugins/gst-plugins-jack/gst-plugins-jack-1.6.2.ebuild deleted file mode 100644 index c683268..000 --- a/media-plugins/gst-plugins-jack/gst-plugins-jack-1.6.2.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -GST_ORG_MODULE=gst-plugins-good -inherit gstreamer - -DESCRIPION="GStreamer source/sink to transfer audio data with JACK ports" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" -IUSE="" - -RDEPEND=">=media-sound/jack-audio-connection-kit-0.121.3-r1[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND}"
[gentoo-commits] repo/gentoo:master commit in: sys-fs/davl/
commit: c58d4fceaeb2bec16e123fcc9a6f278bb6a40ba7 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:49:29 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:34:56 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58d4fce sys-fs/davl: Cleanup due to #155425 Package-Manager: portage-2.3.0_rc1 sys-fs/davl/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/sys-fs/davl/metadata.xml b/sys-fs/davl/metadata.xml index 09836b5..dfefefa 100644 --- a/sys-fs/davl/metadata.xml +++ b/sys-fs/davl/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -armi...@gentoo.org - davl
[gentoo-commits] repo/gentoo:master commit in: sci-misc/mendeleydesktop/
commit: d16e4587e142b1932317bc232a9c2b52882795eb Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:10:45 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:15 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d16e4587 sci-misc/mendeleydesktop: Cleanup due to #231915 Package-Manager: portage-2.3.0_rc1 sci-misc/mendeleydesktop/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/sci-misc/mendeleydesktop/metadata.xml b/sci-misc/mendeleydesktop/metadata.xml index f18348e..3f93cc7 100644 --- a/sci-misc/mendeleydesktop/metadata.xml +++ b/sci-misc/mendeleydesktop/metadata.xml @@ -2,10 +2,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> -mik...@gentoo.org -Angelo Arrifano - - x...@gentoo.org Michael Weber
[gentoo-commits] repo/gentoo:master commit in: games-simulation/corsix-th/files/, games-simulation/corsix-th/
commit: cb96db1781055042994e7cb7815e7c8ee231d75d Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:08:44 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:04 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb96db17 games-simulation/corsix-th: drop old Package-Manager: portage-2.3.0_rc1 games-simulation/corsix-th/Manifest| 1 - .../corsix-th/corsix-th-0.21-r1.ebuild | 62 -- .../corsix-th/files/corsix-th-0.21-naming.patch| 17 -- .../corsix-th/files/corsix-th-nodoc.patch | 11 4 files changed, 91 deletions(-) diff --git a/games-simulation/corsix-th/Manifest b/games-simulation/corsix-th/Manifest index 53f07f3..55ea375 100644 --- a/games-simulation/corsix-th/Manifest +++ b/games-simulation/corsix-th/Manifest @@ -1,2 +1 @@ -DIST CorsixTH-0.21-Source.tar.gz 3908197 SHA256 9a8b54644e614dc13d4b5d97bf023b8e023e0186f931695b8f4ec7e4577a4ead SHA512 6f75772a7af0a09d216f042eda437e4159061637b404c0282472dab4751b7d515e25c6a922bb51051cfe7c351396491ac68d7969e3f37dafb1862fb6c85b6b52 WHIRLPOOL 69e3a57581e0a7446fda839284d2200ed8be559403504a42cfa187c8180689b175a96fb7b15b2b124ac3605dd936190f8ee882f4ea464acdc81157f598b0b20a DIST corsix-th-0.30.tar.gz 4345385 SHA256 4947ebdc50b01fde0aca797250d50b9806b9e6f3f4323872fd914f033f4c92e7 SHA512 1afd9d68dd6db82393e454e2c234179029902b701aafe4d2ca76381be195acba55f0ee062ce071a78cf3f5e8762e25452f386276aecc1af816553532b870964a WHIRLPOOL b01a1d72c0408c1d7d7d0a72e55c9b9f0863acfe064c07f4920c3f66bfb29fb0acf0a7e4e1d80e214b2e81d073e070427fbd8fca9cd34e14cda561159a88d4d0 diff --git a/games-simulation/corsix-th/corsix-th-0.21-r1.ebuild b/games-simulation/corsix-th/corsix-th-0.21-r1.ebuild deleted file mode 100644 index 663f04f..000 --- a/games-simulation/corsix-th/corsix-th-0.21-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils cmake-utils games - -MY_P="CorsixTH-${PV}-Source" - -DESCRIPTION="Open source clone of Theme Hospital" -HOMEPAGE="https://code.google.com/p/corsix-th/"; -SRC_URI="https://corsix-th.googlecode.com/files/${MY_P}.tar.gz"; - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+ffmpeg truetype opengl +sdl +sound +midi" -REQUIRED_USE="|| ( sdl opengl )" - -RDEPEND=">=dev-lang/lua-5.1 - media-libs/libsdl[X] - ffmpeg? ( virtual/ffmpeg ) - truetype? ( media-libs/freetype:2 ) - opengl? ( virtual/opengl ) - sound? ( media-libs/sdl-mixer ) - midi? ( media-libs/sdl-mixer[timidity] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - epatch "${FILESDIR}/${PN}-nodoc.patch" - - # Use a coherent naming for installation dir - epatch "${FILESDIR}/${P}-naming.patch" -} - -src_configure() { - local mycmakeargs="$(cmake-utils_use_with opengl OPENGL) \ - $(cmake-utils_use_with sdl SDL) \ - $(cmake-utils_use_with sound AUDIO) \ - $(cmake-utils_use_with truetype FREETYPE2) \ - $(cmake-utils_use_with ffmpeg MOVIES) \ - -DCMAKE_INSTALL_PREFIX=${GAMES_DATADIR}" - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - - DOCS="CorsixTH/README.txt CorsixTH/changelog.txt" cmake-utils_src_install - games_make_wrapper ${PN} "${GAMES_DATADIR}/${PN}/CorsixTH" || die - make_desktop_entry ${PN} ${PN} \ - "${GAMES_DATADIR}/${PN}/CorsixTH.ico" - prepgamesdirs -} diff --git a/games-simulation/corsix-th/files/corsix-th-0.21-naming.patch b/games-simulation/corsix-th/files/corsix-th-0.21-naming.patch deleted file mode 100644 index b82b5fa..000 --- a/games-simulation/corsix-th/files/corsix-th-0.21-naming.patch +++ /dev/null @@ -1,17 +0,0 @@ CorsixTH/CMakeLists.txt2013-07-26 19:35:30.463506153 +0200 -+++ CorsixTH/CMakeLists.txt.new2013-07-26 19:38:07.944473631 +0200 -@@ -222,10 +222,10 @@ - ENDIF() - - ELSE() -- install(TARGETS CorsixTH RUNTIME DESTINATION CorsixTH) -- install(DIRECTORY Lua Levels DESTINATION CorsixTH PATTERN "*.svn" EXCLUDE) -- install(DIRECTORY Bitmap DESTINATION CorsixTH -+ install(TARGETS CorsixTH RUNTIME DESTINATION corsix-th) -+ install(DIRECTORY Lua Levels DESTINATION corsix-th PATTERN "*.svn" EXCLUDE) -+ install(DIRECTORY Bitmap DESTINATION corsix-th - FILES_MATCHING REGEX ".*\\.(tab|pal|dat|png)$" - PATTERN "*.svn" EXCLUDE) -- install(FILES CorsixTH.lua CorsixTH.ico DESTINATION CorsixTH ) -+ install(FILES CorsixTH.lua CorsixTH.ico DESTINATION corsix-th ) - ENDIF() diff --git a/games-simulation/corsix-th/files/corsix-th-nodoc.patch b/games-simulation/corsix-th/files/corsix-th-nodoc.patch deleted file mode 100644 index 0fcae9b..000 --- a/games-simula
[gentoo-commits] repo/gentoo:master commit in: net-misc/tigervnc/
commit: 422a6b99a5a0e9b46842d948d7a23b953446a27d Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:48:28 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:34:48 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422a6b99 net-misc/tigervnc: Cleanup due to #155425 Package-Manager: portage-2.3.0_rc1 net-misc/tigervnc/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/net-misc/tigervnc/metadata.xml b/net-misc/tigervnc/metadata.xml index 0b4fcb1..ce5de89 100644 --- a/net-misc/tigervnc/metadata.xml +++ b/net-misc/tigervnc/metadata.xml @@ -2,9 +2,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> -armi...@gentoo.org - - mgo...@gentoo.org Michał Górny
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnrd/
commit: 04132e004a270d697721446f1785de3e2715a0c1 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:47:36 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:34:45 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04132e00 net-dns/dnrd: Cleanup due to #155425 Package-Manager: portage-2.3.0_rc1 net-dns/dnrd/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/net-dns/dnrd/metadata.xml b/net-dns/dnrd/metadata.xml index b753c17..349a9bf 100644 --- a/net-dns/dnrd/metadata.xml +++ b/net-dns/dnrd/metadata.xml @@ -5,9 +5,6 @@ natanael.c...@gmail.com Natanael Copa - - armi...@gentoo.org - proxy-ma...@gentoo.org Proxy Maintainers
[gentoo-commits] repo/gentoo:master commit in: net-misc/tightvnc/
commit: 2d0c90e138cd7c02002c9d85c2eabcd2b3756038 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:48:54 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:34:51 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0c90e1 net-misc/tightvnc: Cleanup due to #155425 Package-Manager: portage-2.3.0_rc1 net-misc/tightvnc/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/net-misc/tightvnc/metadata.xml b/net-misc/tightvnc/metadata.xml index a2c42db..59f79a4 100644 --- a/net-misc/tightvnc/metadata.xml +++ b/net-misc/tightvnc/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -armi...@gentoo.org - Build TightVNC server
[gentoo-commits] repo/gentoo:master commit in: media-sound/gnaural/
commit: 972527a4838418252a9fee5f871ce270ba97d76f Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 15:10:18 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:35:13 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972527a4 media-sound/gnaural: Cleanup due to #231915 Package-Manager: portage-2.3.0_rc1 media-sound/gnaural/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/media-sound/gnaural/metadata.xml b/media-sound/gnaural/metadata.xml index bb058af..769fc14 100644 --- a/media-sound/gnaural/metadata.xml +++ b/media-sound/gnaural/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - mik...@gentoo.org - Angelo Arrifano - Gnaural is an opensource programmable auditory binaural-beat generator, implementing the principle described in the October 1973 Scientific American article "Auditory Beats in the Brain" by Gerald Oster. The theme of the article is that the processing of binaural beats involves different neural pathways than conventional hearing. Research inspired by the article went on to show that binaural beats can induce a "frequency-following response" (FFR) in brainwave activity.
[gentoo-commits] repo/gentoo:master commit in: sys-apps/qcontrol/
commit: 3795305b5c369eafa15bdc82350132c60f9df1b0 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:49:09 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 15:34:53 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3795305b sys-apps/qcontrol: Cleanup due to #155425 Package-Manager: portage-2.3.0_rc1 sys-apps/qcontrol/metadata.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/sys-apps/qcontrol/metadata.xml b/sys-apps/qcontrol/metadata.xml index 54d656e..fae6183 100644 --- a/sys-apps/qcontrol/metadata.xml +++ b/sys-apps/qcontrol/metadata.xml @@ -1,9 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - armi...@gentoo.org - a...@gentoo.org Gentoo Linux ARM Development
[gentoo-commits] proj/java:master commit in: dev-java/icedtea/
commit: dd6b8f1ce24d968a85d2f6d156d7687a97f6f365 Author: Andrew John Hughes member fsf org> AuthorDate: Sat May 21 15:21:26 2016 + Commit: Andrew John Hughes member fsf org> CommitDate: Sat May 21 15:21:26 2016 + URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=dd6b8f1c dev-java/icedtea: Add support for 3.1.0pre02. Package-Manager: portage-2.2.27 dev-java/icedtea/ChangeLog | 6 + dev-java/icedtea/Manifest | 8 + dev-java/icedtea/icedtea-3.1.0_pre02.ebuild | 386 3 files changed, 400 insertions(+) diff --git a/dev-java/icedtea/ChangeLog b/dev-java/icedtea/ChangeLog index da38141..17c9541 100644 --- a/dev-java/icedtea/ChangeLog +++ b/dev-java/icedtea/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*icedtea-3.1.0_pre02 (21 May 2016) + + 21 May 2016; Andrew John Hughes + +icedtea-3.1.0_pre02.ebuild: + dev-java/icedtea: Add support for 3.1.0pre02. + *icedtea-6.1.13.11 (04 May 2016) 04 May 2016; Andrew John Hughes diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest index 0fbc556..835dc97 100644 --- a/dev-java/icedtea/Manifest +++ b/dev-java/icedtea/Manifest @@ -22,6 +22,14 @@ DIST icedtea-3.0-langtools-ad6886e3a101.tar.xz 2056412 SHA256 260260115257602173 DIST icedtea-3.0-nashorn-c89dc17f7c75.tar.xz 2220176 SHA256 e7040d55a499c002cd6edcedc44890072a2f88cb19a341950e5865c544b51edc SHA512 3cf12d2696b630eec2a4c6fefe08db9e14db62bbd81a3a4546ef886f6b7fa059a2f41dd3a4377ab2da1f65d371b70766caac4054b447454863de82ce961c3d31 WHIRLPOOL ad2ede063f0e6cb1a67f90d42ddcf2ab33175008361620abf04ccc1a55b9e3c2a8a9827100137842c8f6de2a3af367b6143c0916a5ffa4920dbcd33fb66547c0 DIST icedtea-3.0-openjdk-6a70821528ba.tar.xz 330720 SHA256 8b766fffa39d67e62802a8cddd23e02b0ac2fd6aff48658b4b08fd6dbee38184 SHA512 5054d4a541b8f3e6fd09cd44355b39d3a0e1ea27247bcaf8bb800e1e3cf23a4133076383b74c19be1928a5fc0c3986ab3303614a834b9741209dcf20eb19d703 WHIRLPOOL 7ea8c98d4dca75325841929aa8049ecf713e637124e4ce6f9a98d7845d25153d851c42f632132ab61ff6823e0aeab07ad0dc43e6f699d4f3747b536e90eb0b76 DIST icedtea-3.0.1.tar.xz 1403400 SHA256 346ce30de1de6c493729b79b246f250438fc5b8df7eae47229a97f9000a73af2 SHA512 01506994e3c4b4a1dc927251de0db5e5a22754031604cf7c8660597525616d3205527ed768d67aa4b4c62b40a0e3fbd3327c97b95c81b634175dec69c5802c8f WHIRLPOOL 0641f49b6fcccb3981e2756a2403638897887634ff09b6ede9ae61af80259b5bc1168c6c5f236a07157befec4a1fe848d0814afe5515bb5a98c591370c62dacb +DIST icedtea-3.1-corba-cb4d2e8f71f9.tar.xz 937932 SHA256 45ca85d1109f7f60d36ee191b3863826afe2c8561d019c929c1f809e86dfb47a SHA512 2e2d450092ddb6969cb873f1db00f0093753756552ce0f6fbfce9344197c56832966d6c1898c9ef9f2512a487f43e3e17e54998055a698cbbe5d640908b4aa9f WHIRLPOOL 3132a9ce2c89a5a5d531d7a1f09b80bdb0267f299825b7cfc2a9083c2a8721be99aaab4884f3d40984ada6ed6877c2f406baa5f2eae68028982a2c5cc2b820ea +DIST icedtea-3.1-hotspot-76eca5cf3150.tar.xz 6776156 SHA256 4e7f47aece621fbda69cb55c34574b050bfb1f9b3a61873d7e6d61dcb9cb81a6 SHA512 eb0c1b2a860051265645821dcc48cb9a277ca0ef989319650afc83254ecd50b0922165448e58f79b62965766bc3bdddc4a33cb26d6be294c4e09f06aab5510d6 WHIRLPOOL fa86c40fbe716d583ecbb0262e29d365b171d1119cb37c4ca5d513ccdca983747b5d889a1e86a422e6cb827b95af22f513fb5abcb21d0e10caabcce625f6f6c2 +DIST icedtea-3.1-jaxp-6ee6f8ac7489.tar.xz 2297024 SHA256 57a6684dc993d917d5180ce40091293c11cd20f7501190e610c1b253409778f1 SHA512 b30006933ca98058caaa54a0e6c9ea41ab79a1621991eeafdcdcce9e14dc97881b7429f47e84ecb27c230b0b37a80694fcbdb098953c392329a6116cabbf WHIRLPOOL 67eb92323dc1243944bb629d9860a55cd00390f67d2ddd7376f9e2338dd6c32190332faf80a68d2ac26952b9d30953777d5a0ebc19a5053aadf43c4ce6845a88 +DIST icedtea-3.1-jaxws-4946f14d652f.tar.xz 2267248 SHA256 d5ca841f8663293940e75cd9e947f9c8cd9626fbb8984d635afe85f5f6856dce SHA512 d8ae8b415aa3c55542761abefc1a649e8affa822fb309730b50253f2daa2a17173fd93df6b474735347752734477313fec7f50003537caf741ae027d08f2b537 WHIRLPOOL 966d8c5799fad3a77532dbc0408ae0b3d01b61afec3241eb4665272d05ab6a7dd3cae6a6fcdb3703539d8b15a0c7b0a4d16debdd9d4f4184493de52047782220 +DIST icedtea-3.1-jdk-7513dae3426b.tar.xz 38264992 SHA256 d084e64c4c593e2113c86f98da25ee1c6a2465e20912e3039c22f17b00f29a8d SHA512 e7646ca79c60764426e8dea4f07d49adbd6a0de03ed3e72bb9bd75e10c39827506e067b5dc5058d9f181fbb364e6b70382fe59e6624b4b9b6af2687b6fe9f8c0 WHIRLPOOL fb74b6866e86d77b22623bf5de978d26955f70c753ffbbf82b10c0b73e94a61acc266d1d40ec99e080edf50391801f0245c106ad530c1248b888ee432ce680d6 +DIST icedtea-3.1-langtools-dbf29857221f.tar.xz 2059196 SHA256 0ed872911880c72c2d264fda5f6e247c4b08df160f71d18cdfb5ab8ec8aae285 SHA512 3661ebe7e507dfce76289218f266df59cc247f781c5479797e65464e58e9017c6fb982c645eddb144761fade80cd18c733f66d652f23fb5212f5110d032f86c4 WHIRLPOOL fd1262ea4f3b6bcfe1f511b81696ed253839216af9263b13afd57e47f99aa60ed028e0c3f649f5a5a91da2fc75ab6b6935d3c1ac418d05bb641ac09fafd9e6d6 +DIST i
[gentoo-commits] proj/java:master commit in: dev-java/icedtea/
commit: b494054bd934de55610b1848ed89e222a4b52c61 Author: Andrew John Hughes member fsf org> AuthorDate: Sat May 21 15:23:16 2016 + Commit: Andrew John Hughes member fsf org> CommitDate: Sat May 21 15:23:16 2016 + URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=b494054b dev-java/icedtea: Drop icedtea-bin:6 support as now removed from main tree. Package-Manager: portage-2.2.27 dev-java/icedtea/ChangeLog| 5 + dev-java/icedtea/icedtea-6.1.13.11.ebuild | 4 +--- dev-java/icedtea/icedtea-6..ebuild| 4 +--- dev-java/icedtea/icedtea-7.2.6.6.ebuild | 4 +--- dev-java/icedtea/icedtea-7.2.7.0_pre05.ebuild | 4 +--- 5 files changed, 9 insertions(+), 12 deletions(-) diff --git a/dev-java/icedtea/ChangeLog b/dev-java/icedtea/ChangeLog index 17c9541..c25a9b3 100644 --- a/dev-java/icedtea/ChangeLog +++ b/dev-java/icedtea/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 21 May 2016; Andrew John Hughes + icedtea-6.1.13.11.ebuild, icedtea-6..ebuild, icedtea-7.2.6.6.ebuild, + icedtea-7.2.7.0_pre05.ebuild: + dev-java/icedtea: Drop icedtea-bin:6 support as now removed from main tree. + *icedtea-3.1.0_pre02 (21 May 2016) 21 May 2016; Andrew John Hughes diff --git a/dev-java/icedtea/icedtea-6.1.13.11.ebuild b/dev-java/icedtea/icedtea-6.1.13.11.ebuild index e62bda6..b4cfba7 100644 --- a/dev-java/icedtea/icedtea-6.1.13.11.ebuild +++ b/dev-java/icedtea/icedtea-6.1.13.11.ebuild @@ -103,7 +103,6 @@ RDEPEND="${COMMON_DEP} DEPEND="${COMMON_DEP} ${ALSA_COMMON_DEP} ${CUPS_COMMON_DEP} ${X_COMMON_DEP} ${X_DEPEND} || ( >=dev-java/gcj-jdk-4.3 - dev-java/icedtea-bin:6 dev-java/icedtea:6 ) app-arch/cpio @@ -145,8 +144,7 @@ pkg_setup() { icedtea_check_requirements JAVA_PKG_WANT_BUILD_VM=" - icedtea-6 icedtea-bin-6 - gcj-jdk" + icedtea-6 gcj-jdk" JAVA_PKG_WANT_SOURCE="1.5" JAVA_PKG_WANT_TARGET="1.5" diff --git a/dev-java/icedtea/icedtea-6..ebuild b/dev-java/icedtea/icedtea-6..ebuild index eabe7de..83ee5e2 100644 --- a/dev-java/icedtea/icedtea-6..ebuild +++ b/dev-java/icedtea/icedtea-6..ebuild @@ -101,7 +101,6 @@ RDEPEND="${COMMON_DEP} DEPEND="${COMMON_DEP} ${ALSA_COMMON_DEP} ${CUPS_COMMON_DEP} ${X_COMMON_DEP} ${X_DEPEND} || ( >=dev-java/gcj-jdk-4.3 - dev-java/icedtea-bin:6 dev-java/icedtea:6 ) app-arch/cpio @@ -143,8 +142,7 @@ pkg_setup() { icedtea_check_requirements JAVA_PKG_WANT_BUILD_VM=" - icedtea-6 icedtea-bin-6 - gcj-jdk" + icedtea-6 gcj-jdk" JAVA_PKG_WANT_SOURCE="1.5" JAVA_PKG_WANT_TARGET="1.5" diff --git a/dev-java/icedtea/icedtea-7.2.6.6.ebuild b/dev-java/icedtea/icedtea-7.2.6.6.ebuild index fc7f682..f10ade0 100644 --- a/dev-java/icedtea/icedtea-7.2.6.6.ebuild +++ b/dev-java/icedtea/icedtea-7.2.6.6.ebuild @@ -136,7 +136,6 @@ DEPEND="${COMMON_DEP} ${ALSA_COMMON_DEP} ${CUPS_COMMON_DEP} ${X_COMMON_DEP} ${X_ || ( >=dev-java/gcj-jdk-4.3 dev-java/icedtea-bin:7 - dev-java/icedtea-bin:6 dev-java/icedtea:7 dev-java/icedtea:6 ) @@ -181,8 +180,7 @@ pkg_setup() { JAVA_PKG_WANT_BUILD_VM=" icedtea-7 icedtea-bin-7 - icedtea-6 icedtea-bin-6 - gcj-jdk" + icedtea-6 gcj-jdk" JAVA_PKG_WANT_SOURCE="1.5" JAVA_PKG_WANT_TARGET="1.5" diff --git a/dev-java/icedtea/icedtea-7.2.7.0_pre05.ebuild b/dev-java/icedtea/icedtea-7.2.7.0_pre05.ebuild index 714e065..c4c2275 100644 --- a/dev-java/icedtea/icedtea-7.2.7.0_pre05.ebuild +++ b/dev-java/icedtea/icedtea-7.2.7.0_pre05.ebuild @@ -136,7 +136,6 @@ DEPEND="${COMMON_DEP} ${ALSA_COMMON_DEP} ${CUPS_COMMON_DEP} ${X_COMMON_DEP} ${X_ || ( >=dev-java/gcj-jdk-4.3 dev-java/icedtea-bin:7 - dev-java/icedtea-bin:6 dev-java/icedtea:7 dev-java/icedtea:6 ) @@ -181,8 +180,7 @@ pkg_setup() { JAVA_PKG_WANT_BUILD_VM=" icedtea-7 icedtea-bin-7 - icedtea-6 icedtea-bin-6 - gcj-jdk" + icedtea-6 gcj-jdk" JAVA_PKG_WANT_SOURCE="1.5" JAVA_PKG_WANT_TARGET="1.5"
[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/
commit: 1e01b20bb7fa4c64e51e26eef4dac496afa8a7b4 Author: William Hubbs gentoo org> AuthorDate: Sat May 21 15:16:20 2016 + Commit: William Hubbs gentoo org> CommitDate: Sat May 21 15:17:14 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e01b20b www-client/pybugz: remove old version Package-Manager: portage-2.2.28 www-client/pybugz/Manifest | 1 - www-client/pybugz/pybugz-0.11.1.ebuild | 37 -- 2 files changed, 38 deletions(-) diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest index 9a2e212..bac3042 100644 --- a/www-client/pybugz/Manifest +++ b/www-client/pybugz/Manifest @@ -1,2 +1 @@ -DIST pybugz-0.11.1.tar.gz 23787 SHA256 05b2cef8a655ab34d9279e6341d16a803af07958e72320125cb30a3fd6bc8eec SHA512 bc2277a8e900765bf1799e5de65de5df8184bf50b6ca7c78478a9f43ceb78aa66bcb53c3fd89f7b194b13fa14ad162291d559554a8cb073c071104e2b0978c61 WHIRLPOOL cb8f9a36cac6ae7a42e43d6d9489e2593c8ae76153b769bf04f269967e6477e37b1633d30969c4d7c6d0bcd816aff7bd189a1754c06769e3ea0f761eda3c16db DIST pybugz-0.12.1.tar.gz 25606 SHA256 aade267d2ee6b02d6872e019ef4ddf8f96e1d81668faa2506e96875fa2981bc7 SHA512 bb76baf8105f4b56b106c3e63f5aebb322659141edf9c5e5af747db5824abffb7b127703ecb7111f9480d05bdb2f11b3fef2cd5f99078d9dda00e841b4ce7394 WHIRLPOOL 0b345efb5f6ce40e5c5910f576e544b2fc65c73beec3843fae21504455c23f3cd5aac41801a2eb733def50485455345e78e8c94287a1943747f608cc63a27e3d diff --git a/www-client/pybugz/pybugz-0.11.1.ebuild b/www-client/pybugz/pybugz-0.11.1.ebuild deleted file mode 100644 index 672aa1a..000 --- a/www-client/pybugz/pybugz-0.11.1.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 -PYTHON_COMPAT=( python3_3 python3_4 python3_5 ) -PYTHON_REQ_USE="readline(+)" - -if [ "${PV}" = "" ]; then - EGIT_REPO_URI="git://github.com/williamh/pybugz.git - https://github.com/williamh/pybugz.git"; - inherit git-r3 -else - SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" - inherit vcs-snapshot -fi - -inherit bash-completion-r1 distutils-r1 - -DESCRIPTION="Command line interface to (Gentoo) Bugzilla" -HOMEPAGE="https://www.github.com/williamh/pybugz"; -LICENSE="GPL-2" -SLOT="0" -IUSE="zsh-completion" - -RDEPEND="${DEPEND}" - -python_install_all() { - distutils-r1_python_install_all - newbashcomp contrib/bash-completion bugz - - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - newins contrib/zsh-completion _pybugz - fi -}
[gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ipfs-bin/
commit: 7a47cee7ca8d813928794e3005f5278c4a210dfa Author: Sam Jorna gentoo org> AuthorDate: Sat May 21 14:52:10 2016 + Commit: Sam Jorna gentoo org> CommitDate: Sat May 21 14:52:10 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a47cee7 net-p2p/go-ipfs-bin: fix unconditional source download amd64 source was being downloaded unconditionally, potentially causing filename conflicts during unpack on x86. Package-Manager: portage-2.3.0_rc1 net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild index ac68566..8a57ab4 100644 --- a/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild +++ b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild @@ -6,7 +6,7 @@ EAPI=6 DESCRIPTION="go-ipfs is the main implementation of IPFS." HOMEPAGE="https://ipfs.io/"; -SRC_URI="https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-amd64.tar.gz +SRC_URI="amd64? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-amd64.tar.gz ) x86? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-386.tar.gz )" # Also available arches: # arm? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-arm.tar.gz )
[gentoo-commits] repo/gentoo:master commit in: app-editors/joe/
commit: b985944413ed1c739edf4ecaa7d1b90363f6308f Author: Ulrich Müller gentoo org> AuthorDate: Sat May 21 14:46:25 2016 + Commit: Ulrich Müller gentoo org> CommitDate: Sat May 21 14:46:57 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9859444 app-editors/joe: Fix maintainer, Emacs rather than GNU Emacs. Package-Manager: portage-2.3.0_rc1 app-editors/joe/metadata.xml | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app-editors/joe/metadata.xml b/app-editors/joe/metadata.xml index dcdfbc1..9fd1399 100644 --- a/app-editors/joe/metadata.xml +++ b/app-editors/joe/metadata.xml @@ -5,8 +5,8 @@ amy...@gentoo.org - gnu-em...@gentoo.org - Gentoo GNU Emacs project + em...@gentoo.org + Gentoo Emacs project JOE (Joe's own editor) has the feel of most IBM PC text editors: The @@ -16,10 +16,10 @@ optimizations, simple installation, and all of the UNIX-integration features of VI. - -Enable full xterm clipboard support - - -joe-editor - + + Enable full xterm clipboard support + + + joe-editor +
[gentoo-commits] repo/gentoo:master commit in: dev-util/heaptrack/
commit: a89b8423c16f4105b433e3aa8cb15dfab42d280c Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:38:21 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 14:40:00 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a89b8423 dev-util/heaptrack: Cleanup due to bug #93104 Package-Manager: portage-2.3.0_rc1 dev-util/heaptrack/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-util/heaptrack/metadata.xml b/dev-util/heaptrack/metadata.xml index d83ca74..097975e 100644 --- a/dev-util/heaptrack/metadata.xml +++ b/dev-util/heaptrack/metadata.xml @@ -1,8 +1,4 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - z...@gentoo.org - Matthias Schwarzott -
[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdck/
commit: b3209c75a406b4af25552cf871a6a5c09d3f0e99 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:36:58 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 14:39:52 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3209c75 app-cdr/cdck: Cleanup due to bug #93104 Package-Manager: portage-2.3.0_rc1 app-cdr/cdck/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/app-cdr/cdck/metadata.xml b/app-cdr/cdck/metadata.xml index 84005f2..c0c7e36 100644 --- a/app-cdr/cdck/metadata.xml +++ b/app-cdr/cdck/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -z...@gentoo.org -Matthias Schwarzott - Actually cdck is a simple program to verify CD/DVD quality. The known fact is that even if all files on the disc are readable, some sectors
[gentoo-commits] repo/gentoo:master commit in: net-dialup/dtrace/
commit: e34bddd636de4162b812b74ac4bc433047603290 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 13:30:56 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 14:39:49 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e34bddd6 net-dialup/dtrace: Cleanup due to bug #92799 Package-Manager: portage-2.3.0_rc1 net-dialup/dtrace/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/net-dialup/dtrace/metadata.xml b/net-dialup/dtrace/metadata.xml index 11b81f9..ee93580 100644 --- a/net-dialup/dtrace/metadata.xml +++ b/net-dialup/dtrace/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - sbrie...@gentoo.org - Stefan Briesenick - DTRACE is a console application for Linux and traces ISDN messages with AVM ISDN-controllers. The program uses manufacturer specific functions
[gentoo-commits] repo/gentoo:master commit in: sys-apps/input-utils/
commit: cbcc47ddfed9dd0d7d5e2d8e6f2487c98b0d3c85 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:39:08 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 14:40:06 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbcc47dd sys-apps/input-utils: Cleanup due to bug #93104 Package-Manager: portage-2.3.0_rc1 sys-apps/input-utils/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/sys-apps/input-utils/metadata.xml b/sys-apps/input-utils/metadata.xml index 91ba0d7..39796f7 100644 --- a/sys-apps/input-utils/metadata.xml +++ b/sys-apps/input-utils/metadata.xml @@ -2,10 +2,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> -z...@gentoo.org -Matthias Schwarzott - - robb...@gentoo.org Robin H. Johnson
[gentoo-commits] repo/gentoo:master commit in: media-sound/aacgain/
commit: 400273635a692e3d3744019873fc72fa68d1f041 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 13:30:36 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 14:39:47 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40027363 media-sound/aacgain: Cleanup due to bug #92799 Package-Manager: portage-2.3.0_rc1 media-sound/aacgain/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/media-sound/aacgain/metadata.xml b/media-sound/aacgain/metadata.xml index 7f003f3..59032d5 100644 --- a/media-sound/aacgain/metadata.xml +++ b/media-sound/aacgain/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - - sbrie...@gentoo.org - Stefan Briesenick - AACGain is a modification to Glen Sawyer's excellent mp3gain program. It supports AAC (mp4/m4a/QuickTime) audio files in addtion to mp3 files. If you are not familiar with mp3gain, stop reading this, and go to
[gentoo-commits] repo/gentoo:master commit in: dev-java/skinlf/
commit: a21a54c642721c2a00ab30a7c15bd7d085a39d3e Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:38:03 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 14:39:58 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a21a54c6 dev-java/skinlf: Cleanup due to bug #93104 Package-Manager: portage-2.3.0_rc1 dev-java/skinlf/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/dev-java/skinlf/metadata.xml b/dev-java/skinlf/metadata.xml index 8f48a8c..7307f54 100644 --- a/dev-java/skinlf/metadata.xml +++ b/dev-java/skinlf/metadata.xml @@ -1,10 +1,6 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -z...@gentoo.org -Matthias Schwarzott - j...@gentoo.org Java
[gentoo-commits] repo/gentoo:master commit in: app-misc/activylircd/
commit: a639197d82c398978bc3b3bee4e92567feaf2259 Author: Pacho Ramos gentoo org> AuthorDate: Sat May 21 14:37:34 2016 + Commit: Pacho Ramos gentoo org> CommitDate: Sat May 21 14:39:55 2016 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a639197d app-misc/activylircd: Cleanup due to bug #93104 Package-Manager: portage-2.3.0_rc1 app-misc/activylircd/metadata.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-misc/activylircd/metadata.xml b/app-misc/activylircd/metadata.xml index 8074d57..ce520de 100644 --- a/app-misc/activylircd/metadata.xml +++ b/app-misc/activylircd/metadata.xml @@ -4,7 +4,7 @@ v...@helmutauer.de Helmut Auer - Proxy maintaining through zzam + Proxy maintaining proxy-ma...@gentoo.org