[gentoo-commits] repo/gentoo:master commit in: app-emulation/cri-o/files/, app-emulation/cri-o/
commit: 43081b4c1a5db43271206f712a11d68f814d0bc0 Author: Zac Medico gentoo org> AuthorDate: Mon Jun 4 05:04:17 2018 + Commit: Zac Medico gentoo org> CommitDate: Mon Jun 4 06:28:42 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43081b4c app-emulation/cri-o: new package Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/cri-o/Manifest | 1 + app-emulation/cri-o/cri-o-1.10.1.ebuild| 104 + app-emulation/cri-o/files/cri-o.logrotated | 7 ++ app-emulation/cri-o/files/crio.initd | 34 ++ app-emulation/cri-o/metadata.xml | 31 + 5 files changed, 177 insertions(+) diff --git a/app-emulation/cri-o/Manifest b/app-emulation/cri-o/Manifest new file mode 100644 index 000..326f71beaf2 --- /dev/null +++ b/app-emulation/cri-o/Manifest @@ -0,0 +1 @@ +DIST cri-o-1.10.1.tar.gz 5159128 BLAKE2B bd6727bedb1f1ca99771995817897721b340331a28dc00646fe6b13765328bbba363aeba4490c12c8d38f9e204e6c744c38f43b4fbbd39d2b44c95be0681475b SHA512 dc85a94cf980ba11a2213e7cec73eeb78460a6a14c50f02f8772ac0d0fe179374d88de01c72f24506a9f1a61db6bf6738114c8944631f76906f6e42f9cf35bde diff --git a/app-emulation/cri-o/cri-o-1.10.1.ebuild b/app-emulation/cri-o/cri-o-1.10.1.ebuild new file mode 100644 index 000..675ac651d89 --- /dev/null +++ b/app-emulation/cri-o/cri-o-1.10.1.ebuild @@ -0,0 +1,104 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_COMMIT="728df92d3e4b77c5a1d3b8e2a5c3c8f3c5bc4f00" +EGO_PN="github.com/kubernetes-incubator/${PN}" + +inherit golang-vcs-snapshot systemd + +DESCRIPTION="OCI-based implementation of Kubernetes Container Runtime Interface" +HOMEPAGE="http://cri-o.io/"; +SRC_URI="https://github.com/kubernetes-incubator/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="btrfs +device-mapper ostree seccomp selinux" + +COMMON_DEPEND=" + app-crypt/gpgme:= + app-emulation/runc + dev-libs/glib:= + dev-libs/libassuan:= + net-firewall/conntrack-tools + net-firewall/iptables + net-misc/cni-plugins + net-misc/socat + sys-apps/iproute2 + btrfs? ( sys-fs/btrfs-progs ) + device-mapper? ( sys-fs/lvm2:= ) + ostree? ( dev-util/ostree ) + seccomp? ( sys-libs/libseccomp:= ) + selinux? ( sys-libs/libselinux:= )" +DEPEND=" + ${COMMON_DEPEND} + dev-go/go-md2man" +RDEPEND="${COMMON_DEPEND}" +S="${WORKDIR}/${P}/src/${EGO_PN}" + +src_prepare() { + default + + sed -e '/^GIT_.*/d' \ + -e 's/$(GO) build/$(GO) build -v -work -x/' \ + -e 's/\${GIT_COMMIT}/'${EGIT_COMMIT}'/' \ + -i Makefile || die + + sed -e 's:/usr/local/bin:/usr/bin:' \ + -i contrib/systemd/* || die +} + +src_compile() { + [[ -f hack/btrfs_installed_tag.sh ]] || die + use btrfs || { echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \ + hack/btrfs_installed_tag.sh || die; } + + [[ -f hack/libdm_installed.sh ]] || die + use device-mapper || { echo -e "#!/bin/sh\necho exclude_graphdriver_devicemapper" > \ + hack/libdm_installed.sh || die; } + + [[ -f hack/ostree_tag.sh ]] || die + use ostree || { echo -e "#!/bin/sh\necho containers_image_ostree_stub" > \ + hack/ostree_tag.sh || die; } + + [[ -f hack/seccomp_tag.sh ]] || die + use seccomp || { echo -e "#!/bin/sh\ntrue" > \ + hack/seccomp_tag.sh || die; } + + [[ -f hack/selinux_tag.sh ]] || die + use selinux || { echo -e "#!/bin/sh\ntrue" > \ + hack/selinux_tag.sh || die; } + + mkdir -p bin || die + GOPATH="${WORKDIR}/${P}" GOBIN="${WORKDIR}/${P}/bin" \ + emake binaries docs +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${D}${EPREFIX}/usr" install.bin install.man + + keepdir /etc/crio + insinto /etc/crio + use seccomp && doins seccomp.json + + "${ED}"/usr/bin/crio --config="" config --default > "${T}"/crio.conf.example || die + doins "${T}/crio.conf.example" + + newinitd "${FILESDIR}/crio.initd" crio + + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotated" "${PN}" + + # Suppress crio log error messages triggered if these don't exist. + keepdir /etc/containers/oci/hooks.d + keepdir /usr/share/containers/oci/hooks.d + + # Suppress crio "Missing CNI default network" log message. + keepdir /etc/cni/net.d + insinto /etc/cni/net.d + doins contrib/cni/99-loopback.conf + + systemd_dounit contrib/systemd/* +} diff --git a/app-emulation/cri-o/files/cri-o.logrotated b/app-emulation/cri-o/files/cri-o.logrotated new file mode 100644 index 000..fb0b8b14a8a --- /dev/null +++ b/app-emulation/cri-o/files/cri-o.lo
[gentoo-commits] data/api:master commit in: files/overlays/
commit: e3581d8620b6af1720b1b0250c34e1ce23b1eb5d Author: Stefan Reimer startux de> AuthorDate: Mon Jun 4 00:03:16 2018 + Commit: Michał Górny gentoo org> CommitDate: Mon Jun 4 05:50:46 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=e3581d86 repositories: Updated quarks URL and source Closes: https://github.com/gentoo/api-gentoo-org/pull/134 files/overlays/repositories.xml | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml index 4b732b6..16f2dfb 100644 --- a/files/overlays/repositories.xml +++ b/files/overlays/repositories.xml @@ -3749,15 +3749,13 @@ FIN quarks -Quarks's overlay; needful things around Gentoo Hardened, Security and Penetration Testing -http://www.startux.de/ +Quarks's overlay; needful things around Security, Penetration Testing and gaming +https://git.zero-downtime.net/quark i...@startux.de Stefan Reimer -git://www.startux.de/quarks.git -http://www.startux.de/git/quarks.git -http://www.startux.de/gitweb/quarks.git/rss +https://git.zero-downtime.net/quark/quarks.git qutebrowser
[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-cy/
commit: f12b109eb55441b1b48b3c34b667594505113884 Author: Sergei Trofimovich gentoo org> AuthorDate: Mon Jun 4 05:29:25 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Mon Jun 4 05:29:25 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f12b109e app-dicts/myspell-cy: stable 20130708 for ia64, bug #657312 Bug: https://bugs.gentoo.org/657312 Package-Manager: Portage-2.3.38, Repoman-2.3.9 RepoMan-Options: --include-arches="ia64" app-dicts/myspell-cy/myspell-cy-20130708.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-dicts/myspell-cy/myspell-cy-20130708.ebuild b/app-dicts/myspell-cy/myspell-cy-20130708.ebuild index fcc5f17b2ad..3fa56f3269b 100644 --- a/app-dicts/myspell-cy/myspell-cy-20130708.ebuild +++ b/app-dicts/myspell-cy/myspell-cy-20130708.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -22,5 +22,5 @@ SRC_URI="mirror://sourceforge/aoo-extensions/geiriadur-cy.oxt -> ${P}.oxt" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE=""
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rash_alt/
commit: 441b36a3fc82d77c1a0ce493b33ba8b847a0b2d7 Author: Hans de Graaff gentoo org> AuthorDate: Mon Jun 4 04:40:14 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Jun 4 04:40:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=441b36a3 dev-ruby/rash_alt: cleanup Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/rash_alt/Manifest | 2 -- dev-ruby/rash_alt/rash_alt-0.4.3.ebuild | 30 -- dev-ruby/rash_alt/rash_alt-0.4.4.ebuild | 30 -- 3 files changed, 62 deletions(-) diff --git a/dev-ruby/rash_alt/Manifest b/dev-ruby/rash_alt/Manifest index 8fc08fce998..8cb7ba81a88 100644 --- a/dev-ruby/rash_alt/Manifest +++ b/dev-ruby/rash_alt/Manifest @@ -1,4 +1,2 @@ -DIST rash_alt-0.4.3.gem 8704 BLAKE2B 0ce0dfcd1fce8ba8be1b24d352b930bdf93c93d7275de23a0de8727ab152a34fe394229835feb3a37af0127bb338a3f281d08b3db98ad98cff014cc23f81eb39 SHA512 4b56a92b6a73cf92dd9ccb251a2b980d60f8c7e1fa24206fe08b3a825dbf1d56797d05b771935012bd75ee609df5a0a46b55aad59d74eee5194f416912ade7e9 -DIST rash_alt-0.4.4.gem 8704 BLAKE2B 1666023e63bff3ae9ddc2ebe77f7fc759bce2dd3175483cd787edb325c765824e96bc8f79ad5c4d5fbad1d4e91daa3aef884db666aff162002b0226cf0b50b22 SHA512 92eabd11fe571c329d0cd8b45248726589d0a59cf4b6cd80f8ea1b5a17c20db94c4fe6a26868c64fb8eb172b352f228c4d9e0ead296393292c05828dec066c58 DIST rash_alt-0.4.5.gem 8704 BLAKE2B 21a2c55d6584f02681e7807c476c65beccbf8582f3408391f0da1d8f45ab7d080d4ac1e9f55b458ff2390996ca46a372ebebb848617d90e457a2ab4113e79498 SHA512 8ff46aadfca60aa77439967374198849a7053524c5abd4d1972bc63a328263315f1b6b43ca6d12f960e12dcdff481807b1575ec9d6cce624f44568c5c0d17312 DIST rash_alt-0.4.6.gem 8704 BLAKE2B bf9489ad3cd7dff9ad376e69b5b9ab0414ecc38a52da48ba04e7be30183637a5924713dc88dbac8b6efba30165e3173e64ca51e50faf236b3d0b69c583afb425 SHA512 d9fbd87e1e5c01056a8d986c985edd6f35c19a27df9fc41cc83353b911973d796e8a28d49c6978c98ad542f9483e116e71a503cb5aa47de64c9b16b17690a1e6 diff --git a/dev-ruby/rash_alt/rash_alt-0.4.3.ebuild b/dev-ruby/rash_alt/rash_alt-0.4.3.ebuild deleted file mode 100644 index 658e61db5f9..000 --- a/dev-ruby/rash_alt/rash_alt-0.4.3.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby21 ruby22 ruby23 ruby24" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -RUBY_FAKEGEM_EXTRADOC="README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="rash.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Rash alt version for Hashie's own Rash" -HOMEPAGE="https://github.com/shishi/rash_alt"; - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/hashie-3.4:3" - -all_ruby_prepare() { - rm Gemfile || die - sed -i -e '/[Bb]undler/d' Rakefile || die - - sed -i -e '/git ls-files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/rash_alt/rash_alt-0.4.4.ebuild b/dev-ruby/rash_alt/rash_alt-0.4.4.ebuild deleted file mode 100644 index 62321d42490..000 --- a/dev-ruby/rash_alt/rash_alt-0.4.4.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby22 ruby23 ruby24" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -RUBY_FAKEGEM_EXTRADOC="README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="rash.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Rash alt version for Hashie's own Rash" -HOMEPAGE="https://github.com/shishi/rash_alt"; - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/hashie-3.5:3" - -all_ruby_prepare() { - rm Gemfile || die - sed -i -e '/[Bb]undler/d' Rakefile || die - - sed -i -e '/git ls-files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die -}
[gentoo-commits] repo/gentoo:master commit in: dev-util/cucumber-expressions/
commit: 96ae4f7b7838629224b6b85b5aa2295854e1f98a Author: Hans de Graaff gentoo org> AuthorDate: Mon Jun 4 04:46:17 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Jun 4 04:46:17 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96ae4f7b dev-util/cucumber-expressions: add 6.0.0 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/cucumber-expressions/Manifest | 1 + .../cucumber-expressions-6.0.0.ebuild | 18 ++ 2 files changed, 19 insertions(+) diff --git a/dev-util/cucumber-expressions/Manifest b/dev-util/cucumber-expressions/Manifest index 5911ff00b3f..33a0bb319f3 100644 --- a/dev-util/cucumber-expressions/Manifest +++ b/dev-util/cucumber-expressions/Manifest @@ -2,3 +2,4 @@ DIST cucumber-expressions-4.0.4.gem 16896 BLAKE2B 5e888f63d4c976db4b10bd99b8f8f4 DIST cucumber-expressions-5.0.15.gem 17920 BLAKE2B 83c741f985aee1fdb316693c70f519bd82e4cb373285f0bc9976405dad143ef562cbac92263e7fbf73254713a699270cf99080ed9d3a3f85a6b982caafebeb6d SHA512 0d50975fac9b94e17f7f0388b50cf1fe98775dc34887846f72d4b1f471ff957b466b9d567fd6e0da7561860d6e2d8364c2f3490ad9e8059ee0d1cd99ebc5f386 DIST cucumber-expressions-5.0.17.gem 17920 BLAKE2B 4b90510f296d3affa659244948913618963204f80db95043924dfdb709e0654dfb5cef55b77c048cac7e7f3cb2af4a9a49150dd77c99f9a87b68d4dbf9f54f16 SHA512 2133e53733c2e68608885df650fed6c8975e310875079ea719c5bfee7635d7b49cc1c5bcc6946ca90323243b13606222993be31bc71da55cdd091b6b93e6567d DIST cucumber-expressions-5.0.18.gem 18432 BLAKE2B d5728a766ac568a0a2588dc99d45364579213e97517f0ce57a954f58533230e2ac362c2664567ba79ee3404d02d2a7811986dc66e6a8365572978da5832e1a96 SHA512 4016248cf116920512895a874f67331a84f782dfbe560dd4a9d64ef001fa8d66ea2663b96dce8e2fb561fd533e6a8a0d399dcb923cba451cc452f15c571e3288 +DIST cucumber-expressions-6.0.0.gem 18944 BLAKE2B ea7987ff411b00b80683e4ace66d6b3e5b91ef35a93af369a79f19472c6fba3eb0be8453fde3d716eef83ec221e35e7c2d0634e0c941693773fbf174e578f45c SHA512 e47a7099cfa3d49cd17bd6f289e0dd6856990e60d1ed4ed68897a4efd40eb5715bdb1bd2fdc0aa5389cf92cd67402ea544238752e38af6156a7b182cd6ebef4e diff --git a/dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild b/dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild new file mode 100644 index 000..06b14165109 --- /dev/null +++ b/dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="a simpler alternative to Regular Expressions" +HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme"; +LICENSE="MIT" + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86" +SLOT="6.0"
[gentoo-commits] repo/gentoo:master commit in: dev-util/cucumber-expressions/
commit: b4e710f01cdc5ce11e2cb022cca043b4bec806fb Author: Hans de Graaff gentoo org> AuthorDate: Mon Jun 4 04:43:44 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Jun 4 04:43:44 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e710f0 dev-util/cucumber-expressions: cleanup Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/cucumber-expressions/Manifest | 3 --- .../cucumber-expressions-5.0.13.ebuild | 18 -- .../cucumber-expressions-5.0.14.ebuild | 18 -- .../cucumber-expressions-5.0.7.ebuild | 18 -- 4 files changed, 57 deletions(-) diff --git a/dev-util/cucumber-expressions/Manifest b/dev-util/cucumber-expressions/Manifest index 014b9fe72af..5911ff00b3f 100644 --- a/dev-util/cucumber-expressions/Manifest +++ b/dev-util/cucumber-expressions/Manifest @@ -1,7 +1,4 @@ DIST cucumber-expressions-4.0.4.gem 16896 BLAKE2B 5e888f63d4c976db4b10bd99b8f8f4122364fb32c106f6485b3b75e3ade15fd573260cc37aaf4abc3754bdf3ad62ac37b4d78a4abc63099a841e256e12425bd3 SHA512 9a52b866545154c9e7d4e8f08cbbf6b2d0dcee28c24486eb95ad4717a757a25ae8ac844702dd2e0c892fa0406f686d3b4eb024c90fc6e7b90be7a6edd7e2dadc -DIST cucumber-expressions-5.0.13.gem 17408 BLAKE2B 113554f5350dc289dea2a97530e1982f4afa00fe23da4e63d55d648e8767443c2f6c18bb2639defbe79034e709dbfd5865bdff0e11f090320132de9724994b9a SHA512 7035d3d6b9bba0f56ca15580956bbb69c3449ca75c825563217ea5773984a976e455866a0046f045573c5fcf8398887e19a87f425299a3231a077a158ccf2f97 -DIST cucumber-expressions-5.0.14.gem 17920 BLAKE2B 623b1c328703d6f9919c9fc7ffab64d26b752fe8f75d21d5ff2323aa502fe49e9b65bfb5f9f0c64c4baee3189c28e5cf05a404fd499c72fa8cf95157492a0e6e SHA512 7e44de399250d21d017a38d72e15390e9e0dc48b03755508767c5c237aebec830623428420a500bcef1bbb9db2157994b59718a731e8baca4266d1393e0b5843 DIST cucumber-expressions-5.0.15.gem 17920 BLAKE2B 83c741f985aee1fdb316693c70f519bd82e4cb373285f0bc9976405dad143ef562cbac92263e7fbf73254713a699270cf99080ed9d3a3f85a6b982caafebeb6d SHA512 0d50975fac9b94e17f7f0388b50cf1fe98775dc34887846f72d4b1f471ff957b466b9d567fd6e0da7561860d6e2d8364c2f3490ad9e8059ee0d1cd99ebc5f386 DIST cucumber-expressions-5.0.17.gem 17920 BLAKE2B 4b90510f296d3affa659244948913618963204f80db95043924dfdb709e0654dfb5cef55b77c048cac7e7f3cb2af4a9a49150dd77c99f9a87b68d4dbf9f54f16 SHA512 2133e53733c2e68608885df650fed6c8975e310875079ea719c5bfee7635d7b49cc1c5bcc6946ca90323243b13606222993be31bc71da55cdd091b6b93e6567d DIST cucumber-expressions-5.0.18.gem 18432 BLAKE2B d5728a766ac568a0a2588dc99d45364579213e97517f0ce57a954f58533230e2ac362c2664567ba79ee3404d02d2a7811986dc66e6a8365572978da5832e1a96 SHA512 4016248cf116920512895a874f67331a84f782dfbe560dd4a9d64ef001fa8d66ea2663b96dce8e2fb561fd533e6a8a0d399dcb923cba451cc452f15c571e3288 -DIST cucumber-expressions-5.0.7.gem 17408 BLAKE2B 1f958063f276154bd75485e1f2b9beabfc41d26e4029ca7a7e89d6f6d81dc25bbd69626920dfbf1a9323f65b6eea105dab328f06daf15c290a11ea0c86dc69e4 SHA512 af83d028df20ac608ce3fd85850da451f1ec76de688f1d0bc71c1e6a0e70cdbb15f4df6710cccf6b736426f9a547b5a5ae0bb860cd626291237c2bc11371a24f diff --git a/dev-util/cucumber-expressions/cucumber-expressions-5.0.13.ebuild b/dev-util/cucumber-expressions/cucumber-expressions-5.0.13.ebuild deleted file mode 100644 index ff5320baa20..000 --- a/dev-util/cucumber-expressions/cucumber-expressions-5.0.13.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby22 ruby23 ruby24" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit ruby-fakegem - -DESCRIPTION="a simpler alternative to Regular Expressions" -HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme"; -LICENSE="MIT" - -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86" -SLOT="5.0" diff --git a/dev-util/cucumber-expressions/cucumber-expressions-5.0.14.ebuild b/dev-util/cucumber-expressions/cucumber-expressions-5.0.14.ebuild deleted file mode 100644 index 832428b34fa..000 --- a/dev-util/cucumber-expressions/cucumber-expressions-5.0.14.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby22 ruby23 ruby24 ruby25" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit ruby-fakegem - -DESCRIPTION="a simpler alternative to Regular Expressions" -HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme"; -LICENSE="MIT" - -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86" -SLOT="5.0" diff --git a/dev-util/cucumber-expressions/cucumber-expressions-5.0.7.ebuild b/dev-util/cucumber-expressions/cucumber-expressions-5.0.7.ebuild deleted file mode 100644 index ff5320baa2
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rash_alt/
commit: b61166b633c6b1bd267d844cc2a60391453c6f77 Author: Hans de Graaff gentoo org> AuthorDate: Mon Jun 4 04:42:06 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Mon Jun 4 04:42:06 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b61166b6 dev-ruby/rash_alt: add 0.4.7 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/rash_alt/Manifest | 1 + dev-ruby/rash_alt/rash_alt-0.4.7.ebuild | 30 ++ 2 files changed, 31 insertions(+) diff --git a/dev-ruby/rash_alt/Manifest b/dev-ruby/rash_alt/Manifest index 8cb7ba81a88..8e735e08e97 100644 --- a/dev-ruby/rash_alt/Manifest +++ b/dev-ruby/rash_alt/Manifest @@ -1,2 +1,3 @@ DIST rash_alt-0.4.5.gem 8704 BLAKE2B 21a2c55d6584f02681e7807c476c65beccbf8582f3408391f0da1d8f45ab7d080d4ac1e9f55b458ff2390996ca46a372ebebb848617d90e457a2ab4113e79498 SHA512 8ff46aadfca60aa77439967374198849a7053524c5abd4d1972bc63a328263315f1b6b43ca6d12f960e12dcdff481807b1575ec9d6cce624f44568c5c0d17312 DIST rash_alt-0.4.6.gem 8704 BLAKE2B bf9489ad3cd7dff9ad376e69b5b9ab0414ecc38a52da48ba04e7be30183637a5924713dc88dbac8b6efba30165e3173e64ca51e50faf236b3d0b69c583afb425 SHA512 d9fbd87e1e5c01056a8d986c985edd6f35c19a27df9fc41cc83353b911973d796e8a28d49c6978c98ad542f9483e116e71a503cb5aa47de64c9b16b17690a1e6 +DIST rash_alt-0.4.7.gem 8704 BLAKE2B 4b3280fbb630af8a0b3eaa3f3ec03788e9a0420e6e511acce1c038f5197b10afb40e8620023141a89ab65dfb3af318df61fa073fd29aa6d2d7863663498a192c SHA512 c6b58da46e6c05a575482dfecc6e40f3f832595979bb5497f90496a57517a09d123dab691d4493e32937f58337bec37df2d1d342fdd7ed8c8befefcdd388b4ae diff --git a/dev-ruby/rash_alt/rash_alt-0.4.7.ebuild b/dev-ruby/rash_alt/rash_alt-0.4.7.ebuild new file mode 100644 index 000..105e4753528 --- /dev/null +++ b/dev-ruby/rash_alt/rash_alt-0.4.7.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +RUBY_FAKEGEM_EXTRADOC="README.rdoc" + +RUBY_FAKEGEM_GEMSPEC="rash.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Rash alt version for Hashie's own Rash" +HOMEPAGE="https://github.com/shishi/rash_alt"; + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/hashie-3.5.6:3 =dev-ruby/hashie-3.5*" + +all_ruby_prepare() { + rm Gemfile || die + sed -i -e '/[Bb]undler/d' Rakefile || die + + sed -i -e '/git ls-files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die +}
[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/
commit: a0906e417725b0e193275df2020c69a0a5d3dd9d Author: Matthias Maier gentoo org> AuthorDate: Mon Jun 4 02:44:18 2018 + Commit: Matthias Maier gentoo org> CommitDate: Mon Jun 4 02:44:31 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0906e41 app-doc/doxygen: fix the fix Closes: https://bugs.gentoo.org/652064 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-doc/doxygen/doxygen-.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/app-doc/doxygen/doxygen-.ebuild b/app-doc/doxygen/doxygen-.ebuild index 4baf1721482..40eea523723 100644 --- a/app-doc/doxygen/doxygen-.ebuild +++ b/app-doc/doxygen/doxygen-.ebuild @@ -97,7 +97,6 @@ src_prepare() { src_configure() { local mycmakeargs=( - -DDOC_INSTALL_DIR="share/doc/${P}" -Duse_libclang=$(usex clang) -Dbuild_doc=$(usex doc) -Dbuild_search=$(usex doxysearch)
[gentoo-commits] repo/gentoo:master commit in: net-libs/libosmo-abis/
commit: fcf909d9597f11d4673de1fd5a11b149845bc10a Author: Zero_Chaos gentoo org> AuthorDate: Mon Jun 4 01:50:50 2018 + Commit: Richard Farina gentoo org> CommitDate: Mon Jun 4 01:50:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcf909d9 net-libs/libosmo-abis: fix missing dep, minor cleanup Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-libs/libosmo-abis/libosmo-abis-.ebuild | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/net-libs/libosmo-abis/libosmo-abis-.ebuild b/net-libs/libosmo-abis/libosmo-abis-.ebuild index 00d1ef07ca5..3574747f1b9 100644 --- a/net-libs/libosmo-abis/libosmo-abis-.ebuild +++ b/net-libs/libosmo-abis/libosmo-abis-.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit autotools git-2 +inherit autotools git-r3 DESCRIPTION="Osmocom library for A-bis interface" HOMEPAGE="http://openbsc.osmocom.org/trac/wiki/libosmo-abis"; @@ -14,9 +14,11 @@ SLOT="0" KEYWORDS="" IUSE="" -DEPEND="net-libs/ortp" +DEPEND="net-libs/ortp + >=net-libs/libosmocore-0.11.0" RDEPEND="${DEPEND}" src_prepare() { + default eautoreconf }
[gentoo-commits] repo/gentoo:master commit in: games-simulation/flightgear/, dev-games/simgear/, ...
commit: c4e6a000a88ee161f778d51640e3013f0be45a8e Author: Maciej Mrozowski gentoo org> AuthorDate: Mon Jun 4 01:39:02 2018 + Commit: Maciej Mrozowski gentoo org> CommitDate: Mon Jun 4 01:41:09 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4e6a000 games-simulation/flightgear: version bump 2018.2.1 dev-games/simgear/Manifest | 1 + dev-games/simgear/simgear-2018.2.1.ebuild | 60 + games-simulation/flightgear-data/Manifest | 1 + .../flightgear-data-2018.2.1.ebuild| 26 games-simulation/flightgear/Manifest | 1 + .../flightgear/flightgear-2018.2.1.ebuild | 148 + 6 files changed, 237 insertions(+) diff --git a/dev-games/simgear/Manifest b/dev-games/simgear/Manifest index 79038a8ba4a..e61b6afba8f 100644 --- a/dev-games/simgear/Manifest +++ b/dev-games/simgear/Manifest @@ -1 +1,2 @@ DIST simgear-2018.1.1.tar.bz2 1303653 BLAKE2B 44b98c2ba8ae292c3736d04813869df528d7ca14bbdc1773e1f4bd4b7b4899b5fd8605a7ada5dcc2d5e863e82ee2f1e1d2b980d3bd775c92325ad3ca834306c3 SHA512 3de7a15dc7b60e9e7466950c1b466d0daefea84b4730a9b8cf5e26c41cece5fd03ccf57b0f3cb977093482beb734560812e347003e19e0bb4b40d81820a11563 +DIST simgear-2018.2.1.tar.bz2 1314943 BLAKE2B 60e44896d466085014020874a1be6ab3f6f87e472f985237404dffb5dfbd5c25f0d330701276e0b8d075830695872eb7521bb4eb5b0107edac5977c3aab85bf7 SHA512 6756994e0688a1f3699c33548ea90b19e99a439ea2f2002cf524629370cd1161a1556ee966fc3a781141fc7a08e7574adc0ecbe6dec67e72d631c6c4d744e4dd diff --git a/dev-games/simgear/simgear-2018.2.1.ebuild b/dev-games/simgear/simgear-2018.2.1.ebuild new file mode 100644 index 000..c8c3453c301 --- /dev/null +++ b/dev-games/simgear/simgear-2018.2.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils toolchain-funcs + +DESCRIPTION="Development library for simulation games" +HOMEPAGE="http://www.simgear.org/"; +SRC_URI="mirror://sourceforge/flightgear/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+dns debug gdal openmp subversion test" + +COMMON_DEPEND=" + dev-libs/expat + >=dev-games/openscenegraph-3.2.0 + media-libs/openal + net-misc/curl + sys-libs/zlib + virtual/opengl + dns? ( net-libs/udns ) + gdal? ( sci-libs/gdal ) +" +DEPEND="${COMMON_DEPEND} + >=dev-libs/boost-1.44 +" +RDEPEND="${COMMON_DEPEND} + subversion? ( dev-vcs/subversion ) +" + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +src_configure() { + local mycmakeargs=( + -DENABLE_DNS=$(usex dns) + -DENABLE_GDAL=$(usex gdal) + -DENABLE_OPENMP=$(usex openmp) + -DENABLE_PKGUTIL=ON + -DENABLE_RTI=OFF + -DENABLE_SIMD=ON + -DENABLE_SOUND=ON + -DENABLE_TESTS=$(usex test) + -DSIMGEAR_HEADLESS=OFF + -DSIMGEAR_SHARED=ON + -DSYSTEM_EXPAT=ON + -DSYSTEM_UDNS=ON + -DUSE_AEONWAVE=OFF + -DOSG_FSTREAM_EXPORT_FIXED=OFF # TODO perhaps track it + ) + cmake-utils_src_configure +} diff --git a/games-simulation/flightgear-data/Manifest b/games-simulation/flightgear-data/Manifest index 4a6111a05fa..4b2df599cd3 100644 --- a/games-simulation/flightgear-data/Manifest +++ b/games-simulation/flightgear-data/Manifest @@ -1 +1,2 @@ DIST FlightGear-2018.1.1-data.tar.bz2 1576049981 BLAKE2B cfcf028ca04ed785ba7c65979e6566ab773d8af869a9b62050969295eafecf7d1f5b6162f498af96786fa23a46e886390f240b56c83e7107473f59552a1155a5 SHA512 022f102f95c9cd8b153d991dad55ecd182e71aa0f3ecfe1502a35d6dcda0746a1fd183f808e59aba8c7f3a0cc9ae1f2f91ff49565bff4c7bc5a1c4889fcc127f +DIST FlightGear-2018.2.1-data.tar.bz2 1624676603 BLAKE2B baecea2002fc3c256205e70c6692102f9bccd04c839902353b0e6d803a97221479e8b54095530dc7af366d842c487d04447f0fd775527e6f5ea0ac32ed602dd6 SHA512 93690703965dd83b610ea0ba67938c0d3fb2d5f6d8c842851a979f352387431eacafb4d181a56dad6def474b2ab84f412cf5531570ce18c1ec80076fe92e4d05 diff --git a/games-simulation/flightgear-data/flightgear-data-2018.2.1.ebuild b/games-simulation/flightgear-data/flightgear-data-2018.2.1.ebuild new file mode 100644 index 000..f364395e847 --- /dev/null +++ b/games-simulation/flightgear-data/flightgear-data-2018.2.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="FlightGear data files" +HOMEPAGE="http://www.flightgear.org/"; +SRC_URI="mirror://sourceforge/flightgear/FlightGear-${PV}-data.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# data fil
[gentoo-commits] repo/gentoo:master commit in: app-emulation/dlx/
commit: fdb73d1806f22562f1334dc1c33ab02c56adeecf Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 20:38:28 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdb73d18 app-emulation/dlx: drop DEPEND as nothing is there Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/dlx/dlx-1.0.0.ebuild | 2 -- 1 file changed, 2 deletions(-) diff --git a/app-emulation/dlx/dlx-1.0.0.ebuild b/app-emulation/dlx/dlx-1.0.0.ebuild index dde85866806..cea941115c4 100644 --- a/app-emulation/dlx/dlx-1.0.0.ebuild +++ b/app-emulation/dlx/dlx-1.0.0.ebuild @@ -14,8 +14,6 @@ SLOT="0" KEYWORDS="x86 ppc" IUSE="" -DEPEND="" - src_install() { dobin masm mon dasm dodoc README.txt MANUAL.TXT
[gentoo-commits] repo/gentoo:master commit in: dev-lang/snobol/
commit: e0742b56714f323bc289a3ce37249d16d3ef8944 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 19:01:34 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:22 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0742b56 dev-lang/snobol: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-lang/snobol/Manifest | 2 -- dev-lang/snobol/snobol-0.99.4.ebuild | 47 --- dev-lang/snobol/snobol-0.99.44.ebuild | 53 --- 3 files changed, 102 deletions(-) diff --git a/dev-lang/snobol/Manifest b/dev-lang/snobol/Manifest index 2fb454981b5..140f755bfb8 100644 --- a/dev-lang/snobol/Manifest +++ b/dev-lang/snobol/Manifest @@ -1,4 +1,2 @@ -DIST snobol-0.99.4.tar.gz 388020 BLAKE2B 18c649923ca907b657e638a3c45e390044a462c3ef88fa69b3688436af94288ba98556d9bf9e0cb26ebcf4941ecf18f015848f17b29ac54bc4e83cc98c25ee9d SHA512 4333c83302363ed47dd98318add93b584b67b8b38bdf01f9dd38981b7711978b5dbec71e9e4aa964e82a35700a927650d3abd3e3074651ab02a7021973af1a6c -DIST snobol4-0.99.44.tar.gz 528205 BLAKE2B 09e967db4348d84d1227b02832ddcaf0e5ef3dd2230d4635d680f85fa8fdb9b6f8c9897a883612baac934909523bc880034e1d85001e79eb099c8538b0377839 SHA512 46ffd03e4f392c7e7cb2a532b0ab6536750c57c78284bb02fa15a0a3a0166adb60779e068c3baf542d81cb01b7cd881d952ad4ecb9cf50a9c109e3b68e292720 DIST snobol4-1.1.tar.gz 677333 BLAKE2B a6ccecaa66657438b2c05dfca9f7db95270b4d1a3502ad06c8d217d50d54ac33b0195eb8b2e045ac0b6c49c19a5bf3ee46e4a35b4d67fc669317c7a5db2b SHA512 ae8482bc64f3d9020dc4d7e390296114e7498ef2764ebb69b6c4960d0c1b01daf4d77dff1aa583231a7f50d4c54f7f72cedc3e4744b03f4b2370fa6de837a3cc DIST snobol4-1.4.1.tar.gz 736837 BLAKE2B bb86d2cd3788ad66b7246d86ebd9f289189f5bd059238d2df3fb621aa4a1e910a8ad029f482077eb78916a84c3a28d868e8ac6eef83b48d7f09a8964c57a855d SHA512 5413af10018141e93f05c9ea637711bb3981f2b67557691d05dde8911178d90900f0fdef6c1d2416ebdda6afeeabd21b9e371b6711b2d093df629cc865fc61f9 diff --git a/dev-lang/snobol/snobol-0.99.4.ebuild b/dev-lang/snobol/snobol-0.99.4.ebuild deleted file mode 100644 index 33400a06921..000 --- a/dev-lang/snobol/snobol-0.99.4.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Phil Budne's port of Macro SNOBOL4 in C, for modern machines" -HOMEPAGE="http://www.snobol4.org/csnobol4/"; -SRC_URI="mirror://snobol4/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="" - -DEPEND="sys-devel/gcc - sys-devel/m4" -RDEPEND="" - -src_unpack() { - unpack ${A} - sed '/autoconf/s:autoconf:./autoconf:g' -i ${S}/configure - echo "OPT=${CFLAGS}" >${S}/local-config - echo "ADD_CPPFLAGS(-DUSE_STDARG_H)" >>${S}/local-config - echo "BINDEST=/usr/bin/snobol4" >>${S}/local-config - echo "MANDEST=/usr/share/man/man4/snobol4.1" >>${S}/local-config - echo "SNOLIB_DIR=/usr/lib/snobol4" >>${S}/local-config -} - -src_compile() { - # WARNING - # The configure script is NOT what you expect - emake || die "emake failed" - emake doc/snobol4.1 || die "emake doc/snobol4.1 failed" -} - -src_install() { - into /usr - newbin xsnobol4 snobol4 - dodir /usr/lib/snobol4 - insinto /usr/lib/snobol4 - doins snolib.a snolib/bq.sno - - doman doc/*.1 - dohtml doc/*.html - rm doc/*.html - dodoc doc/*.ps doc/*.doc -} diff --git a/dev-lang/snobol/snobol-0.99.44.ebuild b/dev-lang/snobol/snobol-0.99.44.ebuild deleted file mode 100644 index 62344ab43a1..000 --- a/dev-lang/snobol/snobol-0.99.44.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Phil Budne's port of Macro SNOBOL4 in C, for modern machines" -HOMEPAGE="http://www.snobol4.org/csnobol4/"; -#SRC_URI="mirror://snobol4/${P}.tar.gz" -MY_PN="snobol4" -MY_P="${MY_PN}-${PV}" -SRC_URI="ftp://ftp.snobol4.org/snobol4/beta/${MY_P}.tar.gz"; - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="" - -DEPEND="sys-devel/gcc - sys-devel/m4" -RDEPEND="" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - sed '/autoconf/s:autoconf:./autoconf:g' -i ${S}/configure - echo "ADD_OPT([${CFLAGS}])" >>${S}/local-config - echo "ADD_CPPFLAGS([-DUSE_STDARG_H])" >>${S}/local-config - echo "ADD_CPPFLAGS([-DHAVE_STDARG_H])" >>${S}/local-config - echo "BINDEST=/usr/bin/snobol4" >>${S}/local-config - echo "MANDEST=/usr/share/man/man4/snobol4.1" >>${S}/local-config - echo "SNOLIB_DIR=/usr/lib/snobol4" >>${S}/local-config -} - -src_compile() { - # WARNING - # The configure script is NOT what you expect - emake || die "emake failed" - emake doc/snobol4.1 || die "emake doc/snobol4.1 failed" -} - -src_insta
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libvolume_id/
commit: 603956e2175e35fe6a5fbf2a838b12f747a894cd Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 19:05:12 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=603956e2 dev-libs/libvolume_id: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libvolume_id/Manifest | 1 - dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild | 34 2 files changed, 35 deletions(-) diff --git a/dev-libs/libvolume_id/Manifest b/dev-libs/libvolume_id/Manifest index 9bd8ddb3036..49e87ed301b 100644 --- a/dev-libs/libvolume_id/Manifest +++ b/dev-libs/libvolume_id/Manifest @@ -1,2 +1 @@ -DIST libvolume_id-0.81.0.tar.bz2 23274 BLAKE2B cda0bb7525121b318ba145c8a2f5c88e80907ea88a02cb3fae5b348bd7ec04adc8687c963c086b20bf691f72d53b96e6e597ede96a4b756613d648b05a267a5c SHA512 46f51bd130d1240518c6ffd97dc45017ebf623ea1ca4d5e518c19a040b1537d8a721a40e147277df0a530ac9d2d045dd399c037b08943c4b96e35ad025e94d85 DIST libvolume_id-0.81.1.tar.bz2 23399 BLAKE2B ba586630200eea63fae41b464c74e1515170fac4f5ab49b3156c53520ca248b68e5812ebac157fda1c74b1ef70828d48584cba9e9adac043b6f835d97abc SHA512 a30c08fcdb020e8b7d0e5350d996d7007040d72e3c1caf3244cf7c6e08cc7d5eee9b94edbc04a073519243884be8b27e61c33a3f61c25e7bfb42eb96785d992f diff --git a/dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild b/dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild deleted file mode 100644 index 8702793a0e2..000 --- a/dev-libs/libvolume_id/libvolume_id-0.81.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Library to provide file system information" -HOMEPAGE="http://www.marcuscom.com"; -SRC_URI="http://www.marcuscom.com/downloads/${PF}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86-fbsd" -IUSE="static" - -DEPEND="" -RDEPEND="" - -src_compile() { - make E="@echo" RANLIB=ranlib AR=ar Q=@ -} - -src_install() { - dodir /usr/share/pkgconfig - insinto /usr/share/pkgconfig - doins libvolume_id.pc - - insinto /usr/include - doins libvolume_id.h - - insinto /usr - dolib libvolume_id.so.0 - dosym libvolume_id.so.0 /usr/lib/libvolume_id.so - use static && dolib libvolume_id.a -}
[gentoo-commits] repo/gentoo:master commit in: dev-java/spice-jndikit/
commit: 5ba602eb502aaa662c323b9316b1b28ae61954ea Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:58:07 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:22 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba602eb dev-java/spice-jndikit: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-java/spice-jndikit/Manifest | 1 - dev-java/spice-jndikit/spice-jndikit-1.2.ebuild | 46 - 2 files changed, 47 deletions(-) diff --git a/dev-java/spice-jndikit/Manifest b/dev-java/spice-jndikit/Manifest index a05633e99d3..32619405542 100644 --- a/dev-java/spice-jndikit/Manifest +++ b/dev-java/spice-jndikit/Manifest @@ -1,2 +1 @@ -DIST spice-jndikit-1.2-src.tar.gz 23084 BLAKE2B 66a00c3c155a006193c87ab2271def35c50cf722c29b4acbf9c2af0aaf19dbfda8be0bfe0ae44dfdecb8a5383334e542833284cd9212436cb837adca049afefe SHA512 bdb508eac32c8dac05be45553a6877e214dce4135c9ae96b95764254df4c0e57f2a7be3905301b096f140014e04e4fe6b517b7757553de26d73a513f7ff06244 DIST spice-jndikit-1.4.zip 55185 BLAKE2B 4d5068a3f2e12d287ecd657e2092a2e73e6637f2285dcea58b6d8c820508f21f1ceb508514813b34cf9c1a7536cbc530aba1edf0ca80603b3008e3afa240582a SHA512 798a1671cf79a9ecfa2b5b6caa0074dcca97cecb445c8dad9a44144cc71fed312f7a13d4b7e12f09eb23b0525b38bca62d67866db76f03ceb5a7a0501501 diff --git a/dev-java/spice-jndikit/spice-jndikit-1.2.ebuild b/dev-java/spice-jndikit/spice-jndikit-1.2.ebuild deleted file mode 100644 index 26737e6041f..000 --- a/dev-java/spice-jndikit/spice-jndikit-1.2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="JNDI Kit is a toolkit designed to help with the construction of JNDI providers" -HOMEPAGE="https://github.com/codehaus"; -SRC_URI="http://dist.codehaus.org/spice/distributions/${P}-src.tar.gz"; -LICENSE="Spice-1.1" -SLOT="0" -KEYWORDS="~x86" - -RDEPEND=">=virtual/jre-1.4" -DEPEND=" - >=virtual/jdk-1.4 - test? ( dev-java/ant-junit )" - -src_unpack() { - unpack ${A} - cd "${S}" - java-ant_ignore-system-classes - java-ant_rewrite-classpath -} - -src_compile() { - java-pkg-2_src_compile - cd target/classes - rmic org.codehaus.spice.jndikit.rmi.server.RMINamingProviderImpl \ - || die "rmic failed" -} - -src_test() { - einfo "Tests need a network connection so they will fail without it" - ANT_TASKS="ant-junit" eant test -DJunit.present=true \ - -Dgentoo.classpath="$(java-pkg_getjars --build-only junit)" -} - -src_install() { - java-pkg_newjar target/${P}.jar - use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc src/java/* -}
[gentoo-commits] repo/gentoo:master commit in: app-emacs/yasnippet/
commit: ad4ab77e9c888b6f299067f2ea89daac7459dcec Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 14:06:32 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad4ab77e app-emacs/yasnippet: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8715 app-emacs/yasnippet/Manifest| 2 -- app-emacs/yasnippet/yasnippet-0.6.1c.ebuild | 48 - 2 files changed, 50 deletions(-) diff --git a/app-emacs/yasnippet/Manifest b/app-emacs/yasnippet/Manifest index 730ee2c486e..a590a9403f4 100644 --- a/app-emacs/yasnippet/Manifest +++ b/app-emacs/yasnippet/Manifest @@ -1,3 +1 @@ DIST yasnippet-0.13.0.tar.gz 577330 BLAKE2B 21830c0a2e99d7669093c16f527debb4921e96aad006887ec1c7e35da58745721658417f1aec96ea78ba4dc5f3951c857848fce67e6d2ff7f255d4aea5687ab9 SHA512 73b111f72e98c4183764cef08ddfaa861dba49f171f96026b074bf62a7aa5e2d8529f616805ba386dd4157b675da953784d5bcd832d6015ce1b72e9c240988c5 -DIST yasnippet-0.6.1c.tar.bz2 47493 BLAKE2B d3bb0d1c343c05f9bc212a0fc114d3c816c02d8de685c55c0f3407a02ee6d1c1e6c24681872dc66e67af773e0e98a78a0366bbfe72ebfd543c5174d2e2f994b0 SHA512 ea4c5850ae80e4db9a188788654a099eddc43e29371ef0cb6367e1a39d3ee9f3e9dab7201178955ae47c92bcecbb5120e0b817e47e9c88c5bcef9e561636a603 -DIST yasnippet-doc-0.6.1c.tar.bz2 490738 BLAKE2B e312481c7693094d62eb0aec465412ea1c894ca5132df9c2beba49c3c78daaec90ca80d17fc9404edbdd8cea1fce63804a102cbe9b7d3d7b23f0761b8a0ea552 SHA512 c96955cac11f319107e0ea907c92860049598cbfd47b6a2e3211dc2b030face77b03aa9495d7e9d78171be87083f77268e90c6c86b0cc467a96a5bd724daf8f1 diff --git a/app-emacs/yasnippet/yasnippet-0.6.1c.ebuild b/app-emacs/yasnippet/yasnippet-0.6.1c.ebuild deleted file mode 100644 index 831ffed191b..000 --- a/app-emacs/yasnippet/yasnippet-0.6.1c.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit elisp - -DESCRIPTION="Yet another snippet extension for Emacs" -HOMEPAGE="https://github.com/capitaomorte/yasnippet"; -SRC_URI="https://yasnippet.googlecode.com/files/${P}.tar.bz2 - doc? ( https://yasnippet.googlecode.com/files/${PN}-doc-${PV}.tar.bz2 )" - -# Homepage says MIT licence, source contains GPL-2 copyright notice -LICENSE="MIT GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -DEPEND=">=app-emacs/dropdown-list-20080316" -RDEPEND="${DEPEND}" - -SITEFILE="50${PN}-gentoo.el" - -src_unpack() { - elisp_src_unpack - - # remove bundled copy of dropdown-list - rm "${S}/dropdown-list.el" || die -} - -src_install() { - elisp_src_install - - insinto "${SITEETC}/${PN}" - doins -r snippets || die "doins failed" - - if use doc; then - dohtml -r "${WORKDIR}"/doc/* || die "dohtml failed" - fi -} - -pkg_postinst() { - elisp-site-regen - - elog "Please add the following code into your .emacs to use yasnippet:" - elog "(yas/initialize)" - elog "(yas/load-directory \"${SITEETC}/${PN}/snippets\")" -}
[gentoo-commits] repo/gentoo:master commit in: app-text/convertlit/
commit: 7676d50d9ace1e052a898b30b80d4205c213bbcb Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:45:12 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7676d50d app-text/convertlit: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/convertlit/convertlit-1.8-r1.ebuild | 48 1 file changed, 48 deletions(-) diff --git a/app-text/convertlit/convertlit-1.8-r1.ebuild b/app-text/convertlit/convertlit-1.8-r1.ebuild deleted file mode 100644 index 30171f29362..000 --- a/app-text/convertlit/convertlit-1.8-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils toolchain-funcs - -MY_P="clit${PV//./}" - -DESCRIPTION="CLit converts MS ebook .lit files to .opf (xml+html+png+jpg)" -HOMEPAGE="http://www.convertlit.com/"; -SRC_URI="http://www.convertlit.com/${MY_P}src.zip"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" - -RDEPEND=">=dev-libs/libtommath-0.36-r1" - -DEPEND="${RDEPEND} - app-arch/unzip" - -RDEPEND="${RDEPEND} - !app-text/open_c-lit" - -S=${WORKDIR} - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-respectflags.patch" -} - -src_compile() { - tc-export CC - - cd "${S}"/lib - emake || die "make lib failed" - cd "${S}"/${MY_P} - emake || die "make ${MY_P} failed" -} - -src_install() { - dobin ${MY_P}/clit || die - dodoc README -}
[gentoo-commits] repo/gentoo:master commit in: app-misc/ps3pf_utils/
commit: b795ad348f7af6b0a834c491dabe9effa61a6a60 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:42:57 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b795ad34 app-misc/ps3pf_utils: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-misc/ps3pf_utils/Manifest | 2 -- app-misc/ps3pf_utils/ps3pf_utils-2.1.1.ebuild | 22 -- app-misc/ps3pf_utils/ps3pf_utils-2.2.0.ebuild | 23 --- 3 files changed, 47 deletions(-) diff --git a/app-misc/ps3pf_utils/Manifest b/app-misc/ps3pf_utils/Manifest index 402613813e5..740de63c9e0 100644 --- a/app-misc/ps3pf_utils/Manifest +++ b/app-misc/ps3pf_utils/Manifest @@ -1,3 +1 @@ -DIST ps3-utils-2.2.0.tar.bz2 361144 BLAKE2B f862ecde260873e8b2e6c79d20e3ae833c65b77e92ef02957c319de166bb9ebd7a1b68c61201f1fb0bd378291e418b5aeaf8283fa03faa26f356989050ab32c9 SHA512 278b4430e307493481ccbe5f1c92968921d5af9b2d09a80a9356ccce984318356183be4983ae5c13bd5e79c2e28c839df0402382d8be5d342a8605236cc060f1 DIST ps3-utils-2.3.tar.bz2 351066 BLAKE2B 2168e6f2d0eb2543ee8efdf6092d9dd21d2bad38ad8459b19b9a2b4bbcc05874cb99768b6d2f090a5866b904c4a0fd5c590eb6ebc431f87fd3686d8a6fcc4adf SHA512 523e8c28325dc77478cc910a62249bfcd29b35b50e9b01d0d6dec600af302a4a3eff532b313d82fb23c4ff5436955629d8a72f1afb03b76f2b1b9cbd534e8396 -DIST ps3pf_utils-2.1.1.tar.bz2 980229 BLAKE2B b0c0081f6938b472285cbf6a0fb03db06447cbde3ade34b1ad5067fde48102f2fc6402e7b0a8a73d03c99e6f9392fb00756347f1d2dabab90a2a4dc06ea8a124 SHA512 5ac971659d946aff3bbaa5090f65018c67bf42309bb855742f1e21d226d619d9f16495396527fe7121d8a5599f5f7496127cb06b011d80b780de19bb73ce668d diff --git a/app-misc/ps3pf_utils/ps3pf_utils-2.1.1.ebuild b/app-misc/ps3pf_utils/ps3pf_utils-2.1.1.ebuild deleted file mode 100644 index 1df332c4519..000 --- a/app-misc/ps3pf_utils/ps3pf_utils-2.1.1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit flag-o-matic - -DESCRIPTION="Utilities to set the ps3 specific features" -HOMEPAGE="http://www.playstation.com/ps3-openplatform/index.html"; -#SRC_URI="http://www.powerdeveloper.org/files/Cell/SourceCD/${P}.tar.bz2 -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~ppc ~ppc64" -IUSE="" - -# fixme: depend on a version of sys-kernel/linux-headers that supports ps3 - -src_install() { - emake DESTDIR="${D}" install || die -} diff --git a/app-misc/ps3pf_utils/ps3pf_utils-2.2.0.ebuild b/app-misc/ps3pf_utils/ps3pf_utils-2.2.0.ebuild deleted file mode 100644 index a7ff984ad3d..000 --- a/app-misc/ps3pf_utils/ps3pf_utils-2.2.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit flag-o-matic - -DESCRIPTION="Utilities to set the ps3 specific features" -HOMEPAGE="http://www.playstation.com/ps3-openplatform/index.html"; -SRC_URI="mirror://gentoo/ps3-utils-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-ppc -ppc64" -IUSE="" - -# fixme: depend on a version of sys-kernel/linux-headers that supports ps3 - -S=${WORKDIR}/ps3-utils-${PV} - -src_install() { - emake DESTDIR="${D}" install || die -}
[gentoo-commits] repo/gentoo:master commit in: dev-java/jgoodies-binding/
commit: 7420020022fcb9aa8d223798b489a4d518dbac08 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:55:41 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:22 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74200200 dev-java/jgoodies-binding: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-java/jgoodies-binding/Manifest | 1 - .../jgoodies-binding-1.1.2-r1.ebuild | 43 .../jgoodies-binding/jgoodies-binding-1.1.2.ebuild | 60 -- 3 files changed, 104 deletions(-) diff --git a/dev-java/jgoodies-binding/Manifest b/dev-java/jgoodies-binding/Manifest index cc1299f17ac..b4b653a2e7d 100644 --- a/dev-java/jgoodies-binding/Manifest +++ b/dev-java/jgoodies-binding/Manifest @@ -1,2 +1 @@ -DIST binding-1_1_2.zip 1265099 BLAKE2B 15cbb78e8289d7457d8c34112b18293b975046221226630542ffdee1950f8e0cf6120eb69daff57e601f75141b037e5ebc85248f396487e37f4435fbb9e77fe6 SHA512 2373a21f7866173a634adf34c089895ff69022ce24af3a0a9225dc312d659c910df387d26ccd94f3f9f2b79edf5a40a9c101e9040a36f0cf96228cfcf5b7 DIST jgoodies-binding-1.1.2.zip 1265099 BLAKE2B 15cbb78e8289d7457d8c34112b18293b975046221226630542ffdee1950f8e0cf6120eb69daff57e601f75141b037e5ebc85248f396487e37f4435fbb9e77fe6 SHA512 2373a21f7866173a634adf34c089895ff69022ce24af3a0a9225dc312d659c910df387d26ccd94f3f9f2b79edf5a40a9c101e9040a36f0cf96228cfcf5b7 diff --git a/dev-java/jgoodies-binding/jgoodies-binding-1.1.2-r1.ebuild b/dev-java/jgoodies-binding/jgoodies-binding-1.1.2-r1.ebuild deleted file mode 100644 index eb59c57ac80..000 --- a/dev-java/jgoodies-binding/jgoodies-binding-1.1.2-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc examples source" - -inherit java-pkg-2 java-ant-2 - -MY_V=${PV//./_} -DESCRIPTION="A Java library to bind object properties with UI components" -HOMEPAGE="http://www.jgoodies.com/"; -SRC_URI="http://www.jgoodies.com/download/libraries/binding-${MY_V}.zip"; - -LICENSE="BSD" -SLOT="1.0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=virtual/jdk-1.4.2 - app-arch/unzip" -RDEPEND=">=virtual/jre-1.4.2 - examples? ( >=dev-java/jgoodies-looks-1.0.5 )" - -S=${WORKDIR}/binding-${PV} - -RESTRICT="test" - -EANT_FILTER_COMPILER="jikes" - -java_prepare() { - find -name "*.jar" -delete || die -} - -src_install() { - java-pkg_dojar build/binding.jar - - dodoc RELEASE-NOTES.txt || die - dohtml README.html || die - use doc && java-pkg_dohtml -r docs/* - use source && java-pkg_dosrc src/core/com - use examples && java-pkg_doexamples src/tutorial -} diff --git a/dev-java/jgoodies-binding/jgoodies-binding-1.1.2.ebuild b/dev-java/jgoodies-binding/jgoodies-binding-1.1.2.ebuild deleted file mode 100644 index 4b7c688b3f1..000 --- a/dev-java/jgoodies-binding/jgoodies-binding-1.1.2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -JAVA_PKG_IUSE="doc examples source" - -inherit java-pkg-2 java-ant-2 - -MY_V=${PV//./_} -DESCRIPTION="A Java library to bind object properties with UI components" -HOMEPAGE="http://www.jgoodies.com/"; -SRC_URI="http://www.jgoodies.com/download/libraries/binding-${MY_V}.zip"; - -LICENSE="BSD" -SLOT="1.0" -KEYWORDS="~amd64 x86" -IUSE="" - -DEPEND=">=virtual/jdk-1.4.2 - app-arch/unzip" -RDEPEND=">=virtual/jre-1.4.2 - examples? ( >=dev-java/jgoodies-looks-1.0.5 )" - -S=${WORKDIR}/binding-${PV} - -src_unpack() { - unpack ${A} - cd "${S}" - - # Clean up the directory structure - rm -rvf *.jar lib - - # Copy the Gentoo'ized build.xml - # cp ${FILESDIR}/build-${PV}.xml ${S} - java-ant_xml-rewrite -f build.xml -d -e javac -a bootclasspath - # || die "Failed to fix bootclasspath" - java-pkg_filter-compiler jikes -} - -src_compile() { - eant jar # precompile javadocs -} - -RESTRICT="test" -# Needs X -#src_test() { -# eant test -D\ -# -Djunit.jar=$(java-pkg_getjar junit junit.jar) -#} - -src_install() { - java-pkg_dojar build/binding.jar - - dodoc RELEASE-NOTES.txt || die - dohtml README.html || die - use doc && java-pkg_dohtml -r docs/* - use source && java-pkg_dosrc src/core/* - use examples && java-pkg_doexamples src/tutorial -}
[gentoo-commits] repo/gentoo:master commit in: app-forensics/foremost/
commit: 120ea3158698b4212e25279fb036f98d975c3c67 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:38:02 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=120ea315 app-forensics/foremost: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-forensics/foremost/Manifest | 1 - app-forensics/foremost/foremost-0.69.ebuild | 25 - 2 files changed, 26 deletions(-) diff --git a/app-forensics/foremost/Manifest b/app-forensics/foremost/Manifest index 204f4523139..96062d4cef6 100644 --- a/app-forensics/foremost/Manifest +++ b/app-forensics/foremost/Manifest @@ -1,2 +1 @@ -DIST foremost-0.69.tar.gz 27719 BLAKE2B c4e4837e0c97b8ca90cd5b67b2731a801947b40a089c24083b4695905ac39556d4bb2aa2970d7b4d7f4567c4c500785403256fc031ab3460b99ce94018070136 SHA512 3d25e62995f7da0e47ffbd9b90ac2d1a6a870ae0e310eb46b8332e914372008c44abe6ef504f875de60d22cfdfac439e53ec65d7cae255d4a989ee9cfa1020b6 DIST foremost-1.5.7.tar.gz 52352 BLAKE2B 5642c1afd86aab0a2f90986c3b030d37b37700c5d0e4b04e4f4a2004d69745280fabd4086a72c33b9eab05b57d125d6b11105c9e11b0112e30077f101eeab7ac SHA512 8827c29d52496783be26374f3943eb26a154d842f34e50fb489f87b3a5045bf85f1e44d7d8d8b12b2355ba3fe4b06a0db979cc22c0f431593c5976001eb931ab diff --git a/app-forensics/foremost/foremost-0.69.ebuild b/app-forensics/foremost/foremost-0.69.ebuild deleted file mode 100644 index 79f9c3240c6..000 --- a/app-forensics/foremost/foremost-0.69.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs - -DESCRIPTION="A console program to recover files based on their headers and footers" -HOMEPAGE="http://foremost.sourceforge.net/"; -SRC_URI="http://foremost.sourceforge.net/pkg/${P}.tar.gz"; - -KEYWORDS="~amd64 ppc x86" -IUSE="" -LICENSE="public-domain" -SLOT="0" - -src_compile() { - emake CC_OPTS="${CFLAGS}" CC="$(tc-getCC)" || die "emake failed" -} - -src_install() { - dobin foremost || die "dobin failed" - doman foremost.1 - dodoc foremost.conf README CHANGES TODO -}
[gentoo-commits] repo/gentoo:master commit in: dev-java/xml-commons-external/
commit: 0c9ee8453eb125d5ce22bd10aa2591378181b833 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 19:00:01 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:22 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9ee845 dev-java/xml-commons-external: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-java/xml-commons-external/Manifest | 1 - .../xml-commons-external-1.4.01.ebuild | 36 -- 2 files changed, 37 deletions(-) diff --git a/dev-java/xml-commons-external/Manifest b/dev-java/xml-commons-external/Manifest index fbcba7fcb95..40d92c28cc2 100644 --- a/dev-java/xml-commons-external/Manifest +++ b/dev-java/xml-commons-external/Manifest @@ -1,3 +1,2 @@ DIST xml-commons-external-1.3.04.tar.bz2 659665 BLAKE2B b7f51fab7162b905142c5256f1d03d519b4ab387edf8b4c3d738ac138cf6ad71f29fd568c99423f840be6eb02bb50e89cfab3c729d2d5071d8a66e30836d8f5e SHA512 8bc71a0850e751ae4a5057833d57b2235734facbae43c733b0a9d86e5be99af016b737f12f5566c736f71374a709dee9954089db8fbeff4fb4cbb236a9fd6abb DIST xml-commons-external-1.4.01.jar 656529 BLAKE2B c51ca760c23759d4f4ad11fcb44caa1cb0bcb2785d9095ed56dba9b0d5fe57370a9d9aaeed5a8e0c1fa67918237ce693590bac791200add2e85155ab87ffe40b SHA512 f00773eec613453d0e1b7b0857b01c51d1926079f38e172953c4ef0350f063439acc8b5967f947c8d15a73e5d53e8887c3bf30122d5f7c553bcef349e5a8cb9a -DIST xml-commons-external-1.4.01.tar.bz2 683486 BLAKE2B 4740516a09f64811a134b7de8309fe0ae803f7867b0cdf3391211297bb9d0dada6010f03f2cb5d0800f971bf1e47356ee163eeb300e49d5db1c6b7adc96f45fb SHA512 fe22afb25e17b69a5416025ea812348af83474c26dcf88613ebc7b5f1288af9a73428b3f70544907afae4ba9dacb2aa7b8e5e2375d0aa712fe9d4e672d2e02db diff --git a/dev-java/xml-commons-external/xml-commons-external-1.4.01.ebuild b/dev-java/xml-commons-external/xml-commons-external-1.4.01.ebuild deleted file mode 100644 index 9e500334ce0..000 --- a/dev-java/xml-commons-external/xml-commons-external-1.4.01.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Externally-defined set of standard interfaces, namely DOM, SAX, and JAXP" -HOMEPAGE="http://xml.apache.org/commons/"; -SRC_URI="https://dev.gentoo.org/~sera/distfiles/${P}.tar.bz2"; -# upstream source tar.gz is missing build.xml and other stuff, so we get it like this -# svn export -# http://svn.apache.org/repos/asf/xerces/xml-commons/tags/xml-commons-external-1_4_01/java/external xml-commons-external-1.4.01 -# tar cjf xml-commons-external-1.4.01.tar.bz2 xml-commons-external-1.4.01 - -LICENSE="Apache-2.0" -SLOT="1.4" -KEYWORDS="amd64 ~arm ppc64 x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc source" - -DEPEND=">=virtual/jdk-1.3" -RDEPEND=">=virtual/jre-1.3" - -src_install() { - java-pkg_dojar build/xml-apis.jar build/xml-apis-ext.jar - - dodoc NOTICE README.* - - if use doc; then - java-pkg_dojavadoc build/docs/javadoc - java-pkg_dohtml -r build/docs/dom - fi - use source && java-pkg_dosrc src/javax src/org -}
[gentoo-commits] repo/gentoo:master commit in: dev-haskell/hscolour/
commit: 5b5cec9c3c3ceb6cefacb1f54c01a844306dab64 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:52:29 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5cec9c dev-haskell/hscolour: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-haskell/hscolour/Manifest | 1 - dev-haskell/hscolour/hscolour-1.17.ebuild | 20 2 files changed, 21 deletions(-) diff --git a/dev-haskell/hscolour/Manifest b/dev-haskell/hscolour/Manifest index c980ab1c0d2..b9fb82bec9f 100644 --- a/dev-haskell/hscolour/Manifest +++ b/dev-haskell/hscolour/Manifest @@ -1,4 +1,3 @@ -DIST hscolour-1.17.tar.gz 20801 BLAKE2B 6588e04bd9da3712c74b829fb232d6896173b072d746e7ca63ec43f4a47f0229b8e463bb76ea24f6f30f506410d346d396859a71a1aa0124c6b3988570ce72e3 SHA512 16cbe462c91fd32b474f0b6346ba24ffc8eaa344498413c1071a65bd8d97488de9f77af7918899efc9145112923a9f2b06722f8584f403dfec21a029c181a2a0 DIST hscolour-1.19.tar.gz 25466 BLAKE2B 852fa5e8d08cabc16c930f32951043f92c8f564773da07de0eeda931caef0197b09d307fffcb9c0c1e86ef139238d46261d355f3b54889bf61d49692b6d8a2e4 SHA512 8f2a9f16cf82fbe41513600c210a0d3af58f1b06ab1ed14a2493203cfce20a8ac959b3a34966273277ac3ceaf3b4916e82892880dd7685f8de12b2636bf53ae1 DIST hscolour-1.20.3.tar.gz 25810 BLAKE2B 28a394ab9f90ac4a7d311e1aa7e4f41c55b26e51e02a72ed3d869d1d9dae566c7a70f3e15c136cbb538f56c303c0a5083d4f725ce2fc6f9cadf27d21b1b563a6 SHA512 759f0a3c3c36b48db7932477468f1c5de8fddec654010dbbd0d136e0f8a8f4e3c34bc9349467766a1cb90ffb56b950ee6b7926f4f62dcb68f8e048e2c212d853 DIST hscolour-1.22.tar.gz 25979 BLAKE2B 42d974c9ffe439010df53d88c0b71397869eef64765eb60554e5bce060492a780d4bea8eeb805f271ac2b62ad4060bf5dee96f69ebe90caa9f62a572d8266207 SHA512 9762599fb4eef8f68a0a40ddfc8e7f50eb8592b1b3d7e4c8177f23f08300264c80a73dbedbe954fbcb9ff3fe1b80497b131e3f8d9adb8c1697d7195d48ef69a0 diff --git a/dev-haskell/hscolour/hscolour-1.17.ebuild b/dev-haskell/hscolour/hscolour-1.17.ebuild deleted file mode 100644 index 20745d061b3..000 --- a/dev-haskell/hscolour/hscolour-1.17.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -CABAL_FEATURES="bin lib profile haddock" -inherit base haskell-cabal - -DESCRIPTION="Colourise Haskell code" -HOMEPAGE="http://www.cs.york.ac.uk/fp/darcs/hscolour/"; -SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="" - -RDEPEND=">=dev-lang/ghc-6.6.1" -DEPEND="${RDEPEND} - >=dev-haskell/cabal-1.6"
[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-spell-da/
commit: 93ebfbae3fce62bac78b062555ad059cfd6f9444 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:49:40 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ebfbae app-vim/vim-spell-da: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-vim/vim-spell-da/vim-spell-da-20060116.ebuild | 12 1 file changed, 12 deletions(-) diff --git a/app-vim/vim-spell-da/vim-spell-da-20060116.ebuild b/app-vim/vim-spell-da/vim-spell-da-20060116.ebuild deleted file mode 100644 index 61033b4f9f2..000 --- a/app-vim/vim-spell-da/vim-spell-da-20060116.ebuild +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -VIM_SPELL_LANGUAGE="Danish" - -inherit vim-spell - -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~ia64 ppc sparc x86" -IUSE=""
[gentoo-commits] repo/gentoo:master commit in: app-text/t1utils/
commit: 38d2cab0ccb9a3e8e941c70d5a321fc3e6c95f2c Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:48:17 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d2cab0 app-text/t1utils: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/t1utils/Manifest| 1 - app-text/t1utils/t1utils-1.40.ebuild | 22 -- 2 files changed, 23 deletions(-) diff --git a/app-text/t1utils/Manifest b/app-text/t1utils/Manifest index db27db9056a..e81cbf7ccbd 100644 --- a/app-text/t1utils/Manifest +++ b/app-text/t1utils/Manifest @@ -1,3 +1,2 @@ DIST t1utils-1.39.tar.gz 175047 BLAKE2B 346c6a400351e3662cb7ab88183c2f3b3934d4dd124742c06513c0d582d1359803fb32272ebb6744a227e1a862e7c55f195273087c8cc401a8bdf507227b967d SHA512 930fa0f264136fdc5d3d18e9a3b45c4818413d01ed12a32daa1b5ecfcc0ea4d6554faf428c6bab9247a2cfc16973787c0b6f0dfbb0273fa6a03a3e8d1d501301 -DIST t1utils-1.40.tar.gz 176192 BLAKE2B fedad4e273c7994f9de5d8a9f88cdaf305608807a18bf7db4cd61ddee3194ee7829c829f4608ee87d7068a627fbdab116a61bef4ed1918ab9e71516f210e4293 SHA512 790a6196b9dedd7ff7b25b7933678190d6380a341d543ca9064372c2c1c8eb8114a054dadd67f7f198084f1d7ed2cc10d78a6dbee6805b8e614328e0809a1807 DIST t1utils-1.41.tar.gz 176552 BLAKE2B 69ccc07a3b98de18355b09532129f80e4188d64817a1ad4e8439b3a0e37917a63b9e187a25fedfc5aba486b2e60279586a425992e9f25a111ba9c77ed3863f6e SHA512 b532d3af38a73903a512eb1297ba7510747dcbe8362acc4a0f20f2a3c786d82d8f5b22997ed3867114f33153a34cdd71c4c8e6a093db3cecc3825b6e4725a00b diff --git a/app-text/t1utils/t1utils-1.40.ebuild b/app-text/t1utils/t1utils-1.40.ebuild deleted file mode 100644 index 1fefc90782c..000 --- a/app-text/t1utils/t1utils-1.40.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -IUSE="" - -DESCRIPTION="Type 1 Font utilities" -SRC_URI="http://www.lcdf.org/type/${P}.tar.gz"; -HOMEPAGE="http://www.lcdf.org/type/#t1utils"; -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 ~sparc-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -LICENSE="BSD" - -DEPEND="" -RDEPEND="${DEPEND} - !
[gentoo-commits] repo/gentoo:master commit in: app-emulation/dlx/
commit: 7d088aad30168a275033825659696bb65f08c108 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 14:08:53 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d088aad app-emulation/dlx: bump EAPI and drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/dlx/dlx-1.0.0-r1.ebuild | 35 --- app-emulation/dlx/dlx-1.0.0.ebuild| 8 +++- 2 files changed, 3 insertions(+), 40 deletions(-) diff --git a/app-emulation/dlx/dlx-1.0.0-r1.ebuild b/app-emulation/dlx/dlx-1.0.0-r1.ebuild deleted file mode 100644 index 6b10ef9f780..000 --- a/app-emulation/dlx/dlx-1.0.0-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs - -DESCRIPTION="DLX Simulator" -HOMEPAGE="http://www.davidviner.com/dlx.php"; -SRC_URI="http://www.davidviner.com/${PN}/${PN}.tar.gz"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -S="${WORKDIR}/${PN}" - -src_compile() { - emake CC="$(tc-getCC)" \ - LINK="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - LFLAGS="${LDFLAGS}" \ - || die "emake failed" -} - -src_install() { - dodir /usr/include/dlx /usr/share/dlx/examples - dobin masm mon dasm - insinto /usr/include/dlx - doins *.i auto.a - insinto /usr/share/dlx/examples - doins *.a hp.m - dodoc README.txt MANUAL.TXT -} diff --git a/app-emulation/dlx/dlx-1.0.0.ebuild b/app-emulation/dlx/dlx-1.0.0.ebuild index 60dd853d23b..dde85866806 100644 --- a/app-emulation/dlx/dlx-1.0.0.ebuild +++ b/app-emulation/dlx/dlx-1.0.0.ebuild @@ -1,9 +1,10 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=6 S=${WORKDIR}/dlx + DESCRIPTION="DLX Simulator" HOMEPAGE="http://www.davidviner.com/dlx.php"; SRC_URI="http://www.davidviner.com/dlx/dlx.tar.gz"; @@ -12,11 +13,8 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc" IUSE="" -DEPEND="" -src_compile() { - emake || die -} +DEPEND="" src_install() { dobin masm mon dasm
[gentoo-commits] repo/gentoo:master commit in: dev-libs/log4shib/
commit: cbd9531af2b47e3ec9a116748f2971b4a7966ade Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 19:05:38 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbd9531a dev-libs/log4shib: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/log4shib/Manifest | 1 - dev-libs/log4shib/log4shib-1.0.1.ebuild | 37 - 2 files changed, 38 deletions(-) diff --git a/dev-libs/log4shib/Manifest b/dev-libs/log4shib/Manifest index 8ece2320e35..984ad1ebdd6 100644 --- a/dev-libs/log4shib/Manifest +++ b/dev-libs/log4shib/Manifest @@ -1,2 +1 @@ -DIST log4shib-1.0.1.tar.gz 498381 BLAKE2B b5f849f7f6bd7cd224ec135a3f4308ac4d56f8f51d45d4561ac76bc7ff903afbbc70c21790ee26f9449153384116dcb8d40bbfb9f07194ed22e9d80488cbe882 SHA512 ed64dca5f20c8135944abdfe7e7b66702cd1ae712ba362508759194c8f53c2a9a878142619a4befd3c4180de366fd2c9a6af7af1873b170d45e91b8bf527b836 DIST log4shib-1.0.4.tar.gz 487529 BLAKE2B 8ba4dd17e2f35c6566ba4736b5450c41fab1c5506ab6e994136b97ccab4d399281afb32fcf13935c25acd7ba063d2ed6595bab564614ffbb0d944074b68a5bba SHA512 af31bb436393e1a6a2674c0f4804148dea4f4081bb07b78f158f4109157bef4ed40647a3e4da7ec5eef0ed38b6286aee6d8b8a3320572c2b55df2998850d5245 diff --git a/dev-libs/log4shib/log4shib-1.0.1.ebuild b/dev-libs/log4shib/log4shib-1.0.1.ebuild deleted file mode 100644 index c1554df5aff..000 --- a/dev-libs/log4shib/log4shib-1.0.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils autotools - -DESCRIPTION="Internet2 version for OpenSAML of log4cpp logging framework" -HOMEPAGE="https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib"; -SRC_URI="http://shibboleth.internet2.edu/downloads/${PN}/${PV}/${P}.tar.gz"; - -KEYWORDS="~amd64 ~x86" -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="doc" - -DEPEND="doc? ( app-doc/doxygen )" -RDEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - # fix sandbox violation by doc installation - epatch "${FILESDIR}/${PN}-doc.patch" - AT_M4DIR="m4" eautoreconf -} - -src_compile() { - econf --without-idsa \ - $(use_enable doc doxygen) - emake || die "emake failed" -} - -src_install () { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README THANKS || die "dodoc failed" -}
[gentoo-commits] repo/gentoo:master commit in: sys-apps/servicelog/
commit: d77f4910e6c1da2eeb8fe0fe9074235ea166137e Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 19:11:34 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d77f4910 sys-apps/servicelog: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-apps/servicelog/Manifest | 2 -- sys-apps/servicelog/servicelog-1.1.11.ebuild | 33 sys-apps/servicelog/servicelog-1.1.13.ebuild | 33 3 files changed, 68 deletions(-) diff --git a/sys-apps/servicelog/Manifest b/sys-apps/servicelog/Manifest index fceac5615d5..9616a015c8f 100644 --- a/sys-apps/servicelog/Manifest +++ b/sys-apps/servicelog/Manifest @@ -1,4 +1,2 @@ DIST servicelog-1.0.1.tar.gz 159034 BLAKE2B 71ddc13087866b81b69d6a3e925e8d0bd8a70a9f4e16a4006aa86051582e309c82fe4ba19aa65254b1a8e6674616b60ac6b77f38994c874672071d2530f34008 SHA512 a3e6c2c8e828de71ee81ead3435fea562501a90b3930a27087096b648a831fd351b4075f3d46359b41f88c1353dbeaf6039961ce72b1e3876734b7ad02b9f137 -DIST servicelog-1.1.11.tar.gz 318874 BLAKE2B 933ffa91c8f1c33b5b099bdab9a548a4c0d26b0fa04cd313d1639d1acb2006c9fd39ab523930787be2bdda34ec1f41715328c1e6212bf3ab4d7dcb95a1ab3dc4 SHA512 45adabe828a2e700b0920cc89fa4f93ac923cbf0249facbd52e23e1507d3daf12a2e4f2b093539286cebf8291266b2cbdcfea1c17f83a75c537c368885fd398c -DIST servicelog-1.1.13.tar.gz 357637 BLAKE2B 7306fef7760c0e9040761af2672e267ddc3f5fbd75ef3ff07ca59511724d98d460dea048629be16906d8b3b77f987b5e406f03e0d26fa7a2c6136d3f7f782282 SHA512 2c9b2705825a98fbae3bc1c35f8acd014e5234d316d4c00fcceeb86b9263080fe525dfe71553c935092f8787b7125a3ed39c0cf07c069c56d1e816748698aa94 DIST servicelog-1.1.14.tar.gz 361289 BLAKE2B 297c03c7d97295567c988eb2080554dfabb3becc159be4cf21a4c431698baa9e50f2af063b274341ec9b9cfd2664defa0aadb7169a518a4cb62b059c0f051cdd SHA512 d7b5e4089f258d69a7a07a46e43f1083fad701a917c150af8b68542db26348c0160dbca6c0d94aa68eb7a4b77139a763780c1af8422b785009567489a5e587cb diff --git a/sys-apps/servicelog/servicelog-1.1.11.ebuild b/sys-apps/servicelog/servicelog-1.1.11.ebuild deleted file mode 100644 index aca803c06b5..000 --- a/sys-apps/servicelog/servicelog-1.1.11.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -S=${WORKDIR}/${PN}-${PV} -DESCRIPTION="Provides utilities for logging service-related events" -SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz" -HOMEPAGE="http://linux-diag.sourceforge.net/servicelog/"; - -SLOT="0" -LICENSE="IBM" -KEYWORDS="~ppc ~ppc64" -IUSE="" - -DEPEND="sys-libs/libservicelog" - -RDEPEND="${DEPEND} - virtual/logger" - -src_unpack() { - unpack ${A} -} - -src_compile() { - econf -} -src_install () { - emake install DESTDIR="${D}" - dodoc ChangeLog -} diff --git a/sys-apps/servicelog/servicelog-1.1.13.ebuild b/sys-apps/servicelog/servicelog-1.1.13.ebuild deleted file mode 100644 index aca803c06b5..000 --- a/sys-apps/servicelog/servicelog-1.1.13.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -S=${WORKDIR}/${PN}-${PV} -DESCRIPTION="Provides utilities for logging service-related events" -SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz" -HOMEPAGE="http://linux-diag.sourceforge.net/servicelog/"; - -SLOT="0" -LICENSE="IBM" -KEYWORDS="~ppc ~ppc64" -IUSE="" - -DEPEND="sys-libs/libservicelog" - -RDEPEND="${DEPEND} - virtual/logger" - -src_unpack() { - unpack ${A} -} - -src_compile() { - econf -} -src_install () { - emake install DESTDIR="${D}" - dodoc ChangeLog -}
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libdshconfig/
commit: ff97731fb9bab0c8d9118cf8bc93622d343c7d09 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 19:04:12 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff97731f dev-libs/libdshconfig: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libdshconfig/Manifest| 1 - dev-libs/libdshconfig/libdshconfig-0.20.12.ebuild | 21 - 2 files changed, 22 deletions(-) diff --git a/dev-libs/libdshconfig/Manifest b/dev-libs/libdshconfig/Manifest index 3cb27e8d8e9..8c980e3eeff 100644 --- a/dev-libs/libdshconfig/Manifest +++ b/dev-libs/libdshconfig/Manifest @@ -1,2 +1 @@ -DIST libdshconfig-0.20.12.tar.gz 316955 BLAKE2B d19a59e46ad625d671a3a0166e4fb1f2810e00a5289353ffce87a50f32bde8d56c53e1a03969242b7f578b69c087938851d8b0a0897c16e96d6b9b8ea7d7c765 SHA512 6ee7e813599715c2217f05212e0efb94d9588f71db3f3f470e50e9fbde93be3fd3ce3b8164251ea647e76ba9fd0db502985b5fc1e3afffdf9074a00ee9900b64 DIST libdshconfig-0.20.13.tar.gz 323720 BLAKE2B d470f71930e9c2b909d99fc177a0d867dca459c7831a2752b39573729a3b875bd65fd6cc68da3966912987b07f956afebe84d6f5329437eed391ac92c2ebb296 SHA512 04f3580bf1e1dbac130d350eb4c6e86a980f2ae8636a206821813ed0e14db07dc7ea720ebb3816455a4a939294caa2f2247b7348ecea72769a6f05bee0dbf19a diff --git a/dev-libs/libdshconfig/libdshconfig-0.20.12.ebuild b/dev-libs/libdshconfig/libdshconfig-0.20.12.ebuild deleted file mode 100644 index ac29de24cd6..000 --- a/dev-libs/libdshconfig/libdshconfig-0.20.12.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Library for parsing dsh.style configuration files" -HOMEPAGE="http://www.netfort.gr.jp/~dancer/software/downloads/"; -SRC_URI="http://www.netfort.gr.jp/~dancer/software/downloads/${P}.tar.gz"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~m68k-mint" -IUSE="" - -DEPEND="" -RDEPEND="virtual/ssh" - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc ChangeLog -}
[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-ivy/
commit: 10358ecd6161e47679ea12ba4b9e990d543dd6f5 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:54:10 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10358ecd dev-java/ant-ivy: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-java/ant-ivy/Manifest| 1 - dev-java/ant-ivy/ant-ivy-1.3.1-r1.ebuild | 66 2 files changed, 67 deletions(-) diff --git a/dev-java/ant-ivy/Manifest b/dev-java/ant-ivy/Manifest index bf62bf6af0b..ef80fa17ff6 100644 --- a/dev-java/ant-ivy/Manifest +++ b/dev-java/ant-ivy/Manifest @@ -1,3 +1,2 @@ DIST apache-ivy-2.3.0-src.tar.gz 2790722 BLAKE2B 87a79bad15b9b74517ce240fcfd0ae9e58b67816f0ec1fbd14081a17bd837c497da419d0b45ad63b3782b151e86c85b79cafa11f8c1170ab0287597be78cabe7 SHA512 fde43ff288cd8c77f2bdecdcbf52f180247ed99a8526be9d875d60e209b66155d5526e968400382d2cef22cabb8899c3b0912e049ae7d23e2cb79be8a81fe00f -DIST ivy-1.3.1-src.zip 1302693 BLAKE2B fbf6da871fdb629810bfa15ec977da4e998a987bd509e80c462d6ebfc113f88ea0c609526795bc414cb0d17fb424c345e40d2fc1a6d17ac8a8bcd25cd9c9bcef SHA512 35c425ea8adc714496dbc2bc0d5a6037fe295967bea9014a16850e54ab3925192e42579ca1e23d68d776326e81e1e195ce85f1a7791a6b0b20ed179c09a22f82 DIST ivy-1.4.1-src.zip 751792 BLAKE2B 3a6ca8aaa49be9c664c3de4789debfe5770bb32084c548aa49a8d6146b55391729d5d68758e26f29253ab727e8a2a731961ba45419f3c1a212b26d74f33b0a0e SHA512 8ccb4680e8c32178bf12b74f4c6df668bbdd06c6dce6a2d0bf1b9daeec8fb5166d4d510cadb247dc4e2a91b71f5dc7fc429d0d7faed95a2898fd4f9d0888ee8d diff --git a/dev-java/ant-ivy/ant-ivy-1.3.1-r1.ebuild b/dev-java/ant-ivy/ant-ivy-1.3.1-r1.ebuild deleted file mode 100644 index 58853eef8a6..000 --- a/dev-java/ant-ivy/ant-ivy-1.3.1-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 eutils - -MY_PN=${PN##*-} -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Ivy is a free java based dependency manager" -HOMEPAGE="https://ant.apache.org/ivy/"; -SRC_URI="http://jayasoft.org/downloads/ivy/1.3.1/${MY_P}-src.zip"; - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="" - -COMMON_DEP=" - dev-java/ant-core - =dev-java/commons-cli-1* - =dev-java/commons-httpclient-3* - dev-java/commons-logging - =dev-java/jakarta-oro-2.0*" -DEPEND=" - >=virtual/jdk-1.4 - app-arch/unzip - ${COMMON_DEP}" -RDEPEND=">=virtual/jre-1.4 - ${COMMON_DEP}" - -S=${WORKDIR}/${MY_P} - -# Rewrites examples... bad -JAVA_PKG_BSFIX="off" - -src_unpack() { - unpack ${A} - - cd "${S}" - epatch "${FILESDIR}/${MY_P}-noresolve.patch" - epatch "${FILESDIR}/${MY_P}-tasks.patch" - - mkdir "${S}/lib" - java-pkg_jar-from --into lib commons-cli-1,commons-httpclient-3,commons-logging,ant-core,jakarta-oro-2.0 - - java-ant_bsfix_one build.xml -} - -src_install() { - java-pkg_dojar build/artifact/${MY_PN}.jar - dodir /usr/share/ant-core/lib - dosym /usr/share/${PN}/lib/${MY_PN}.jar /usr/share/ant-core/lib/${PN}.jar - use doc && java-pkg_dojavadoc doc/build/api - use source && java-pkg_dosrc src/java/* -} - -RESTRICT="test" # fail because of a missing file - -src_test() { - java-pkg_jar-from --into lib junit - ANT_TASKS="ant-junit" eant test || die "Junit tests failed" -}
[gentoo-commits] repo/gentoo:master commit in: dev-libs/boehm-gc/
commit: 012abdf59420fda11e19ceba0582fda2fc3fbd70 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 19:02:59 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=012abdf5 dev-libs/boehm-gc: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/boehm-gc/Manifest | 2 -- dev-libs/boehm-gc/boehm-gc-6.8.ebuild| 49 --- dev-libs/boehm-gc/boehm-gc-7.1-r1.ebuild | 50 3 files changed, 101 deletions(-) diff --git a/dev-libs/boehm-gc/Manifest b/dev-libs/boehm-gc/Manifest index e9cf160b3b9..38926089a91 100644 --- a/dev-libs/boehm-gc/Manifest +++ b/dev-libs/boehm-gc/Manifest @@ -1,5 +1,3 @@ -DIST gc-7.1.tar.gz 1077714 BLAKE2B e3171e16b3451d61baefb6c005681abb3bdf6d29cfd595dc9b8672795a127a8dae0d03ee333ad23344adf8b0bcf2f0a4597ab39d5be2d3a56c5d92c0c717acb8 SHA512 10faa0062c7df2ac7e2e29ac369167daad526c9de477e9af2298e6e5ad0bb1de5d32203e048892b16c34b398657a1a338e2e122c3137eeb8143b184f9b5e7ea0 DIST gc-7.2e.tar.gz 1291186 BLAKE2B 8c320aac2d9deb8fcca2e93622aa122f96c4152d2b18bd284be32d5a041f357beaf8f3142548685fe167642070471862d04c0e6c3ba1c99bc9c05e63d6854005 SHA512 80d1d50e38714b4f198743cd8cd5ab80a35cfbb7f5f9d66c89f40319604e989125870f010d4499876978594a5823d7b61213224a68da8664b9e4f8e14076c999 DIST gc-7.4.2.tar.gz 1082597 BLAKE2B 5ca30e786a995941fdf2d803d201e7263bdd7d9974a71f672ff259c75ee36dc5d499a614334e570100ddbcb25fd06176f48429b64bad95fb218c35ba584ad4c6 SHA512 2e21516addf268780641ee55c0cb3ecc2d96fa963faffee5beadcade9c6bf1ee49ee1a75b076b5d49ddde7c839fb94f4c3623ca8412d14c2a5bf6ca30d424a72 DIST gc-7.6.4.tar.gz 1120784 BLAKE2B e7cad27d2144fd37aebad44093e1a0814fe9a1cc887701e485681cdd01f3ea4477150697d535d0873a1255abff0765084119096c7ed61d3caeda439cf2a7644f SHA512 2c85be3e24b85732b3dc6f08fe98cf1a82b6fb2a22ec73090f80920721c737ef92cee8f0cd7ea7228d686005d164e7da54ce3907c3a1ba5eefa43355a472085e -DIST gc6.8.tar.gz 756879 BLAKE2B 8a56c4f7b23e79862aaa6fc505a56ea9a8ed53b9f3aedc8cbb57c37f0fabe040abe22096a8893b7f7b1ff1267bff37101e3dfbbcedab380afe0abff02b98fe14 SHA512 69a9554d2d213392512d4ce41ec8c4993557e65c2b3dc4f568ac18695421cc08b7677c25f9a0ce03e94fb5e68a298fcac7ed09fb90007a2c998ff6ef78d3c651 diff --git a/dev-libs/boehm-gc/boehm-gc-6.8.ebuild b/dev-libs/boehm-gc/boehm-gc-6.8.ebuild deleted file mode 100644 index 46e76013835..000 --- a/dev-libs/boehm-gc/boehm-gc-6.8.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -MY_P="gc${PV/_/}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector" -HOMEPAGE="http://www.hboehm.info/gc/"; -SRC_URI="http://www.hboehm.info/gc/gc_source/${MY_P}.tar.gz"; - -LICENSE="boehm-gc" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" -IUSE="cxx threads" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e '/^SUBDIRS/s/doc//' Makefile.in || die - epatch "${FILESDIR}"/${PN}-6.5-gentoo.patch - epatch "${FILESDIR}"/gc6.6-builtin-backtrace-uclibc.patch -} - -src_compile() { - econf \ - $(use_enable cxx cplusplus) \ - $(use threads || echo --disable-threads) - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die - - rm -rf "${D}"/usr/share/gc || die - - # dist_noinst_HEADERS - insinto /usr/include/gc - doins include/{cord.h,ec.h,javaxfc.h} - insinto /usr/include/gc/private - doins include/private/*.h - - dodoc README.QUICK doc/README* doc/barrett_diagram - dohtml doc/*.html - newman doc/gc.man GC_malloc.1 -} diff --git a/dev-libs/boehm-gc/boehm-gc-7.1-r1.ebuild b/dev-libs/boehm-gc/boehm-gc-7.1-r1.ebuild deleted file mode 100644 index cf5927c9f57..000 --- a/dev-libs/boehm-gc/boehm-gc-7.1-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -MY_P="gc-${PV/_/}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector" -HOMEPAGE="http://www.hboehm.info/gc/"; -SRC_URI="http://www.hboehm.info/gc/gc_source/${MY_P}.tar.gz"; - -LICENSE="boehm-gc" -SLOT="0" -KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86" -IUSE="cxx threads" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e '/^SUBDIRS/s/doc//' Makefile.in || die - epatch "${FILESDIR}"/${PN}-6.5-gentoo.patch - epatch "${FILESDIR}"/gc6.6-builtin-backtrace-uclibc.patch - sed '/Cflags/s:$:/gc:g' -i bdw-gc.pc.in || die -} - -src_compile() { - econf \ - $(use_enable cxx cplusplus) \ - $(use threads || echo --disable-threads) - emake || die -} - -src_inst
[gentoo-commits] repo/gentoo:master commit in: app-portage/prefix-chain-setup/
commit: 82fd5b341295b7f6149fa1fc3a138d20e94143a5 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 18:44:19 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Mon Jun 4 01:12:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82fd5b34 app-portage/prefix-chain-setup: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 .../prefix-chain-setup-0.5.ebuild | 222 - 1 file changed, 222 deletions(-) diff --git a/app-portage/prefix-chain-setup/prefix-chain-setup-0.5.ebuild b/app-portage/prefix-chain-setup/prefix-chain-setup-0.5.ebuild deleted file mode 100644 index a078612d6aa..000 --- a/app-portage/prefix-chain-setup/prefix-chain-setup-0.5.ebuild +++ /dev/null @@ -1,222 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit prefix - -DESCRIPTION="Chained EPREFIX bootstrapping utility" -HOMEPAGE="https://dev.gentoo.org/~mduft"; -SRC_URI="" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~ppc-aix ~x64-cygwin ~x86-linux ~sparc-solaris ~x86-solaris" -IUSE="" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}" - -src_install() { - eprefixify ${PN} - sed -e "s,@GENTOO_PORTAGE_CHOST@,${CHOST}," -i ${PN} - dobin ${PN} -} - -src_unpack() { - { cat > "${PN}" || die; } <<'EOF' -#!/usr/bin/env bash - -PARENT_EPREFIX="@GENTOO_PORTAGE_EPREFIX@" -PARENT_CHOST="@GENTOO_PORTAGE_CHOST@" -CHILD_EPREFIX= -CHILD_PROFILE= -DO_MINIMAL=no -DO_SOURCES=no -PORT_TMPDIR= - -# -# get ourselfs the functions.sh script for ebegin/eend/etc. -# -for f in \ - /lib/gentoo/functions.sh \ - /etc/init.d/functions.sh \ - /sbin/functions.sh \ -; do - if [[ -r ${PARENT_EPREFIX}${f} ]]; then - . "${PARENT_EPREFIX}${f}" - f=found - break - fi -done - -if [[ ${f} != found ]]; then - echo "Cannot find Gentoo functions, aborting." >&2 - exit 1 -fi - -for arg in "$@"; do - case "${arg}" in - --eprefix=*)CHILD_EPREFIX="${arg#--eprefix=}" ;; - --profile=*)CHILD_PROFILE="${arg#--profile=}" ;; - --sources) DO_SOURCES=yes ;; - --portage-tmpdir=*) PORT_TMPDIR="${arg#--portage-tmpdir=}" ;; - - --help) - einfo "$0 usage:" - einfo " --eprefix=[PATH] Path to new EPREFIX to create chained to the prefix" - einfo " where this script is installed (${PARENT_EPREFIX})" - einfo " --profile=[PATH] The absolute path to the profile to use. This path" - einfo " must point to a directory within ${PARENT_EPREFIX}" - einfo " --sources inherit 'source' statements from the parent make.conf" - einfo " --portage-tmpdir=DIR use DIR as portage temporary directory." - exit 0 - ;; - esac -done - -# -# sanity check of given values -# - -test -n "${CHILD_EPREFIX}" || { eerror "no eprefix argument given"; exit 1; } -test -d "${CHILD_EPREFIX}" && { eerror "${CHILD_EPREFIX} already exists"; exit 1; } -test -n "${CHILD_PROFILE}" || { eerror "no profile argument given"; exit 1; } -test -d "${CHILD_PROFILE}" || { eerror "${CHILD_PROFILE} does not exist"; exit 1; } -if test -n "${PORT_TMPDIR}"; then - if ! test -d "${PORT_TMPDIR}"; then - einfo "creating temporary directory ${PORT_TMPDIR}" - mkdir -p "${PORT_TMPDIR}" - fi -fi - -einfo "creating chained prefix ${CHILD_EPREFIX}" - -# -# functions needed below. -# -eend_exit() { - eend $1 - [[ $1 != 0 ]] && exit 1 -} - -# -# create the directories required to bootstrap the least. -# -ebegin "creating directory structure" -( - set -e - mkdir -p "${CHILD_EPREFIX}"/etc/portage - mkdir -p "${CHILD_EPREFIX}"/var/log -) -eend_exit $? - -# -# create a make.conf and set PORTDIR and PORTAGE_TMPDIR -# -ebegin "creating make.conf" -( - set -e - echo "#" - echo "# The following values where taken from the parent prefix's" - echo "# environment. Feel free to adopt them as you like." - echo "#" - echo "CFLAGS=\"$(portageq envvar CFLAGS)\"" - echo "CXXFLAGS=\"$(portageq envvar CXXFLAGS)\"" - echo "MAKEOPTS=\"$(portageq envvar MAKEOPTS)\"" - niceness=$(portageq envvar PORTAGE_NICENESS || true) - [[ -n ${niceness} ]] && - echo "PORTAGE_NICENESS=\"${niceness}\"" - echo "USE=\"prefix-chaining\"" - echo - echo "# Mirrors from parent prefix." - echo "GENTOO_MIRRORS=\"$(portageq envvar GENTOO_MIRRORS || true)\"" - echo - echo "#" - echo "# Below comes the chained-prefix setup. Only change things" - echo "# if you know exactly what you are doing!" - echo "# by default, o
[gentoo-commits] repo/gentoo:master commit in: media-sound/clementine/
commit: 98890db27d7b1df7c5ba9c976045e0fe744c2968 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 3 23:19:04 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 3 23:20:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98890db2 media-sound/clementine: 1.3.1_p20180523 snapshot bump >=Qt-5.11.0_beta3 compatibility. Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-sound/clementine/Manifest| 1 + .../clementine/clementine-1.3.1_p20180523.ebuild | 181 + 2 files changed, 182 insertions(+) diff --git a/media-sound/clementine/Manifest b/media-sound/clementine/Manifest index 4b0aa4198c4..369a56dd408 100644 --- a/media-sound/clementine/Manifest +++ b/media-sound/clementine/Manifest @@ -1 +1,2 @@ DIST clementine-1.3.1_p20180416.tar.gz 8489387 BLAKE2B 37412428cf030a71f0011ba68a7ce71a3bbdc59402dc6d6349cca8ee44b208052cee9add1597a9577e5a6ed4bb2ebf16c4e1f79612d12be265f637caffd02a76 SHA512 8f38554571c637d9f79df43679ac2a76383f7a9b4ee8e921a16175889180e72afadc352dd40d73a671aa8ae9b01f6a251ae7b94b010043f8bcb8d8f42dcfff62 +DIST clementine-1.3.1_p20180523.tar.gz 8490122 BLAKE2B 783cd420c8e3cd7423ecb6caa3466efd2c09e9033c2a198f52dc113603233f1bf3e3dc5208491338c0fdc9ab26e5b661e7fced0dd835b4c19a867fa3cacc9ccd SHA512 a47de226108240313fef2ce965726b3afea988030adffe38fdabf5d0dc46b2eda42cfebc32d77e939eb6dd687a99556c9bd8848c6a5e78c434950d00a8833200 diff --git a/media-sound/clementine/clementine-1.3.1_p20180523.ebuild b/media-sound/clementine/clementine-1.3.1_p20180523.ebuild new file mode 100644 index 000..429b9aa05e0 --- /dev/null +++ b/media-sound/clementine/clementine-1.3.1_p20180523.ebuild @@ -0,0 +1,181 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PLOCALES="af ar be bg bn br bs ca cs cy da de el en en_CA en_GB eo es et eu fa fi fr ga gl he he_IL hi hr hu hy ia id is it ja ka kk ko lt lv mk_MK mr ms my nb nl oc pa pl pt pt_BR ro ru si_LK sk sl sr sr@latin sv te tr tr_TR uk uz vi zh_CN zh_TW" + +MY_P="${P/_}" +if [[ ${PV} == ** ]]; then + EGIT_BRANCH="qt5" + EGIT_REPO_URI="https://github.com/clementine-player/Clementine.git"; + GIT_ECLASS="git-r3" +else + COMMIT=4619a4c1ab3b17b13d4b2327ad477912917eaf36 + SRC_URI="https://github.com/${PN}-player/${PN^}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi +inherit cmake-utils flag-o-matic gnome2-utils l10n virtualx xdg-utils ${GIT_ECLASS} +unset GIT_ECLASS + +DESCRIPTION="Modern music player and library organizer based on Amarok 1.4 and Qt" +HOMEPAGE="https://www.clementine-player.org https://github.com/clementine-player/Clementine"; + +LICENSE="GPL-3" +SLOT="0" +IUSE="box cdda +dbus debug dropbox googledrive ipod lastfm mms moodbar mtp projectm pulseaudio seafile skydrive test +udisks wiimote" + +REQUIRED_USE=" + udisks? ( dbus ) + wiimote? ( dbus ) +" + +COMMON_DEPEND=" + app-crypt/qca:2[qt5(+)] + dev-db/sqlite:= + dev-libs/crypto++ + dev-libs/glib:2 + dev-libs/libxml2 + dev-libs/protobuf:= + dev-qt/qtconcurrent:5 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5[ssl] + dev-qt/qtsql:5[sqlite] + dev-qt/qtwidgets:5 + media-libs/chromaprint:= + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + >=media-libs/libmygpo-qt-1.0.9[qt5(+)] + media-libs/taglib + sys-libs/zlib + virtual/glu + virtual/opengl + x11-libs/libX11 + cdda? ( dev-libs/libcdio:= ) + dbus? ( dev-qt/qtdbus:5 ) + ipod? ( >=media-libs/libgpod-0.8.0 ) + lastfm? ( >=media-libs/liblastfm-1.1.0_pre20150206 ) + moodbar? ( sci-libs/fftw:3.0 ) + mtp? ( >=media-libs/libmtp-1.0.0 ) + projectm? ( + media-libs/glew:= + >=media-libs/libprojectm-1.2.0 + ) +" +# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is required; check if this can be overcome someway; +# Libprojectm-1.2 seems to work fine, so no reason to use bundled version; check clementine's patches: +# https://github.com/clementine-player/Clementine/tree/master/3rdparty/libprojectm/patches +# Still possibly essential but not applied yet patches are: +# 06-fix-numeric-locale.patch +# 08-stdlib.h-for-rand.patch +RDEPEND="${COMMON_DEPEND} + media-plugins/gst-plugins-meta:1.0 + media-plugins/gst-plugins-soup:1.0 + media-plugins/gst-plugins-taglib:1.0 + mms? ( media-plugins/gst-plugins-libmms:1.0 ) + mtp? ( gnome-base/gvfs[mtp] ) + udisks? ( sys-fs/udisks:2 ) +" +DEPEND="${COMMON_DEPEND} + >=dev-cpp/gtest-1.8.0 + dev-libs/boost + dev-qt/linguist-tools:5 + dev-qt/qtopengl:5 + dev-qt/qtx11extras:5 + dev-qt/qtxml:5 + sys-devel/gettext + virtual/pkgconfig + box? (
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/vanilla-sources/
commit: 0171b3445228b820a1beda90f0c66c3da2e2d62f Author: Mike Pagano gentoo org> AuthorDate: Sun Jun 3 23:00:09 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sun Jun 3 23:00:17 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0171b344 sys-kernel/vanilla-sources: Linux patch 4.17.0 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/vanilla-sources/Manifest | 1 + sys-kernel/vanilla-sources/vanilla-sources-4.17.0.ebuild | 16 2 files changed, 17 insertions(+) diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 22e4859f4f9..ba4b6971e8c 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -3,6 +3,7 @@ DIST linux-3.2.tar.xz 65065516 BLAKE2B ca7a8e7f7de9ac8ec811db330bc5dc830849c6745 DIST linux-4.1.tar.xz 83017828 BLAKE2B d1dc4e458db191f16306b3d2d7eb60ef5e04307406c769cccdd88beb407f8de228ab1f095a44d6e992b06d01cd896fda31dec1cdf16667f4ca0b628da594aee3 SHA512 168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0 DIST linux-4.14.tar.xz 100770500 BLAKE2B 85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a SHA512 77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 DIST linux-4.16.tar.xz 103020152 BLAKE2B c7f7b36280b74b2112a098733680e1e93c4f99571099d471b2dde5f7a746d9b9fab5112fffe3b7978c40f15ecaa33203ea98c2158fab2d5857ece5d74f9f SHA512 ab47849314b177d0eec9dbf261f33972b0d89fb92fb0650130ffa7abc2f36c0fab2d06317dc1683c51a472a9a631573a9b1e7258d6281a2ee189897827f14662 +DIST linux-4.17.tar.xz 102165892 BLAKE2B b9e1fe2c063d2761b4d54594b841f6591fd6f5b634a402c07e0fa5518a2b271293d97c5a7a8e3c30c9c4d78df16bf20a4f0befe998c9a9393bb3290d2df1dda3 SHA512 4d9de340a26155a89ea8773131c76220cc2057f2b5d031b467b60e8b14c1842518e2d60a863d8c695f0f7640f3f18d43826201984a238dade857b6cef79837db DIST linux-4.4.tar.xz 87295988 BLAKE2B f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb SHA512 13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e DIST linux-4.9.tar.xz 93192404 BLAKE2B 83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7 SHA512 bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a DIST patch-3.16.56.xz 1956224 BLAKE2B 27db858a51be5d57ff1f3d5409d511df5002f542584d80b64d2303f1569c0502d0d15783a3e36facc2ee9481ada4b8f08359a79972b4a3ca07ac180c2e607c01 SHA512 e1c1c004c2ac52fb6944718c82b6c70a9ee4175943fc8477b298dbbde42d16f1e1c9387f9d5ca05958b3efa0e851eb0105daf4a0d59ad836b31ec3919ee857b6 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.17.0.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.17.0.ebuild new file mode 100644 index 000..2e4a132369f --- /dev/null +++ b/sys-kernel/vanilla-sources/vanilla-sources-4.17.0.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_SECURITY_UNSUPPORTED="1" +ETYPE="sources" +inherit kernel-2 +detect_version + +DESCRIPTION="Full sources for the Linux kernel" +HOMEPAGE="https://www.kernel.org"; +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/
commit: 36a06ee88caf943b7036b4b12ee64d85d007c9ac Author: Mike Pagano gentoo org> AuthorDate: Sun Jun 3 22:58:53 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sun Jun 3 22:59:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a06ee8 sys-kernel/gentoo-sources: Linux patch 4.17.0 Patch to support for namespace user.pax.* on tmpfs. Patch to enable link security restrictions by default. Patch to enable poweroff on Mac Pro 11. See bug #601964. Patch to add UAS disable quirk. See bug #640082. Patch that enables swapping of the FN and left Control keys and some additional on some apple keyboards. See bug #622902. bootint without an initramfs. Bootsplash patch ported by Conrad Kostecki. Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/gentoo-sources/Manifest | 4 .../gentoo-sources/gentoo-sources-4.17.0.ebuild| 28 ++ 2 files changed, 32 insertions(+) diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 968716c8f9d..8a5aadddc28 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -82,6 +82,9 @@ DIST genpatches-4.16-8.extras.tar.xz 17496 BLAKE2B c7fca4b94f96e36704f4f7aea0daa DIST genpatches-4.16-9.base.tar.xz 196768 BLAKE2B 25c4b6a22a9a07af643ddc73fea2cf6e997f5cca89f86cf8386286d1b63e0c0dd393f138f66f87773d9eba382bcaec3a2562d2a4c22140a61358cd2612e11d4f SHA512 aab3c760270e8d72c892d58a88fac3db792150a8f7157a2fb656d52ecfb29c9f6a049783ec9583b98b9cfd09ae6f77f672ef375d6a260cb2cb4df8157e5398a7 DIST genpatches-4.16-9.experimental.tar.xz 5164 BLAKE2B 0e8c1ce1a65404faafe4c0c7163cf87ce4ba4195edec6caab0dcb5351c6b211b233b6b659a7521e48e11e0fcf726e23341728591e9dbf305a4cac4500175 SHA512 9b4003d7902152183e4a76c54e0d4d09da33c9956aadafef4b11cdde81f7539a0d7931f4ae7d4d7e02928bbd7c128eba5fda00319723c1f7c2a7abb34ecddc9c DIST genpatches-4.16-9.extras.tar.xz 17492 BLAKE2B 2e9bb4e33e33f0b5ba923bc0036a3697abefcf7c439dfba68beb0c4d0a558dffde1c9224f56da6bbea560bec3664cb1025c0ce1c961037598523d1af0d0513fb SHA512 e1ed8a1532488aa849969a90bf299eaf39233695eb9bda7b070a87906b8891e2332a06234d4b2c98338b04380020387b8fb212dc95072ae79cc58274e8118656 +DIST genpatches-4.17-1.base.tar.xz 5392 BLAKE2B c0a5d1795ab5ab5dfa064986b53f5f9bdb5ac543795af4a33ce8f3e0e21d0240d7b741caf3971121738963c769f861fbab5744456b350727b29074c6f0f0d090 SHA512 06696fa4ee7a6a5e42a10b83401e25b0c6920ae43ca7f2106dcc208e094c74a82ee769f0d97b5ae04b6a997f7d6bc48a36674477112c74a297d6580b225a6080 +DIST genpatches-4.17-1.experimental.tar.xz 5168 BLAKE2B 679183da1924b81b24e55fad23d57976bd33804f8d2e61bffbb9adf70d2c9d80ea83c2f6db0228baca1adb2ba5c57b8fe528e4e938a45ef9114bbb51a40106c7 SHA512 e7f68bf642616a1604f2d76a2e6310bd3f4147d85c29ddef829d0f59a785fd89f2532d854d32e3f4d132812f84ebb081936d2e5c68941ee5131b3004ed5b411b +DIST genpatches-4.17-1.extras.tar.xz 17496 BLAKE2B 115e99b501a0119809f2abe84c3bb8a66b2b450f53003441593654c23a4bb653c4b40da1ba31e53f7f4db69c99511b2dd41f53b4adf8bd377714b1ace8abd9e2 SHA512 a01c90e36504f17495c8691ba6fa99870fd03b65299730df57e767e2562a90b6a04da24c50983cb8ea12ac276e6805f3b5fdaa30ad175ae5ee28f147f75dc3ec DIST genpatches-4.4-115.base.tar.xz 1692684 BLAKE2B 8595bbb40d0f0172e5b6f5266d89b3aa67fad3889375c3925a39e01f9dd03e86f934d8d3c0bd93bab58ceee274277aaac4051d09f2edf665c106f2c0e29d SHA512 43dac11a37c6cbef7a4070336bda44beb2d5a9a649188d188e37c4654ce94a71244a7e87652368da5a0f88dc53ad5c8d6194ad614c4033d08295debab0c90eca DIST genpatches-4.4-115.experimental.tar.xz 87744 BLAKE2B dc8a9f9ae6e6789e7c072e5c6dfa0e875765d77ffb746060f65cd708124f81f8a269a54ec6bd6f9bd159d0cd5d0d9dabd6ad9489ff5453e01c264b0f34153300 SHA512 e82343f1d4220ecab61503c7cefae9d5d9cd605187f4861eac21f330c39af77e90950badf1896a8fefee57133496f706e2b1905eee1d8c6cf945e77ed3b36094 DIST genpatches-4.4-115.extras.tar.xz 16456 BLAKE2B 3c854f5619d349eb7b20b8f92787564019769884c28cf8bd3191686e3fc8f5c764ebc3a3c99d3ea7290aab316b8a0a0728a4f679196b80b524943c503fef6705 SHA512 84d76421f1e3d3041ab18a2a6a019b571c1a6f27d2fc880da64ae11398c43e5eab79c538940df82aa02d697983a97145197b127613bb7f4765a26813cc36eacf @@ -155,5 +158,6 @@ DIST linux-4.1.tar.xz 83017828 BLAKE2B d1dc4e458db191f16306b3d2d7eb60ef5e0430740 DIST linux-4.14.tar.xz 100770500 BLAKE2B 85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a SHA512 77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 DIST linux-4.15.tar.xz 102181404 BLAKE2B 5fd831356c2174d2779ab31033caec6929b2f47857f0bb82ef43ad1140c639d0dc5553e64d062f67486eeff780d5df8d971051fd5a626b51bed170067fea11e0 SHA512 c00d92659df815a53dcac7dde145b742b1f20867d380c07cb09ddb3295d6ff10f8931b21ef0b09d7156923a3957b39d74d87c883300173b2e20690d2b4ec35ea DIST linux-4.16.tar.xz 103020152 BLAKE2B c7f7b36280b74b2112a098733680e1e93c4f99571099d471b2dde5f7a746
[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/
commit: f57e2ba84f8d5496a9c34a0f2d44c5635473599c Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Jun 3 22:51:15 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 22:51:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f57e2ba8 app-doc/doxygen: stable 1.8.14 for ia64, bug #657308 Bug: https://bugs.gentoo.org/657308 Package-Manager: Portage-2.3.38, Repoman-2.3.9 RepoMan-Options: --include-arches="ia64" app-doc/doxygen/doxygen-1.8.14.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-doc/doxygen/doxygen-1.8.14.ebuild b/app-doc/doxygen/doxygen-1.8.14.ebuild index 871e295e975..5b86e781a23 100644 --- a/app-doc/doxygen/doxygen-1.8.14.ebuild +++ b/app-doc/doxygen/doxygen-1.8.14.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} = ** ]]; then SRC_URI="" else SRC_URI="https://ftp.stack.nl/pub/users/dimitri/${P}.src.tar.gz"; - 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 ~x86-solaris" + 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 ~x86-solaris" fi DESCRIPTION="Documentation system for most programming languages"
[gentoo-commits] repo/gentoo:master commit in: dev-util/cmocka/
commit: 1054efb10afcd92a7386ec9997c99c315c00d414 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Jun 3 22:41:48 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 22:42:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1054efb1 dev-util/cmocka: stable 1.1.1 for ia64, bug #657262 Bug: https://bugs.gentoo.org/657262 Package-Manager: Portage-2.3.38, Repoman-2.3.9 RepoMan-Options: --include-arches="ia64" dev-util/cmocka/cmocka-1.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/cmocka/cmocka-1.1.1.ebuild b/dev-util/cmocka/cmocka-1.1.1.ebuild index a8ba1e6b6d7..1f91e33250f 100644 --- a/dev-util/cmocka/cmocka-1.1.1.ebuild +++ b/dev-util/cmocka/cmocka-1.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://cmocka.org/files/1.1/${P}.tar.xz"; LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="doc static-libs test" DEPEND="
[gentoo-commits] proj/linux-patches: New tag: 4.17-1
commit: Commit: Mike Pagano gentoo org> CommitDate: Sun Jun 3 22:31:12 2018 + New tag: 4.17-1
[gentoo-commits] proj/linux-patches:4.17 commit in: /
commit: 2dfff68d42f70e4083aec773bd715db182e9 Author: Mike Pagano gentoo org> AuthorDate: Sun Jun 3 22:18:10 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sun Jun 3 22:18:10 2018 + URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=2dfff68d Remove 2900_dev-root-proc-mount-fix.patch for compilation errors. Will take a look after this release. _README| 4 2900_dev-root-proc-mount-fix.patch | 38 -- 2 files changed, 42 deletions(-) diff --git a/_README b/_README index 6546583..94eb66a 100644 --- a/_README +++ b/_README @@ -63,10 +63,6 @@ Patch: 2600_enable-key-swapping-for-apple-mac.patch From: https://github.com/free5lot/hid-apple-patched Desc: This hid-apple patch enables swapping of the FN and left Control keys and some additional on some apple keyboards. See bug #622902 -Patch: 2900_dev-root-proc-mount-fix.patch -From: https://bugs.gentoo.org/show_bug.cgi?id=438380 -Desc: Ensure that /dev/root doesn't appear in /proc/mounts when bootint without an initramfs. - Patch: 4200_fbcondecor.patch From: http://www.mepiscommunity.org/fbcondecor Desc: Bootsplash ported by Conrad Kostecki. (Bug #637434) diff --git a/2900_dev-root-proc-mount-fix.patch b/2900_dev-root-proc-mount-fix.patch deleted file mode 100644 index 83f96d2..000 --- a/2900_dev-root-proc-mount-fix.patch +++ /dev/null @@ -1,38 +0,0 @@ a/init/do_mounts.c 2018-05-23 14:30:36.870899527 -0400 -+++ b/init/do_mounts.c 2018-05-23 14:35:54.398659105 -0400 -@@ -489,7 +489,11 @@ void __init change_floppy(char *fmt, ... - va_start(args, fmt); - vsprintf(buf, fmt, args); - va_end(args); -- fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0); -+ if (saved_root_name[0]) -+ fd = sys_open(saved_root_name, O_RDWR | O_NDELAY, 0); -+ else -+ fd = sys_open("/dev/root", O_RDWR | O_NDELAY, 0); -+ - if (fd >= 0) { - ksys_ioctl(fd, FDEJECT, 0); - ksys_close(fd); -@@ -533,11 +537,17 @@ void __init mount_root(void) - #endif - #ifdef CONFIG_BLOCK - { -- int err = create_dev("/dev/root", ROOT_DEV); -- -- if (err < 0) -- pr_emerg("Failed to create /dev/root: %d\n", err); -- mount_block_root("/dev/root", root_mountflags); -+ if (saved_root_name[0] == '/') { -+ int err = create_dev(saved_root_name, ROOT_DEV); -+ if (err < 0) -+ pr_emerg("Failed to create %s: %d\n", saved_root_name, err); -+ mount_block_root(saved_root_name, root_mountflags); -+ } else { -+ int err = create_dev("/dev/root", ROOT_DEV); -+ if (err < 0) -+ pr_emerg("Failed to create /dev/root: %d\n", err); -+ mount_block_root("/dev/root", root_mountflags); -+ } - } - #endif - }
[gentoo-commits] repo/gentoo:master commit in: net-misc/youtube-dl/
commit: aa0eae0630238b2dc087209574dd9dbdbbd43844 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Jun 3 21:24:46 2018 + Commit: Jeroen Roovers gentoo org> CommitDate: Sun Jun 3 21:25:06 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0eae06 net-misc/youtube-dl: Old. Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/youtube-dl/Manifest | 1 - net-misc/youtube-dl/youtube-dl-2018.05.09.ebuild | 115 --- 2 files changed, 116 deletions(-) diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 58cf55a45b3..c0e2825cee1 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,4 +1,3 @@ DIST youtube-dl-2017.11.15.tar.gz 2834012 BLAKE2B fd93e3923f99874be58681a886c09e31ac10063975ab636badf27e59b44743c72cddf05e3a431c49ffd0f7b40f9b005f4d90feff85d4ca889dee80833300b076 SHA512 e10c0d53db7fdfb02610b53f54046c0a9354b305ba05c5d00a43649a283a6449263f66ff56171d52cf18f906c6aeccc25dc48ea708b4b1bb2b8323b937abca96 -DIST youtube-dl-2018.05.09.tar.gz 2962389 BLAKE2B bcdf235ce91cd2ac7ddf98d36112d9e23d8d181f5998e5e9bb2638d6acd1aff010f390dc7ae2c9d558c07b20f9d5ea1183444ead6a6a797ef980d8dc10c8b927 SHA512 cf62dff3f8427f0d31dceeebd7b6d8748ba004cd1077076b72f02c2779a8147ce07a7a40cd356a51d0f0dea3008a83f20dea73f6de5c1150cae311c552457a31 DIST youtube-dl-2018.05.18.tar.gz 2963277 BLAKE2B 4e33f5c97ee20313bad1a4b0ccba55be08177e3c47342f163a04e23e3ce22bbf4e15e620bd5c5c1e1e7a0e3f2e422dc9cc2c213af27a25b40194e3ea93fa98c1 SHA512 99527e5aabf12018037c39d5ce4e3ca67b8848f84106409b8d5fd5271eb6ed53b49abbe5939ab5558ed981a5aeff730b2e27589bbc22d3d616061415154ab9bb DIST youtube-dl-2018.06.04.tar.gz 2972929 BLAKE2B 77f1ef9b869ea1b3b98d4deb064d959d3d05ae1732c2277cb5e2143025efb91196d2acd446f24ddd7aafbbe7275c066fa6a032d4a57930b62fb9fbb95ca45e29 SHA512 f354cfc77c6532926bf2a20a47a4b603bdf81a2a15997f493785e76eb0688f13ec3d4b3217f7d6b02d9a83366fbd31d5be6f579551bb179ab6008b85ec3675b0 diff --git a/net-misc/youtube-dl/youtube-dl-2018.05.09.ebuild b/net-misc/youtube-dl/youtube-dl-2018.05.09.ebuild deleted file mode 100644 index 37bffad45c8..000 --- a/net-misc/youtube-dl/youtube-dl-2018.05.09.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6}) -inherit bash-completion-r1 distutils-r1 readme.gentoo-r1 - -DESCRIPTION="Download videos from YouTube.com (and more sites...)" -HOMEPAGE="https://rg3.github.com/youtube-dl/"; -SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz"; - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" -IUSE="+offensive test" - -RDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] -" -DEPEND=" - ${RDEPEND} - test? ( dev-python/nose[coverage(+)] ) -" - -S="${WORKDIR}/${PN}" - -python_prepare_all() { - if ! use offensive; then - sed -i -e "/..version../s|'$|+gentoo.no.offensive.sites'|g" \ - youtube_dl/version.py || die - # these have single line import statements - local xxx=( - alphaporno anysex behindkink camwithher chaturbate eporner - eroprofile extremetube foxgay goshgay hellporno hentaistigma - hornbunny keezmovies lovehomeporn mofosex myvidster porn91 porncom - pornflip pornhd pornotube pornovoisines pornoxo ruleporn sexu - slutload spankbang spankwire sunporno thisav vporn watchindianporn - xbef xnxx xtube xvideos xxxymovies youjizz youporn - ) - # these have multi-line import statements - local mxxx=( - drtuber fourtube motherless pornhub redtube tnaflix tube8 xhamster - ) - # do single line imports - sed -i \ - -e $( printf '/%s/d;' ${xxx[@]} ) \ - youtube_dl/extractor/extractors.py \ - || die - - # do multiple line imports - sed -i \ - -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \ - youtube_dl/extractor/extractors.py \ - || die - - sed -i \ - -e $( printf '/%s/d;' ${mxxx[@]} ) \ - youtube_dl/extractor/generic.py \ - || die - - rm \ - $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \ - $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \ - test/test_age_restriction.py \ - || die - fi - - eapply_user - - distutils-r1_python_p
[gentoo-commits] repo/gentoo:master commit in: net-misc/youtube-dl/
commit: 9b1437336f8f735c28d3939b63f626f48b99d630 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Jun 3 21:21:45 2018 + Commit: Jeroen Roovers gentoo org> CommitDate: Sun Jun 3 21:25:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b143733 net-misc/youtube-dl: Version 2018.06.04. Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/youtube-dl/Manifest | 1 + net-misc/youtube-dl/youtube-dl-2018.06.04.ebuild | 115 +++ 2 files changed, 116 insertions(+) diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 8c26799ab5d..58cf55a45b3 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,3 +1,4 @@ DIST youtube-dl-2017.11.15.tar.gz 2834012 BLAKE2B fd93e3923f99874be58681a886c09e31ac10063975ab636badf27e59b44743c72cddf05e3a431c49ffd0f7b40f9b005f4d90feff85d4ca889dee80833300b076 SHA512 e10c0d53db7fdfb02610b53f54046c0a9354b305ba05c5d00a43649a283a6449263f66ff56171d52cf18f906c6aeccc25dc48ea708b4b1bb2b8323b937abca96 DIST youtube-dl-2018.05.09.tar.gz 2962389 BLAKE2B bcdf235ce91cd2ac7ddf98d36112d9e23d8d181f5998e5e9bb2638d6acd1aff010f390dc7ae2c9d558c07b20f9d5ea1183444ead6a6a797ef980d8dc10c8b927 SHA512 cf62dff3f8427f0d31dceeebd7b6d8748ba004cd1077076b72f02c2779a8147ce07a7a40cd356a51d0f0dea3008a83f20dea73f6de5c1150cae311c552457a31 DIST youtube-dl-2018.05.18.tar.gz 2963277 BLAKE2B 4e33f5c97ee20313bad1a4b0ccba55be08177e3c47342f163a04e23e3ce22bbf4e15e620bd5c5c1e1e7a0e3f2e422dc9cc2c213af27a25b40194e3ea93fa98c1 SHA512 99527e5aabf12018037c39d5ce4e3ca67b8848f84106409b8d5fd5271eb6ed53b49abbe5939ab5558ed981a5aeff730b2e27589bbc22d3d616061415154ab9bb +DIST youtube-dl-2018.06.04.tar.gz 2972929 BLAKE2B 77f1ef9b869ea1b3b98d4deb064d959d3d05ae1732c2277cb5e2143025efb91196d2acd446f24ddd7aafbbe7275c066fa6a032d4a57930b62fb9fbb95ca45e29 SHA512 f354cfc77c6532926bf2a20a47a4b603bdf81a2a15997f493785e76eb0688f13ec3d4b3217f7d6b02d9a83366fbd31d5be6f579551bb179ab6008b85ec3675b0 diff --git a/net-misc/youtube-dl/youtube-dl-2018.06.04.ebuild b/net-misc/youtube-dl/youtube-dl-2018.06.04.ebuild new file mode 100644 index 000..37bffad45c8 --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2018.06.04.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6}) +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1 + +DESCRIPTION="Download videos from YouTube.com (and more sites...)" +HOMEPAGE="https://rg3.github.com/youtube-dl/"; +SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz"; + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="+offensive test" + +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + test? ( dev-python/nose[coverage(+)] ) +" + +S="${WORKDIR}/${PN}" + +python_prepare_all() { + if ! use offensive; then + sed -i -e "/..version../s|'$|+gentoo.no.offensive.sites'|g" \ + youtube_dl/version.py || die + # these have single line import statements + local xxx=( + alphaporno anysex behindkink camwithher chaturbate eporner + eroprofile extremetube foxgay goshgay hellporno hentaistigma + hornbunny keezmovies lovehomeporn mofosex myvidster porn91 porncom + pornflip pornhd pornotube pornovoisines pornoxo ruleporn sexu + slutload spankbang spankwire sunporno thisav vporn watchindianporn + xbef xnxx xtube xvideos xxxymovies youjizz youporn + ) + # these have multi-line import statements + local mxxx=( + drtuber fourtube motherless pornhub redtube tnaflix tube8 xhamster + ) + # do single line imports + sed -i \ + -e $( printf '/%s/d;' ${xxx[@]} ) \ + youtube_dl/extractor/extractors.py \ + || die + + # do multiple line imports + sed -i \ + -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \ + youtube_dl/extractor/extractors.py \ + || die + + sed -i \ + -e $( printf '/%s/d;' ${mxxx[@]} ) \ + youtube_dl/extractor/generic.py \ + || die + + rm \ + $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \ + $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \ + test/test_age_restriction.py \ + || die + fi + + eapply_user + + distutils
[gentoo-commits] repo/gentoo:master commit in: net-analyzer/scapy/
commit: 21ad4ca91961c605d7caa203f9530fb30ccf682e Author: Mike Auty gentoo org> AuthorDate: Sun Jun 3 21:20:09 2018 + Commit: Mike Auty gentoo org> CommitDate: Sun Jun 3 21:20:33 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21ad4ca9 net-analyzer/scapy: Bump to 2.4.0, remove old versions. Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-analyzer/scapy/Manifest| 3 +-- net-analyzer/scapy/scapy-2.3.3.ebuild | 29 -- .../{scapy-2.4.0_rc4.ebuild => scapy-2.4.0.ebuild} | 2 +- net-analyzer/scapy/scapy-.ebuild | 2 +- 4 files changed, 3 insertions(+), 33 deletions(-) diff --git a/net-analyzer/scapy/Manifest b/net-analyzer/scapy/Manifest index 5af32bb2417..44a294809cc 100644 --- a/net-analyzer/scapy/Manifest +++ b/net-analyzer/scapy/Manifest @@ -1,3 +1,2 @@ DIST scapy-2.3.2.tar.gz 1166056 BLAKE2B bce5f37bd833dc457089cdfebd2dc019c4f7bed636935b4a6b51a2cf7355f5761fadaa304e93c276daa2200c48ab0e1c0a08bd278e30dfea1faa01321a0b957e SHA512 6b15e102708d1bd0ca0c910e2d82416cd172634409f93c506542a7dc6b69ddc9c9afef6ec07929f70cc0f8f4c455cdc84d9b35bc2c5b72f79dd7e6785306dc7a -DIST scapy-2.3.3.tar.gz 1459132 BLAKE2B 442e13853cfd4bac4984571367990ce03a2fc1a634564ed7e05641130d435818f161687c530f17280a20f1063aafa35cb867fc2f7d78a4f3ae257dbb6f90 SHA512 47ca2eceafe7b693c569a92c106782037d869c323aaaec41cace07dfdeb3c6a7e9f7bc8ca1150b3c0daea54e6665f93eb1dfc3c511419cfa28eb2e0753bf9ba4 -DIST scapy-2.4.0_rc4.tar.gz 2472251 BLAKE2B 720777e7d19ae1a312ccd78c6d005cf6f1f42fcac8f11956b2fb5521dac17ef477106cef2ee9a9384f764dd1aef337b010faed61f2fb34c3458b3a9c836eb4ed SHA512 003d573fb8ec83029eca93fa9f6333f9a4b4a166ab355a19339194b6a7b8a772d692afeed8d19e0f9422caae326167f1acf819319327f3495dc389fc9a2ea811 +DIST scapy-2.4.0.tar.gz 3182131 BLAKE2B af591b103c90736a5e62801f4c0ebd495e2e71c79ee81f04fdd194739b460c9940b8fcf0c6e279701095979144eff25ca4734926c0251721b37dc63fe8dd9e89 SHA512 0fe80150cd83db7735c9d0b70ec832a4e68eb5160ad8559e9b1bd79c52a9950ef7c9555ea2a1ee1dc8df1f055a885c52552c29e304faf40250ce9c502a5f870a diff --git a/net-analyzer/scapy/scapy-2.3.3.ebuild b/net-analyzer/scapy/scapy-2.3.3.ebuild deleted file mode 100644 index 391396815ff..000 --- a/net-analyzer/scapy/scapy-2.3.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -PYTHON_COMPAT=( python2_7 ) - -inherit eutils distutils-r1 - -DESCRIPTION="A Python interactive packet manipulation program for mastering the network" -HOMEPAGE="http://www.secdev.org/projects/scapy/"; -SRC_URI="https://github.com/secdev/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gnuplot pyx crypt graphviz imagemagick visual tcpreplay" - -RDEPEND=" - net-analyzer/tcpdump - gnuplot? ( dev-python/gnuplot-py[${PYTHON_USEDEP}] ) - pyx? ( dev-python/pyx[${PYTHON_USEDEP}] ) - crypt? ( || ( dev-python/pycryptodome[${PYTHON_USEDEP}] - dev-python/pycrypto[${PYTHON_USEDEP}] ) ) - graphviz? ( media-gfx/graphviz ) - imagemagick? ( virtual/imagemagick-tools ) - visual? ( dev-python/visual ) - tcpreplay? ( net-analyzer/tcpreplay ) -" diff --git a/net-analyzer/scapy/scapy-2.4.0_rc4.ebuild b/net-analyzer/scapy/scapy-2.4.0.ebuild similarity index 94% rename from net-analyzer/scapy/scapy-2.4.0_rc4.ebuild rename to net-analyzer/scapy/scapy-2.4.0.ebuild index 8d3d643afa1..87c9eb983d6 100644 --- a/net-analyzer/scapy/scapy-2.4.0_rc4.ebuild +++ b/net-analyzer/scapy/scapy-2.4.0.ebuild @@ -27,7 +27,7 @@ Scapy has optional support for the following packages: net-analyzer/tcpreplay virtual/imagemagick-tools - See also ${EPREFIX}/usr/share/doc/${PF}/installation.rst + See also ""${EPREFIX}/usr/share/doc/${PF}/installation.rst"" " src_prepare() { diff --git a/net-analyzer/scapy/scapy-.ebuild b/net-analyzer/scapy/scapy-.ebuild index ce815cfb2f7..37900e5421f 100644 --- a/net-analyzer/scapy/scapy-.ebuild +++ b/net-analyzer/scapy/scapy-.ebuild @@ -27,7 +27,7 @@ Scapy has optional support for the following packages: net-analyzer/tcpreplay virtual/imagemagick-tools - See also ${EPREFIX}/usr/share/doc/${PF}/installation.rst + See also ""${EPREFIX}/usr/share/doc/${PF}/installation.rst"" " src_prepare() {
[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/
commit: dfd268ba983104c4175325e49345306c7b700454 Author: Matthias Maier gentoo org> AuthorDate: Sun Jun 3 21:12:07 2018 + Commit: Matthias Maier gentoo org> CommitDate: Sun Jun 3 21:18:12 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd268ba app-doc/doxygen: fix warning about unused variable if USE=-doc Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-doc/doxygen/doxygen-.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-doc/doxygen/doxygen-.ebuild b/app-doc/doxygen/doxygen-.ebuild index 9f082f097a2..4baf1721482 100644 --- a/app-doc/doxygen/doxygen-.ebuild +++ b/app-doc/doxygen/doxygen-.ebuild @@ -104,6 +104,9 @@ src_configure() { -Dbuild_wizard=$(usex qt5) -Duse_sqlite3=$(usex sqlite) ) + use doc && mycmakeargs+=( + -DDOC_INSTALL_DIR="share/doc/${P}" + ) cmake-utils_src_configure }
[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/
commit: f2cd8c1e3ea46173ab2f884b8b8ef9e36cc7f49f Author: Matthias Maier gentoo org> AuthorDate: Sun Jun 3 21:10:39 2018 + Commit: Matthias Maier gentoo org> CommitDate: Sun Jun 3 21:18:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2cd8c1e app-doc/doxygen: fix warning about unused variable if USE=-doc Closes: https://bugs.gentoo.org/652064 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-doc/doxygen/doxygen-1.8.14.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-doc/doxygen/doxygen-1.8.14.ebuild b/app-doc/doxygen/doxygen-1.8.14.ebuild index 502086e771c..871e295e975 100644 --- a/app-doc/doxygen/doxygen-1.8.14.ebuild +++ b/app-doc/doxygen/doxygen-1.8.14.ebuild @@ -99,13 +99,15 @@ src_prepare() { src_configure() { local mycmakeargs=( - -DDOC_INSTALL_DIR="share/doc/${P}" -Duse_libclang=$(usex clang) -Dbuild_doc=$(usex doc) -Dbuild_search=$(usex doxysearch) -Dbuild_wizard=$(usex qt5) -Duse_sqlite3=$(usex sqlite) ) + use doc && mycmakeargs+=( + -DDOC_INSTALL_DIR="share/doc/${P}" + ) cmake-utils_src_configure }
[gentoo-commits] repo/gentoo:master commit in: dev-python/mypy/
commit: 47a3ea00c3fe13ae4b61d680966e4457dd18822b Author: Mike Auty gentoo org> AuthorDate: Sun Jun 3 21:11:16 2018 + Commit: Mike Auty gentoo org> CommitDate: Sun Jun 3 21:11:47 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a3ea00 dev-python/mypy: bump to version 0.600. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/mypy/Manifest | 3 +- dev-python/mypy/mypy-0.4.5.ebuild | 41 --- dev-python/mypy/mypy-0.600.ebuild | 68 +++ 3 files changed, 70 insertions(+), 42 deletions(-) diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest index b0782221f3f..90f240ee282 100644 --- a/dev-python/mypy/Manifest +++ b/dev-python/mypy/Manifest @@ -1,5 +1,6 @@ -DIST mypy-0.4.5.tar.gz 779940 BLAKE2B 5242d57a5c0baf1f32e018e671c5eb21aee3ccbc4e7abfc578562c32c2be425848dcb7cd9a7d726268527337bb11f3dae88f1d79b5db87d1db857927ebad4a45 SHA512 e0bd4cb1080f2a4c0f2c4f9ebbe22d05b8dabb374396e7d91c645724b5d67084fd005e181847fccc45c9c51f3280233185fa6bf08dc24c2d4f6e482197246fa7 DIST mypy-0.570.tar.gz 1050041 BLAKE2B 034d49627242ad67283689a653d416e956ae0b78287f78d910aa2b3b2b07af5a07d08503259a2c26bbf37154a52b120fcad1bfbb3daccbd9b80d4c1e9fedbddf SHA512 f0822d9e757faedd9cbce5e8b47782fae02523244688a3900a9f202de9f68b5ae094da65526fba79911a42d4d0621c4e5bf1984e57201117db8f5b630314ea4c DIST mypy-0.590.tar.gz 1081426 BLAKE2B 396083f81a1bf6f8230abe3e3e48b9fcf0288edfa6ae2bbcb7b6bd8f50f4e8dd093cacc326d561f5f10fce0bfd213e559d98e32a35a712bd022d8d0682f239d2 SHA512 129356a4326e80e292645e3b44b673ab463b1ad9b6388396680ca15a4c9aad6da2a3734a3da5d4ab005fb0572fd08863b20ba80e71af2e87d11546abc7fd78c0 +DIST mypy-0.600.tar.gz 1097269 BLAKE2B ee3327cdd7383a93f319335017815bb3341d1b91e3620f7bdc69d1c401e3c8aaa3157cfd8d4657fe072ad90b672017fc2b948ad4ff217d5e4ab91b8946d4569e SHA512 8e89bcbb53d385bbc3bf72de123d4a99230ee5154e1af19adccff7133f86495aa366058e04092356a80036214113ac90ecddcf5e30da59ae2a7c6f3d320b07ef DIST mypy-typeshed-0.570.tar.gz 413076 BLAKE2B 774a6d07308228c379a5deec2ee36a498863a1386181b47ceb8783537afdb75bc0fb4893b07cf8cf7bf5bfe977babbdc44a6420784e2cba6ce94346175858573 SHA512 e9afb2fe841fa82ed264a73a1ce6c1c0fede42008042a34cf21f1e39aabaa8f1cd945861aa9e80a86f61f1dd6a362892b25a1c5469915fbca95406e72740ba6d DIST mypy-typeshed-0.590.tar.gz 413076 BLAKE2B 774a6d07308228c379a5deec2ee36a498863a1386181b47ceb8783537afdb75bc0fb4893b07cf8cf7bf5bfe977babbdc44a6420784e2cba6ce94346175858573 SHA512 e9afb2fe841fa82ed264a73a1ce6c1c0fede42008042a34cf21f1e39aabaa8f1cd945861aa9e80a86f61f1dd6a362892b25a1c5469915fbca95406e72740ba6d +DIST mypy-typeshed-0.600-2dc7d39.tar.gz 425045 BLAKE2B e2ef63f2ed988f77f52e2a01c158ff8e3fbdec118c1f613ffe6c57d025da8d5bcf6dc0e6bcbc1bb8655fbf340a0f358535d7e1ed214a5a1af8e3188f2dde5459 SHA512 9c960c2dcb2cd5ed36d77efa47a5632698e841b685386f8d5a31200c61235b68d627fc450d070955ab14962d6a70a2d538929e2dc845512e83161c0299d91807 diff --git a/dev-python/mypy/mypy-0.4.5.ebuild b/dev-python/mypy/mypy-0.4.5.ebuild deleted file mode 100644 index d117678c018..000 --- a/dev-python/mypy/mypy-0.4.5.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python3_{4,5,6} ) - -inherit distutils-r1 vcs-snapshot - -DESCRIPTION="Optional static typing for Python" -HOMEPAGE="http://www.mypy-lang.org/"; -SRC_URI="https://github.com/JukkaL/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc test" - -DEPEND=" - test? ( dev-python/flake8[${PYTHON_USEDEP}] ) - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) -" -RDEPEND="$(python_gen_cond_dep '!dev-python/typing[${PYTHON_USEDEP}]' 'python3_3' 'python3_4')" - -python_compile_all() { - use doc && emake -C docs html -} - -python_test() { - local PYTHONPATH="$(pwd)" - - "${PYTHON}" runtests.py || die "tests failed under ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/build/html/. ) - - distutils-r1_python_install_all -} diff --git a/dev-python/mypy/mypy-0.600.ebuild b/dev-python/mypy/mypy-0.600.ebuild new file mode 100644 index 000..667a3dc20fe --- /dev/null +++ b/dev-python/mypy/mypy-0.600.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_{4,5,6} ) + +if [ "${PV}" == "" ]; then + inherit distutils-r1 git-r3 + EGIT_REPO_URI="https://github.com/python/${PN}"; + SRC_URI="" +else + inherit distutils-r1 + TYPESHED_COMMIT="2dc7d39" + SRC_URI="https://github.com/python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://api.github.com/repos/python/typeshed/tarball/${TYPES
[gentoo-commits] repo/gentoo:master commit in: dev-python/requestsexceptions/
commit: 887ada95aa39ce3a47a9d5ef73c5ee08f904f4e4 Author: Matthew Thode gentoo org> AuthorDate: Sun Jun 3 21:08:07 2018 + Commit: Matt Thode gentoo org> CommitDate: Sun Jun 3 21:08:46 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=887ada95 dev-python/requestsexceptions: 1.4.0 fix dep causing build failure Closes: https://bugs.gentoo.org/656908 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/requestsexceptions/requestsexceptions-1.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/requestsexceptions/requestsexceptions-1.4.0.ebuild b/dev-python/requestsexceptions/requestsexceptions-1.4.0.ebuild index 48159619c78..f7744c4af4a 100644 --- a/dev-python/requestsexceptions/requestsexceptions-1.4.0.ebuild +++ b/dev-python/requestsexceptions/requestsexceptions-1.4.0.ebuild @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="amd64 ~arm64 x86" IUSE="" -CDEPEND=">=dev-python/pbr-0.11[${PYTHON_USEDEP}]" +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] ${CDEPEND}" RDEPEND="${CDEPEND}"
[gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/
commit: 32ff0a5431a242ad6f73c29833fcb52d126a5691 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Jun 3 20:46:26 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 20:46:51 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ff0a54 sys-devel/binutils: stable 2.30-r2 for ia64, bug #655574 Bug: https://bugs.gentoo.org/655574 Package-Manager: Portage-2.3.38, Repoman-2.3.9 RepoMan-Options: --include-arches="ia64" sys-devel/binutils/binutils-2.30-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-devel/binutils/binutils-2.30-r2.ebuild b/sys-devel/binutils/binutils-2.30-r2.ebuild index 3679f472e4c..26bc3112879 100644 --- a/sys-devel/binutils/binutils-2.30-r2.ebuild +++ b/sys-devel/binutils/binutils-2.30-r2.ebuild @@ -35,7 +35,7 @@ case ${PV} in ;; esac SLOT="${BVER}" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" # # The Gentoo patchset
[gentoo-commits] repo/gentoo:master commit in: sys-libs/binutils-libs/
commit: be7cb257a0eeae4292ac7808bc56d502eb060fc3 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Jun 3 20:46:29 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 20:46:51 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be7cb257 sys-libs/binutils-libs: stable 2.30-r2 for ia64, bug #655574 Bug: https://bugs.gentoo.org/655574 Package-Manager: Portage-2.3.38, Repoman-2.3.9 RepoMan-Options: --include-arches="ia64" sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild b/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild index dafe40ab101..fd9e88ef998 100644 --- a/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild @@ -20,7 +20,7 @@ SRC_URI="mirror://gnu/binutils/${MY_P}.tar.xz LICENSE="|| ( GPL-3 LGPL-3 )" # The shared lib SONAMEs use the ${PV} in them. SLOT="0/${PV}" -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" +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="64-bit-bfd multitarget nls static-libs" COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]"
[gentoo-commits] repo/gentoo:master commit in: dev-util/ostree/
commit: 989b0455c7dc09eebdd4e139be83a97881876e65 Author: Dan Molik danmolik com> AuthorDate: Sun Jun 3 19:05:44 2018 + Commit: Zac Medico gentoo org> CommitDate: Sun Jun 3 20:45:49 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=989b0455 dev-util/ostree: new package (from defiance-overlay) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/ostree/Manifest | 1 + dev-util/ostree/metadata.xml | 39 +++ dev-util/ostree/ostree-2018.5.ebuild | 51 3 files changed, 91 insertions(+) diff --git a/dev-util/ostree/Manifest b/dev-util/ostree/Manifest new file mode 100644 index 000..efb030b2fe2 --- /dev/null +++ b/dev-util/ostree/Manifest @@ -0,0 +1 @@ +DIST ostree-2018.5.tar.xz 1937184 BLAKE2B ff126d2963296eb9ac270816efed7d2fbfdbcc7b0dba69007ae83e4499a46ef21a5b4e5d387de9bd387af0fe8d4086427d1aa9043c246a49676d116e919a93e6 SHA512 03854c662cddc1e0c7150bb62bbdd2990cf091ef126ddc5bb94494fee2ffb0383afb067b89d63c3e4f39849e2c8b7cabfd887d0d6fc1e7a43fda4fe7da1dc2e8 diff --git a/dev-util/ostree/metadata.xml b/dev-util/ostree/metadata.xml new file mode 100644 index 000..d31a8226768 --- /dev/null +++ b/dev-util/ostree/metadata.xml @@ -0,0 +1,39 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + + zmed...@gentoo.org + Zac Medico + + + This project is now known as "libostree", though it is + still appropriate to use the previous name: "OSTree" (or + "ostree"). The focus is on projects which use libostree's + shared library, rather than users directly invoking the command + line tools (except for build systems). However, in most of + the rest of the documentation, we will use the term "OSTree", + since it's slightly shorter, and changing all documentation + at once is impractical. We expect to transition to the new + name over time. + + As implied above, libostree is both a shared library and suite + of command line tools that combines a "git-like" model for + committing and downloading bootable filesystem trees, along + with a layer for deploying them and managing the bootloader + configuration. + + The core OSTree model is like git in that it checksums + individual files and has a content-addressed-object + store. It's unlike git in that it "checks out" the files + via hardlinks, and they thus need to be immutable to prevent + corruption. Therefore, another way to think of OSTree is that + it's just a more polished version of Linux VServer hardlinks. + + + Enable grub configuration generator + Use libsoup for networking + + + ostreedev/ostree + + diff --git a/dev-util/ostree/ostree-2018.5.ebuild b/dev-util/ostree/ostree-2018.5.ebuild new file mode 100644 index 000..40ad547229e --- /dev/null +++ b/dev-util/ostree/ostree-2018.5.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Operating system and container binary deployment and upgrades" +HOMEPAGE="https://ostree.readthedocs.io/en/latest/"; +SRC_URI="https://github.com/ostreedev/${PN}/releases/download/v${PV}/lib${P}.tar.xz -> ${P}.tar.xz" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="grub selinux soup systemd zeroconf" +RESTRICT="test" + +S="${WORKDIR}/lib${P}" +COMMON_DEPEND=" + app-arch/libarchive:= + app-arch/xz-utils:= + app-crypt/gpgme:= + dev-libs/glib:= + dev-libs/libassuan:= + dev-libs/libgpg-error:= + dev-libs/openssl:= + net-misc/curl:= + sys-apps/util-linux:= + sys-fs/fuse:= + sys-libs/zlib:= + + grub? ( sys-boot/grub:* ) + selinux? ( sys-libs/libselinux:= ) + soup? ( net-libs/libsoup:= ) + systemd? ( sys-apps/systemd:= ) + zeroconf? ( net-dns/avahi:* ) +" +DEPEND=" + ${COMMON_DEPEND} + sys-devel/bison + sys-devel/flex +" +RDEPEND="${COMMON_DEPEND}" + +src_configure() { + econf \ + --with-crypto=openssl \ + --with-curl \ + --with-openssl \ + $(use_with soup) \ + $(use_with selinux ) \ + $(use_with zeroconf avahi) +}
[gentoo-commits] repo/gentoo:master commit in: dev-python/bz2file/
commit: 3ca10afdca4b5ce4b17c1491d8c0c8d85519f949 Author: Rolf Eike Beer sf-mail de> AuthorDate: Sun Jun 3 20:22:32 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 20:39:57 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ca10afd dev-python/bz2file: stable 0.98 for hppa Bug: https://bugs.gentoo.org/654682 Package-Manager: Portage-2.3.24, Repoman-2.3.6 RepoMan-Options: --include-arches="hppa" dev-python/bz2file/bz2file-0.98.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/bz2file/bz2file-0.98.ebuild b/dev-python/bz2file/bz2file-0.98.ebuild index 773b8d86eac..89d778e690e 100644 --- a/dev-python/bz2file/bz2file-0.98.ebuild +++ b/dev-python/bz2file/bz2file-0.98.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~x64-cygwin ~amd64-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~x64-cygwin ~amd64-fbsd" IUSE="" python_test() {
[gentoo-commits] repo/gentoo:master commit in: app-portage/gemato/
commit: c877967f4db1aa526e5466c446934941a21c81b1 Author: Rolf Eike Beer sf-mail de> AuthorDate: Sun Jun 3 20:23:19 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 20:39:57 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c877967f app-portage/gemato: stable 13.0 for hppa Bug: https://bugs.gentoo.org/654682 Package-Manager: Portage-2.3.24, Repoman-2.3.6 RepoMan-Options: --include-arches="hppa" app-portage/gemato/gemato-13.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/gemato/gemato-13.0.ebuild b/app-portage/gemato/gemato-13.0.ebuild index 087e628bcb8..2fc2a5fa09a 100644 --- a/app-portage/gemato/gemato-13.0.ebuild +++ b/app-portage/gemato/gemato-13.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~x64-cygwin ~amd64-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~x64-cygwin ~amd64-fbsd" IUSE="+blake2 bzip2 +gpg lzma sha3 test tools" MODULE_RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-python/pysha3/
commit: 537ba93e99e95338b8a0394da7186589cdba41e2 Author: Rolf Eike Beer sf-mail de> AuthorDate: Sun Jun 3 20:22:01 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 20:39:54 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=537ba93e dev-python/pysha3: stable 1.0.2-r1 for hppa Bug: https://bugs.gentoo.org/654682 Package-Manager: Portage-2.3.24, Repoman-2.3.6 RepoMan-Options: --include-arches="hppa" dev-python/pysha3/pysha3-1.0.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pysha3/pysha3-1.0.2-r1.ebuild b/dev-python/pysha3/pysha3-1.0.2-r1.ebuild index a871cecc689..fbdfbc489b2 100644 --- a/dev-python/pysha3/pysha3-1.0.2-r1.ebuild +++ b/dev-python/pysha3/pysha3-1.0.2-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="CC0-1.0 PSF-2" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
[gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/
commit: 62fe2ae45fc12e67f1612b21819f68db7b1d05c0 Author: Rolf Eike Beer sf-mail de> AuthorDate: Sun Jun 3 20:24:58 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jun 3 20:39:58 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62fe2ae4 sys-apps/portage: stable 2.3.40 for hppa Bug: https://bugs.gentoo.org/657058 Package-Manager: Portage-2.3.24, Repoman-2.3.6 RepoMan-Options: --include-arches="hppa" sys-apps/portage/portage-2.3.40.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/portage/portage-2.3.40.ebuild b/sys-apps/portage/portage-2.3.40.ebuild index a42050437d9..813b4a058fe 100644 --- a/sys-apps/portage/portage-2.3.40.ebuild +++ b/sys-apps/portage/portage-2.3.40.ebuild @@ -16,7 +16,7 @@ DESCRIPTION="Portage is the package management and distribution system for Gento HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"; LICENSE="GPL-2" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ~ppc ~ppc64 s390 ~sparc ~x86 ~amd64-fbsd" SLOT="0" IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify selinux xattr"
[gentoo-commits] repo/gentoo:master commit in: app-emulation/vkd3d/
commit: 784e0ba6b6318f288ce3617ef2d48cac2cc04f1b Author: Nick Sarnie gentoo org> AuthorDate: Sun Jun 3 20:31:16 2018 + Commit: Nick Sarnie gentoo org> CommitDate: Sun Jun 3 20:31:16 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=784e0ba6 app-emulation/vkd3d: Sync with ::wine Need to depend on media-libs/vulkan-loader[X] Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/vkd3d/vkd3d-1.0.ebuild | 2 +- app-emulation/vkd3d/vkd3d-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/vkd3d/vkd3d-1.0.ebuild b/app-emulation/vkd3d/vkd3d-1.0.ebuild index 6158c8e04d3..2adf5f15608 100644 --- a/app-emulation/vkd3d/vkd3d-1.0.ebuild +++ b/app-emulation/vkd3d/vkd3d-1.0.ebuild @@ -15,7 +15,7 @@ fi IUSE="spirv-tools" RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] ) - media-libs/vulkan-loader[${MULTILIB_USEDEP}] + media-libs/vulkan-loader[${MULTILIB_USEDEP},X] x11-libs/xcb-util:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-keysyms:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-wm:=[${MULTILIB_USEDEP}]" diff --git a/app-emulation/vkd3d/vkd3d-.ebuild b/app-emulation/vkd3d/vkd3d-.ebuild index 6158c8e04d3..2adf5f15608 100644 --- a/app-emulation/vkd3d/vkd3d-.ebuild +++ b/app-emulation/vkd3d/vkd3d-.ebuild @@ -15,7 +15,7 @@ fi IUSE="spirv-tools" RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] ) - media-libs/vulkan-loader[${MULTILIB_USEDEP}] + media-libs/vulkan-loader[${MULTILIB_USEDEP},X] x11-libs/xcb-util:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-keysyms:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-wm:=[${MULTILIB_USEDEP}]"
[gentoo-commits] repo/proj/wine:master commit in: app-emulation/vkd3d/
commit: f3f5dabc855b0a0a6db68eca7d599d1d2ccc439a Author: Nick Sarnie gentoo org> AuthorDate: Sun Jun 3 20:28:49 2018 + Commit: Nick Sarnie gentoo org> CommitDate: Sun Jun 3 20:29:42 2018 + URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=f3f5dabc app-emulation/vkd3d: Fix dep on media-libs/vulkan-loader Bug: https://bugs.gentoo.org/656784 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/vkd3d/vkd3d-1.0.ebuild | 2 +- app-emulation/vkd3d/vkd3d-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/vkd3d/vkd3d-1.0.ebuild b/app-emulation/vkd3d/vkd3d-1.0.ebuild index 6158c8e..2adf5f1 100644 --- a/app-emulation/vkd3d/vkd3d-1.0.ebuild +++ b/app-emulation/vkd3d/vkd3d-1.0.ebuild @@ -15,7 +15,7 @@ fi IUSE="spirv-tools" RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] ) - media-libs/vulkan-loader[${MULTILIB_USEDEP}] + media-libs/vulkan-loader[${MULTILIB_USEDEP},X] x11-libs/xcb-util:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-keysyms:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-wm:=[${MULTILIB_USEDEP}]" diff --git a/app-emulation/vkd3d/vkd3d-.ebuild b/app-emulation/vkd3d/vkd3d-.ebuild index 6158c8e..2adf5f1 100644 --- a/app-emulation/vkd3d/vkd3d-.ebuild +++ b/app-emulation/vkd3d/vkd3d-.ebuild @@ -15,7 +15,7 @@ fi IUSE="spirv-tools" RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] ) - media-libs/vulkan-loader[${MULTILIB_USEDEP}] + media-libs/vulkan-loader[${MULTILIB_USEDEP},X] x11-libs/xcb-util:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-keysyms:=[${MULTILIB_USEDEP}] x11-libs/xcb-util-wm:=[${MULTILIB_USEDEP}]"
[gentoo-commits] repo/gentoo:master commit in: sys-process/audit/
commit: ea85021f98c1278e5c2a8ae70e75b3d9d779 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 19:59:08 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 19:59:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea85021f sys-process/audit: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-process/audit/audit-2.7.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-process/audit/audit-2.7.1.ebuild b/sys-process/audit/audit-2.7.1.ebuild index 8f1b3514388..471749e78e5 100644 --- a/sys-process/audit/audit-2.7.1.ebuild +++ b/sys-process/audit/audit-2.7.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://people.redhat.com/sgrubb/audit/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86" IUSE="gssapi ldap python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" # Testcases are pretty useless as they are built for RedHat users/groups and kernels.
[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/
commit: 07c6ffbbf2bc3a409091beb311481391a71dd581 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 19:45:14 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 19:45:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c6ffbb dev-scheme/guile: mark s390 stable wrt bug #647114 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-scheme/guile/guile-2.0.14-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-scheme/guile/guile-2.0.14-r3.ebuild b/dev-scheme/guile/guile-2.0.14-r3.ebuild index 6e53308ee30..7e73e36e14d 100644 --- a/dev-scheme/guile/guile-2.0.14-r3.ebuild +++ b/dev-scheme/guile/guile-2.0.14-r3.ebuild @@ -7,7 +7,7 @@ inherit flag-o-matic autotools ltprune DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions" HOMEPAGE="https://www.gnu.org/software/guile/"; SRC_URI="mirror://gnu/guile/${P}.tar.gz" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" LICENSE="LGPL-3+" IUSE="debug debug-malloc +deprecated +networking +nls +regex +threads" # upstream recommended +networking +nls # emacs useflag removal not working
[gentoo-commits] repo/gentoo:master commit in: dev-libs/boehm-gc/
commit: 0b5872112fdc2c11d1a289b392e3a8be4e272839 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 19:46:32 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 19:46:32 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b587211 dev-libs/boehm-gc: mark s390 stable wrt bug #647114 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/boehm-gc/boehm-gc-7.6.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/boehm-gc/boehm-gc-7.6.4.ebuild b/dev-libs/boehm-gc/boehm-gc-7.6.4.ebuild index bb46d18df23..f55d6778119 100644 --- a/dev-libs/boehm-gc/boehm-gc-7.6.4.ebuild +++ b/dev-libs/boehm-gc/boehm-gc-7.6.4.ebuild @@ -15,7 +15,7 @@ LICENSE="boehm-gc" # SONAME: libgc.so.1 libgccpp.so.1 # We've been using subslot 0 for these instead of "1.1". SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="cxx static-libs +threads" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatomic_ops/
commit: 45f50a68f208d262d4c5a8077fdf616d86aecfef Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 19:47:23 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 19:47:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f50a68 dev-libs/libatomic_ops: mark s390 stable wrt bug #647114 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libatomic_ops/libatomic_ops-7.6.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libatomic_ops/libatomic_ops-7.6.4.ebuild b/dev-libs/libatomic_ops/libatomic_ops-7.6.4.ebuild index f706c9127fb..7dba50603ca 100644 --- a/dev-libs/libatomic_ops/libatomic_ops-7.6.4.ebuild +++ b/dev-libs/libatomic_ops/libatomic_ops-7.6.4.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ivmai/${PN}/releases/download/v${PV}/${P}.tar.gz"; LICENSE="MIT boehm-gc GPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~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" +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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" PATCHES=( "${FILESDIR}"/${P}-gcc7.patch )
[gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvs/
commit: bdeaba78db4041f111fffe14618818aca9ea435b Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 19:36:03 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 19:36:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdeaba78 dev-vcs/cvs: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-vcs/cvs/cvs-1.12.12-r12.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-vcs/cvs/cvs-1.12.12-r12.ebuild b/dev-vcs/cvs/cvs-1.12.12-r12.ebuild index 2683223b594..4fd2e77144a 100644 --- a/dev-vcs/cvs/cvs-1.12.12-r12.ebuild +++ b/dev-vcs/cvs/cvs-1.12.12-r12.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://gnu/non-gnu/cvs/source/feature/${PV}/${P}.tar.bz2 LICENSE="GPL-2 LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="crypt doc kerberos nls pam server" RESTRICT="test"
[gentoo-commits] repo/gentoo:master commit in: app-emacs/po-mode/
commit: b24f80cbcc8ec5c853d00d8b4615314e03a6be6d Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 19:37:35 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 19:37:35 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b24f80cb app-emacs/po-mode: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emacs/po-mode/po-mode-0.19.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emacs/po-mode/po-mode-0.19.3.ebuild b/app-emacs/po-mode/po-mode-0.19.3.ebuild index dee68ca726b..c8911054c99 100644 --- a/app-emacs/po-mode/po-mode-0.19.3.ebuild +++ b/app-emacs/po-mode/po-mode-0.19.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gettext/gettext-${PV}.tar.gz" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" S="${WORKDIR}/gettext-${PV}/gettext-tools/misc" ELISP_REMOVE="start-po.el"
[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-pinentry/
commit: be4e4affe612cdc1fb5488d07537500efb7255f1 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 19:32:42 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 19:33:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be4e4aff app-eselect/eselect-pinentry: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-eselect/eselect-pinentry/eselect-pinentry-0.7.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-eselect/eselect-pinentry/eselect-pinentry-0.7.ebuild b/app-eselect/eselect-pinentry/eselect-pinentry-0.7.ebuild index 54d6eac5a48..3ac7fc482ef 100644 --- a/app-eselect/eselect-pinentry/eselect-pinentry-0.7.ebuild +++ b/app-eselect/eselect-pinentry/eselect-pinentry-0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,7 +9,7 @@ SRC_URI="" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND=">=app-eselect/eselect-lib-bin-symlink-0.1.1"
[gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
commit: f373d1d0bb9a93a1152148aa626ce69ae513d50f Author: Zac Medico gentoo org> AuthorDate: Sun Jun 3 18:52:08 2018 + Commit: Zac Medico gentoo org> CommitDate: Sun Jun 3 18:52:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f373d1d0 app-portage/repoman: remove old versions Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-portage/repoman/Manifest | 3 -- app-portage/repoman/repoman-2.3.3.ebuild | 78 app-portage/repoman/repoman-2.3.4.ebuild | 60 app-portage/repoman/repoman-2.3.7.ebuild | 60 4 files changed, 201 deletions(-) diff --git a/app-portage/repoman/Manifest b/app-portage/repoman/Manifest index 90b3aa96abd..d2d17712db8 100644 --- a/app-portage/repoman/Manifest +++ b/app-portage/repoman/Manifest @@ -1,7 +1,4 @@ DIST repoman-2.3.0-bug-586864.patch 1074 BLAKE2B f29ed4b9b66540bf765cd9bdf46ed10d99845ca141df4ad9701d94d8283343bb2e9101cf44e10ed2dc2dd11d02c5dea68e113f624db82d420dac5e846dd44c59 SHA512 b48112a623a4844e5783f229ee0208f729b99ab46128d19735a76633efee17deb81342b5dc8fa67f4f4f5a851509c04c8d2f2ba2cbd992a9d26e61da4ed5f7e8 DIST repoman-2.3.0.tar.bz2 75285 BLAKE2B 980fadf2247869358f76f6708117b8a9591763e9cae8fdeed8fe4cbc6915d0fd4473381a0eed99c16fc67394fda996c12b9784b7511ebe07267496e39d683258 SHA512 960c63caed12f7c89d374ecceb39677b62d588bf75cc8da1857641c60310061188f4c2fd7177c93a4e8f20cf00a423426f2a70666320f263158531a618a7ff9c -DIST repoman-2.3.3.tar.bz2 78045 BLAKE2B 5c2e770af3ba0c93ce24c710fb32e8b9d937ad8dcb75cdd6461721163d012937c14745f248543bd2dafe154b649100aba1cb626c0de3bb47294d053bb19bd3a8 SHA512 17212c19b14817a8a004619dd56ad557457d45919da45edfb27538304e68187fe1104f0b6ccc2b29fa1709645a7a82c75676b118b20d79dc790b0eb2ebf5a2ce -DIST repoman-2.3.4.tar.bz2 78764 BLAKE2B 0fb6bd75463fe10dd41ab1fcdfd0857341dbe973e796f2f97e636df2c29dd633d7199eb22b4605b34d6e56624ac5a75f4783ff7119c421e2303aacf7adae4877 SHA512 1a434eea6361cc06ba3c27ccd31aa02875af1a577860490f8de666b0160370f09d1c46cea95d577163845e12c5672486b176c0009c32e735e16752d67bf4d96c DIST repoman-2.3.6.tar.bz2 78961 BLAKE2B c11953ced4d6bcd5e6e6a5b2dacb8802446f3acfd1842854b33fa8c0a64fa636a0b278b4fd3010b7070a7e2f00ae841ea331925ca20175e7c7e571082195d3d1 SHA512 490078d4621073e448d037373617911093bc4c3262961c4da00f201f880069c0b70c019abd86c15954ff0c547b0ea49434ee97cd972c2baff82f7cfed1a987b3 -DIST repoman-2.3.7.tar.bz2 80514 BLAKE2B 9342b5be35523f1eb597c94ad33425fd9f1bc81cf7b48c0194d96d2afc2cc27962e9cfbea14492c5e16856c79ab6429988201b269ef0444c17c6d91c9c11feaa SHA512 9caeb06cfe55e38566154923b785c1e3053722b50d7423241950b73c810781d111848e64815001abe218e6073a96ca462debdc99acc05123987cf4d4be0a0420 DIST repoman-2.3.9.tar.bz2 86432 BLAKE2B 8b60e9ee2705e8fe5d6ab569120f96ca452327c70b95a3b2fff291d4e5c6e446a5bbfa9256b5b0ed18a4e54662bb1b60f4a1e80a8a0c07d276a42fe756ec30e2 SHA512 7b492db9b46f8ebb681ec7dec6dee4a40ce5f95809d505e8b74058c391d16dacdb0171befad64f0281c0168316fcc9d7ec09c7b37742b87b890593ac610329a7 diff --git a/app-portage/repoman/repoman-2.3.3.ebuild b/app-portage/repoman/repoman-2.3.3.ebuild deleted file mode 100644 index 48a87eaab63..000 --- a/app-portage/repoman/repoman-2.3.3.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) -PYTHON_REQ_USE='bzip2(+)' - -inherit distutils-r1 - -if [[ ${PV} == ]]; then - inherit git-r3 - EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git"; - S="${WORKDIR}/${P}/repoman" -else - SRC_URI="https://dev.gentoo.org/~dolsen/releases/${PN}/${P}.tar.bz2"; - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -fi - -DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"; - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -RDEPEND=" - >=sys-apps/portage-2.3.0_rc[${PYTHON_USEDEP}] - >=dev-python/lxml-3.6.0[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" - -python_prepare_all() { - distutils-r1_python_prepare_all - - if [[ -n "${EPREFIX}" ]] ; then - einfo "Prefixing shebangs ..." - - local file - while read -r -d $'\0' file; do - local shebang=$(head -n1 "${file}") - - if [[ ${shebang} == "#!"* && ! ${shebang} == "#!${EPREFIX}/"* ]] ; then - sed -i -e "1s:.*:#!${EPREFIX}${shebang:2}:" "${file}" || \ - die "sed failed" - fi - done < <(find . -type f -print0) - fi -} - -python_test() { - es
[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-ctags/
commit: 17b794b37829e4c798200f1da50a1f6d08875180 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 18:32:14 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 18:32:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17b794b3 app-eselect/eselect-ctags: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild b/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild index 89c2655d67e..f5ec6ede525 100644 --- a/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild +++ b/app-eselect/eselect-ctags/eselect-ctags-1.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,7 +10,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/emacs/${MY_P}.tar.xz"; LICENSE="GPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND="!=app-admin/eselect-1.2.3"
[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-vi/
commit: d4ff54e4291459f1f14969d6d0711d726f21510e Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 18:30:33 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 18:30:33 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ff54e4 app-eselect/eselect-vi: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-eselect/eselect-vi/eselect-vi-1.1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-eselect/eselect-vi/eselect-vi-1.1.9.ebuild b/app-eselect/eselect-vi/eselect-vi-1.1.9.ebuild index 84c843b0065..a9de862b0ca 100644 --- a/app-eselect/eselect-vi/eselect-vi-1.1.9.ebuild +++ b/app-eselect/eselect-vi/eselect-vi-1.1.9.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND=">=app-admin/eselect-1.0.6"
[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/
commit: a0de947080e90e198fe60e55618c2dd3560a26d0 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 18:29:43 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 18:29:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0de9470 app-editors/vim-core: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-editors/vim-core/vim-core-8.0.1298.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-editors/vim-core/vim-core-8.0.1298.ebuild b/app-editors/vim-core/vim-core-8.0.1298.ebuild index fee41423502..dfe364e6cab 100644 --- a/app-editors/vim-core/vim-core-8.0.1298.ebuild +++ b/app-editors/vim-core/vim-core-8.0.1298.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then else SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> vim-${PV}.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-8.0.0938-gentoo-patches.tar.bz2"; - KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="vim and gvim shared files"
[gentoo-commits] repo/gentoo:master commit in: dev-util/ctags/
commit: 99cd0ea677edab567f82a1c031d56221a5395100 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 18:31:43 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 18:31:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99cd0ea6 dev-util/ctags: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/ctags/ctags-20161028.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/ctags/ctags-20161028.ebuild b/dev-util/ctags/ctags-20161028.ebuild index c82ea79817e..9734f3d2001 100644 --- a/dev-util/ctags/ctags-20161028.ebuild +++ b/dev-util/ctags/ctags-20161028.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://dev.gentoo.org/~radhermit/vim/${P}.tar.xz"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="json xml yaml" COMMON_DEPEND="
[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/
commit: 7946d5c451e0ad51bf13718734f354002df98294 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 18:28:24 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 18:28:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7946d5c4 app-editors/vim: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-editors/vim/vim-8.0.1298.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-editors/vim/vim-8.0.1298.ebuild b/app-editors/vim/vim-8.0.1298.ebuild index 3b1ca501115..ceca9c50c1c 100644 --- a/app-editors/vim/vim-8.0.1298.ebuild +++ b/app-editors/vim/vim-8.0.1298.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then else SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-8.0.0938-gentoo-patches.tar.bz2"; - KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="Vim, an improved vi-style text editor"
[gentoo-commits] repo/gentoo:master commit in: dev-libs/jsoncpp/
commit: ba52d29fdf52f29a72ce9439496e4f1d70b6a33b Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 18:00:58 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 18:00:58 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba52d29f dev-libs/jsoncpp: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/jsoncpp/jsoncpp-1.8.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/jsoncpp/jsoncpp-1.8.4.ebuild b/dev-libs/jsoncpp/jsoncpp-1.8.4.ebuild index 61d305dd279..caab49d6348 100644 --- a/dev-libs/jsoncpp/jsoncpp-1.8.4.ebuild +++ b/dev-libs/jsoncpp/jsoncpp-1.8.4.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz -> ${ LICENSE="|| ( public-domain MIT )" SLOT="0/19" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd" IUSE="doc test" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: app-crypt/rhash/
commit: b3eacb432b0f61afa7bce250a21ee1c2a3f5 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:59:10 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:59:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3eacb43 app-crypt/rhash: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-crypt/rhash/rhash-1.3.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-crypt/rhash/rhash-1.3.5.ebuild b/app-crypt/rhash/rhash-1.3.5.ebuild index dd34f36efb7..b086054c04a 100644 --- a/app-crypt/rhash/rhash-1.3.5.ebuild +++ b/app-crypt/rhash/rhash-1.3.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="debug nls libressl ssl static-libs" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libuv/
commit: 92cca01c7d2c355ba5e84dfd05b8082cd161c780 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 18:00:01 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 18:00:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92cca01c dev-libs/libuv: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libuv/libuv-1.20.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libuv/libuv-1.20.0.ebuild b/dev-libs/libuv/libuv-1.20.0.ebuild index f920d93c650..e4d496fd500 100644 --- a/dev-libs/libuv/libuv-1.20.0.ebuild +++ b/dev-libs/libuv/libuv-1.20.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD BSD-2 ISC MIT" SLOT="0/1" -KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs" RESTRICT="test"
[gentoo-commits] repo/gentoo:master commit in: dev-util/cmake/
commit: b284a6b2d3fa22d182eb6ab1ac1d2c50ee23f560 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:57:56 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:57:56 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b284a6b2 dev-util/cmake: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/cmake/cmake-3.9.6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/cmake/cmake-3.9.6.ebuild b/dev-util/cmake/cmake-3.9.6.ebuild index 5debbd53be5..3b09404e21f 100644 --- a/dev-util/cmake/cmake-3.9.6.ebuild +++ b/dev-util/cmake/cmake-3.9.6.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar LICENSE="CMake" SLOT="0" [[ "${PV}" = *_rc* ]] || \ -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc emacs server system-jsoncpp ncurses qt5" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/
commit: b2c00b6a8f6d6bcab14c432a98643506a7f948d3 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:50:13 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:50:13 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2c00b6a app-doc/doxygen: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-doc/doxygen/doxygen-1.8.13-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-doc/doxygen/doxygen-1.8.13-r1.ebuild b/app-doc/doxygen/doxygen-1.8.13-r1.ebuild index 035383b82d2..98099291889 100644 --- a/app-doc/doxygen/doxygen-1.8.13-r1.ebuild +++ b/app-doc/doxygen/doxygen-1.8.13-r1.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} = ** ]]; then SRC_URI="" else SRC_URI="https://ftp.stack.nl/pub/users/dimitri/${P}.src.tar.gz"; - 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 ~x86-solaris" + 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 ~x86-solaris" fi SRC_URI+=" https://dev.gentoo.org/~xarthisius/distfiles/doxywizard.png";
[gentoo-commits] repo/gentoo:master commit in: net-libs/ldns/
commit: 4b0a5b9d2c9a76bc892f545ddaa9407f022b0188 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:49:12 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:49:12 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b0a5b9d net-libs/ldns: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-libs/ldns/ldns-1.7.0-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/ldns/ldns-1.7.0-r2.ebuild b/net-libs/ldns/ldns-1.7.0-r2.ebuild index d42a8c87f9d..3a6c156757c 100644 --- a/net-libs/ldns/ldns-1.7.0-r2.ebuild +++ b/net-libs/ldns/ldns-1.7.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://www.nlnetlabs.nl/downloads/${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 ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x64-solaris" IUSE="+dane doc +ecdsa gost libressl python static-libs vim-syntax" # configure will die if ecdsa is enabled and ssl is not
[gentoo-commits] repo/gentoo:master commit in: sys-auth/skey/
commit: 18cffcd8eb319d5fa19ec5d7df177bbe2fb2c776 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:45:43 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:45:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18cffcd8 sys-auth/skey: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-auth/skey/skey-1.1.5-r11.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-auth/skey/skey-1.1.5-r11.ebuild b/sys-auth/skey/skey-1.1.5-r11.ebuild index c8c448a15df..15a60dd5578 100644 --- a/sys-auth/skey/skey-1.1.5-r11.ebuild +++ b/sys-auth/skey/skey-1.1.5-r11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2 LICENSE="BSD MIT RSA BEER-WARE" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86" IUSE="static-libs" DEPEND="dev-lang/perl
[gentoo-commits] repo/gentoo:master commit in: sys-libs/slang/
commit: 33bfa916b8ff9ef9266f5c940901ffaa159049be Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:37:02 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:42:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bfa916 sys-libs/slang: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-libs/slang/slang-2.3.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/slang/slang-2.3.2.ebuild b/sys-libs/slang/slang-2.3.2.ebuild index c04f235155b..47202fea1ca 100644 --- a/sys-libs/slang/slang-2.3.2.ebuild +++ b/sys-libs/slang/slang-2.3.2.ebuild @@ -14,7 +14,7 @@ if [[ "${PV}" = *_pre* ]] ; then else SRC_URI="http://www.jedsoft.org/releases/${PN}/${P}.tar.bz2 http://www.jedsoft.org/releases/${PN}/old/${P}.tar.bz2"; - 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 ~sparc-solaris ~sparc64-solaris ~x86-solaris" + 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 ~sparc-solaris ~sparc64-solaris ~x86-solaris" fi LICENSE="GPL-2" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: media-libs/libpng/
commit: 0add456e2f6a2bfad89869963170a7bb05304010 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:35:20 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:41:59 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0add456e media-libs/libpng: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/libpng/libpng-1.6.34.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libpng/libpng-1.6.34.ebuild b/media-libs/libpng/libpng-1.6.34.ebuild index f8f1a98b2e7..29b9b017368 100644 --- a/media-libs/libpng/libpng-1.6.34.ebuild +++ b/media-libs/libpng/libpng-1.6.34.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz LICENSE="libpng" SLOT="0/16" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" IUSE="apng cpu_flags_x86_sse neon static-libs" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]"
[gentoo-commits] repo/gentoo:master commit in: dev-libs/oniguruma/
commit: 966fa7270e8cd6d626f06c4161208cfa45ede842 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:36:31 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:42:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=966fa727 dev-libs/oniguruma: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/oniguruma/oniguruma-6.7.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/oniguruma/oniguruma-6.7.1.ebuild b/dev-libs/oniguruma/oniguruma-6.7.1.ebuild index 932c36ec063..3fc38a5bd56 100644 --- a/dev-libs/oniguruma/oniguruma-6.7.1.ebuild +++ b/dev-libs/oniguruma/oniguruma-6.7.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/kkos/${PN}/releases/download/v${PV}/${MY_P}.tar.gz"; LICENSE="BSD-2" SLOT="0/4" -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 ~x86-solaris" +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 ~x86-solaris" IUSE="combination-explosion-check crnl-as-line-terminator static-libs" S="${WORKDIR}/${MY_P}"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/logue/
commit: 7906c9cef4b3c4809cf9921e0a725152791337e2 Author: Hans de Graaff gentoo org> AuthorDate: Sun Jun 3 17:37:10 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Jun 3 17:39:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7906c9ce dev-ruby/logue: add missing test dependency on paramesan, bug 657286 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/logue/logue-1.0.13-r1.ebuild | 34 ++ 1 file changed, 34 insertions(+) diff --git a/dev-ruby/logue/logue-1.0.13-r1.ebuild b/dev-ruby/logue/logue-1.0.13-r1.ebuild new file mode 100644 index 000..1d823a3b310 --- /dev/null +++ b/dev-ruby/logue/logue-1.0.13-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="A module that adds logging/trace functionality" +HOMEPAGE="https://github.com/jpace/logue"; + +SRC_URI="https://github.com/jpace/logue/archive/v${PV}.tar.gz -> ${PN}-git-${PV}.tgz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend "dev-ruby/rainbow:3" + +ruby_add_bdepend "test? ( dev-ruby/paramesan )" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile || die + + # Fix path to match installed gem path + sed -i -e 's:logue/lib/logue:/lib/logue:' lib/logue/stack.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/
commit: 6dc6c0fdb2308b74e7828147dd8a43b567808e27 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:15:00 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:16:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc6c0fd dev-libs/libressl: s390 stable wrt bug #615396 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libressl/libressl-2.6.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libressl/libressl-2.6.4.ebuild b/dev-libs/libressl/libressl-2.6.4.ebuild index bc3550222a7..0bcae6becd6 100644 --- a/dev-libs/libressl/libressl-2.6.4.ebuild +++ b/dev-libs/libressl/libressl-2.6.4.ebuild @@ -14,7 +14,7 @@ LICENSE="ISC openssl" # we'll try to use the max of either. However, if either change between # versions, we have to change the subslot to trigger rebuild of consumers. SLOT="0/44" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86" IUSE="+asm static-libs test" REQUIRED_USE="test? ( static-libs )"
[gentoo-commits] repo/gentoo:master commit in: app-crypt/mit-krb5/
commit: 46c792e664031e2018a552a178a577f78441e4e5 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:15:47 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:16:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c792e6 app-crypt/mit-krb5: s390 stable wrt bug #615396 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild b/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild index 063a8ccbc12..2940175e9ed 100644 --- a/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild +++ b/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}.tar.gz"; LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 || ( BSD-2 GPL-2+ )" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86" IUSE="doc +keyutils libressl nls openldap +pkinit selinux +threads test xinetd" # Test suite require network access
[gentoo-commits] repo/gentoo:master commit in: net-fs/nfs-utils/
commit: 0d3ccc02f60d434e4eb591897f20e37d6f9a636d Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:12:25 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:16:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3ccc02 net-fs/nfs-utils: s390 stable wrt bug #615396 Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild b/net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild index 3d68614db31..ff490a255b5 100644 --- a/net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild +++ b/net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild @@ -15,7 +15,7 @@ if [[ "${PV}" = *_rc* ]] ; then S="${WORKDIR}/${PN}-${PN}-${MY_PV}" else SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2" - KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86" fi LICENSE="GPL-2"
[gentoo-commits] repo/gentoo:master commit in: app-emulation/winetricks/
commit: 69eba8c5988a12dc7b97c5801f3edaf5fa46a839 Author: Nick Sarnie gentoo org> AuthorDate: Sun Jun 3 17:09:02 2018 + Commit: Nick Sarnie gentoo org> CommitDate: Sun Jun 3 17:12:16 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69eba8c5 app-emulation/winetricks: Sync with ::wine Version bump to 20180603 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/winetricks/Manifest | 1 + .../winetricks/winetricks-20180603.ebuild | 96 ++ 2 files changed, 97 insertions(+) diff --git a/app-emulation/winetricks/Manifest b/app-emulation/winetricks/Manifest index e50eaeb8f66..cfa85e11f1d 100644 --- a/app-emulation/winetricks/Manifest +++ b/app-emulation/winetricks/Manifest @@ -1,4 +1,5 @@ DIST winetricks-20170823.tar.gz 639027 BLAKE2B ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9 SHA512 edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a DIST winetricks-20180217.tar.gz 646726 BLAKE2B 3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27 SHA512 3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73 DIST winetricks-20180513.tar.gz 652299 BLAKE2B fb4c55e534e368d5d7e94247feed031d0f6f98a2f3604f6187e32d25659f1cfa7f5589806e429ee054b4a94c00ebd6ac63cb99012fd94a99622891132a477001 SHA512 49fc022fc3db068145baf3a51444dc937deb092aceac8e31259888fea21ffe86f747a0d4dbd5ff10f253a94b15de090c01f20dacbe838c8444bdb00b98cbf5c6 +DIST winetricks-20180603.tar.gz 651678 BLAKE2B a70ae685bd49e429199619176e130681ab2d28ba8659f68bdba298d82e610c77df86c3d998273e60bb53d9da24bddcfe80f6d89e044007c1477a92bbc0e6043f SHA512 e88b0d4375331c94d3e2d995985b6c28fd208f1e32b1e4d84f33997a8a69fc9f8a4173325a571f5d10f233bcf40fe4cde644401c1563c8cfe7915748448a08cd DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f SHA512 59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a diff --git a/app-emulation/winetricks/winetricks-20180603.ebuild b/app-emulation/winetricks/winetricks-20180603.ebuild new file mode 100644 index 000..58d2e71829b --- /dev/null +++ b/app-emulation/winetricks/winetricks-20180603.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils eutils + +if [[ ${PV} == "" ]] ; then + EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git"; + inherit git-r3 + SRC_URI="" +else + SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +wtg=winetricks-gentoo-2012.11.24 + +SRC_URI="${SRC_URI} + gtk? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 ) + kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 )" + +DESCRIPTION="Easy way to install DLLs needed to work around problems in Wine" +HOMEPAGE="https://github.com/Winetricks/winetricks https://wiki.winehq.org/Winetricks"; + +LICENSE="LGPL-2.1+" +SLOT="0" +IUSE="gtk kde rar test" + +DEPEND="test? ( + dev-python/bashate + dev-util/checkbashisms + dev-util/shellcheck + )" + +RDEPEND="app-arch/cabextract + app-arch/p7zip + app-arch/unzip + net-misc/wget + virtual/wine + x11-misc/xdg-utils + gtk? ( gnome-extra/zenity ) + kde? ( kde-apps/kdialog ) + rar? ( app-arch/unrar )" + +# Test targets include syntax checks only, not the "heavy duty" tests +# that would require a lot of disk space, as well as network access. + +# This uses a non-standard "Wine" category, which is provided by +# '/etc/xdg/menus/applications-merged/wine.menu' from the +# 'app-emulation/wine-desktop-common' package. +# https://bugs.gentoo.org/451552 +QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop" + +src_unpack() { + if [[ ${PV} == "" ]] ; then + git-r3_src_unpack + if use gtk || use kde; then + unpack ${wtg}.tar.bz2 + fi + else + default + fi +} + +src_test() { + ./tests/shell-checks || die "Test(s) failed." +} + +src_install() { + default + if use gtk || use kde; then + cd "${WORKDIR}/${wtg}" ||
[gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/
commit: 75c42399757a7d93f71f288c9cda0358b7f7d1de Author: Matt Turner gentoo org> AuthorDate: Sun Jun 3 16:57:55 2018 + Commit: Matt Turner gentoo org> CommitDate: Sun Jun 3 17:11:28 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75c42399 media-libs/mesa: Drop old versions media-libs/mesa/Manifest | 2 - media-libs/mesa/mesa-18.0.4.ebuild| 571 - media-libs/mesa/mesa-18.1.0-r1.ebuild | 531 --- media-libs/mesa/mesa-18.1.0.ebuild| 572 -- 4 files changed, 1676 deletions(-) diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest index ae8157c9c12..79b3374d911 100644 --- a/media-libs/mesa/Manifest +++ b/media-libs/mesa/Manifest @@ -1,5 +1,3 @@ DIST mesa-17.3.9.tar.xz 10660456 BLAKE2B 54f4a75f9040e50e9eea8f5c52a276578379d25d2a01ac4767ab12bee85fe5dae1492d5bb1df06b6e8c6b0fe960bbd5ea38691c75d08a6b4302c64377ce58e54 SHA512 83deffbc6b9823b8e93cccf57d7952106f3d55fea881e3924f9f9586f0e9347a6e3a1a36cc19c24af819f2fde3af9496652a6ff56132511a5618d5774404f63f -DIST mesa-18.0.4.tar.xz 10939356 BLAKE2B 6bbf19f4e547be3be7385f6e8b09fe78c0e1ac04d42f1e762ec92d83a53c06bae987b63a542553df4a8a1e17c0b3738e2db6faf356897f49b8d7efd5845c SHA512 f9a14be46c209661ceb318add1611481445d13b47e95c7a5d2a5e5ecfdd5d2c3fa9c2b16b30035bbb8d61ccc7cb65bfa6698ac8b040273e5ab045a951a67752c DIST mesa-18.0.5.tar.xz 10952996 BLAKE2B 708cdb2ef95a618430cd4e7eb45bcab0f6575774065b61f53787aa378385fe0dfa0b04f9c80c5426f9581851edc545a75c13dc304ac8ba57465d365fcd50 SHA512 63b47cdca7f8282aab7aaa66233411f02918e5c4804b7a0010de2b1867fe90171e492ff031dfc4aa20968dfc99bd7dceb5d35fd44c709e54a2ece61175a60f3d -DIST mesa-18.1.0.tar.xz 8776 BLAKE2B 0da5486e96596b3f919f15d2db9cd12de825811a0fbb76859bb7d275914dda0cc19a518b269fa0745d52982b92d5d645b6da639a870709193db721262658 SHA512 8b26af2df8b94373cbc339521974cd568c1d4ff4204986ee7b439e4cf3ebe14d822ea081a7769b68eca9263b7bc6dbca01836b8bb0d6495d2e2614c4e3d601ad DIST mesa-18.1.1.tar.xz 0892 BLAKE2B 05d48379109c1c3800d3d07b9f52e96b2cd4bc087517711ee752f89619afce0a0e09b7a9ede8b5d1807ceae3e2b506518657a0760c947f466121e2252f7eada3 SHA512 7783adc1ec7a1c3d092acfcca6b4ba19450c15a7f0d7f41fbf25e482236615d79ce24afe60959066ea7aa851df4f74fa3c569fa6d847ea79e6bfe046b8c65e90 diff --git a/media-libs/mesa/mesa-18.0.4.ebuild b/media-libs/mesa/mesa-18.0.4.ebuild deleted file mode 100644 index 944b89c4937..000 --- a/media-libs/mesa/mesa-18.0.4.ebuild +++ /dev/null @@ -1,571 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/mesa.git"; - -if [[ ${PV} = ]]; then - GIT_ECLASS="git-r3" - EXPERIMENTAL="true" -fi - -PYTHON_COMPAT=( python2_7 ) - -inherit autotools llvm multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS} - -OPENGL_DIR="xorg-x11" - -MY_P="${P/_/-}" - -DESCRIPTION="OpenGL-like graphic library for Linux" -HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/"; - -if [[ $PV == ]]; then - SRC_URI="" -else - SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz"; - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" -fi - -LICENSE="MIT" -SLOT="0" -RESTRICT="!bindist? ( bindist )" - -RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi" -VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 imx intel nouveau vc4 virgl vivante vmware" -for card in ${VIDEO_CARDS}; do - IUSE_VIDEO_CARDS+=" video_cards_${card}" -done - -IUSE="${IUSE_VIDEO_CARDS} - bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 unwind - +llvm +nptl opencl osmesa pax_kernel openmax pic selinux vaapi valgrind - vdpau vulkan wayland xvmc xa" - -REQUIRED_USE=" - d3d9? ( dri3 gallium ) - llvm? ( gallium ) - opencl? ( gallium llvm ) - openmax? ( gallium ) - gles1? ( egl ) - gles2? ( egl ) - vaapi? ( gallium ) - vdpau? ( gallium ) - vulkan? ( || ( video_cards_i965 video_cards_radeonsi ) - video_cards_radeonsi? ( llvm ) ) - wayland? ( egl gbm ) - xa? ( gallium ) - video_cards_freedreno? ( gallium ) - video_cards_intel? ( classic ) - video_cards_i915? ( || ( classic gallium ) ) - video_cards_i965? ( classic ) - video_cards_imx?( gallium video_cards_vivante ) - video_cards_nouveau? ( || ( classic gallium ) ) - video_cards_radeon? ( || ( classic gallium ) - gallium? ( x86? ( llvm ) amd64? ( llvm ) ) ) - video_cards_r100? ( classic ) - video_cards_r200? ( classic ) - video_cards_r300? ( gallium x86? ( llvm ) am
[gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/
commit: b48ee940c169eecdf93e07d04304b4ce2d6d9e67 Author: Matt Turner gentoo org> AuthorDate: Sun Jun 3 16:56:49 2018 + Commit: Matt Turner gentoo org> CommitDate: Sun Jun 3 17:11:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b48ee940 media-libs/mesa: Version bump 18.0.5 media-libs/mesa/Manifest | 1 + media-libs/mesa/mesa-18.0.5.ebuild | 571 + 2 files changed, 572 insertions(+) diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest index 5652c66bcda..ae8157c9c12 100644 --- a/media-libs/mesa/Manifest +++ b/media-libs/mesa/Manifest @@ -1,4 +1,5 @@ DIST mesa-17.3.9.tar.xz 10660456 BLAKE2B 54f4a75f9040e50e9eea8f5c52a276578379d25d2a01ac4767ab12bee85fe5dae1492d5bb1df06b6e8c6b0fe960bbd5ea38691c75d08a6b4302c64377ce58e54 SHA512 83deffbc6b9823b8e93cccf57d7952106f3d55fea881e3924f9f9586f0e9347a6e3a1a36cc19c24af819f2fde3af9496652a6ff56132511a5618d5774404f63f DIST mesa-18.0.4.tar.xz 10939356 BLAKE2B 6bbf19f4e547be3be7385f6e8b09fe78c0e1ac04d42f1e762ec92d83a53c06bae987b63a542553df4a8a1e17c0b3738e2db6faf356897f49b8d7efd5845c SHA512 f9a14be46c209661ceb318add1611481445d13b47e95c7a5d2a5e5ecfdd5d2c3fa9c2b16b30035bbb8d61ccc7cb65bfa6698ac8b040273e5ab045a951a67752c +DIST mesa-18.0.5.tar.xz 10952996 BLAKE2B 708cdb2ef95a618430cd4e7eb45bcab0f6575774065b61f53787aa378385fe0dfa0b04f9c80c5426f9581851edc545a75c13dc304ac8ba57465d365fcd50 SHA512 63b47cdca7f8282aab7aaa66233411f02918e5c4804b7a0010de2b1867fe90171e492ff031dfc4aa20968dfc99bd7dceb5d35fd44c709e54a2ece61175a60f3d DIST mesa-18.1.0.tar.xz 8776 BLAKE2B 0da5486e96596b3f919f15d2db9cd12de825811a0fbb76859bb7d275914dda0cc19a518b269fa0745d52982b92d5d645b6da639a870709193db721262658 SHA512 8b26af2df8b94373cbc339521974cd568c1d4ff4204986ee7b439e4cf3ebe14d822ea081a7769b68eca9263b7bc6dbca01836b8bb0d6495d2e2614c4e3d601ad DIST mesa-18.1.1.tar.xz 0892 BLAKE2B 05d48379109c1c3800d3d07b9f52e96b2cd4bc087517711ee752f89619afce0a0e09b7a9ede8b5d1807ceae3e2b506518657a0760c947f466121e2252f7eada3 SHA512 7783adc1ec7a1c3d092acfcca6b4ba19450c15a7f0d7f41fbf25e482236615d79ce24afe60959066ea7aa851df4f74fa3c569fa6d847ea79e6bfe046b8c65e90 diff --git a/media-libs/mesa/mesa-18.0.5.ebuild b/media-libs/mesa/mesa-18.0.5.ebuild new file mode 100644 index 000..944b89c4937 --- /dev/null +++ b/media-libs/mesa/mesa-18.0.5.ebuild @@ -0,0 +1,571 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/mesa.git"; + +if [[ ${PV} = ]]; then + GIT_ECLASS="git-r3" + EXPERIMENTAL="true" +fi + +PYTHON_COMPAT=( python2_7 ) + +inherit autotools llvm multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS} + +OPENGL_DIR="xorg-x11" + +MY_P="${P/_/-}" + +DESCRIPTION="OpenGL-like graphic library for Linux" +HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/"; + +if [[ $PV == ]]; then + SRC_URI="" +else + SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz"; + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="MIT" +SLOT="0" +RESTRICT="!bindist? ( bindist )" + +RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi" +VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 imx intel nouveau vc4 virgl vivante vmware" +for card in ${VIDEO_CARDS}; do + IUSE_VIDEO_CARDS+=" video_cards_${card}" +done + +IUSE="${IUSE_VIDEO_CARDS} + bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 unwind + +llvm +nptl opencl osmesa pax_kernel openmax pic selinux vaapi valgrind + vdpau vulkan wayland xvmc xa" + +REQUIRED_USE=" + d3d9? ( dri3 gallium ) + llvm? ( gallium ) + opencl? ( gallium llvm ) + openmax? ( gallium ) + gles1? ( egl ) + gles2? ( egl ) + vaapi? ( gallium ) + vdpau? ( gallium ) + vulkan? ( || ( video_cards_i965 video_cards_radeonsi ) + video_cards_radeonsi? ( llvm ) ) + wayland? ( egl gbm ) + xa? ( gallium ) + video_cards_freedreno? ( gallium ) + video_cards_intel? ( classic ) + video_cards_i915? ( || ( classic gallium ) ) + video_cards_i965? ( classic ) + video_cards_imx?( gallium video_cards_vivante ) + video_cards_nouveau? ( || ( classic gallium ) ) + video_cards_radeon? ( || ( classic gallium ) + gallium? ( x86? ( llvm ) amd64? ( llvm ) ) ) + video_cards_r100? ( classic ) + video_cards_r200? ( classic ) + video_cards_r300? ( gallium x86? ( llvm ) amd64? ( llvm ) ) + video_cards_r600? ( gallium ) + video_cards_radeonsi? ( gallium llvm ) + video_cards_vc4? ( gallium ) + video_cards
[gentoo-commits] repo/gentoo:master commit in: media-libs/jpeg/
commit: a29d18a450811a803fc9693937b4aeac7253a9e9 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:09:58 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:09:58 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a29d18a4 media-libs/jpeg: s390 stable wrt bug #646984 Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/jpeg/jpeg-9c.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/jpeg/jpeg-9c.ebuild b/media-libs/jpeg/jpeg-9c.ebuild index 8c78b2668af..4bad071b5db 100644 --- a/media-libs/jpeg/jpeg-9c.ebuild +++ b/media-libs/jpeg/jpeg-9c.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://www.ijg.org/files/${PN}src.v${PV}.tar.gz LICENSE="IJG" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs" DEPEND=""
[gentoo-commits] repo/gentoo:master commit in: sys-apps/xinetd/
commit: 66a01d3c8fcafdbf9da049005b63053501287b64 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 17:06:49 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 17:07:33 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66a01d3c sys-apps/xinetd: s390 stable wrt bug #653826 Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-apps/xinetd/xinetd-2.3.15.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/xinetd/xinetd-2.3.15.3.ebuild b/sys-apps/xinetd/xinetd-2.3.15.3.ebuild index 6b4ff3e3a59..bd39ceb3f7a 100644 --- a/sys-apps/xinetd/xinetd-2.3.15.3.ebuild +++ b/sys-apps/xinetd/xinetd-2.3.15.3.ebuild @@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}/releases/download/${PV}/${P}.tar.xz" LICENSE="BSD" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="perl selinux tcpd" DEPEND="
[gentoo-commits] repo/proj/wine:master commit in: app-emulation/winetricks/
commit: 6fc042b65a79ab09145141ecc78dad76344b2d3b Author: Nick Sarnie gentoo org> AuthorDate: Sun Jun 3 17:03:44 2018 + Commit: Nick Sarnie gentoo org> CommitDate: Sun Jun 3 17:03:55 2018 + URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=6fc042b6 app-emulation/winetricks: Version bump to 20180603 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/winetricks/Manifest | 1 + .../winetricks/winetricks-20180603.ebuild | 96 ++ 2 files changed, 97 insertions(+) diff --git a/app-emulation/winetricks/Manifest b/app-emulation/winetricks/Manifest index e50eaeb..cfa85e1 100644 --- a/app-emulation/winetricks/Manifest +++ b/app-emulation/winetricks/Manifest @@ -1,4 +1,5 @@ DIST winetricks-20170823.tar.gz 639027 BLAKE2B ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9 SHA512 edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a DIST winetricks-20180217.tar.gz 646726 BLAKE2B 3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27 SHA512 3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73 DIST winetricks-20180513.tar.gz 652299 BLAKE2B fb4c55e534e368d5d7e94247feed031d0f6f98a2f3604f6187e32d25659f1cfa7f5589806e429ee054b4a94c00ebd6ac63cb99012fd94a99622891132a477001 SHA512 49fc022fc3db068145baf3a51444dc937deb092aceac8e31259888fea21ffe86f747a0d4dbd5ff10f253a94b15de090c01f20dacbe838c8444bdb00b98cbf5c6 +DIST winetricks-20180603.tar.gz 651678 BLAKE2B a70ae685bd49e429199619176e130681ab2d28ba8659f68bdba298d82e610c77df86c3d998273e60bb53d9da24bddcfe80f6d89e044007c1477a92bbc0e6043f SHA512 e88b0d4375331c94d3e2d995985b6c28fd208f1e32b1e4d84f33997a8a69fc9f8a4173325a571f5d10f233bcf40fe4cde644401c1563c8cfe7915748448a08cd DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f SHA512 59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a diff --git a/app-emulation/winetricks/winetricks-20180603.ebuild b/app-emulation/winetricks/winetricks-20180603.ebuild new file mode 100644 index 000..58d2e71 --- /dev/null +++ b/app-emulation/winetricks/winetricks-20180603.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils eutils + +if [[ ${PV} == "" ]] ; then + EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git"; + inherit git-r3 + SRC_URI="" +else + SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +wtg=winetricks-gentoo-2012.11.24 + +SRC_URI="${SRC_URI} + gtk? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 ) + kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 )" + +DESCRIPTION="Easy way to install DLLs needed to work around problems in Wine" +HOMEPAGE="https://github.com/Winetricks/winetricks https://wiki.winehq.org/Winetricks"; + +LICENSE="LGPL-2.1+" +SLOT="0" +IUSE="gtk kde rar test" + +DEPEND="test? ( + dev-python/bashate + dev-util/checkbashisms + dev-util/shellcheck + )" + +RDEPEND="app-arch/cabextract + app-arch/p7zip + app-arch/unzip + net-misc/wget + virtual/wine + x11-misc/xdg-utils + gtk? ( gnome-extra/zenity ) + kde? ( kde-apps/kdialog ) + rar? ( app-arch/unrar )" + +# Test targets include syntax checks only, not the "heavy duty" tests +# that would require a lot of disk space, as well as network access. + +# This uses a non-standard "Wine" category, which is provided by +# '/etc/xdg/menus/applications-merged/wine.menu' from the +# 'app-emulation/wine-desktop-common' package. +# https://bugs.gentoo.org/451552 +QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop" + +src_unpack() { + if [[ ${PV} == "" ]] ; then + git-r3_src_unpack + if use gtk || use kde; then + unpack ${wtg}.tar.bz2 + fi + else + default + fi +} + +src_test() { + ./tests/shell-checks || die "Test(s) failed." +} + +src_install() { + default + if use gtk || use kde; then + cd "${WORKDIR}/${wtg}" ||
[gentoo-commits] repo/gentoo:master commit in: net-misc/chrome-remote-desktop/
commit: 5ea57dd6391a66690d3c49f8f5bc857e47d71989 Author: Mike Frysinger gentoo org> AuthorDate: Sun Jun 3 16:44:16 2018 + Commit: Mike Frysinger gentoo org> CommitDate: Sun Jun 3 17:00:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ea57dd6 net-misc/chrome-remote-desktop: mark 63.0.3239.17-r1 stable .../chrome-remote-desktop/chrome-remote-desktop-63.0.3239.17-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/chrome-remote-desktop/chrome-remote-desktop-63.0.3239.17-r1.ebuild b/net-misc/chrome-remote-desktop/chrome-remote-desktop-63.0.3239.17-r1.ebuild index 20302fb409b..d8dbea31d66 100644 --- a/net-misc/chrome-remote-desktop/chrome-remote-desktop-63.0.3239.17-r1.ebuild +++ b/net-misc/chrome-remote-desktop/chrome-remote-desktop-63.0.3239.17-r1.ebuild @@ -28,7 +28,7 @@ SRC_URI="amd64? ( ${BASE_URI}_amd64.deb )" LICENSE="google-chrome" SLOT="0" -KEYWORDS="-* ~amd64" +KEYWORDS="-* amd64" IUSE="" REQUIRED_USE="${PYTHON_REQUIRED_USE}"
[gentoo-commits] repo/gentoo:master commit in: net-fs/libnfs/
commit: df3bfaebc80f878983c4b59976ccd60012affb62 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 16:57:59 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 16:57:59 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df3bfaeb net-fs/libnfs: s390 stable wrt bug #644102 Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-fs/libnfs/libnfs-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-fs/libnfs/libnfs-2.0.0.ebuild b/net-fs/libnfs/libnfs-2.0.0.ebuild index 7867c42fb6f..d5c0961b9ee 100644 --- a/net-fs/libnfs/libnfs-2.0.0.ebuild +++ b/net-fs/libnfs/libnfs-2.0.0.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == "" ]] ; then inherit git-r3 else SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz"; - KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh x86" + KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh x86" fi DESCRIPTION="Client library for accessing NFS shares over a network"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-LibXML/
commit: cd902962f1437019ee431a7aecb54da7825601fa Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 16:54:28 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 16:54:28 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd902962 dev-perl/XML-LibXML: amd64 stable wrt bug #657118 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild b/dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild index 7e56fcee51f..0493668ab89 100644 --- a/dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild +++ b/dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Perl binding for libxml2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="test minimal" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: net-nntp/slrn/
commit: 753a29a317df489111289a35adf9de18b6b37ac6 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 16:45:00 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 16:45:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=753a29a3 net-nntp/slrn: amd64 stable wrt bug #653130 Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-nntp/slrn/slrn-1.0.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-nntp/slrn/slrn-1.0.3.ebuild b/net-nntp/slrn/slrn-1.0.3.ebuild index 7416f325d32..0f1df289567 100644 --- a/net-nntp/slrn/slrn-1.0.3.ebuild +++ b/net-nntp/slrn/slrn-1.0.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://jedsoft.org/releases/${PN}/${MY_P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux" IUSE="canlock libressl nls ssl uudeview" RDEPEND="app-arch/sharutils
[gentoo-commits] repo/gentoo:master commit in: dev-perl/autobox/
commit: d43e17fb75d736d1c41fc03f9155633286a4d8c4 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 16:39:03 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 16:39:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43e17fb dev-perl/autobox: amd64 stable wrt bug #657128 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/autobox/autobox-2.860.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/autobox/autobox-2.860.0.ebuild b/dev-perl/autobox/autobox-2.860.0.ebuild index 752cf6d3499..ef7d7e0af98 100644 --- a/dev-perl/autobox/autobox-2.860.0.ebuild +++ b/dev-perl/autobox/autobox-2.860.0.ebuild @@ -8,7 +8,7 @@ inherit perl-module DESCRIPTION="Call methods on native types" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: net-vpn/openvpn/
commit: fbc361868cad1f7f7b64a9c19e6105e34ddca601 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 16:34:32 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 16:34:32 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc36186 net-vpn/openvpn: amd64 stable wrt bug #654028 Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-vpn/openvpn/openvpn-2.4.6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-vpn/openvpn/openvpn-2.4.6.ebuild b/net-vpn/openvpn/openvpn-2.4.6.ebuild index 88390e4f8bb..e21972c0436 100644 --- a/net-vpn/openvpn/openvpn-2.4.6.ebuild +++ b/net-vpn/openvpn/openvpn-2.4.6.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://openvpn.net/"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos" IUSE="down-root examples inotify iproute2 libressl lz4 +lzo mbedtls pam" IUSE+=" pkcs11 +plugins selinux +ssl static systemd test userland_BSD"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-GUID/
commit: 2d9eff43e64a36ddd1ae04c266293300666387cf Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jun 3 16:31:32 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jun 3 16:31:54 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9eff43 dev-perl/Data-GUID: amd64 stable wrt bug #657214 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Data-GUID/Data-GUID-0.49.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/Data-GUID/Data-GUID-0.49.0.ebuild b/dev-perl/Data-GUID/Data-GUID-0.49.0.ebuild index f55d0969c2a..bcb2735c6e4 100644 --- a/dev-perl/Data-GUID/Data-GUID-0.49.0.ebuild +++ b/dev-perl/Data-GUID/Data-GUID-0.49.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Simple interface for generating and using globally unique identifiers" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-video/aravis/
commit: c71e13b8f81d5be04ad3cfc642449cd7c4867ce0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 3 15:41:55 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 3 15:45:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c71e13b8 media-video/aravis: EAPI-7 bump Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-video/aravis/aravis-0.5.10.ebuild | 25 +++--- media-video/aravis/aravis-.ebuild | 46 - 2 files changed, 33 insertions(+), 38 deletions(-) diff --git a/media-video/aravis/aravis-0.5.10.ebuild b/media-video/aravis/aravis-0.5.10.ebuild index eb90789b01a..ed18bd2b634 100644 --- a/media-video/aravis/aravis-0.5.10.ebuild +++ b/media-video/aravis/aravis-0.5.10.ebuild @@ -1,17 +1,14 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit versionator - -KEYWORDS="~amd64" - -if [[ ${PV} == "" ]]; then - KEYWORDS="" - EGIT_REPO_URI="git://git.gnome.org/aravis" - EGIT_COMMIT="${aravis_LIVE_COMMIT:-master}" - inherit git-2 autotools +if [[ ${PV} = * ]]; then + EGIT_REPO_URI="https://github.com/AravisProject/aravis.git"; + inherit git-r3 autotools +else + SRC_URI="mirror://gnome/sources/${PN}/$(ver_cut 1-2)/${P}.tar.xz" + KEYWORDS="~amd64" fi DESCRIPTION="Library for video acquisition using Genicam cameras" @@ -19,7 +16,6 @@ HOMEPAGE="https://live.gnome.org/Aravis"; LICENSE="LGPL-2.1" SLOT="0" - IUSE="X gstreamer caps" GST_DEPEND="media-libs/gstreamer:1.0 @@ -42,14 +38,13 @@ DEPEND="${RDEPEND} virtual/pkgconfig dev-libs/gobject-introspection" -if [[ -z ${EGIT_COMMIT} ]]; then - SRC_URI="mirror://gnome/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.xz" -else +if [[ ${PV} != * ]]; then DEPEND+=" dev-util/gtk-doc dev-util/intltool" fi src_prepare() { - if [[ -n ${EGIT_COMMIT} ]]; then + default + if [[ ${PV} = * ]]; then intltoolize || die gtkdocize || die eautoreconf diff --git a/media-video/aravis/aravis-.ebuild b/media-video/aravis/aravis-.ebuild index 5d0d72cf022..ed18bd2b634 100644 --- a/media-video/aravis/aravis-.ebuild +++ b/media-video/aravis/aravis-.ebuild @@ -1,17 +1,14 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 -inherit versionator - -KEYWORDS="~amd64" - -if [[ ${PV} == "" ]]; then - KEYWORDS="" - EGIT_REPO_URI="git://git.gnome.org/aravis" - EGIT_COMMIT="${aravis_LIVE_COMMIT:-master}" - inherit git-2 autotools +if [[ ${PV} = * ]]; then + EGIT_REPO_URI="https://github.com/AravisProject/aravis.git"; + inherit git-r3 autotools +else + SRC_URI="mirror://gnome/sources/${PN}/$(ver_cut 1-2)/${P}.tar.xz" + KEYWORDS="~amd64" fi DESCRIPTION="Library for video acquisition using Genicam cameras" @@ -19,33 +16,35 @@ HOMEPAGE="https://live.gnome.org/Aravis"; LICENSE="LGPL-2.1" SLOT="0" +IUSE="X gstreamer caps" -IUSE="X gstreamer" +GST_DEPEND="media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0" -GST_DEPEND="media-libs/gstreamer:0.10 - media-libs/gst-plugins-base:0.10" - -RDEPEND=">=dev-libs/glib-2.22 +RDEPEND=">=dev-libs/glib-2.26 dev-libs/libxml2 X? ( - >=x11-libs/gtk+-2.12:2 + >=x11-libs/gtk+-3.12:3 ${GST_DEPEND} - media-libs/gst-plugins-base:0.10 - media-plugins/gst-plugins-xvideo:0.10 + media-libs/gst-plugins-base:1.0 + x11-libs/libnotify + ) + caps? ( + sys-libs/libcap-ng + sys-process/audit ) gstreamer? ( ${GST_DEPEND} )" DEPEND="${RDEPEND} virtual/pkgconfig dev-libs/gobject-introspection" -if [[ -z ${EGIT_COMMIT} ]]; then - SRC_URI="mirror://gnome/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.xz" -else +if [[ ${PV} != * ]]; then DEPEND+=" dev-util/gtk-doc dev-util/intltool" fi src_prepare() { - if [[ -n ${EGIT_COMMIT} ]]; then + default + if [[ ${PV} = * ]]; then intltoolize || die gtkdocize || die eautoreconf @@ -58,6 +57,7 @@ src_configure() { --disable-static \ $(use_enable X viewer) \ $(use_enable gstreamer gst-plugin) \ + $(use_enable caps packet-socket) \ --enable-introspection }
[gentoo-commits] repo/gentoo:master commit in: media-video/aravis/
commit: 17513e49f27db21507d7aa9cfbc90b96c9e677fe Author: Luca Barbato gentoo org> AuthorDate: Sun Jun 3 15:36:23 2018 + Commit: Luca Barbato gentoo org> CommitDate: Sun Jun 3 15:36:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17513e49 media-video/aravis: Bump to eapi 6 Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-video/aravis/aravis-0.5.10.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-video/aravis/aravis-0.5.10.ebuild b/media-video/aravis/aravis-0.5.10.ebuild index 9dc8fa93266..eb90789b01a 100644 --- a/media-video/aravis/aravis-0.5.10.ebuild +++ b/media-video/aravis/aravis-0.5.10.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 inherit versionator
[gentoo-commits] repo/gentoo:master commit in: media-video/aravis/
commit: 3b265485a5e7bb6ad4d51e505c58ef18569ad0bf Author: Luca Barbato gentoo org> AuthorDate: Sun Jun 3 15:18:19 2018 + Commit: Luca Barbato gentoo org> CommitDate: Sun Jun 3 15:20:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b265485 media-video/aravis: Version bump Compatible with recent gstreamer Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-video/aravis/Manifest | 1 + media-video/aravis/aravis-0.5.10.ebuild | 72 + 2 files changed, 73 insertions(+) diff --git a/media-video/aravis/Manifest b/media-video/aravis/Manifest index 7add736795d..4aabcff0187 100644 --- a/media-video/aravis/Manifest +++ b/media-video/aravis/Manifest @@ -1,2 +1,3 @@ DIST aravis-0.1.14.tar.xz 414932 BLAKE2B ea4c443297c5b8d2caf1cc944519bb274998acd6a6e6074ef1099a505296bd92fc264dcdb304bd34b75b3347a7522aedbad6cbc16cbef875627252a856691509 SHA512 d84fe519074a69e679b08e0c0933bce191e50cfcdd1b46b743aa68ba33445a3a87cbd1701ba424666b638949f9faf531ec668acbe5d22017712f70cfa9620ea9 DIST aravis-0.1.15.tar.xz 448348 BLAKE2B 0a20aab1e434999ab1d08ae55c2654ca4809be2f9d64b65729ce14977b724ba864513dcb652c6ccda3d768b9fe47e5c4cc3951ee716a4d34915768651a814830 SHA512 f6a2e1f7fa4f712bea6a91f896bbc92afb3dcf3146109f3f7aee2ad6812a69f0b47a0f2116062cba6163dc058c7981a01a6eec395d4af633da666fe186291929 +DIST aravis-0.5.10.tar.xz 540700 BLAKE2B f12a2bfa2bf8ac1875b28ec0549e5ebe3e5eb1cd646e417acc52a760546343893e19d7fb13741799346286dc69d9ecf2a7d7a3c9ada6ffefafab5c6450468848 SHA512 27a182a8fce66416e14baa16609b91307683613fab9324c96f94b9a7dd956ba0d60f5c966b2ec5184374ab8f9f527ad4d7733dffd2c40faa409ff196c344eb29 diff --git a/media-video/aravis/aravis-0.5.10.ebuild b/media-video/aravis/aravis-0.5.10.ebuild new file mode 100644 index 000..9dc8fa93266 --- /dev/null +++ b/media-video/aravis/aravis-0.5.10.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit versionator + +KEYWORDS="~amd64" + +if [[ ${PV} == "" ]]; then + KEYWORDS="" + EGIT_REPO_URI="git://git.gnome.org/aravis" + EGIT_COMMIT="${aravis_LIVE_COMMIT:-master}" + inherit git-2 autotools +fi + +DESCRIPTION="Library for video acquisition using Genicam cameras" +HOMEPAGE="https://live.gnome.org/Aravis"; + +LICENSE="LGPL-2.1" +SLOT="0" + +IUSE="X gstreamer caps" + +GST_DEPEND="media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0" + +RDEPEND=">=dev-libs/glib-2.26 + dev-libs/libxml2 + X? ( + >=x11-libs/gtk+-3.12:3 + ${GST_DEPEND} + media-libs/gst-plugins-base:1.0 + x11-libs/libnotify + ) + caps? ( + sys-libs/libcap-ng + sys-process/audit + ) + gstreamer? ( ${GST_DEPEND} )" +DEPEND="${RDEPEND} + virtual/pkgconfig + dev-libs/gobject-introspection" + +if [[ -z ${EGIT_COMMIT} ]]; then + SRC_URI="mirror://gnome/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.xz" +else + DEPEND+=" dev-util/gtk-doc dev-util/intltool" +fi + +src_prepare() { + if [[ -n ${EGIT_COMMIT} ]]; then + intltoolize || die + gtkdocize || die + eautoreconf + fi +} + +src_configure() { + econf \ + --disable-silent-rules \ + --disable-static \ + $(use_enable X viewer) \ + $(use_enable gstreamer gst-plugin) \ + $(use_enable caps packet-socket) \ + --enable-introspection +} + +src_install() { + emake install DESTDIR="${D}" aravisdocdir="/usr/share/doc/${PF}" + find "${D}" -name '*.la' -delete +}
[gentoo-commits] repo/gentoo:master commit in: app-i18n/pology/
commit: 6240276903c2ea65d91999017c10e4606d951611 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 3 14:43:25 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 3 14:43:25 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62402769 app-i18n/pology: EAPI 6 bump Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-i18n/pology/pology-0.12.ebuild | 4 ++-- app-i18n/pology/pology-.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-i18n/pology/pology-0.12.ebuild b/app-i18n/pology/pology-0.12.ebuild index 3fe9a9b0038..a1c06c9a171 100644 --- a/app-i18n/pology/pology-0.12.ebuild +++ b/app-i18n/pology/pology-0.12.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 ESVN_REPO_URI="svn://anonsvn.kde.org/home/kde/trunk/l10n-support/pology" PYTHON_COMPAT=( python2_7 ) diff --git a/app-i18n/pology/pology-.ebuild b/app-i18n/pology/pology-.ebuild index 3fe9a9b0038..a1c06c9a171 100644 --- a/app-i18n/pology/pology-.ebuild +++ b/app-i18n/pology/pology-.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 ESVN_REPO_URI="svn://anonsvn.kde.org/home/kde/trunk/l10n-support/pology" PYTHON_COMPAT=( python2_7 )
[gentoo-commits] repo/gentoo:master commit in: media-gfx/luminance-hdr/
commit: e8cd21adddf28c1144058e3e693db98b19a13426 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 3 14:31:53 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 3 14:32:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8cd21ad media-gfx/luminance-hdr: Add missing USE-dep and slot ops Reported-by: Christian Hawkins metabubble.net> Closes: https://bugs.gentoo.org/646370 Package-Manager: Portage-2.3.40, Repoman-2.3.9 .../{luminance-hdr-2.5.1.ebuild => luminance-hdr-2.5.1-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-gfx/luminance-hdr/luminance-hdr-2.5.1.ebuild b/media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild similarity index 95% rename from media-gfx/luminance-hdr/luminance-hdr-2.5.1.ebuild rename to media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild index 8bf884629bc..d28f2841413 100644 --- a/media-gfx/luminance-hdr/luminance-hdr-2.5.1.ebuild +++ b/media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild @@ -25,7 +25,7 @@ RDEPEND=" dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 - dev-qt/qtwebengine:5 + dev-qt/qtwebengine:5[widgets] >=media-gfx/exiv2-0.14:0= media-libs/lcms:2 media-libs/libpng:0= @@ -33,8 +33,8 @@ RDEPEND=" media-libs/ilmbase:= >=media-libs/openexr-1.2.2-r2:= >=media-libs/tiff-3.8.2-r2:0 - sci-libs/fftw:3.0[threads] - fits? ( sci-libs/cfitsio ) + sci-libs/fftw:3.0=[threads] + fits? ( sci-libs/cfitsio:= ) sci-libs/gsl virtual/jpeg:0 "
[gentoo-commits] repo/gentoo:master commit in: mail-client/neomutt/
commit: f9186095d3a821cd618fab8a493faeb5353b5bcc Author: Nicolas Bock gentoo org> AuthorDate: Sun Jun 3 13:59:45 2018 + Commit: Nicolas Bock gentoo org> CommitDate: Sun Jun 3 14:00:29 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9186095 mail-client/neomutt: Version bump to neomutt-20180512 Package-Manager: Portage-2.3.40, Repoman-2.3.9 mail-client/neomutt/Manifest| 1 + mail-client/neomutt/neomutt-20180512.ebuild | 140 2 files changed, 141 insertions(+) diff --git a/mail-client/neomutt/Manifest b/mail-client/neomutt/Manifest index baa000cbc29..11f9f8199de 100644 --- a/mail-client/neomutt/Manifest +++ b/mail-client/neomutt/Manifest @@ -2,3 +2,4 @@ DIST neomutt-20171208.tar.gz 2703917 BLAKE2B 709cdb7b00e887f01bf6b1e805b25938cec DIST neomutt-20171215.tar.gz 2680191 BLAKE2B 9826537ed985cf56e4a52e0938967645ca607fcd57f455e1a521a67875bacc397e1706099291fe5a7a350542d0bc07b7835a908c64d84067fb12e39f973af545 SHA512 8098f537e8ef7d3f7aa87fc875c0dc079b996285b786fe6fc6bdf18154c1282b03a4e19dd6902a110616443ca2b23008c8c1f5c4a615c53b620b537c50dfb658 DIST neomutt-20180223.tar.gz 2695087 BLAKE2B ebe19022dd23914dd3c529b49fac1b58cb965e8974b8cf2f7fd1f417cb9a3f0fcded951d5506092f90ad03b8fd209392143240b1d48560f9772242652a347817 SHA512 6fbbea9e182d087d8fe90094dfcbadaaca2878fa71e024e504999d1a54d853dcd346ea7aa32f421ed9dfdf90c42307f2796518dc43748805c4e36fd5755d4adc DIST neomutt-20180323.tar.gz 2650465 BLAKE2B 59f11208320e514119e60f6c85a876fed2693b9eae3127fc3fa5a35722a80dfd99b0c6b5a5074711d42b35d459e70f4dda3d29e7358e1d95d5d0d350438290d5 SHA512 997c697300768809823b8d8588c93003c6cd7fcc6cbe7ce524096033e91c618119f78c697ccd15b4c93751b3156d50e611974e8f8b332efb467c031385e9f819 +DIST neomutt-20180512.tar.gz 2758674 BLAKE2B 47a8d1fe5d5e2725a6ee868b937eea3807ab35dc8eefe47f0d9b1db3aeaa97e69c36e3b8544fc43f1ce0a9980017d654bace8d342094fd7d26ecdb13cdf54253 SHA512 033faa27b01998895d2452d541ed5942cf7dede7a935fc807e6a7f88f3a8c182ea0ab5b4ed7db852ff2afb4d3b990db05477d9ff0dcf7dee186c393244d1db66 diff --git a/mail-client/neomutt/neomutt-20180512.ebuild b/mail-client/neomutt/neomutt-20180512.ebuild new file mode 100644 index 000..9fd8d9c635b --- /dev/null +++ b/mail-client/neomutt/neomutt-20180512.ebuild @@ -0,0 +1,140 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils flag-o-matic + +if [[ ${PV} =~ $ ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/neomutt/neomutt.git"; + EGIT_CHECKOUT_DIR="${WORKDIR}/neomutt-${P}" +else + SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz"; + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="A small but very powerful text-based mail client" +HOMEPAGE="https://neomutt.org/"; + +LICENSE="GPL-2" +SLOT="0" +IUSE="berkdb crypt doc gdbm gnutls gpg gpgme idn kerberos kyotocabinet + libressl lmdb nls notmuch pgp_classic qdbm sasl selinux slang smime + smime_classic ssl tokyocabinet" + +CDEPEND=" + app-misc/mime-types + berkdb? ( + || ( + sys-libs/db:6.2 + sys-libs/db:5.3 + sys-libs/db:4.8 + ) + =net-libs/gnutls-1.0.17 ) + gpg? ( >=app-crypt/gpgme-0.9.0 ) + gpgme? ( >=app-crypt/gpgme-0.9.0 ) + idn? ( net-dns/libidn ) + kerberos? ( virtual/krb5 ) + notmuch? ( net-mail/notmuch ) + sasl? ( >=dev-libs/cyrus-sasl-2 ) + !slang? ( sys-libs/ncurses:0 ) + slang? ( sys-libs/slang ) + ssl? ( + !libressl? ( >=dev-libs/openssl-0.9.6:0 ) + libressl? ( dev-libs/libressl ) + ) +" +DEPEND="${CDEPEND} + dev-lang/tcl + net-mail/mailbase + doc? ( + dev-libs/libxml2 + dev-libs/libxslt + app-text/docbook-xsl-stylesheets + || ( www-client/lynx www-client/w3m www-client/elinks ) + )" +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-mutt ) +" + +S="${WORKDIR}/${PN}-${P}" + +src_configure() { + local myconf=( + "$(use_enable doc)" + "$(use_enable nls)" + "$(use_enable notmuch)" + + # During the transition of the crypto USE flags we need to support + # both sets of flags. We do not want to emit a configuration setting + # twice, since the second flag overrides the first, potentially + # leading to unwanted settings. See https://bugs.gentoo.org/640824 for + # details. + "$(if use gpg || use gpgme; then echo "--enable"; else echo "--disable"; fi)-gpgme" + "$(if use crypt || use pgp_classic; then echo "--enable"; else echo "--disable"; fi)-pgp" + "$(if use smime || use smime_classic; then echo "--enable"; else echo "--disable"; fi)
[gentoo-commits] repo/gentoo:master commit in: app-arch/unzip/
commit: 9a819cd8416ca80c3782a15aeac1d4a19387b6a8 Author: Mike Frysinger gentoo org> AuthorDate: Sun Jun 3 13:28:44 2018 + Commit: Mike Frysinger gentoo org> CommitDate: Sun Jun 3 13:55:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a819cd8 app-arch/unzip: mark 6.0_p21-r2 m68k/s390/sh stable app-arch/unzip/unzip-6.0_p21-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-arch/unzip/unzip-6.0_p21-r2.ebuild b/app-arch/unzip/unzip-6.0_p21-r2.ebuild index 18b5f0bae4c..475c481ec07 100644 --- a/app-arch/unzip/unzip-6.0_p21-r2.ebuild +++ b/app-arch/unzip/unzip-6.0_p21-r2.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/infozip/${MY_P}.tar.gz LICENSE="Info-ZIP" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" IUSE="bzip2 natspec unicode" DEPEND="bzip2? ( app-arch/bzip2 )