[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/
commit: ac69fa3d5bd64b6d798b8ffb4869b646bd5bffa1 Author: Michał Górny gentoo org> AuthorDate: Tue Jul 10 06:56:30 2018 + Commit: Michał Górny gentoo org> CommitDate: Tue Jul 10 06:58:06 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac69fa3d dev-libs/libgit2: Remove vulnerable 0.27.[12] Bug: https://bugs.gentoo.org/660834 dev-libs/libgit2/Manifest | 2 - dev-libs/libgit2/libgit2-0.27.1.ebuild | 80 -- dev-libs/libgit2/libgit2-0.27.2.ebuild | 80 -- 3 files changed, 162 deletions(-) diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest index 046c245c1f2..2ad164151b7 100644 --- a/dev-libs/libgit2/Manifest +++ b/dev-libs/libgit2/Manifest @@ -1,5 +1,3 @@ DIST libgit2-0.26.4.tar.gz 4733342 BLAKE2B 76dfacbf6df9128625e52f4c554814a971f446a44c9706a915200976f5a873a2add1869c0534360ccad821df11246faacfff43765f311162bcb6afca46088a77 SHA512 c65a0ef8e7ef2dc60d07bced36b8cfd26ce9c40f99978058fc67b30e5bbda8d6b15e26aec7b1277bb277123685e763d106bab175540fceb449bb5b50f776473a DIST libgit2-0.26.5.tar.gz 4734075 BLAKE2B cdc34a5792576d97d8bc8a8c998e610e9c2caab4899f55bfd11da382d73d3061277ac068edd20c8e31d7cf5c3b26ca688fd67eb43ca7b9e0b82413fb04d04b3f SHA512 7dd7c567ad776db76b3514e6532f52841a4279b58dc51b44d39ab53b6911220cb60ee8f37b4c6ad6f369edbbd43a2591cf5f46aca354282f56735c8b215d533b -DIST libgit2-0.27.1.tar.gz 4765926 BLAKE2B 2eb34a621d61b1fb3b770081e27b92d662fd235750fc6ea580ddabeac5cfd20e40a70ce830d45144531c333239d173a322d0de343bb98cc02ce9bfb7822432bf SHA512 4cdee4aec0f0c7b36226ee29276b8802d6b59817f95b1357f35225c23a8d6de70242b2dd9a5fb3b765c3242f4ed1848933e20fc24899071d8b443d46c43ce99d -DIST libgit2-0.27.2.tar.gz 4770842 BLAKE2B 8a46589a17c4bbd0e821412ad259099a77755073736c7ba469a593252160bb1e5601c8b91e1e26e17c11ae3fd6e3d2bf87d22b638b1d473371311487e96ca39b SHA512 4fa2b6c1bb340d5dbc3106ababb630a4634cee2415d478be986d315ef9c659d772574a56f0b8fa77d26bd793aea92893fddf64b5f21d7c965069f928b9ce5cff DIST libgit2-0.27.3.tar.gz 4771877 BLAKE2B a15aed24d0391cf8d5c74329f5064d703def5db1cbf132881279d501d1ba31002367e54171e8a341b75862d327eddb1abebdaeeaee6878a14ad1d8abbbc8402d SHA512 e470050b89289908ec64dafaa954ad9bfc8f557ba7dafcab440d9efde474f736c025d8202bfd81a508070d9cf678f3fb1f3687d72a849ce86edd1ee90ad13c3b diff --git a/dev-libs/libgit2/libgit2-0.27.1.ebuild b/dev-libs/libgit2/libgit2-0.27.1.ebuild deleted file mode 100644 index 456ded8f18d..000 --- a/dev-libs/libgit2/libgit2-0.27.1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -if [[ ${PV} == "" ]] ; then - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"; - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~ppc-macos" -fi - -DESCRIPTION="A linkable library for Git" -HOMEPAGE="https://libgit2.github.com/"; - -LICENSE="GPL-2-with-linking-exception" -SLOT="0/27" -IUSE="+curl examples gssapi libressl +ssh test +threads trace" - -RDEPEND=" - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - sys-libs/zlib - net-libs/http-parser:= - curl? ( - !libressl? ( net-misc/curl:=[curl_ssl_openssl(-)] ) - libressl? ( net-misc/curl:=[curl_ssl_libressl(-)] ) - ) - gssapi? ( virtual/krb5 ) - ssh? ( net-libs/libssh2 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) - -src_prepare() { - # skip online tests - sed -i '/libgit2_clar/s/-ionline/-xonline/' tests/CMakeLists.txt || die - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - -DBUILD_CLAR=$(usex test) - -DENABLE_TRACE=$(usex trace) - -DUSE_GSSAPI=$(usex gssapi) - -DUSE_SSH=$(usex ssh) - -DTHREADSAFE=$(usex threads) - -DCURL=$(usex curl) - ) - cmake-utils_src_configure -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - # repo::iterator::fs_preserves_error fails if run as root - # since root can still access dirs with perms - ewarn "Skipping tests: non-root privileges are required for all tests to pass" - else - local TEST_VERBOSE=1 - cmake-utils_src_test - fi -} - -src_install() { - cmake-utils_src_install - - if use examples ; then - find examples -name '.gitignore' -delete || die - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/dev-libs/libgit2/libgit2-0.27.2.ebuild b/dev-libs/libgit
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/
commit: fa3b0b415cd0c9422036864134dcd6b6ef346528 Author: Michał Górny gentoo org> AuthorDate: Tue Jul 10 06:31:17 2018 + Commit: Michał Górny gentoo org> CommitDate: Tue Jul 10 06:49:41 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa3b0b41 dev-libs/libgit2: Sec-bump to 0.26.5 & 0.27.3 Bug: https://bugs.gentoo.org/660834 dev-libs/libgit2/Manifest | 2 + dev-libs/libgit2/libgit2-0.26.5.ebuild | 80 ++ dev-libs/libgit2/libgit2-0.27.3.ebuild | 80 ++ 3 files changed, 162 insertions(+) diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest index 5339ad10287..046c245c1f2 100644 --- a/dev-libs/libgit2/Manifest +++ b/dev-libs/libgit2/Manifest @@ -1,3 +1,5 @@ DIST libgit2-0.26.4.tar.gz 4733342 BLAKE2B 76dfacbf6df9128625e52f4c554814a971f446a44c9706a915200976f5a873a2add1869c0534360ccad821df11246faacfff43765f311162bcb6afca46088a77 SHA512 c65a0ef8e7ef2dc60d07bced36b8cfd26ce9c40f99978058fc67b30e5bbda8d6b15e26aec7b1277bb277123685e763d106bab175540fceb449bb5b50f776473a +DIST libgit2-0.26.5.tar.gz 4734075 BLAKE2B cdc34a5792576d97d8bc8a8c998e610e9c2caab4899f55bfd11da382d73d3061277ac068edd20c8e31d7cf5c3b26ca688fd67eb43ca7b9e0b82413fb04d04b3f SHA512 7dd7c567ad776db76b3514e6532f52841a4279b58dc51b44d39ab53b6911220cb60ee8f37b4c6ad6f369edbbd43a2591cf5f46aca354282f56735c8b215d533b DIST libgit2-0.27.1.tar.gz 4765926 BLAKE2B 2eb34a621d61b1fb3b770081e27b92d662fd235750fc6ea580ddabeac5cfd20e40a70ce830d45144531c333239d173a322d0de343bb98cc02ce9bfb7822432bf SHA512 4cdee4aec0f0c7b36226ee29276b8802d6b59817f95b1357f35225c23a8d6de70242b2dd9a5fb3b765c3242f4ed1848933e20fc24899071d8b443d46c43ce99d DIST libgit2-0.27.2.tar.gz 4770842 BLAKE2B 8a46589a17c4bbd0e821412ad259099a77755073736c7ba469a593252160bb1e5601c8b91e1e26e17c11ae3fd6e3d2bf87d22b638b1d473371311487e96ca39b SHA512 4fa2b6c1bb340d5dbc3106ababb630a4634cee2415d478be986d315ef9c659d772574a56f0b8fa77d26bd793aea92893fddf64b5f21d7c965069f928b9ce5cff +DIST libgit2-0.27.3.tar.gz 4771877 BLAKE2B a15aed24d0391cf8d5c74329f5064d703def5db1cbf132881279d501d1ba31002367e54171e8a341b75862d327eddb1abebdaeeaee6878a14ad1d8abbbc8402d SHA512 e470050b89289908ec64dafaa954ad9bfc8f557ba7dafcab440d9efde474f736c025d8202bfd81a508070d9cf678f3fb1f3687d72a849ce86edd1ee90ad13c3b diff --git a/dev-libs/libgit2/libgit2-0.26.5.ebuild b/dev-libs/libgit2/libgit2-0.26.5.ebuild new file mode 100644 index 000..549b491f613 --- /dev/null +++ b/dev-libs/libgit2/libgit2-0.26.5.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +if [[ ${PV} == "" ]] ; then + EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"; + inherit git-r3 +else + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~ppc-macos" +fi + +DESCRIPTION="A linkable library for Git" +HOMEPAGE="https://libgit2.github.com/"; + +LICENSE="GPL-2-with-linking-exception" +SLOT="0/26" +IUSE="+curl examples gssapi libressl +ssh test +threads trace" + +RDEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + sys-libs/zlib + net-libs/http-parser:= + curl? ( + !libressl? ( net-misc/curl:=[curl_ssl_openssl(-)] ) + libressl? ( net-misc/curl:=[curl_ssl_libressl(-)] ) + ) + gssapi? ( virtual/krb5 ) + ssh? ( net-libs/libssh2 ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) + +src_prepare() { + # skip online tests + sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die + + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" + -DBUILD_CLAR=$(usex test) + -DENABLE_TRACE=$(usex trace) + -DUSE_GSSAPI=$(usex gssapi) + -DUSE_SSH=$(usex ssh) + -DTHREADSAFE=$(usex threads) + -DCURL=$(usex curl) + ) + cmake-utils_src_configure +} + +src_test() { + if [[ ${EUID} -eq 0 ]] ; then + # repo::iterator::fs_preserves_error fails if run as root + # since root can still access dirs with perms + ewarn "Skipping tests: non-root privileges are required for all tests to pass" + else + local TEST_VERBOSE=1 + cmake-utils_src_test + fi +} + +src_install() { + cmake-utils_src_install + + if use examples ; then + find examples -name '.gitignore' -delete || die + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} diff --git a/dev-libs/libgit2/libgit2-0.27.3.ebuild b/dev-libs/libgit2/libgit2
[gentoo-commits] proj/portage:master commit in: pym/portage/sync/modules/rsync/, cnf/, pym/portage/repository/, man/
commit: 84822ef7a21494d3f044c2ffa7b112e4d29665ab Author: Zac Medico gentoo org> AuthorDate: Thu Jul 5 13:10:43 2018 + Commit: Zac Medico gentoo org> CommitDate: Tue Jul 10 05:03:53 2018 + URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=84822ef7 rsync: quarantine data prior to verification (bug 660410) Sync into a quarantine subdirectory, using the rsync --link-dest option to create hardlinks to identical files in the previous snapshot of the repository. If hardlinks are not supported, then show a warning message and sync directly to the normal repository location. If verification succeeds, then the quarantine subdirectory is synced to the normal repository location, and the quarantine subdirectory is deleted. If verification fails, then the quarantine directory is preserved for purposes of analysis. Even if verification happens to be disabled, the quarantine directory is still useful for making the repository update more atomic, so that it is less likely that normal repository location will be observed in a partially synced state. The new behavior may conflict with configurations that restrict the use of hardlinks, such as overlay filesystems. Therefore, users will have to set "sync-allow-hardlinks = no" in repos.conf if they have a configuration that prevents the use of hardlinks, but this should not be very common. Bug: https://bugs.gentoo.org/660410 cnf/repos.conf | 1 + man/portage.5 | 8 +++ pym/portage/repository/config.py| 7 ++- pym/portage/sync/modules/rsync/rsync.py | 87 ++--- 4 files changed, 94 insertions(+), 9 deletions(-) diff --git a/cnf/repos.conf b/cnf/repos.conf index 352073cfd..419f6d118 100644 --- a/cnf/repos.conf +++ b/cnf/repos.conf @@ -6,6 +6,7 @@ location = /usr/portage sync-type = rsync sync-uri = rsync://rsync.gentoo.org/gentoo-portage auto-sync = yes +sync-allow-hardlinks = yes sync-rsync-verify-jobs = 1 sync-rsync-verify-metamanifest = yes sync-rsync-verify-max-age = 24 diff --git a/man/portage.5 b/man/portage.5 index 5adb07d82..acc80791b 100644 --- a/man/portage.5 +++ b/man/portage.5 @@ -973,6 +973,14 @@ files). Defaults to true. .br Valid values: true, false. .TP +.B sync\-allow\-hardlinks = yes|no +Allow sync plugins to use hardlinks in order to ensure that a repository +remains in a valid state if something goes wrong during the sync operation. +For example, if signature verification fails during a sync operation, +the previous state of the repository will be preserved. This option may +conflict with configurations that restrict the use of hardlinks, such as +overlay filesystems. +.TP .B sync\-cvs\-repo Specifies CVS repository. .TP diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index 1d897bb90..ad7ae9d18 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -86,6 +86,7 @@ class RepoConfig(object): 'sync_type', 'sync_umask', 'sync_uri', 'sync_user', 'thin_manifest', 'update_changelog', '_eapis_banned', '_eapis_deprecated', '_masters_orig', 'module_specific_options', 'manifest_required_hashes', + 'sync_allow_hardlinks', 'sync_openpgp_key_path', 'sync_openpgp_key_refresh_retry_count', 'sync_openpgp_key_refresh_retry_delay_max', @@ -188,6 +189,9 @@ class RepoConfig(object): self.strict_misc_digests = repo_opts.get( 'strict-misc-digests', 'true').lower() == 'true' + self.sync_allow_hardlinks = repo_opts.get( + 'sync-allow-hardlinks', 'true').lower() in ('true', 'yes') + self.sync_openpgp_key_path = repo_opts.get( 'sync-openpgp-key-path', None) @@ -534,6 +538,7 @@ class RepoConfigLoader(object): 'clone_depth', 'eclass_overrides', 'force', 'masters', 'priority', 'strict_misc_digests', 'sync_depth', 'sync_hooks_only_on_change', + 'sync_allow_hardlinks', 'sync_openpgp_key_path', 'sync_openpgp_key_refresh_retry_count', 'sync_openpgp_key_refresh_retry_delay_max', @@ -960,7 +965,7 @@ class RepoConfigLoader(object): return repo_name in self.prepos def config_string(self): - bool_keys = ("strict_misc_digests",) + bool_keys = ("strict_misc_digests", "sync_allow_hardlinks") str_or_int_keys = ("auto_sync", "clone_depth", "format", "location", "main_repo", "prio
[gentoo-commits] repo/gentoo:master commit in: media-libs/ming/files/
commit: ee3fb1f4c337ca7ef8a39c53beed512144619c44 Author: Lars Wendler gentoo org> AuthorDate: Tue Jul 10 06:12:01 2018 + Commit: Lars Wendler gentoo org> CommitDate: Tue Jul 10 06:12:16 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee3fb1f4 media-libs/ming: Sync freetype patch with upstream version. Package-Manager: Portage-2.3.41, Repoman-2.3.9 .../ming/files/ming-0.4.8-freetype_pkgconfig.patch | 38 +- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/media-libs/ming/files/ming-0.4.8-freetype_pkgconfig.patch b/media-libs/ming/files/ming-0.4.8-freetype_pkgconfig.patch index 5bddf052122..43905fc0ed0 100644 --- a/media-libs/ming/files/ming-0.4.8-freetype_pkgconfig.patch +++ b/media-libs/ming/files/ming-0.4.8-freetype_pkgconfig.patch @@ -1,4 +1,4 @@ -From 0d5b3bc1cc492c10072def017fe704782bc4b274 Mon Sep 17 00:00:00 2001 +From 3d3060a744500702e43c7deaec25c69cbf1ef532 Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Fri, 4 May 2018 17:40:04 +0200 Subject: [PATCH] Use pkg-config to find freetype @@ -6,13 +6,22 @@ Subject: [PATCH] Use pkg-config to find freetype As of freetype-2.9.1 the freetype-config script has been deprecated and is no longer shipped by default. --- - configure.in | 30 +++--- - 1 file changed, 7 insertions(+), 23 deletions(-) + configure.ac | 36 ++-- + 1 file changed, 10 insertions(+), 26 deletions(-) -diff --git a/configure.in b/configure.in -index 361db86c..cb9423f5 100644 a/configure.in -+++ b/configure.in +diff --git a/configure.ac b/configure.ac +index 95943a0b..3d9f1874 100644 +--- a/configure.ac b/configure.ac +@@ -247,7 +247,7 @@ AC_CHECK_LIB(X11, XGetImage, XLIB="-lX11", XLIB="") + + AC_ARG_ENABLE( + [freetype], +-[ --enable-freetype Enable freetype support (default: enabled)], ++[ --disable-freetype Disable freetype support (default: enabled)], + [case "${enableval}" in + yes) freetype_support=yes ;; +no) freetype_support=no ;; @@ -257,26 +257,10 @@ freetype_support=yes) if test "$freetype_support" = "yes"; then @@ -57,6 +66,19 @@ index 361db86c..cb9423f5 100644 fi AM_CONDITIONAL(GIFLIB_GIFERRORSTRING, test x"$ac_cv_lib_gif_GifErrorString" = xyes) +@@ -504,10 +488,10 @@ else + echo " ZLIB enabled ($ZLIB)" + fi + +-if test x"$ft_config" = "x"; then ++if test x"$HAS_FREETYPE" = "x"; then + echo " Freetype library disabled" + else +- echo " Freetype library enabled ($ft_config)" ++ echo " Freetype library enabled ($FREETYPE_LIBS)" + fi + + if test x"$GIFLIB" = "x" -o x"$GIFINC" = "x"; then -- -2.17.0 +2.18.0
[gentoo-commits] repo/gentoo:master commit in: net-misc/youtube-dl/
commit: 1d100a7f345370bb7aa12567ffb077f799ce36de Author: Jeroen Roovers gentoo org> AuthorDate: Tue Jul 10 05:45:35 2018 + Commit: Jeroen Roovers gentoo org> CommitDate: Tue Jul 10 05:55:40 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d100a7f net-misc/youtube-dl: Version 2018.07.10. Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-misc/youtube-dl/Manifest | 1 + net-misc/youtube-dl/youtube-dl-2018.07.10.ebuild | 115 +++ 2 files changed, 116 insertions(+) diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 747837d26fe..a46e6bd0f14 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.06.25.tar.gz 2990292 BLAKE2B 5ae41370c3f8ff19bf83368a1645ad86b0af4f1ed7de1dfae6c4088956d753dde643fff9fc707d95db0faf02aeb31a41c8a357b3f279b9810ae892e0957e5a20 SHA512 bff54dc724525b61afa1d9f988ae9b2399146b3eb38c74988ad6118f443fd1286bdaa140f61a56d9be90f14ef49a925b08c23c092bcbf5f378481081ca400741 DIST youtube-dl-2018.07.04.tar.gz 2993980 BLAKE2B 79bef6497c6dd5444608e8d75cffac72a0c1779d234a5537af16cb9e876a086bf7b57981e6e85f5f9504be794e0d6d1c46b3f98b1cae509d864799ce6ce7b03d SHA512 7a67948307d8909c0415635c9c560bdf809b085f1675aa2c4aafa8007b8f420beb6347a56e3fbe61507aca1b42ac932ce75ae46aa2cd62e129fa604cd6ceb6e0 +DIST youtube-dl-2018.07.10.tar.gz 3001810 BLAKE2B 4ffd9f678897be476983322921640007962cc307e1b0e095a012fd2840a26864bb1125b4f937ca43ba52134e32b80976b6ad185eb5e0f7523852915f61c1b293 SHA512 4f83bc02002d31bd04d9319d798c1b190b5a357864daca9661bcdeef3f71b258fb9b4b76ae1c19a0901ba5b0e56b834f0124353a4e4e3c6d0554a8f4f967c246 diff --git a/net-misc/youtube-dl/youtube-dl-2018.07.10.ebuild b/net-misc/youtube-dl/youtube-dl-2018.07.10.ebuild new file mode 100644 index 000..37bffad45c8 --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2018.07.10.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-misc/youtube-dl/
commit: 672295516743dc85879d64cca9f3cf03da20a62a Author: Jeroen Roovers gentoo org> AuthorDate: Tue Jul 10 05:46:52 2018 + Commit: Jeroen Roovers gentoo org> CommitDate: Tue Jul 10 05:55:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67229551 net-misc/youtube-dl: Old. Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-misc/youtube-dl/Manifest | 1 - net-misc/youtube-dl/youtube-dl-2018.06.25.ebuild | 115 --- 2 files changed, 116 deletions(-) diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index a46e6bd0f14..e00f8567592 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.06.25.tar.gz 2990292 BLAKE2B 5ae41370c3f8ff19bf83368a1645ad86b0af4f1ed7de1dfae6c4088956d753dde643fff9fc707d95db0faf02aeb31a41c8a357b3f279b9810ae892e0957e5a20 SHA512 bff54dc724525b61afa1d9f988ae9b2399146b3eb38c74988ad6118f443fd1286bdaa140f61a56d9be90f14ef49a925b08c23c092bcbf5f378481081ca400741 DIST youtube-dl-2018.07.04.tar.gz 2993980 BLAKE2B 79bef6497c6dd5444608e8d75cffac72a0c1779d234a5537af16cb9e876a086bf7b57981e6e85f5f9504be794e0d6d1c46b3f98b1cae509d864799ce6ce7b03d SHA512 7a67948307d8909c0415635c9c560bdf809b085f1675aa2c4aafa8007b8f420beb6347a56e3fbe61507aca1b42ac932ce75ae46aa2cd62e129fa604cd6ceb6e0 DIST youtube-dl-2018.07.10.tar.gz 3001810 BLAKE2B 4ffd9f678897be476983322921640007962cc307e1b0e095a012fd2840a26864bb1125b4f937ca43ba52134e32b80976b6ad185eb5e0f7523852915f61c1b293 SHA512 4f83bc02002d31bd04d9319d798c1b190b5a357864daca9661bcdeef3f71b258fb9b4b76ae1c19a0901ba5b0e56b834f0124353a4e4e3c6d0554a8f4f967c246 diff --git a/net-misc/youtube-dl/youtube-dl-2018.06.25.ebuild b/net-misc/youtube-dl/youtube-dl-2018.06.25.ebuild deleted file mode 100644 index 37bffad45c8..000 --- a/net-misc/youtube-dl/youtube-dl-2018.06.25.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: sys-kernel/dracut/
commit: 9239346319a15c9d4ce410e490c30d9a7f4eb429 Author: Matthew Thode gentoo org> AuthorDate: Tue Jul 10 05:49:35 2018 + Commit: Matt Thode gentoo org> CommitDate: Tue Jul 10 05:49:49 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92393463 sys-kernel/dracut: no more patching (merged) Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-kernel/dracut/dracut-.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/sys-kernel/dracut/dracut-.ebuild b/sys-kernel/dracut/dracut-.ebuild index 791e382ac49..161652aa843 100644 --- a/sys-kernel/dracut/dracut-.ebuild +++ b/sys-kernel/dracut/dracut-.ebuild @@ -58,7 +58,6 @@ DOCS=( AUTHORS HACKING NEWS README README.generic README.kernel README.modules QA_MULTILIB_PATHS="usr/lib/dracut/.*" PATCHES=( - "${FILESDIR}/045-systemdutildir.patch" ) src_configure() {
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/
commit: 07488859fd3574917b352c1244a4d629fac31acf Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jul 10 05:47:40 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jul 10 05:47:40 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07488859 net-dns/dnscrypt-proxy: re-add tests Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.15.ebuild | 1 + net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.15.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.15.ebuild index 5b04253b9c9..48aca623318 100644 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.15.ebuild +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.15.ebuild @@ -14,6 +14,7 @@ SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild index 130e5f6b6c7..778e3aa9cec 100644 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild @@ -14,6 +14,7 @@ SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch )
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/
commit: d0bc8e6a6b3d4de7ca1c0657992ecdd89dc016ab Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jul 10 05:41:41 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jul 10 05:41:41 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0bc8e6a net-dns/dnscrypt-proxy: add live ebuild Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild | 104 ++ 1 file changed, 104 insertions(+) diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild new file mode 100644 index 000..98ba6f98e2c --- /dev/null +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-.ebuild @@ -0,0 +1,104 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGO_PN="github.com/jedisct1/${PN}" + +inherit fcaps golang-build systemd user + +if [[ ${PV} == ]]; then + inherit git-r3 + EGIT_REPO_URI="https://${EGO_PN}.git"; +else + SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~x86" +fi + +DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols" +HOMEPAGE="https://github.com/jedisct1/dnscrypt-proxy"; + +LICENSE="ISC" +SLOT="0" +IUSE="test" + +FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) +PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) + +pkg_setup() { + enewgroup dnscrypt-proxy + enewuser dnscrypt-proxy -1 -1 /var/empty dnscrypt-proxy +} + +src_prepare() { + default + # Create directory structure suitable for building + mkdir -p "src/${EGO_PN%/*}" || die + mv "${PN}" "src/${EGO_PN}" || die + mv "vendor" "src/" || die +} + +src_install() { + dobin dnscrypt-proxy + + insinto /etc/dnscrypt-proxy + newins "src/${EGO_PN}"/example-dnscrypt-proxy.toml dnscrypt-proxy.toml + doins "src/${EGO_PN}"/example-{blacklist.txt,whitelist.txt} + doins "src/${EGO_PN}"/example-{cloaking-rules.txt,forwarding-rules.txt} + + insinto /usr/share/dnscrypt-proxy + doins -r "utils/generate-domains-blacklists/." + + newinitd "${FILESDIR}"/dnscrypt-proxy.initd dnscrypt-proxy + newconfd "${FILESDIR}"/dnscrypt-proxy.confd dnscrypt-proxy + systemd_newunit "${FILESDIR}"/dnscrypt-proxy.service dnscrypt-proxy.service + systemd_newunit "${FILESDIR}"/dnscrypt-proxy.socket dnscrypt-proxy.socket + + einstalldocs +} + +pkg_postinst() { + fcaps_pkg_postinst + + if ! use filecaps; then + ewarn "'filecaps' USE flag is disabled" + ewarn "${PN} will fail to listen on port 53" + ewarn "please do one the following:" + ewarn "1) re-enable 'filecaps'" + ewarn "2) change port to > 1024" + ewarn "3) configure to run ${PN} as root (not recommended)" + ewarn + fi + + local v + for v in ${REPLACING_VERSIONS}; do + if [[ ${v} == 1.* ]] ; then + elog "Version 2 is a complete rewrite of ${PN}" + elog "please clean up old config/log files" + elog + fi + if [[ ${v} == 2.* ]] ; then + elog "As of version 2.0.12 of ${PN} runs as an 'dnscrypt-proxy' user/group" + elog "you can remove obsolete 'dnscrypt' accounts from the system" + elog + fi + done + + if systemd_is_booted || has_version sys-apps/systemd; then + elog "Using systemd socket activation may cause issues with speed" + elog "latency and reliability of ${PN} and is discouraged by upstream" + elog "Existing installations advised to disable 'dnscrypt-proxy.socket'" + elog "It is disabled by default for new installations" + elog "check "$(systemd_get_systemunitdir)/${PN}.service" for details" + elog + + fi + + elog "After starting the service you will need to update your" + elog "/etc/resolv.conf and replace your current set of resolvers" + elog "with:" + elog + elog "nameserver 127.0.0.1" + elog + elog "Also see https://github.com/jedisct1/${PN}/wiki"; +}
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/
commit: 21bc0c193ffccd8dae4ff6efbe68432470f289fa Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jul 10 05:29:03 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jul 10 05:29:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21bc0c19 net-dns/dnscrypt-proxy: drop old Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-dns/dnscrypt-proxy/Manifest| 1 - .../dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild| 97 -- 2 files changed, 98 deletions(-) diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest index d8e1a9b4854..6fe73c2f309 100644 --- a/net-dns/dnscrypt-proxy/Manifest +++ b/net-dns/dnscrypt-proxy/Manifest @@ -1,3 +1,2 @@ -DIST dnscrypt-proxy-2.0.14.tar.gz 2876583 BLAKE2B f93b2ba8991668691d503a5c039c4bb8eee0f474893c99ebd68067faa2a530832434c08654f61482a9d5b876ecf10329117b76a20b837fde00d72521170a1d86 SHA512 2574f900b6e2f75e2f634e22df41145243c23cd9a890fcfa73f13b7d032bc2b029cbb6498f5c2cd33e212392ca2298a1dce6bb369be5c9afccc21a706613 DIST dnscrypt-proxy-2.0.15.tar.gz 2887764 BLAKE2B 7c4dd36f8305494566cb8548e478d9b89eed799dab124e574c0840c606f6c51cafb73818a07b18928a6457756a122d7bceabc108b1114b2b546d3db707d2ef3a SHA512 4517ab7b7eb1474f8c9e133a289caf6c02f472b51b910f1fbe1e5ffd6d389943626c8878e68f7f27a47b00301a427dfe9c563bc82b67cafab32f4ab3bc4c84b9 DIST dnscrypt-proxy-2.0.16.tar.gz 3770249 BLAKE2B e6dc40ec503cff11e4deec1a243875fff42ec7ecba8c7c3552b69322d405c762fa152e7e9417baf944e2a476715f00813a305c20db583970520d35acd378f1d4 SHA512 f138df20560dd440a2ed390c1468d630191ae7b0e50521b4dde3fa7ef4377c3ae6409e8c547858bace53216c84aeeea6794305546b9ff87832f704c160c6782f diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild deleted file mode 100644 index 5b04253b9c9..000 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGO_PN="github.com/jedisct1/${PN}" - -inherit fcaps golang-build systemd user - -DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols" -HOMEPAGE="https://github.com/jedisct1/dnscrypt-proxy"; -SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" - -FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) -PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) - -pkg_setup() { - enewgroup dnscrypt-proxy - enewuser dnscrypt-proxy -1 -1 /var/empty dnscrypt-proxy -} - -src_prepare() { - default - # Create directory structure suitable for building - mkdir -p "src/${EGO_PN%/*}" || die - mv "${PN}" "src/${EGO_PN}" || die - mv "vendor" "src/" || die -} - -src_install() { - dobin dnscrypt-proxy - - insinto /etc/dnscrypt-proxy - newins "src/${EGO_PN}"/example-dnscrypt-proxy.toml dnscrypt-proxy.toml - doins "src/${EGO_PN}"/example-{blacklist.txt,whitelist.txt} - doins "src/${EGO_PN}"/example-{cloaking-rules.txt,forwarding-rules.txt} - - insinto "/usr/share/dnscrypt-proxy" - doins -r "utils/generate-domains-blacklists/." - - newinitd "${FILESDIR}"/dnscrypt-proxy.initd dnscrypt-proxy - newconfd "${FILESDIR}"/dnscrypt-proxy.confd dnscrypt-proxy - systemd_newunit "${FILESDIR}"/dnscrypt-proxy.service dnscrypt-proxy.service - systemd_newunit "${FILESDIR}"/dnscrypt-proxy.socket dnscrypt-proxy.socket - - einstalldocs -} - -pkg_postinst() { - fcaps_pkg_postinst - - if ! use filecaps; then - ewarn "'filecaps' USE flag is disabled" - ewarn "${PN} will fail to listen on port 53" - ewarn "please do one the following:" - ewarn "1) re-enable 'filecaps'" - ewarn "2) change port to > 1024" - ewarn "3) configure to run ${PN} as root (not recommended)" - ewarn - fi - - local v - for v in ${REPLACING_VERSIONS}; do - if [[ ${v} == 1.* ]] ; then - elog "Version 2 is a complete rewrite of ${PN}" - elog "please clean up old config/log files" - elog - fi - if [[ ${v} == 2.* ]] ; then - elog "As of version 2.0.12 of ${PN} runs as an 'dnscrypt-proxy' user/group" - elog "you can remove obsolete 'dnscrypt' accounts from the system" - elog - fi - done - - if systemd_is_booted || has_version sys-apps/systemd; then - elog "Using systemd socket activation may cause issues with speed" - elog "latency and reliability of ${PN} and is discouraged by upstream" - elog "Existing installations advised to disable 'dnscry
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/files/
commit: 23b51318bca3c2c85bc77701809b05fd68eb466f Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jul 10 05:26:07 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jul 10 05:26:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b51318 net-dns/dnscrypt-proxy: use tabs in init.d file Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd index 4a46acdc4bb..d81a36fc8f8 100644 --- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd +++ b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd @@ -9,11 +9,11 @@ pidfile="/run/${RC_SVCNAME}.pid" start_stop_daemon_args="--background --make-pidfile" depend() { - use net logger + use logger net provide dns } start_pre() { -checkpath -q -d -m 0775 -o "${command_user}" /var/cache/"${RC_SVCNAME}" -checkpath -q -d -m 0775 -o "${command_user}" /var/log/"${RC_SVCNAME}" + checkpath -q -d -m 0775 -o "${command_user}" /var/cache/"${RC_SVCNAME}" + checkpath -q -d -m 0775 -o "${command_user}" /var/log/"${RC_SVCNAME}" }
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/files/
commit: ff422337a888f3b2e2bd9a648e18b400abc44733 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jul 10 05:24:40 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jul 10 05:24:40 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff422337 net-dns/dnscrypt-proxy: adjust systemd service Disable socket file by default, as described in pkg_postinst message. Users who want to use socket activation will have to set listen_addresses to an empty set (i.e. [] ) and enable dnscrypt-proxy.socket explicitly. Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service index ed02955621b..a0c7a1408c8 100644 --- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service +++ b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service @@ -7,12 +7,11 @@ Documentation=https://github.com/jedisct1/dnscrypt-proxy/wiki ## If you enable this, the `listen_addresses` list in the main configuration file can be empty. ## Or, at least, the addresses it contains should not overlap with the systemd socket addresses. -# Requires=dnscrypt-proxy.socket - -After=network.target -Wants=network.target +#Requires=dnscrypt-proxy.socket Before=nss-lookup.target -Wants=nss-lookup.target +After=network.target +Wants=network.target nss-lookup.target + [Service] ExecStart=/usr/bin/dnscrypt-proxy --config /etc/dnscrypt-proxy/dnscrypt-proxy.toml @@ -35,5 +34,5 @@ CapabilityBoundingSet=CAP_NET_BIND_SERVICE AmbientCapabilities=CAP_NET_BIND_SERVICE [Install] -Also=dnscrypt-proxy.socket +#Also=dnscrypt-proxy.socket WantedBy=multi-user.target
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/
commit: ea1baa4dded097aba56cd501761b8ac1d72d272d Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jul 10 05:19:30 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jul 10 05:20:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea1baa4d net-dns/dnscrypt-proxy: version bump to 2.0.16 Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-dns/dnscrypt-proxy/Manifest| 1 + .../dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild| 97 ++ 2 files changed, 98 insertions(+) diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest index 358bffe9a86..d8e1a9b4854 100644 --- a/net-dns/dnscrypt-proxy/Manifest +++ b/net-dns/dnscrypt-proxy/Manifest @@ -1,2 +1,3 @@ DIST dnscrypt-proxy-2.0.14.tar.gz 2876583 BLAKE2B f93b2ba8991668691d503a5c039c4bb8eee0f474893c99ebd68067faa2a530832434c08654f61482a9d5b876ecf10329117b76a20b837fde00d72521170a1d86 SHA512 2574f900b6e2f75e2f634e22df41145243c23cd9a890fcfa73f13b7d032bc2b029cbb6498f5c2cd33e212392ca2298a1dce6bb369be5c9afccc21a706613 DIST dnscrypt-proxy-2.0.15.tar.gz 2887764 BLAKE2B 7c4dd36f8305494566cb8548e478d9b89eed799dab124e574c0840c606f6c51cafb73818a07b18928a6457756a122d7bceabc108b1114b2b546d3db707d2ef3a SHA512 4517ab7b7eb1474f8c9e133a289caf6c02f472b51b910f1fbe1e5ffd6d389943626c8878e68f7f27a47b00301a427dfe9c563bc82b67cafab32f4ab3bc4c84b9 +DIST dnscrypt-proxy-2.0.16.tar.gz 3770249 BLAKE2B e6dc40ec503cff11e4deec1a243875fff42ec7ecba8c7c3552b69322d405c762fa152e7e9417baf944e2a476715f00813a305c20db583970520d35acd378f1d4 SHA512 f138df20560dd440a2ed390c1468d630191ae7b0e50521b4dde3fa7ef4377c3ae6409e8c547858bace53216c84aeeea6794305546b9ff87832f704c160c6782f diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild new file mode 100644 index 000..130e5f6b6c7 --- /dev/null +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.16.ebuild @@ -0,0 +1,97 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGO_PN="github.com/jedisct1/${PN}" + +inherit fcaps golang-build systemd user + +DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols" +HOMEPAGE="https://github.com/jedisct1/dnscrypt-proxy"; +SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) +PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) + +pkg_setup() { + enewgroup dnscrypt-proxy + enewuser dnscrypt-proxy -1 -1 /var/empty dnscrypt-proxy +} + +src_prepare() { + default + # Create directory structure suitable for building + mkdir -p "src/${EGO_PN%/*}" || die + mv "${PN}" "src/${EGO_PN}" || die + mv "vendor" "src/" || die +} + +src_install() { + dobin dnscrypt-proxy + + insinto /etc/dnscrypt-proxy + newins "src/${EGO_PN}"/example-dnscrypt-proxy.toml dnscrypt-proxy.toml + doins "src/${EGO_PN}"/example-{blacklist.txt,whitelist.txt} + doins "src/${EGO_PN}"/example-{cloaking-rules.txt,forwarding-rules.txt} + + insinto /usr/share/dnscrypt-proxy + doins -r "utils/generate-domains-blacklists/." + + newinitd "${FILESDIR}"/dnscrypt-proxy.initd dnscrypt-proxy + newconfd "${FILESDIR}"/dnscrypt-proxy.confd dnscrypt-proxy + systemd_newunit "${FILESDIR}"/dnscrypt-proxy.service dnscrypt-proxy.service + systemd_newunit "${FILESDIR}"/dnscrypt-proxy.socket dnscrypt-proxy.socket + + einstalldocs +} + +pkg_postinst() { + fcaps_pkg_postinst + + if ! use filecaps; then + ewarn "'filecaps' USE flag is disabled" + ewarn "${PN} will fail to listen on port 53" + ewarn "please do one the following:" + ewarn "1) re-enable 'filecaps'" + ewarn "2) change port to > 1024" + ewarn "3) configure to run ${PN} as root (not recommended)" + ewarn + fi + + local v + for v in ${REPLACING_VERSIONS}; do + if [[ ${v} == 1.* ]] ; then + elog "Version 2 is a complete rewrite of ${PN}" + elog "please clean up old config/log files" + elog + fi + if [[ ${v} == 2.* ]] ; then + elog "As of version 2.0.12 of ${PN} runs as an 'dnscrypt-proxy' user/group" + elog "you can remove obsolete 'dnscrypt' accounts from the system" + elog + fi + done + + if systemd_is_booted || has_version sys-apps/systemd; then + elog "Using systemd socket activation may cause issues with speed" + elog "latency and reliability of ${PN} and is discouraged by upstream" + elog "Existing installations advised to disable
[gentoo-commits] repo/gentoo:master commit in: lxde-base/lxappearance/
commit: 403a03dd616a857a2310ff9553e3daaaf133764c Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:55:08 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:55:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=403a03dd lxde-base/lxappearance: arm stable, bug #654898 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" lxde-base/lxappearance/lxappearance-0.6.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxde-base/lxappearance/lxappearance-0.6.3-r1.ebuild b/lxde-base/lxappearance/lxappearance-0.6.3-r1.ebuild index 2d976339879..d16b4d22d3e 100644 --- a/lxde-base/lxappearance/lxappearance-0.6.3-r1.ebuild +++ b/lxde-base/lxappearance/lxappearance-0.6.3-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ppc x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~mips ppc x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="dbus" RDEPEND="x11-libs/gtk+:2
[gentoo-commits] repo/gentoo:master commit in: lxde-base/lxpanel/
commit: f5f7f40be6b28354c4bda32dae7c48e0ae7f2b0b Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:55:55 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:55:55 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5f7f40b lxde-base/lxpanel: arm stable, bug #654904 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" lxde-base/lxpanel/lxpanel-0.9.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxde-base/lxpanel/lxpanel-0.9.3-r1.ebuild b/lxde-base/lxpanel/lxpanel-0.9.3-r1.ebuild index 8ecca0b4c8c..412bb64cbe2 100644 --- a/lxde-base/lxpanel/lxpanel-0.9.3-r1.ebuild +++ b/lxde-base/lxpanel/lxpanel-0.9.3-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~ppc x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="+alsa wifi" RDEPEND="dev-libs/keybinder:0=
[gentoo-commits] repo/gentoo:master commit in: lxde-base/lxtask/
commit: fe5a0aaf671c115db6977b6871d58574a7672242 Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:56:34 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:56:34 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe5a0aaf lxde-base/lxtask: arm stable, bug #654908 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" lxde-base/lxtask/lxtask-0.1.8-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxde-base/lxtask/lxtask-0.1.8-r1.ebuild b/lxde-base/lxtask/lxtask-0.1.8-r1.ebuild index aca557b82ee..091851dd6df 100644 --- a/lxde-base/lxtask/lxtask-0.1.8-r1.ebuild +++ b/lxde-base/lxtask/lxtask-0.1.8-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ppc x86 ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ppc x86 ~arm-linux ~x86-linux" IUSE="" RDEPEND="x11-libs/gtk+:2
[gentoo-commits] repo/gentoo:master commit in: lxde-base/lxrandr/
commit: 978c9877e0c0dd3d0eb857c825aeaf4b65c6370c Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:56:15 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:56:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978c9877 lxde-base/lxrandr: arm stable, bug #654906 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" lxde-base/lxrandr/lxrandr-0.3.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxde-base/lxrandr/lxrandr-0.3.1-r1.ebuild b/lxde-base/lxrandr/lxrandr-0.3.1-r1.ebuild index 0cbe7d205c5..30bcff2688b 100644 --- a/lxde-base/lxrandr/lxrandr-0.3.1-r1.ebuild +++ b/lxde-base/lxrandr/lxrandr-0.3.1-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ppc x86 ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ppc x86 ~arm-linux ~x86-linux" IUSE="" RDEPEND="x11-libs/gtk+:2
[gentoo-commits] repo/gentoo:master commit in: lxde-base/lxinput/
commit: 4ec176bbfad2759639f38b1a5a86946e1e8b7547 Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:55:33 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:55:33 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec176bb lxde-base/lxinput: arm stable, bug #654900 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" lxde-base/lxinput/lxinput-0.3.5-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxde-base/lxinput/lxinput-0.3.5-r1.ebuild b/lxde-base/lxinput/lxinput-0.3.5-r1.ebuild index d9070a467ca..280b8924b10 100644 --- a/lxde-base/lxinput/lxinput-0.3.5-r1.ebuild +++ b/lxde-base/lxinput/lxinput-0.3.5-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ppc x86 ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ppc x86 ~arm-linux ~x86-linux" IUSE="" RDEPEND="dev-libs/glib:2
[gentoo-commits] repo/gentoo:master commit in: sys-fs/ntfs3g/
commit: d862803cc115a105c1e739c7e7df2bcde41751a8 Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:57:42 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:57:42 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d862803c sys-fs/ntfs3g: arm stable, bug #655342 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" sys-fs/ntfs3g/ntfs3g-2017.3.23-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-fs/ntfs3g/ntfs3g-2017.3.23-r1.ebuild b/sys-fs/ntfs3g/ntfs3g-2017.3.23-r1.ebuild index 8b217b0ad54..da14c1c0f87 100644 --- a/sys-fs/ntfs3g/ntfs3g-2017.3.23-r1.ebuild +++ b/sys-fs/ntfs3g/ntfs3g-2017.3.23-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://tuxera.com/opensource/${MY_P}.tgz"; LICENSE="GPL-2" # The subslot matches the SONAME major #. SLOT="0/88" -KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="acl debug +external-fuse ntfsdecrypt +ntfsprogs static-libs suid xattr" RDEPEND="!
[gentoo-commits] repo/gentoo:master commit in: lxde-base/menu-cache/
commit: 8fab39ab568f8f4255fb1836fb3565a7d49cd740 Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:56:54 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:56:54 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fab39ab lxde-base/menu-cache: arm stable, bug #654910 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" lxde-base/menu-cache/menu-cache-1.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxde-base/menu-cache/menu-cache-1.1.0.ebuild b/lxde-base/menu-cache/menu-cache-1.1.0.ebuild index b98c5df0d9e..6a21a48cad9 100644 --- a/lxde-base/menu-cache/menu-cache-1.1.0.ebuild +++ b/lxde-base/menu-cache/menu-cache-1.1.0.ebuild @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" LICENSE="LGPL-2.1+" # ABI is v2. See Makefile.am SLOT="0/2" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ppc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~mips ppc x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND="dev-libs/glib:2
[gentoo-commits] repo/gentoo:master commit in: media-libs/libbluray/
commit: 6eca204267cb6767c21ef9196f5ec70ef8937f0b Author: Markus Meier gentoo org> AuthorDate: Tue Jul 10 04:57:20 2018 + Commit: Markus Meier gentoo org> CommitDate: Tue Jul 10 04:57:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eca2042 media-libs/libbluray: arm stable, bug #655336 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="arm" media-libs/libbluray/libbluray-1.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libbluray/libbluray-1.0.2.ebuild b/media-libs/libbluray/libbluray-1.0.2.ebuild index 0704851b93f..1dd1be0ec72 100644 --- a/media-libs/libbluray/libbluray-1.0.2.ebuild +++ b/media-libs/libbluray/libbluray-1.0.2.ebuild @@ -7,7 +7,7 @@ if [[ "${PV#}" != "${PV}" ]] ; then inherit git-r3 EGIT_REPO_URI="https://git.videolan.org/git/libbluray.git"; else - KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd" + KEYWORDS="amd64 arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd" SRC_URI="https://downloads.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2"; fi
[gentoo-commits] proj/portage:master commit in: pym/portage/sync/modules/git/
commit: 89b85e47d7ac0d5f36b182c36eb1e72db7187b36 Author: Zac Medico gentoo org> AuthorDate: Sun Jul 8 20:29:40 2018 + Commit: Zac Medico gentoo org> CommitDate: Tue Jul 10 04:25:54 2018 + URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=89b85e47 GitSync: add key refresh retry (bug 660732) Bug: https://bugs.gentoo.org/660732 pym/portage/sync/modules/git/git.py | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pym/portage/sync/modules/git/git.py b/pym/portage/sync/modules/git/git.py index 97c4c1de6..68f8bd1fb 100644 --- a/pym/portage/sync/modules/git/git.py +++ b/pym/portage/sync/modules/git/git.py @@ -8,6 +8,7 @@ import subprocess import portage from portage import os from portage.util import writemsg_level, shlex_split +from portage.util.futures import asyncio from portage.output import create_color_func, EOutput good = create_color_func("GOOD") bad = create_color_func("BAD") @@ -197,10 +198,8 @@ class GitSync(NewBase): out.einfo('Using keys from %s' % (self.repo.sync_openpgp_key_path,)) with io.open(self.repo.sync_openpgp_key_path, 'rb') as f: openpgp_env.import_key(f) - out.ebegin('Refreshing keys from keyserver') - openpgp_env.refresh_keys() - out.eend(0) - except GematoException as e: + self._refresh_keys(openpgp_env) + except (GematoException, asyncio.TimeoutError) as e: writemsg_level("!!! Verification impossible due to keyring problem:\n%s\n" % (e,), level=logging.ERROR, noiselevel=-1)
[gentoo-commits] proj/portage:master commit in: pym/portage/sync/, pym/portage/sync/modules/rsync/
commit: 06f304c8718ac653bbdf9b5b999c03cba898bf3e Author: Zac Medico gentoo org> AuthorDate: Sun Jul 8 20:09:45 2018 + Commit: Zac Medico gentoo org> CommitDate: Tue Jul 10 04:23:12 2018 + URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=06f304c8 SyncBase: split out _refresh_keys method (bug 660732) Split out a _refresh_keys method from the RsyncSync class, so GitSync can use it for retry support. Bug: https://bugs.gentoo.org/660732 pym/portage/sync/modules/rsync/rsync.py | 33 +- pym/portage/sync/syncbase.py| 41 + 2 files changed, 42 insertions(+), 32 deletions(-) diff --git a/pym/portage/sync/modules/rsync/rsync.py b/pym/portage/sync/modules/rsync/rsync.py index 382a1eaae..a715e2818 100644 --- a/pym/portage/sync/modules/rsync/rsync.py +++ b/pym/portage/sync/modules/rsync/rsync.py @@ -7,7 +7,6 @@ import time import signal import socket import datetime -import functools import io import re import random @@ -23,10 +22,8 @@ good = create_color_func("GOOD") bad = create_color_func("BAD") warn = create_color_func("WARN") from portage.const import VCS_DIRS, TIMESTAMP_FORMAT, RSYNC_PACKAGE_ATOM -from portage.util._eventloop.global_event_loop import global_event_loop from portage.util import writemsg, writemsg_stdout from portage.util.futures import asyncio -from portage.util.futures.executor.fork import ForkExecutor from portage.sync.getaddrinfo_validate import getaddrinfo_validate from _emerge.UserQuery import UserQuery from portage.sync.syncbase import NewBase @@ -149,39 +146,11 @@ class RsyncSync(NewBase): # will not be performed and the user will have to fix it and try again, # so we may as well bail out before actual rsync happens. if openpgp_env is not None and self.repo.sync_openpgp_key_path is not None: - try: out.einfo('Using keys from %s' % (self.repo.sync_openpgp_key_path,)) with io.open(self.repo.sync_openpgp_key_path, 'rb') as f: openpgp_env.import_key(f) - out.ebegin('Refreshing keys from keyserver') - retry_decorator = self._key_refresh_retry_decorator() - if retry_decorator is None: - openpgp_env.refresh_keys() - else: - def noisy_refresh_keys(): - """ - Since retry does not help for some types of - errors, display errors as soon as they occur. - """ - try: - openpgp_env.refresh_keys() - except Exception as e: - writemsg_level("%s\n" % (e,), - level=logging.ERROR, noiselevel=-1) - raise # retry - - # The ThreadPoolExecutor that asyncio uses by default - # does not support cancellation of tasks, therefore - # use ForkExecutor for task cancellation support, in - # order to enforce timeouts. - loop = global_event_loop() - with ForkExecutor(loop=loop) as executor: - func_coroutine = functools.partial(loop.run_in_executor, - executor, noisy_refresh_keys) - decorated_func = retry_decorator(func_coroutine, loop=loop) - loop.run_until_complete(decorated_func()) - out.eend(0) + self._refresh_keys(openpgp_env) except (GematoException, asyncio.TimeoutError) as e: writemsg_level("!!! Manifest verification impossible due to keyring problem:\n%s\n" % (e,), diff --git a/pym/portage/sync/syncbase.py b/pym/portage/sync/syncbase.py index
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/parser/
commit: 9a36001c5b6f95ca1edbd7a7c6f4df4a09b3816f Author: Hans de Graaff gentoo org> AuthorDate: Tue Jul 10 04:05:47 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Tue Jul 10 04:05:47 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a36001c dev-ruby/parser: cleanup Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/parser/Manifest | 3 --- dev-ruby/parser/parser-2.5.0.0.ebuild | 32 dev-ruby/parser/parser-2.5.0.2.ebuild | 32 dev-ruby/parser/parser-2.5.0.5.ebuild | 32 4 files changed, 99 deletions(-) diff --git a/dev-ruby/parser/Manifest b/dev-ruby/parser/Manifest index d0feae5f7f5..e6f61912646 100644 --- a/dev-ruby/parser/Manifest +++ b/dev-ruby/parser/Manifest @@ -1,5 +1,2 @@ DIST parser-2.4.0.2.gem 591360 BLAKE2B 77a832e444e70853fe2aab27c0dfc99536aeafac78e3b4f36d3b1863d5498b656ccf62c55481e9fed763828bd4212b1688f06d77c01cb216653a925081f45cf2 SHA512 6ad62084437556bfa3bdb862bb031646e25ec733ab0e34432580351562a72a71507e454da9fd4f53e590163ea9d666c8076ecb7c92a7f5bf5579ca46cbb28a55 -DIST parser-2.5.0.0.gem 601600 BLAKE2B d863de5b898e1110f3b1121afd83aa11b5c116c494a45c4ba4fba82a89605acbbf0e52db6f7dd9b7d65c49ddd00a3af8c716f2f348a7bfe50b39c55a95dd7adf SHA512 51ad3b7d56d0f25385ab6ff8510857b7c8a689c65087be68441a4699a12371717de9360f568804fc818c0fde8535f1c92067532ef7a4d751b183d61aac3ddfe2 -DIST parser-2.5.0.2.gem 604672 BLAKE2B ec4a20218e0707a9791b173a7b7b1f33845e20b23c591bb9d5a51883f9b105fff136ae3808f62fddbf43ce57b0b6b13c0fe80af5496dda655074900a3790b108 SHA512 5ea67f986af8b31eca601fc812d64edfde14843f92cc79d72333cd581d20f53661f621ac513e71db6320ede8ac696778266138e66cddb3cbfe1b61684538953d -DIST parser-2.5.0.5.gem 605184 BLAKE2B 2847079ee7195f47f7d18519cdd9e52b1ab9e9371fd3593d78ab841d8b38d985609ec326a0e75688012d583569cf311428ec39f8e2b52725943966c848693487 SHA512 e3c2aa9026d45dde45923f215b2de4f3f588e779bdfac30c334b6c1bf2c54c44858179cba34cfb46d0353714c813d03da10f33ec660a1c4c0b06df9ec8a1efe6 DIST parser-2.5.1.0.gem 652800 BLAKE2B 56411c34da273d8d02d05eb0dee470cf9afd3ed563d02fc8614cc93cb62f0a1e12cfcd02da95b9ed93acfc69a75ebef2b2b25cd885a69ecac31e3c2b4b37bee5 SHA512 252a20b1b578c4c4b0704001aa7b38ef94e5cc24f3eff34d3afcd661e4f5ce2aa25d2113e42a7d0c8e22583451d3e8067429782be12789cb9465262d7bd1839e diff --git a/dev-ruby/parser/parser-2.5.0.0.ebuild b/dev-ruby/parser/parser-2.5.0.0.ebuild deleted file mode 100644 index 57a57952cc4..000 --- a/dev-ruby/parser/parser-2.5.0.0.ebuild +++ /dev/null @@ -1,32 +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="yard" -RUBY_FAKEGEM_TASK_TEST="test" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_VERSION="${PV/_pre/.pre.}" - -inherit ruby-fakegem - -DESCRIPTION="A production-ready Ruby parser written in pure Ruby" -HOMEPAGE="https://github.com/whitequark/parser"; - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_bdepend "test? ( - dev-ruby/minitest:5 - dev-ruby/racc - dev-ruby/cliver )" -ruby_add_rdepend "=dev-ruby/ast-2.4*" - -all_ruby_prepare() { - sed -i -e "/[Bb]undler/d" Rakefile || die - sed -i -e "/simplecov/,+35d" test/helper.rb || die -} diff --git a/dev-ruby/parser/parser-2.5.0.2.ebuild b/dev-ruby/parser/parser-2.5.0.2.ebuild deleted file mode 100644 index 57a57952cc4..000 --- a/dev-ruby/parser/parser-2.5.0.2.ebuild +++ /dev/null @@ -1,32 +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="yard" -RUBY_FAKEGEM_TASK_TEST="test" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_VERSION="${PV/_pre/.pre.}" - -inherit ruby-fakegem - -DESCRIPTION="A production-ready Ruby parser written in pure Ruby" -HOMEPAGE="https://github.com/whitequark/parser"; - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_bdepend "test? ( - dev-ruby/minitest:5 - dev-ruby/racc - dev-ruby/cliver )" -ruby_add_rdepend "=dev-ruby/ast-2.4*" - -all_ruby_prepare() { - sed -i -e "/[Bb]undler/d" Rakefile || die - sed -i -e "/simplecov/,+35d" test/helper.rb || die -} diff --git a/dev-ruby/parser/parser-2.5.0.5.ebuild b/dev-ruby/parser/parser-2.5.0.5.ebuild deleted file mode 100644 index 57a57952cc4..000 --- a/dev-ruby/parser/parser-2.5.0.5.ebuild +++ /dev/null @@ -1,32 +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="yard" -RUBY_FAKEGEM_TASK_TEST="test" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_VERSION="${PV/_pre/.pre.}" - -inherit ruby-fakegem - -DESCRIPTION="
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/parser/
commit: f51f80f04f32c9af53dfa280a223fe21bfdf3f57 Author: Hans de Graaff gentoo org> AuthorDate: Tue Jul 10 04:11:09 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Tue Jul 10 04:11:09 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51f80f0 dev-ruby/parser: add 2.5.1.1 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/parser/Manifest | 1 + dev-ruby/parser/parser-2.5.1.1.ebuild | 32 2 files changed, 33 insertions(+) diff --git a/dev-ruby/parser/Manifest b/dev-ruby/parser/Manifest index e6f61912646..3184d0ecd7c 100644 --- a/dev-ruby/parser/Manifest +++ b/dev-ruby/parser/Manifest @@ -1,2 +1,3 @@ DIST parser-2.4.0.2.gem 591360 BLAKE2B 77a832e444e70853fe2aab27c0dfc99536aeafac78e3b4f36d3b1863d5498b656ccf62c55481e9fed763828bd4212b1688f06d77c01cb216653a925081f45cf2 SHA512 6ad62084437556bfa3bdb862bb031646e25ec733ab0e34432580351562a72a71507e454da9fd4f53e590163ea9d666c8076ecb7c92a7f5bf5579ca46cbb28a55 DIST parser-2.5.1.0.gem 652800 BLAKE2B 56411c34da273d8d02d05eb0dee470cf9afd3ed563d02fc8614cc93cb62f0a1e12cfcd02da95b9ed93acfc69a75ebef2b2b25cd885a69ecac31e3c2b4b37bee5 SHA512 252a20b1b578c4c4b0704001aa7b38ef94e5cc24f3eff34d3afcd661e4f5ce2aa25d2113e42a7d0c8e22583451d3e8067429782be12789cb9465262d7bd1839e +DIST parser-2.5.1.1.gem 654336 BLAKE2B 2b61457947e4eb76f77b4a0ba1a7960246a4beef6022595de20754cebed74fa684f2cb8c2ba18184324dc7ea58080e85123ed0b88105be8401db13fd8c395f24 SHA512 481a073cc67786c06c7c71ecc51b30ed151e428b9c78dc7991acc6aae6cf70ee0330cb334270f1e3a75128d2a341c8d1c4bec7bf85ee70ce643b4fdb649ec7b2 diff --git a/dev-ruby/parser/parser-2.5.1.1.ebuild b/dev-ruby/parser/parser-2.5.1.1.ebuild new file mode 100644 index 000..57a04d4498e --- /dev/null +++ b/dev-ruby/parser/parser-2.5.1.1.ebuild @@ -0,0 +1,32 @@ +# 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="yard" +RUBY_FAKEGEM_TASK_TEST="test" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_VERSION="${PV/_pre/.pre.}" + +inherit ruby-fakegem + +DESCRIPTION="A production-ready Ruby parser written in pure Ruby" +HOMEPAGE="https://github.com/whitequark/parser"; + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( + dev-ruby/minitest:5 + dev-ruby/racc + dev-ruby/cliver )" +ruby_add_rdepend "=dev-ruby/ast-2.4*" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/d" Rakefile || die + sed -i -e '/simplecov/ s:^:#:' test/helper.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libuv/
commit: 0318225c8f103257fa6f02a9aa8dda75446f824f Author: Jeroen Roovers gentoo org> AuthorDate: Tue Jul 10 02:45:45 2018 + Commit: Jeroen Roovers gentoo org> CommitDate: Tue Jul 10 02:45:45 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0318225c dev-libs/libuv: Version 1.22.0. Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-libs/libuv/Manifest| 1 + dev-libs/libuv/libuv-1.22.0.ebuild | 47 ++ 2 files changed, 48 insertions(+) diff --git a/dev-libs/libuv/Manifest b/dev-libs/libuv/Manifest index 5f857911203..1d48e5ac1b7 100644 --- a/dev-libs/libuv/Manifest +++ b/dev-libs/libuv/Manifest @@ -1,3 +1,4 @@ DIST libuv-1.20.0.tar.gz 1180231 BLAKE2B 8ba258477c685acc1ed5486211b65719419757f6dec5dda863d622d4190552a2f5968f3b05519ec5574a5963cce99a9b92c224b511e0f9e70aa099d47f4fb4ca SHA512 382309cb6e54765b956b03357cb754f49d93505ba0e0122a77f33efca07d7b87966c993a5fd9f9503edd1bcd0f49ca42bd9cd9264cce94c847aebca77d237ba0 DIST libuv-1.20.3.tar.gz 1181741 BLAKE2B ee68f975c9f150034b02772b297a05692305155449dac75f35ca32761ffa2803385b22cce5c0fe1b2ad73a52144e6218e2c62d73c92e098017bee74a99e16062 SHA512 60ebc0059ec9fdd022aa9d60b2a0340f29e037bf79fa08707f6f2ecca9ec263c7a6466bdc1f94e0875a6a627ee749efa86117dedb22119676a7bafed8b5d77a0 DIST libuv-1.21.0.tar.gz 1187827 BLAKE2B e534eb4a7cdde3988a34047c999fd20e83f443bcf3ac1c62e07b7e4ddd95f62ac8221d58197b5f8fed618686d6003e35793b1b91e1dcfd6245a05d8bff1b881c SHA512 ab6b52f8bee1900953d9136e4d281f81ba9f14287760f7bfc8633289699cb9eeaab15d9146ed05b164631fcb3c2b5abcee8c10499d080a82a411bb1f02564c48 +DIST libuv-1.22.0.tar.gz 1186080 BLAKE2B 5e909c36e5ff75fb199f52d5910bb092ca4117ca0c53f8d3e7c9dd7e57f4959dca6e46db095cca93f3a079850268e5cc0fc68b2916a20773f09b2ba5f1531cc0 SHA512 e79cae6aa1d9cf2c8f7c0262c866fea2858d7104ece7c556e537e7d1cf884f191d5cd3e56539bfe857fa15dc50b57fdcb33019824cd585a2ca250a77d923af73 diff --git a/dev-libs/libuv/libuv-1.22.0.ebuild b/dev-libs/libuv/libuv-1.22.0.ebuild new file mode 100644 index 000..1edbef416b0 --- /dev/null +++ b/dev-libs/libuv/libuv-1.22.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools ltprune multilib-minimal + +DESCRIPTION="Cross-platform asychronous I/O" +HOMEPAGE="https://github.com/libuv/libuv"; +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" +IUSE="static-libs" +RESTRICT="test" + +DEPEND="sys-devel/libtool + virtual/pkgconfig[${MULTILIB_USEDEP}]" + +src_prepare() { + default + + echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \ + > m4/libuv-extra-automake-flags.m4 || die + + eautoreconf +} + +multilib_src_configure() { + local myeconfargs=( + cc_cv_cflags__g=no + $(use_enable static-libs static) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_test() { + mkdir "${BUILD_DIR}"/test || die + cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die + default +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +}
[gentoo-commits] proj/android:master commit in: profiles/
commit: 84af335632a63cc5b28c4d81af04bd979087235f Author: Benda Xu gentoo org> AuthorDate: Tue Jul 10 01:58:09 2018 + Commit: Benda XU gentoo org> CommitDate: Tue Jul 10 01:58:09 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=84af3356 Change the repository name to android and remove useless categories. profiles/categories | 4 profiles/repo_name | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/profiles/categories b/profiles/categories deleted file mode 100644 index 8bf81bb..000 --- a/profiles/categories +++ /dev/null @@ -1,4 +0,0 @@ -cross-armv5tel-softfloat-linux-gnueabi -cross-x86_64-pc-linux-gnu -sci-R -cross-armv7a-hardfloat-linux-gnueabi diff --git a/profiles/repo_name b/profiles/repo_name index f857e77..7473a25 100644 --- a/profiles/repo_name +++ b/profiles/repo_name @@ -1 +1 @@ -rap +android
[gentoo-commits] proj/android:master commit in: sys-kernel/preinit/
commit: 8daa40e7baa480901240120c53fc36a30978d41b Author: KireinaHoro jsteward moe> AuthorDate: Mon Jul 2 17:06:59 2018 + Commit: Benda XU gentoo org> CommitDate: Mon Jul 2 17:06:59 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=8daa40e7 sys-kernel/preinit: bump to 0.6 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/preinit/Manifest | 4 ++-- sys-kernel/preinit/{preinit-0.5.ebuild => preinit-0.6.ebuild} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-kernel/preinit/Manifest b/sys-kernel/preinit/Manifest index 7d83ec1..549cf94 100644 --- a/sys-kernel/preinit/Manifest +++ b/sys-kernel/preinit/Manifest @@ -1,3 +1,3 @@ -DIST preinit-0.5.tar.gz 14450 BLAKE2B 8a355c943060f96f24014414f93285a90a5b0f691efcae9814311eb3ed0797b7ffbd870d97a328591a8f55976263f221118422e04052e4819daaef1a6e0e67f4 SHA512 7cf7d4f18d3349769f73747546e31192dcf36a6150769abcf5b2330c95c4ab0052ad446ac491459acfa5f63eda1aad9379ffb992051a58f70df27a3d79832c86 -EBUILD preinit-0.5.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 +DIST preinit-0.6.tar.gz 14445 BLAKE2B be98edc4fdf9a617f4af9cc2a76d32992ad6978447c53f5ce525ba3080923eb692345b222e0024fbcb6ae4a6f19d47da89e318b881b2ea62ce7d569487ede16b SHA512 08edb2f205173fa0ce1f3c7f898c42bbd7e23c4ee932a40220c06a5cea1ce39100ab251bb0e2aaeb2edbfa042427a0dca4b9cd7556a87f087cc1e247c393a3e5 +EBUILD preinit-0.6.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 MISC metadata.xml 400 BLAKE2B 798f691229a445bf0a1890fa693c5b145dffab28d4a3f9ddaa1d10e68158f16cee04229bd944d54c1a12c35eb7bf5ba5922e387910b0a930bb8a964f10af7a82 SHA512 05282919ebaf24720af3ead93629fef29e1c253680fefd4169bb823c570c55a612292636193c15cd940bb69de23524f7c521b1a4dbc0aa1ab640b1a3093c7c9a diff --git a/sys-kernel/preinit/preinit-0.5.ebuild b/sys-kernel/preinit/preinit-0.6.ebuild similarity index 100% rename from sys-kernel/preinit/preinit-0.5.ebuild rename to sys-kernel/preinit/preinit-0.6.ebuild
[gentoo-commits] proj/android:master commit in: sys-kernel/angler-sources/
commit: fa6811d76b32ec7284c1f3e279d4331ae3376e09 Author: KireinaHoro jsteward moe> AuthorDate: Mon Jul 2 18:02:59 2018 + Commit: Benda XU gentoo org> CommitDate: Mon Jul 2 18:02:59 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=fa6811d7 sys-kernel/angler-sources: fix bug in ebuild Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/angler-sources/Manifest | 2 +- ...angler-sources-3.10.73..ebuild => angler-sources-3.10.73.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-kernel/angler-sources/Manifest b/sys-kernel/angler-sources/Manifest index d7ebb6e..fa385ce 100644 --- a/sys-kernel/angler-sources/Manifest +++ b/sys-kernel/angler-sources/Manifest @@ -1,2 +1,2 @@ -EBUILD angler-sources-3.10.73..ebuild 657 BLAKE2B 0735e3137cb8f96ce2b78642566aad133fc4c13593fbb849a36f67abcedd6bd4005f3ebc705069b4e43fae3b927757682754a86e5c1601b890a7f53000e830c8 SHA512 e4da60ea8bf469a8a4e17f33bf825c34240d908699a3f727abdf6c006c910ca069c40b1f062f7c60ec18fb23b894d7b19e45492f2016588e7934fd149e340ce1 +EBUILD angler-sources-3.10.73.ebuild 657 BLAKE2B 0735e3137cb8f96ce2b78642566aad133fc4c13593fbb849a36f67abcedd6bd4005f3ebc705069b4e43fae3b927757682754a86e5c1601b890a7f53000e830c8 SHA512 e4da60ea8bf469a8a4e17f33bf825c34240d908699a3f727abdf6c006c910ca069c40b1f062f7c60ec18fb23b894d7b19e45492f2016588e7934fd149e340ce1 MISC metadata.xml 302 BLAKE2B 2560cf9d3ac1d88ef673eae5f52a07e3dd311b1e76235d04cccb623dc1d902fb4b12bb2f26ba3dc6fcad206895f5663ad5579091b336b835f24a799d3fa3cec5 SHA512 e4568d468c1716d269db218e26c93716bdeae20ea9922782520ac75d0fff2f4395a5c076c2dfc05acaec1306823a0f3a32bed7c5a1082973e4232cbb65260e11 diff --git a/sys-kernel/angler-sources/angler-sources-3.10.73..ebuild b/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild similarity index 100% rename from sys-kernel/angler-sources/angler-sources-3.10.73..ebuild rename to sys-kernel/angler-sources/angler-sources-3.10.73.ebuild
[gentoo-commits] proj/android:master commit in: sys-kernel/installkernel/, sys-kernel/preinit/, sys-kernel/angler-sources/
commit: e961a06b9d07bbbcfbc45c3db2e6dc34e58ea8f8 Author: KireinaHoro jsteward moe> AuthorDate: Mon Jul 2 16:24:11 2018 + Commit: Benda XU gentoo org> CommitDate: Mon Jul 2 16:24:11 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=e961a06b sys-kernel: fix various issues Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/angler-sources/Manifest| 3 +-- sys-kernel/angler-sources/angler-sources-3.10.73.ebuild | 4 ++-- sys-kernel/installkernel/Manifest | 2 +- .../{installkernel-0.1.ebuild => installkernel-0.1-r1.ebuild} | 2 +- sys-kernel/preinit/Manifest | 4 ++-- sys-kernel/preinit/{preinit-0.3.ebuild => preinit-0.4.ebuild} | 0 6 files changed, 7 insertions(+), 8 deletions(-) diff --git a/sys-kernel/angler-sources/Manifest b/sys-kernel/angler-sources/Manifest index 07ce5d8..bf1a8ad 100644 --- a/sys-kernel/angler-sources/Manifest +++ b/sys-kernel/angler-sources/Manifest @@ -1,3 +1,2 @@ -DIST android_kernel_huawei_angler 114349 BLAKE2B df41569fc5ad445121615c5ee880c24797fc87ede6afbf27b9b3a20bbb9684c543b93391c577498371a8cfc29b4f4acc8767c07374e2d5ea582baebebd016018 SHA512 a2ec68f067ce3374ebc2a5634205b8dd9c269f8b441265b5b885f748578b550ed04f3d5f5e31dc605091fd86d95dfd2b8cc6daf85ad7867291fe1c0573102aef -EBUILD angler-sources-3.10.73.ebuild 819 BLAKE2B 5d18fbb86b4cac611afebcda790de28e589737bc58773f32533730953c7865159b944888197483c8d5050cf5c8ab9d7ae35fa13012bfe76877a6a721ad36178b SHA512 7ea5b16dea5224e8948101b1b55222bb38cb51a967beabaf0599abea8ce5224ec526e838bc88d66d936bd61871f989c7d68a7361c814652dff168c41136c9373 +EBUILD angler-sources-3.10.73.ebuild 832 BLAKE2B f748031bc2b0b3d91e8b8610b5d5d08823eaa006337d61c430b633782fd12b40de56e2300b2df47612414cb467e26b9236535e58ce0c994ef7fc6af63a6d0b62 SHA512 730b945ab9eb00f0ff464e213ce97db48fe40a5575935980663af97ed3989f104195e6dd816bf959d878e2ae056d75e284496d078cba17938c34837decc51701 MISC metadata.xml 302 BLAKE2B 2560cf9d3ac1d88ef673eae5f52a07e3dd311b1e76235d04cccb623dc1d902fb4b12bb2f26ba3dc6fcad206895f5663ad5579091b336b835f24a799d3fa3cec5 SHA512 e4568d468c1716d269db218e26c93716bdeae20ea9922782520ac75d0fff2f4395a5c076c2dfc05acaec1306823a0f3a32bed7c5a1082973e4232cbb65260e11 diff --git a/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild b/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild index 9a6d339..4d5a08a 100644 --- a/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild +++ b/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild @@ -15,12 +15,12 @@ CKV="${PVR/-r/-git}" # only use this if it's not an _rc/_pre release [ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}" -inherit kernel-2 +inherit git-r3 kernel-2 detect_version DESCRIPTION="Device-specific kernel sources from AOSP project adapted for Gentoo" HOMEPAGE="https://www.kernel.org"; -SRC_URI="https://github.com/KireinaHoro/android_kernel_huawei_angler"; +EGIT_REPO_URI="https://github.com/KireinaHoro/android_kernel_huawei_angler"; KEYWORDS="~arm64" IUSE="" diff --git a/sys-kernel/installkernel/Manifest b/sys-kernel/installkernel/Manifest index 79fc4ee..fb7c7f4 100644 --- a/sys-kernel/installkernel/Manifest +++ b/sys-kernel/installkernel/Manifest @@ -1,3 +1,3 @@ DIST installkernel-0.1.tar.gz 13384 BLAKE2B 9fe5e7a35de3de39b0ccbcbe4b7107b17c47edbf15fde4ee60a93a0e32ac0a415032360b98220ab04f1ea05921c60a1d52ee331f4f972450850e3fb0dc4129b1 SHA512 ea7471f62308ac8bc5ccf0a4e2abc45815d6fe878dc34e33630e123ada988863ec669445f0414eb3ea8556b059aa8081c68a7c915da9526b3120362673d5c1df -EBUILD installkernel-0.1.ebuild 513 BLAKE2B 2eddbd3838bf7941f448978ce83a61d4ae5b04ca490bcb5f1b7a3f90430740bdfe11b663e3e2b78e8761a688b9a217c00aa6d9d160c2a627c0107570a18bb0ba SHA512 cc00d34dce21b21de36152bd7273dbd324153de099c7a8992b5eefa135e06a860e4e9351ebb08da4a037f8c8b1ff6c2e8a1881f8f2523afe31f79cb0b5821690 +EBUILD installkernel-0.1-r1.ebuild 510 BLAKE2B 77aa761760f6395db0b3315cc5bdfbb8595556e3ebe118b0714e2e1c46e93148f44c546ea1890ef9236c2cad1f780bc70dcbd23dbffa2671621213fec0f94794 SHA512 e25a25832a01ef719918f14a01232d12bf086ccb38c99f1f6d0fec39a3f6bcdb2965e5f427d308f4f76f2bb78c530bf1bfa094a1a3c61dcfaaa15d1346adf3c7 MISC metadata.xml 367 BLAKE2B b5fb347e1de8714222b958157c8e7465da685d55750d17fa8c9f3d5d73b83d336a0580eb911796c93b9994df9bb1e5262323e17f71ae1f3b81ea5442afff646a SHA512 0bce62c7ced0b6a3e724c6f698fe8192c7ccb51bda37a1289185138ed6ae9da413cfc14d939e9a8b95e1b59b8b352d1f866d3a48b4aaa2b7c0d466ccb8b5b85d diff --git a/sys-kernel/installkernel/installkernel-0.1.ebuild b/sys-kernel/installkernel/installkernel-0.1-r1.ebuild similarity index 97% rename from sys-kernel/installkernel/installkernel-0.1.ebuild rename to sys-kernel/installkernel/installkernel-0.1-r1.ebuild index cac44a6..28ef71d 100644 --- a/sys-kernel/installkernel/installkernel-0.1.ebuild +++ b/sys-kernel/installker
[gentoo-commits] proj/android:master commit in: sys-kernel/preinit/
commit: 54dfc22554b88d837f58653debf58603566dccc6 Author: KireinaHoro jsteward moe> AuthorDate: Mon Jul 2 16:55:37 2018 + Commit: Benda XU gentoo org> CommitDate: Mon Jul 2 16:55:50 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=54dfc225 sys-kernel/preinit: bump to 0.5 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/preinit/Manifest | 4 ++-- sys-kernel/preinit/{preinit-0.4.ebuild => preinit-0.5.ebuild} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-kernel/preinit/Manifest b/sys-kernel/preinit/Manifest index f04b795..7d83ec1 100644 --- a/sys-kernel/preinit/Manifest +++ b/sys-kernel/preinit/Manifest @@ -1,3 +1,3 @@ -DIST preinit-0.4.tar.gz 14437 BLAKE2B 2c6ae18b80285e924d07aaf30f1e096c3a5e36fe64d5443e9099560c2ebc3dc85a8c3ff34578056e7c4bd0c4a66f53b74bd53ad4e34bae082de254136aa56bdf SHA512 07de8129090a9d26ebf2fb0bf13f73e11780f4e992fce40af98a478506c6b6e4c34f65ecdaa019f4066eb6d7725ef45d323f02e4f069f3b6fc3fb0f7929037b5 -EBUILD preinit-0.4.ebuild 1477 BLAKE2B 13848f77810f76e1d53efa44ff71d2d9f7d9a696dfa665772b7213c2afbf82cbaab77b1202b758a7648971f560db88a09cf54eacc194734b14b8da7f88184b8d SHA512 4abb3b51a3d80f2f2c8c691723dc2234f8d98d4bc65ac726e7cebe0ac1ada810555d80e691e6523ec448b5dc8f6dfb4dcf88483730a8fc8081a370ee88179532 +DIST preinit-0.5.tar.gz 14450 BLAKE2B 8a355c943060f96f24014414f93285a90a5b0f691efcae9814311eb3ed0797b7ffbd870d97a328591a8f55976263f221118422e04052e4819daaef1a6e0e67f4 SHA512 7cf7d4f18d3349769f73747546e31192dcf36a6150769abcf5b2330c95c4ab0052ad446ac491459acfa5f63eda1aad9379ffb992051a58f70df27a3d79832c86 +EBUILD preinit-0.5.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 MISC metadata.xml 400 BLAKE2B 798f691229a445bf0a1890fa693c5b145dffab28d4a3f9ddaa1d10e68158f16cee04229bd944d54c1a12c35eb7bf5ba5922e387910b0a930bb8a964f10af7a82 SHA512 05282919ebaf24720af3ead93629fef29e1c253680fefd4169bb823c570c55a612292636193c15cd940bb69de23524f7c521b1a4dbc0aa1ab640b1a3093c7c9a diff --git a/sys-kernel/preinit/preinit-0.4.ebuild b/sys-kernel/preinit/preinit-0.5.ebuild similarity index 96% rename from sys-kernel/preinit/preinit-0.4.ebuild rename to sys-kernel/preinit/preinit-0.5.ebuild index e03cb62..3089784 100644 --- a/sys-kernel/preinit/preinit-0.4.ebuild +++ b/sys-kernel/preinit/preinit-0.5.ebuild @@ -29,7 +29,7 @@ src_install() { pkg_postinst() { device=$(sed -E -n 's/.*androidboot.hardware=(\S*).*/\1/p' /proc/cmdline) - if [ -d "/usr/lib/preinit/$device" ] ; then + if [ -d "/usr/lib/preinit/devices/$device" ] ; then eselect preinit set $device einfo "Preinit files selected for device $device. If this device is not" einfo "$device, choose the correct one with \`eselect preinit set \`."
[gentoo-commits] proj/android:master commit in: sys-kernel/preinit/
commit: 527a33c7ac46fe0c7fdae75ec962ac7cec846c6e Author: KireinaHoro jsteward moe> AuthorDate: Tue Jul 10 00:56:20 2018 + Commit: Benda XU gentoo org> CommitDate: Tue Jul 10 00:56:20 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=527a33c7 sys-kernel/preinit: bump to 0.9 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/preinit/Manifest | 4 ++-- sys-kernel/preinit/{preinit-0.8.ebuild => preinit-0.9.ebuild} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-kernel/preinit/Manifest b/sys-kernel/preinit/Manifest index 5eae2bc..c1118d9 100644 --- a/sys-kernel/preinit/Manifest +++ b/sys-kernel/preinit/Manifest @@ -1,3 +1,3 @@ -DIST preinit-0.8.tar.gz 14410 BLAKE2B 7084e3a692fa8507f6c4e94da758048f3223a4db9991ed8599e8755524dbea70681a9b1273c7c8e65c45092930fdb46810f1df81c5aded74d302e87a1a165345 SHA512 c6882cb0b4b6b0bc8ea64495f201df60599c2fbb5b6b03dd493b93879b0d047c99d82304dd4ea08d6c79ba986a65dbc571ae24066d9b6e35c568c77cd07a76ff -EBUILD preinit-0.8.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 +DIST preinit-0.9.tar.gz 14385 BLAKE2B a5c64d400bb50bbb571eda414c87147223bf8f7e3cb1821de1a1cd6ccdf0ba25979efd3365b8a2afd5e6ae09c18dfb8e6c44e07189c2368ac05e6a94025b3758 SHA512 03a22a4c811dfcb73f0232d4584bc3628f0f42ab3808f98a587562cd0560c7b755784ad3f950a7536726afa0a106c9b4bd6b0c79ca620b3aaf4db2ee249f +EBUILD preinit-0.9.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 MISC metadata.xml 400 BLAKE2B 798f691229a445bf0a1890fa693c5b145dffab28d4a3f9ddaa1d10e68158f16cee04229bd944d54c1a12c35eb7bf5ba5922e387910b0a930bb8a964f10af7a82 SHA512 05282919ebaf24720af3ead93629fef29e1c253680fefd4169bb823c570c55a612292636193c15cd940bb69de23524f7c521b1a4dbc0aa1ab640b1a3093c7c9a diff --git a/sys-kernel/preinit/preinit-0.8.ebuild b/sys-kernel/preinit/preinit-0.9.ebuild similarity index 100% rename from sys-kernel/preinit/preinit-0.8.ebuild rename to sys-kernel/preinit/preinit-0.9.ebuild
[gentoo-commits] proj/android:master commit in: sys-kernel/preinit/
commit: debc5a6f0f53f2e29ee5ee16d6ae46d92f29c484 Author: KireinaHoro jsteward moe> AuthorDate: Tue Jul 3 17:44:49 2018 + Commit: Benda XU gentoo org> CommitDate: Tue Jul 3 17:44:49 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=debc5a6f sys-kernel/preinit: bump to 0. install8 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/preinit/Manifest | 4 ++-- sys-kernel/preinit/{preinit-0.7.ebuild => preinit-0.8.ebuild} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-kernel/preinit/Manifest b/sys-kernel/preinit/Manifest index 99d10b5..5eae2bc 100644 --- a/sys-kernel/preinit/Manifest +++ b/sys-kernel/preinit/Manifest @@ -1,3 +1,3 @@ -DIST preinit-0.7.tar.gz 14414 BLAKE2B dc8f9358e8f21a216ff3742859fdbba8fe2056e6d5c1437c8962da62bf3ab2419fda41ae4aeff6cf403abfeb56ab229d1b7cf322de933e6a61242c9ac44afe0a SHA512 0384e6b005968eb1c9bf4d5750cd8292a33084aabfb9f1a7e71422c3d941faa249377ee1c561b56892302816fb5dd5c67c1f9605d7fa8e5deec4890fd4534a80 -EBUILD preinit-0.7.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 +DIST preinit-0.8.tar.gz 14410 BLAKE2B 7084e3a692fa8507f6c4e94da758048f3223a4db9991ed8599e8755524dbea70681a9b1273c7c8e65c45092930fdb46810f1df81c5aded74d302e87a1a165345 SHA512 c6882cb0b4b6b0bc8ea64495f201df60599c2fbb5b6b03dd493b93879b0d047c99d82304dd4ea08d6c79ba986a65dbc571ae24066d9b6e35c568c77cd07a76ff +EBUILD preinit-0.8.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 MISC metadata.xml 400 BLAKE2B 798f691229a445bf0a1890fa693c5b145dffab28d4a3f9ddaa1d10e68158f16cee04229bd944d54c1a12c35eb7bf5ba5922e387910b0a930bb8a964f10af7a82 SHA512 05282919ebaf24720af3ead93629fef29e1c253680fefd4169bb823c570c55a612292636193c15cd940bb69de23524f7c521b1a4dbc0aa1ab640b1a3093c7c9a diff --git a/sys-kernel/preinit/preinit-0.7.ebuild b/sys-kernel/preinit/preinit-0.8.ebuild similarity index 100% rename from sys-kernel/preinit/preinit-0.7.ebuild rename to sys-kernel/preinit/preinit-0.8.ebuild
[gentoo-commits] proj/android:master commit in: sys-kernel/angler-sources/
commit: 8c59d9e8bda05fc610e7da677e9ee6f1dcfea51b Author: KireinaHoro jsteward moe> AuthorDate: Mon Jul 2 17:49:59 2018 + Commit: Benda XU gentoo org> CommitDate: Mon Jul 2 17:49:59 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=8c59d9e8 sys-kernel/angler-sources: add proper ebuild Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/angler-sources/Manifest | 2 +- .../angler-sources-3.10.73..ebuild | 27 .../angler-sources/angler-sources-3.10.73.ebuild | 36 -- 3 files changed, 28 insertions(+), 37 deletions(-) diff --git a/sys-kernel/angler-sources/Manifest b/sys-kernel/angler-sources/Manifest index bf1a8ad..d7ebb6e 100644 --- a/sys-kernel/angler-sources/Manifest +++ b/sys-kernel/angler-sources/Manifest @@ -1,2 +1,2 @@ -EBUILD angler-sources-3.10.73.ebuild 832 BLAKE2B f748031bc2b0b3d91e8b8610b5d5d08823eaa006337d61c430b633782fd12b40de56e2300b2df47612414cb467e26b9236535e58ce0c994ef7fc6af63a6d0b62 SHA512 730b945ab9eb00f0ff464e213ce97db48fe40a5575935980663af97ed3989f104195e6dd816bf959d878e2ae056d75e284496d078cba17938c34837decc51701 +EBUILD angler-sources-3.10.73..ebuild 657 BLAKE2B 0735e3137cb8f96ce2b78642566aad133fc4c13593fbb849a36f67abcedd6bd4005f3ebc705069b4e43fae3b927757682754a86e5c1601b890a7f53000e830c8 SHA512 e4da60ea8bf469a8a4e17f33bf825c34240d908699a3f727abdf6c006c910ca069c40b1f062f7c60ec18fb23b894d7b19e45492f2016588e7934fd149e340ce1 MISC metadata.xml 302 BLAKE2B 2560cf9d3ac1d88ef673eae5f52a07e3dd311b1e76235d04cccb623dc1d902fb4b12bb2f26ba3dc6fcad206895f5663ad5579091b336b835f24a799d3fa3cec5 SHA512 e4568d468c1716d269db218e26c93716bdeae20ea9922782520ac75d0fff2f4395a5c076c2dfc05acaec1306823a0f3a32bed7c5a1082973e4232cbb65260e11 diff --git a/sys-kernel/angler-sources/angler-sources-3.10.73..ebuild b/sys-kernel/angler-sources/angler-sources-3.10.73..ebuild new file mode 100644 index 000..d4c0454 --- /dev/null +++ b/sys-kernel/angler-sources/angler-sources-3.10.73..ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +ETYPE="sources" +K_DEFCONFIG="sharkbait_angler_defconfig" +K_SECURITY_UNSUPPORTED=1 +EXTRAVERSION="-${PN}/-*" +inherit kernel-2 +detect_version +detect_arch + +inherit git-r3 +EGIT_REPO_URI="https://github.com/KireinaHoro/android_kernel_huawei_angler.git -> angler-linux.git" +EGIT_BRANCH="sharkbait" +EGIT_CHECKOUT_DIR="${WORKDIR}/linux-${PV}-angler" + +DESCRIPTION="Huawei Nexus 6P kernel sources" +HOMEPAGE="https://github.com/KireinaHoro/android_kernel_huawei_angler"; + +KEYWORDS="~arm64" + +src_unpack() { + git-r3_src_unpack + unpack_set_extraversion +} diff --git a/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild b/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild deleted file mode 100644 index 4d5a08a..000 --- a/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -UNIPATCH_STRICTORDER="yes" -K_NOUSENAME="yes" -K_NOSETEXTRAVERSION="yes" -K_NOUSEPR="yes" -K_SECURITY_UNSUPPORTED="1" -K_BASE_VER="3.10" -K_EXP_GENPATCHES_NOUSE="1" -K_FROM_GIT="yes" -ETYPE="sources" -CKV="${PVR/-r/-git}" - -# only use this if it's not an _rc/_pre release -[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}" -inherit git-r3 kernel-2 -detect_version - -DESCRIPTION="Device-specific kernel sources from AOSP project adapted for Gentoo" -HOMEPAGE="https://www.kernel.org"; -EGIT_REPO_URI="https://github.com/KireinaHoro/android_kernel_huawei_angler"; - -KEYWORDS="~arm64" -IUSE="" - -RDEPEND=" -sys-kernel/installkernel -" -DEPEND="${RDEPEND} - >=sys-devel/patch-2.7.5" - -pkg_postinst() { - postinst_sources -}
[gentoo-commits] proj/android:master commit in: sys-kernel/preinit/
commit: 2dc37d4510855e788c679a1970ad43d50f83f7d8 Author: KireinaHoro jsteward moe> AuthorDate: Tue Jul 3 00:31:28 2018 + Commit: Benda XU gentoo org> CommitDate: Tue Jul 3 00:31:28 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=2dc37d45 sys-kernel/preinit: bump to 0.7 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/preinit/Manifest | 4 ++-- sys-kernel/preinit/{preinit-0.6.ebuild => preinit-0.7.ebuild} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-kernel/preinit/Manifest b/sys-kernel/preinit/Manifest index 549cf94..99d10b5 100644 --- a/sys-kernel/preinit/Manifest +++ b/sys-kernel/preinit/Manifest @@ -1,3 +1,3 @@ -DIST preinit-0.6.tar.gz 14445 BLAKE2B be98edc4fdf9a617f4af9cc2a76d32992ad6978447c53f5ce525ba3080923eb692345b222e0024fbcb6ae4a6f19d47da89e318b881b2ea62ce7d569487ede16b SHA512 08edb2f205173fa0ce1f3c7f898c42bbd7e23c4ee932a40220c06a5cea1ce39100ab251bb0e2aaeb2edbfa042427a0dca4b9cd7556a87f087cc1e247c393a3e5 -EBUILD preinit-0.6.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 +DIST preinit-0.7.tar.gz 14414 BLAKE2B dc8f9358e8f21a216ff3742859fdbba8fe2056e6d5c1437c8962da62bf3ab2419fda41ae4aeff6cf403abfeb56ab229d1b7cf322de933e6a61242c9ac44afe0a SHA512 0384e6b005968eb1c9bf4d5750cd8292a33084aabfb9f1a7e71422c3d941faa249377ee1c561b56892302816fb5dd5c67c1f9605d7fa8e5deec4890fd4534a80 +EBUILD preinit-0.7.ebuild 1485 BLAKE2B d9a231908fa03c711418f113765ad6f28cadd318409cd01e2826e805ee48c593eed50ec978b034c105bdbc526fa36b3da38fbfbb89f79cabc851b9546dc152b7 SHA512 21ebd91bb0983c3237f058a30bebb923b2c1a218c6a978ba04ac9af7fd2e4f4e15f77715b7f3cf7c3544c79735b6dc8679d2c5a7dc91eecb06bf2a0c1a49e443 MISC metadata.xml 400 BLAKE2B 798f691229a445bf0a1890fa693c5b145dffab28d4a3f9ddaa1d10e68158f16cee04229bd944d54c1a12c35eb7bf5ba5922e387910b0a930bb8a964f10af7a82 SHA512 05282919ebaf24720af3ead93629fef29e1c253680fefd4169bb823c570c55a612292636193c15cd940bb69de23524f7c521b1a4dbc0aa1ab640b1a3093c7c9a diff --git a/sys-kernel/preinit/preinit-0.6.ebuild b/sys-kernel/preinit/preinit-0.7.ebuild similarity index 100% rename from sys-kernel/preinit/preinit-0.6.ebuild rename to sys-kernel/preinit/preinit-0.7.ebuild
[gentoo-commits] proj/android:master commit in: sys-kernel/installkernel/, sys-kernel/preinit/, sys-kernel/angler-sources/
commit: 1d8a648b254c175eb452cd43793547dc5cabb2bd Author: KireinaHoro jsteward moe> AuthorDate: Mon Jul 2 15:57:45 2018 + Commit: Benda XU gentoo org> CommitDate: Mon Jul 2 16:13:52 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=1d8a648b sys-kernel: add Android source and utilities Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/angler-sources/Manifest | 3 ++ .../angler-sources/angler-sources-3.10.73.ebuild | 36 sys-kernel/angler-sources/metadata.xml | 10 + sys-kernel/installkernel/Manifest | 3 ++ sys-kernel/installkernel/installkernel-0.1.ebuild | 25 +++ sys-kernel/installkernel/metadata.xml | 11 + sys-kernel/preinit/Manifest| 3 ++ sys-kernel/preinit/metadata.xml| 10 + sys-kernel/preinit/preinit-0.3.ebuild | 48 ++ 9 files changed, 149 insertions(+) diff --git a/sys-kernel/angler-sources/Manifest b/sys-kernel/angler-sources/Manifest new file mode 100644 index 000..07ce5d8 --- /dev/null +++ b/sys-kernel/angler-sources/Manifest @@ -0,0 +1,3 @@ +DIST android_kernel_huawei_angler 114349 BLAKE2B df41569fc5ad445121615c5ee880c24797fc87ede6afbf27b9b3a20bbb9684c543b93391c577498371a8cfc29b4f4acc8767c07374e2d5ea582baebebd016018 SHA512 a2ec68f067ce3374ebc2a5634205b8dd9c269f8b441265b5b885f748578b550ed04f3d5f5e31dc605091fd86d95dfd2b8cc6daf85ad7867291fe1c0573102aef +EBUILD angler-sources-3.10.73.ebuild 819 BLAKE2B 5d18fbb86b4cac611afebcda790de28e589737bc58773f32533730953c7865159b944888197483c8d5050cf5c8ab9d7ae35fa13012bfe76877a6a721ad36178b SHA512 7ea5b16dea5224e8948101b1b55222bb38cb51a967beabaf0599abea8ce5224ec526e838bc88d66d936bd61871f989c7d68a7361c814652dff168c41136c9373 +MISC metadata.xml 302 BLAKE2B 2560cf9d3ac1d88ef673eae5f52a07e3dd311b1e76235d04cccb623dc1d902fb4b12bb2f26ba3dc6fcad206895f5663ad5579091b336b835f24a799d3fa3cec5 SHA512 e4568d468c1716d269db218e26c93716bdeae20ea9922782520ac75d0fff2f4395a5c076c2dfc05acaec1306823a0f3a32bed7c5a1082973e4232cbb65260e11 diff --git a/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild b/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild new file mode 100644 index 000..9a6d339 --- /dev/null +++ b/sys-kernel/angler-sources/angler-sources-3.10.73.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="3.10" +K_EXP_GENPATCHES_NOUSE="1" +K_FROM_GIT="yes" +ETYPE="sources" +CKV="${PVR/-r/-git}" + +# only use this if it's not an _rc/_pre release +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}" +inherit kernel-2 +detect_version + +DESCRIPTION="Device-specific kernel sources from AOSP project adapted for Gentoo" +HOMEPAGE="https://www.kernel.org"; +SRC_URI="https://github.com/KireinaHoro/android_kernel_huawei_angler"; + +KEYWORDS="~arm64" +IUSE="" + +RDEPEND=" +sys-kernel/installkernel +" +DEPEND="${RDEPEND} + >=sys-devel/patch-2.7.5" + +pkg_postinst() { + postinst_sources +} diff --git a/sys-kernel/angler-sources/metadata.xml b/sys-kernel/angler-sources/metadata.xml new file mode 100644 index 000..5bfd953 --- /dev/null +++ b/sys-kernel/angler-sources/metadata.xml @@ -0,0 +1,10 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + +i...@jsteward.moe + + +Kernel sources for Huawei Nexus 6P (angler). + + diff --git a/sys-kernel/installkernel/Manifest b/sys-kernel/installkernel/Manifest new file mode 100644 index 000..79fc4ee --- /dev/null +++ b/sys-kernel/installkernel/Manifest @@ -0,0 +1,3 @@ +DIST installkernel-0.1.tar.gz 13384 BLAKE2B 9fe5e7a35de3de39b0ccbcbe4b7107b17c47edbf15fde4ee60a93a0e32ac0a415032360b98220ab04f1ea05921c60a1d52ee331f4f972450850e3fb0dc4129b1 SHA512 ea7471f62308ac8bc5ccf0a4e2abc45815d6fe878dc34e33630e123ada988863ec669445f0414eb3ea8556b059aa8081c68a7c915da9526b3120362673d5c1df +EBUILD installkernel-0.1.ebuild 513 BLAKE2B 2eddbd3838bf7941f448978ce83a61d4ae5b04ca490bcb5f1b7a3f90430740bdfe11b663e3e2b78e8761a688b9a217c00aa6d9d160c2a627c0107570a18bb0ba SHA512 cc00d34dce21b21de36152bd7273dbd324153de099c7a8992b5eefa135e06a860e4e9351ebb08da4a037f8c8b1ff6c2e8a1881f8f2523afe31f79cb0b5821690 +MISC metadata.xml 367 BLAKE2B b5fb347e1de8714222b958157c8e7465da685d55750d17fa8c9f3d5d73b83d336a0580eb911796c93b9994df9bb1e5262323e17f71ae1f3b81ea5442afff646a SHA512 0bce62c7ced0b6a3e724c6f698fe8192c7ccb51bda37a1289185138ed6ae9da413cfc14d939e9a8b95e1b59b8b352d1f866d3a48b4aaa2b7c0d466ccb8b5b85d diff --git a/sys-kernel/installkernel/installkernel-0.1.ebuild b/sys-kernel/installkernel/installkernel-0.1.ebuild new file mode 100644 index 000..cac44a6 --- /dev/null +++ b/sys-kernel/installkernel/installkernel-0.1.ebuild @@ -0,0 +1,25 @@ +# Co
[gentoo-commits] proj/android:master commit in: sys-kernel/installkernel/
commit: e25694694f45daca9e1d16decdbbf17b25449de1 Author: KireinaHoro jsteward moe> AuthorDate: Tue Jul 3 00:40:38 2018 + Commit: Benda XU gentoo org> CommitDate: Tue Jul 3 00:40:38 2018 + URL:https://gitweb.gentoo.org/proj/android.git/commit/?id=e2569469 sys-kernel/installkernel: bump to 0.2 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-kernel/installkernel/Manifest| 4 ++-- .../{installkernel-0.1-r1.ebuild => installkernel-0.2.ebuild}| 9 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/sys-kernel/installkernel/Manifest b/sys-kernel/installkernel/Manifest index fb7c7f4..dab0cdb 100644 --- a/sys-kernel/installkernel/Manifest +++ b/sys-kernel/installkernel/Manifest @@ -1,3 +1,3 @@ -DIST installkernel-0.1.tar.gz 13384 BLAKE2B 9fe5e7a35de3de39b0ccbcbe4b7107b17c47edbf15fde4ee60a93a0e32ac0a415032360b98220ab04f1ea05921c60a1d52ee331f4f972450850e3fb0dc4129b1 SHA512 ea7471f62308ac8bc5ccf0a4e2abc45815d6fe878dc34e33630e123ada988863ec669445f0414eb3ea8556b059aa8081c68a7c915da9526b3120362673d5c1df -EBUILD installkernel-0.1-r1.ebuild 510 BLAKE2B 77aa761760f6395db0b3315cc5bdfbb8595556e3ebe118b0714e2e1c46e93148f44c546ea1890ef9236c2cad1f780bc70dcbd23dbffa2671621213fec0f94794 SHA512 e25a25832a01ef719918f14a01232d12bf086ccb38c99f1f6d0fec39a3f6bcdb2965e5f427d308f4f76f2bb78c530bf1bfa094a1a3c61dcfaaa15d1346adf3c7 +DIST installkernel-0.2.tar.gz 13434 BLAKE2B 083c82c2a10bcc88cc612a861f6d4db103920d8cacf22a140e8afa5ffa3db4abb7140c4b530068a49d29d68a27923e68c2147743c2d950ab4e22e3da00c0fe2e SHA512 27286faf117ff5cf70073375140f60fb77b2a6f7fde7cf9b0dc6a95df728df1c9b74a2c45c5661709b32d087ccc1516ee6c3445285456e70c07716b8b582b44a +EBUILD installkernel-0.2.ebuild 901 BLAKE2B b62a8c4328a53ad11e0fdb396006668fedad025591a8f3f64b50dc538435cd6775f2330d4ca4b6e0e340b4ebfae52077187dc0517a867386f96f0e1e2c4eec8c SHA512 5897a66f2c9acd9b266a146765f2bfaa3069720f31a81bdf38d73b5094e8c9755b15855510c40f27f217b1437e9fc2b00514da5c062ea69b1133b96d313c5e03 MISC metadata.xml 367 BLAKE2B b5fb347e1de8714222b958157c8e7465da685d55750d17fa8c9f3d5d73b83d336a0580eb911796c93b9994df9bb1e5262323e17f71ae1f3b81ea5442afff646a SHA512 0bce62c7ced0b6a3e724c6f698fe8192c7ccb51bda37a1289185138ed6ae9da413cfc14d939e9a8b95e1b59b8b352d1f866d3a48b4aaa2b7c0d466ccb8b5b85d diff --git a/sys-kernel/installkernel/installkernel-0.1-r1.ebuild b/sys-kernel/installkernel/installkernel-0.2.ebuild similarity index 56% rename from sys-kernel/installkernel/installkernel-0.1-r1.ebuild rename to sys-kernel/installkernel/installkernel-0.2.ebuild index 28ef71d..8f9227d 100644 --- a/sys-kernel/installkernel/installkernel-0.1-r1.ebuild +++ b/sys-kernel/installkernel/installkernel-0.2.ebuild @@ -23,3 +23,12 @@ src_install() { into / dobin installkernel } + +pkg_postinst() { + if [ -L "/root/bin/installkernel" ]; then + einfo "Installkernel is successfully installed. However, the paths that kernel source's" + einfo "install.sh tries to call is /root/bin/installkernel and /sbin/installkernel. Please" + einfo "run the following as root to symlink /bin/installkernel:" + einfo "mkdir -p /root/bin && ln -s /bin/installkernel /root/bin/" + fi +}
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 66f1429adaa45b84a8432a376ff21e07227fd48c Author: Marty E. Plummer startmail com> AuthorDate: Mon Jul 9 01:13:01 2018 + Commit: Matt Turner gentoo org> CommitDate: Tue Jul 10 01:52:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66f1429a thirdpartymirrors: add freedesktop mirror Another fairly common location for software to come from. profiles/thirdpartymirrors | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/thirdpartymirrors b/profiles/thirdpartymirrors index f1675e8de79..3fc428b4c23 100644 --- a/profiles/thirdpartymirrors +++ b/profiles/thirdpartymirrors @@ -6,6 +6,7 @@ cranhttp://cran.r-project.org http://cran.us.r-project.org debian http://deb.debian.org/debian/ http://ftp.au.debian.org/debian/ http://ftp.at.debian.org/debian/ http://ftp.by.debian.org/debian/ http://ftp.be.debian.org/debian/ http://ftp.br.debian.org/debian/ http://ftp.bg.debian.org/debian/ http://ftp.ca.debian.org/debian/ http://ftp2.cn.debian.org/debian/ http://ftp.cn.debian.org/debian/ http://ftp.hr.debian.org/debian/ http://ftp.cz.debian.org/debian/ http://ftp.dk.debian.org/debian/ http://ftp.sv.debian.org/debian/ http://ftp.ee.debian.org/debian/ http://ftp.fi.debian.org/debian/ http://ftp.fr.debian.org/debian/ http://ftp2.de.debian.org/debian/ http://ftp.de.debian.org/debian/ http://ftp.gr.debian.org/debian/ http://ftp.hu.debian.org/debian/ http://ftp.is.debian.org/debian/ http://ftp.ie.debian.org/debian/ http://ftp.it.debian.org/debian/ http://ftp.jp.debian.org/debian/ http://ftp.kr.debian.org/debian/ http://ftp.lt.debian.org/debian/ http://ftp.mx.debian.org/debian/ http://ftp.md.debian.org/debian/ http://ftp.nl.debian.org/debian/ http://ftp.nc.debian.org/debian/ http://ftp.nz.debian.org/debian/ http://ftp.no.debian.org/debian/ http://ftp.pl.debian.org/debian/ http://ftp.pt.debian.org/debian/ http://ftp.ro.debian.org/debian/ http://ftp.ru.debian.org/debian/ http://ftp.sg.debian.org/debian/ http://ftp.sk.debian.org/debian/ http://ftp.si.debian.org/debian/ http://ftp.es.debian.org/debian/ http://ftp.se.debian.org/debian/ http://ftp.ch.debian.org/debian/ http://ftp.tw.debian.org/debian/ http://ftp.tr.debian.org/debian/ http://ftp.ua.debian.org/debian/ http://ftp.uk.debian.org/debian/ http://ftp.us.debian.org/debian/ fedora-dev http://archives.fedoraproject.org/pub/archive/fedora/linux/ freebsdhttps://download.freebsd.org/ftp/ +freedesktophttps://www.freedesktop.org/software/ gentoo https://gentoo.osuosl.org/distfiles https://ftp.halifax.rwth-aachen.de/gentoo/distfiles http://gentoo-distfiles.mirrors.tds.net/distfiles http://gentoo.ussg.indiana.edu/distfiles gimp https://ftp.fau.de/gimp/gimp/ ftp://ftp.fau.de/gimp/gimp/ http://artfiles.org/gimp.org/pub/gimp/ http://www.mirrorservice.org/sites/ftp.gimp.org/pub/gimp/ ftp://ftp.mirrorservice.org/sites/ftp.gimp.org/pub/gimp/ http://pirbot.com/mirrors/gimp/gimp/ github https://github.com/downloads
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 70c42cec6e1c3ea31e88f5350ac810a87b9ae640 Author: Marty E. Plummer startmail com> AuthorDate: Mon Jul 9 00:02:11 2018 + Commit: Matt Turner gentoo org> CommitDate: Tue Jul 10 01:52:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70c42cec thirdpartymirrors: add xorg mirror Some 300 packages pull source from this location, its high time we have a good shorthand for it in ebuilds. profiles/thirdpartymirrors | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/thirdpartymirrors b/profiles/thirdpartymirrors index 54236e65458..f1675e8de79 100644 --- a/profiles/thirdpartymirrors +++ b/profiles/thirdpartymirrors @@ -41,3 +41,4 @@ ubuntu http://mirror.internode.on.net/pub/ubuntu/ubuntu/ http://mirror.tcc.wa.e vdr-developerorg http://projects.vdr-developer.org/attachments/download vdrfiles http://gentoo.fh-luh.de/files xfce http://archive.xfce.org +xorg https://www.x.org/releases/individual
[gentoo-commits] proj/openrc:master commit in: sh/, /
commit: 2eea73bfd5ce2f9993d52293fe7d25c0c804d592 Author: William Hubbs gmail com> AuthorDate: Mon Jul 9 23:02:54 2018 + Commit: William Hubbs gentoo org> CommitDate: Tue Jul 10 00:44:40 2018 + URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=2eea73bf rc-functions.sh: Remove addon support This is an old relic from Gentoo baselayout-1.x which should not be used any longer. NEWS.md| 7 ++ sh/.gitignore | 1 - sh/Makefile| 2 +- sh/{rc-functions.sh.in => rc-functions.sh} | 36 -- 4 files changed, 8 insertions(+), 38 deletions(-) diff --git a/NEWS.md b/NEWS.md index 13c62d6e..e9605031 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,6 +4,13 @@ OpenRC NEWS This file will contain a list of notable changes for each release. Note the information in this file is in reverse order. +## OpenRC 0.39 + +This version removes the support for addons. +The only place I know that this was used was Gentoo Baselayout 1.x, so +it shouldn't affect anyone since baselayout-1 has been dead for a few +years. + ## OpenRC 0.37 start-stop-daemon now supports logging stdout and stderr of daemons to diff --git a/sh/.gitignore b/sh/.gitignore index 8a007103..186a409c 100644 --- a/sh/.gitignore +++ b/sh/.gitignore @@ -1,6 +1,5 @@ functions.sh gendepends.sh -rc-functions.sh openrc-run.sh cgroup-release-agent.sh init.sh diff --git a/sh/Makefile b/sh/Makefile index 4d7148fb..e5029bcd 100644 --- a/sh/Makefile +++ b/sh/Makefile @@ -1,6 +1,6 @@ DIR= ${LIBEXECDIR}/sh SRCS= init.sh.in functions.sh.in gendepends.sh.in \ - openrc-run.sh.in rc-functions.sh.in ${SRCS-${OS}} + openrc-run.sh.in ${SRCS-${OS}} INC= rc-mount.sh functions.sh rc-functions.sh runit.sh s6.sh \ start-stop-daemon.sh supervise-daemon.sh BIN= gendepends.sh init.sh openrc-run.sh ${BIN-${OS}} diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh similarity index 83% rename from sh/rc-functions.sh.in rename to sh/rc-functions.sh index d6336a18..d77c5dd3 100644 --- a/sh/rc-functions.sh.in +++ b/sh/rc-functions.sh @@ -2,42 +2,6 @@ # Copyright (c) 2007-2009 Roy Marples # Released under the 2-clause BSD license. -has_addon() -{ - [ -e /@LIB@/rc/addons/"$1".sh -o -e /@LIB@/rcscripts/addons/"$1".sh ] -} - -_addon_warn() -{ - eindent - ewarn "$RC_SVCNAME uses addon code which is deprecated" - ewarn "and may not be available in the future." - eoutdent -} - -import_addon() -{ - if [ -e /@LIB@/rc/addons/"$1".sh ]; then - _addon_warn - . /@LIB@/rc/addons/"$1".sh - elif [ -e /@LIB@/rcscripts/addons/"$1".sh ]; then - _addon_warn - . /@LIB@/rcscripts/addons/"$1".sh - else - return 1 - fi -} - -start_addon() -{ - ( import_addon "$1-start" ) -} - -stop_addon() -{ - ( import_addon "$1-stop" ) -} - net_fs_list="afs ceph cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs nfs nfs4 ocfs2 shfs smbfs" is_net_fs()
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/dwarf-fortress/
commit: 3e46d29e8dcf02894fc54868ad537cc27ca6cc64 Author: Chris Reffett gentoo org> AuthorDate: Mon Jul 9 23:59:04 2018 + Commit: Chris Reffett gentoo org> CommitDate: Tue Jul 10 00:00:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e46d29e games-roguelike/dwarf-fortress: Version bump Package-Manager: Portage-2.3.40, Repoman-2.3.9 games-roguelike/dwarf-fortress/Manifest | 4 ++-- .../{dwarf-fortress-0.44.08.ebuild => dwarf-fortress-0.44.12.ebuild} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/games-roguelike/dwarf-fortress/Manifest b/games-roguelike/dwarf-fortress/Manifest index 4eb6d1418b9..00459266327 100644 --- a/games-roguelike/dwarf-fortress/Manifest +++ b/games-roguelike/dwarf-fortress/Manifest @@ -1,4 +1,4 @@ DIST df_43_05_linux.tar.bz2 11580594 BLAKE2B 7157f8ed5f8798a533d992811c804515acc8abb3bb84b25af6905fd6b2338e95879e318bec0dade18f1eba1421d17a781d1da8b49c719988d2cb6d7046b0c3be SHA512 502e6bac0bdd5586fb6b4e1117caf144a0336a7eed3ed9350ec316e4a286e309a15e0738517c0dd7d32f182984c501c7a8756e942d3dde9fb87f72b153f38e7a DIST df_43_05_linux32.tar.bz2 12158550 BLAKE2B 4c1f5ad834aa0a2b6438b8aaf0b0ad6cfc60656f58845a274ac3d8ad7e09182d7263e3a495d1bff0b1fb5499097569216fac0bc87cff95fc6a85e3211acc297d SHA512 d0446ddb5c37ee45ade36b18b815595e8d7bfd9749af4ecd2f25b45859d797a9da70f2344e2c58544feafc7df06882ade8a10534c37754359747c0d37f084b7c -DIST df_44_08_linux.tar.bz2 11996354 BLAKE2B 64a41693fba51526947563a1228eab4435897afe887b67fc43bedf93bca8ef762f62ec6b81480b6d5240cbdd0e254a753f4f34fc5ac8910762bee921200327c2 SHA512 e1aa78b0e10bec815d6df6c61ec8cea77950577f03f367e3c04cda003f318fc5ea8d7cc0c9e12e754d5adf9394f3afef48bed54524b771a8df1ae30efaf24eaf -DIST df_44_08_linux32.tar.bz2 12614451 BLAKE2B 39ecbc5fa8f4a36a1e682a241b43a18b4110adbaf41572889d79b7fc047c9a4f3270e6434410a5e36bde34bf709bd0c6852370a42601355c23848cb75d97a6ec SHA512 876a7fc3909b8c3643fdf6c061265dae7bd9cef9cddebea3d0bc2ef5163c8c948641696f0f895b0fab794eeda07d27d89f1f8447be8b4eaa52bdb7f214ae51ce +DIST df_44_12_linux.tar.bz2 12081683 BLAKE2B 2410e8da6af6a8ced45d3e95dc06e2d0f4e31dbdcd6b8d9945a761d2278532bb24c1095418aa22639eedded256b3d485fa128984e6282a491d4dc7bd9af8671b SHA512 03cd7f6800d44873b573cc5bffb12c7a246c3aba0ee8535001372df689a5179dc02592670fd87f2fd5de82421605f34152f6241307c8f7b9fb4d7b8704aed70c +DIST df_44_12_linux32.tar.bz2 12686340 BLAKE2B bf1e1370930d91d2c9e72d3366bc79706092d1505853eb63c6160fea39822551d3276958ac6d2916b8f7825be0c054a037219210f0c2c18a731065a2dd1bb842 SHA512 5cd352acf310592c7e30442205b7fe590f421c5e3562959dcfd32a17d3d562347c2b32e3bc5835637c5550ce2c696c17b6dc910ee4cf766be07af306e83537db diff --git a/games-roguelike/dwarf-fortress/dwarf-fortress-0.44.08.ebuild b/games-roguelike/dwarf-fortress/dwarf-fortress-0.44.12.ebuild similarity index 100% rename from games-roguelike/dwarf-fortress/dwarf-fortress-0.44.08.ebuild rename to games-roguelike/dwarf-fortress/dwarf-fortress-0.44.12.ebuild
[gentoo-commits] repo/gentoo:master commit in: dev-python/fixtures/
commit: 0ff90ca2ff0de1ed42caa711e34144636c2e8be3 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 23:29:37 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 23:29:37 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ff90ca2 dev-python/fixtures: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/fixtures/fixtures-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/fixtures/fixtures-3.0.0.ebuild b/dev-python/fixtures/fixtures-3.0.0.ebuild index 2944bd6d13f..97eca1375e6 100644 --- a/dev-python/fixtures/fixtures-3.0.0.ebuild +++ b/dev-python/fixtures/fixtures-3.0.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="|| ( Apache-2.0 BSD )" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~amd64-fbsd" +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" IUSE="test" # nose not listed but provides coverage output of tests
[gentoo-commits] repo/gentoo:master commit in: dev-python/webcolors/
commit: d151b4d14837be3bf53afbd1cb80c7a2d8aaa2e7 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 23:28:34 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 23:28:34 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d151b4d1 dev-python/webcolors: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/webcolors/webcolors-1.5.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/webcolors/webcolors-1.5.ebuild b/dev-python/webcolors/webcolors-1.5.ebuild index db9046a829c..9eb52a63b4c 100644 --- a/dev-python/webcolors/webcolors-1.5.ebuild +++ b/dev-python/webcolors/webcolors-1.5.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 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="BSD" -KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" IUSE="test" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-python/enum34/
commit: 9d45e915359b206a94f43defea64138d0961fae7 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 23:27:46 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 23:27:46 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d45e915 dev-python/enum34: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/enum34/enum34-1.1.6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/enum34/enum34-1.1.6.ebuild b/dev-python/enum34/enum34-1.1.6.ebuild index 79fff14571a..e8abb317f92 100644 --- a/dev-python/enum34/enum34-1.1.6.ebuild +++ b/dev-python/enum34/enum34-1.1.6.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" IUSE="doc" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
[gentoo-commits] repo/gentoo:master commit in: dev-python/testresources/
commit: 85e67c7376adef1c37f9f4d3a1e5364e2ca25fd7 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 23:30:24 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 23:30:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85e67c73 dev-python/testresources: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/testresources/testresources-2.0.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/testresources/testresources-2.0.1.ebuild b/dev-python/testresources/testresources-2.0.1.ebuild index 04723145fe6..b541daf8cc7 100644 --- a/dev-python/testresources/testresources-2.0.1.ebuild +++ b/dev-python/testresources/testresources-2.0.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" IUSE="test" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/
commit: 4f0766101a11dbc99f2b597d07459301af6e6f15 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 23:25:39 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 23:25:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f076610 dev-libs/libressl: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libressl/libressl-2.6.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libressl/libressl-2.6.5.ebuild b/dev-libs/libressl/libressl-2.6.5.ebuild index 4df602fa966..c8e510fa235 100644 --- a/dev-libs/libressl/libressl-2.6.5.ebuild +++ b/dev-libs/libressl/libressl-2.6.5.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 ~s390 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: dev-util/gdbus-codegen/
commit: 5437705df945438d4367f329a4d4635f361b91be Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:50:52 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:50:52 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5437705d dev-util/gdbus-codegen: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild b/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild index 11a5b9640c4..54907fc09e8 100644 --- a/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild +++ b/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://www.gtk.org/"; LICENSE="LGPL-2+" SLOT="0" -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 ~x64-macos ~x86-macos" +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 ~x64-macos ~x86-macos" IUSE="" RDEPEND="${PYTHON_DEPS}"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Convert-ASN1/
commit: 3aa0f25850f7239a5bfd8bf4b924b0be0a7f7096 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:42:12 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:42:12 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aa0f258 dev-perl/Convert-ASN1: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Convert-ASN1/Convert-ASN1-0.270.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0.ebuild b/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0.ebuild index 4d5d0099daf..4b5d1444cee 100644 --- a/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0.ebuild +++ b/dev-perl/Convert-ASN1/Convert-ASN1-0.270.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=5 @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Standard en/decode of ASN.1 structures" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="test" RDEPEND=""
[gentoo-commits] repo/gentoo:master commit in: dev-perl/LWP-Protocol-https/
commit: 1a866fd9e37463f1309716c64dfd385753fb9d0d Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:41:27 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:41:27 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a866fd9 dev-perl/LWP-Protocol-https: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/LWP-Protocol-https/LWP-Protocol-https-6.60.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/LWP-Protocol-https/LWP-Protocol-https-6.60.0.ebuild b/dev-perl/LWP-Protocol-https/LWP-Protocol-https-6.60.0.ebuild index 2e7af81eb13..44caf92ca7c 100644 --- a/dev-perl/LWP-Protocol-https/LWP-Protocol-https-6.60.0.ebuild +++ b/dev-perl/LWP-Protocol-https/LWP-Protocol-https-6.60.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=5 @@ -11,7 +11,7 @@ DESCRIPTION="Provide https support for LWP::UserAgent" SLOT="0" IUSE="" -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 ~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 ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" app-misc/ca-certificates
[gentoo-commits] repo/gentoo:master commit in: dev-perl/CPAN-Meta-Check/
commit: de3210c52beee52741609842c1a4d2961880c346 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:37:19 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:37:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3210c5 dev-perl/CPAN-Meta-Check: mark ~s390 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.14.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.14.0.ebuild b/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.14.0.ebuild index 0211a015b26..597949d0cdf 100644 --- a/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.14.0.ebuild +++ b/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.14.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Verify requirements in a CPAN::Meta object" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="test" # CPAN::Meta::Prereqs -> perl-CPAN-Meta
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-Implementation/
commit: 9a00ba39c548203d31a57a6d2debe42948bdc658 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:35:20 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:35:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a00ba39 dev-perl/Module-Implementation: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Module-Implementation/Module-Implementation-0.90.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Module-Implementation/Module-Implementation-0.90.0.ebuild b/dev-perl/Module-Implementation/Module-Implementation-0.90.0.ebuild index 1198357dcb4..37563d695ae 100644 --- a/dev-perl/Module-Implementation/Module-Implementation-0.90.0.ebuild +++ b/dev-perl/Module-Implementation/Module-Implementation-0.90.0.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Loads one of several alternate underlying implementations for a mod LICENSE="Artistic-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 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~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 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-HTTP/
commit: fdb3634071c864bed1f1a32d6b411f2b96db03e9 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:38:56 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:38:56 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdb36340 dev-perl/Net-HTTP: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Net-HTTP/Net-HTTP-6.90.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/Net-HTTP/Net-HTTP-6.90.0.ebuild b/dev-perl/Net-HTTP/Net-HTTP-6.90.0.ebuild index a917229f7c7..f68939e1322 100644 --- a/dev-perl/Net-HTTP/Net-HTTP-6.90.0.ebuild +++ b/dev-perl/Net-HTTP/Net-HTTP-6.90.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="Low-level HTTP connection (client)" 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 ~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 ~ppc-aix ~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="minimal" PATCHES=( "${FILESDIR}/networktest.patch" )
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-RequiresInternet/
commit: abf94c9a66311f4bf400ff7c9d315658abbdb008 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:33:35 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:33:35 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abf94c9a dev-perl/Test-RequiresInternet: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild b/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild index 3a034279576..1cf20cbf055 100644 --- a/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild +++ b/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Easily test network connectivity" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 sparc x86 ~ppc-aix ~amd64-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 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/WWW-RobotRules/
commit: 7a02c5f201229967f8bab1da18646756a75b8c53 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:39:32 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:39:32 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a02c5f2 dev-perl/WWW-RobotRules: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/WWW-RobotRules/WWW-RobotRules-6.20.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/WWW-RobotRules/WWW-RobotRules-6.20.0.ebuild b/dev-perl/WWW-RobotRules/WWW-RobotRules-6.20.0.ebuild index 4f2e6a557c8..096f9f94314 100644 --- a/dev-perl/WWW-RobotRules/WWW-RobotRules-6.20.0.ebuild +++ b/dev-perl/WWW-RobotRules/WWW-RobotRules-6.20.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=5 @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Parse /robots.txt file" 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 ~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 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" !
[gentoo-commits] repo/gentoo:master commit in: dev-perl/List-SomeUtils-XS/
commit: 47a9dd41813292af331dffcc71c75c21f2f12eb6 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:34:26 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:34:26 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a9dd41 dev-perl/List-SomeUtils-XS: mark ~s390 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/List-SomeUtils-XS/List-SomeUtils-XS-0.550.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/List-SomeUtils-XS/List-SomeUtils-XS-0.550.0.ebuild b/dev-perl/List-SomeUtils-XS/List-SomeUtils-XS-0.550.0.ebuild index 5adc4ff83b6..c9d472f34ea 100644 --- a/dev-perl/List-SomeUtils-XS/List-SomeUtils-XS-0.550.0.ebuild +++ b/dev-perl/List-SomeUtils-XS/List-SomeUtils-XS-0.550.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="XS implementation for List::SomeUtils" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Types-Serialiser/
commit: 1677e408d018acb70b229cd97f930cc7081f22a1 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:31:23 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:31:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1677e408 dev-perl/Types-Serialiser: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Types-Serialiser/Types-Serialiser-1.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Types-Serialiser/Types-Serialiser-1.0.0-r1.ebuild b/dev-perl/Types-Serialiser/Types-Serialiser-1.0.0-r1.ebuild index 02ab8cfe883..08dec4ee9da 100644 --- a/dev-perl/Types-Serialiser/Types-Serialiser-1.0.0-r1.ebuild +++ b/dev-perl/Types-Serialiser/Types-Serialiser-1.0.0-r1.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="simple data types for common serialisation formats" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x64-macos ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x64-macos ~x86-solaris" IUSE="" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/ExtUtils-InstallPaths/
commit: d8345554718224af3e4a5bdbc947ec873966fe87 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:36:07 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:36:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8345554 dev-perl/ExtUtils-InstallPaths: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild b/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild index 4521d08e56f..b983cabe514 100644 --- a/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild +++ b/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.11.0.ebuild @@ -8,7 +8,7 @@ inherit perl-module DESCRIPTION="Build.PL install path logic made easy" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd" +KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/HTTP-Negotiate/
commit: 76c005ab04417ac186961b824c20042d8efb1e9e Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:40:48 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:40:48 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c005ab dev-perl/HTTP-Negotiate: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/HTTP-Negotiate/HTTP-Negotiate-6.10.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/HTTP-Negotiate/HTTP-Negotiate-6.10.0-r1.ebuild b/dev-perl/HTTP-Negotiate/HTTP-Negotiate-6.10.0-r1.ebuild index 5f2068674db..412e48abe01 100644 --- a/dev-perl/HTTP-Negotiate/HTTP-Negotiate-6.10.0-r1.ebuild +++ b/dev-perl/HTTP-Negotiate/HTTP-Negotiate-6.10.0-r1.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="HTTP content negotiation" 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 ~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 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/common-sense/
commit: ad0df89c86608528a3286662eda3704d8acbc17e Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:32:14 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:32:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad0df89c dev-perl/common-sense: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/common-sense/common-sense-3.740.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/common-sense/common-sense-3.740.0-r1.ebuild b/dev-perl/common-sense/common-sense-3.740.0-r1.ebuild index 061238bd16c..d92502f9e36 100644 --- a/dev-perl/common-sense/common-sense-3.740.0-r1.ebuild +++ b/dev-perl/common-sense/common-sense-3.740.0-r1.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Save a tree AND a kitten, use common::sense!" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x64-macos ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x64-macos ~x86-solaris" IUSE="" DEPEND="virtual/perl-ExtUtils-MakeMaker"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Canary-Stability/
commit: 452846e0c8186ee639b121162ee602a17b19c3f9 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:32:51 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:32:51 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=452846e0 dev-perl/Canary-Stability: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild b/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild index 3d1868428a6..341b3570676 100644 --- a/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild +++ b/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Canary to check perl compatibility for schmorp's modules" SLOT="0" -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="" RDEPEND=""
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Capture-Tiny/
commit: a2bf9eb8391936145bdeecf680cc82bc79b8327e Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:38:08 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:38:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2bf9eb8 dev-perl/Capture-Tiny: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild b/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild index e93a9e901cf..9274101d3ca 100644 --- a/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild +++ b/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="Capture STDOUT and STDERR from Perl, XS or external programs" LICENSE="Apache-2.0" 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 ~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 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-perl/HTTP-Cookies/
commit: 20610e70a334e8b9b5046dc0e43d6a7de10c1a1e Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:40:11 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:40:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20610e70 dev-perl/HTTP-Cookies: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/HTTP-Cookies/HTTP-Cookies-6.40.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/HTTP-Cookies/HTTP-Cookies-6.40.0.ebuild b/dev-perl/HTTP-Cookies/HTTP-Cookies-6.40.0.ebuild index e611ab9c01a..96220ace83e 100644 --- a/dev-perl/HTTP-Cookies/HTTP-Cookies-6.40.0.ebuild +++ b/dev-perl/HTTP-Cookies/HTTP-Cookies-6.40.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Storage of cookies" 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 ~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 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: gnome-extra/yelp-xsl/
commit: 652ec617851673be4735640f07710b1f82a2faf7 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:15:04 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:15:04 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=652ec617 gnome-extra/yelp-xsl: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 gnome-extra/yelp-xsl/yelp-xsl-3.20.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnome-extra/yelp-xsl/yelp-xsl-3.20.1.ebuild b/gnome-extra/yelp-xsl/yelp-xsl-3.20.1.ebuild index a91b6268e54..16852873e66 100644 --- a/gnome-extra/yelp-xsl/yelp-xsl-3.20.1.ebuild +++ b/gnome-extra/yelp-xsl/yelp-xsl-3.20.1.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://git.gnome.org/browse/yelp-xsl"; LICENSE="GPL-2+ LGPL-2.1+ MIT FDL-1.1+" SLOT="0" IUSE="" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux" RDEPEND=" >=dev-libs/libxml2-2.6.12:=
[gentoo-commits] repo/gentoo:master commit in: dev-tex/bibtexu/
commit: 85227febd5b55e709aa5644e59df203ebcdeeb1c Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:13:46 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:13:46 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85227feb dev-tex/bibtexu: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild b/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild index d04927525d3..94e3c8c6809 100644 --- a/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild +++ b/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-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 ~x64-solaris ~x86-solaris" IUSE="doc source" RDEPEND=">=dev-libs/kpathsea-6.2.1:=
[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-latexextra/
commit: f82ac5388f01e03fb66edd62c83359bfd03b39e1 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:11:57 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:11:57 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82ac538 dev-texlive/texlive-latexextra: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-texlive/texlive-latexextra/texlive-latexextra-2017.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-texlive/texlive-latexextra/texlive-latexextra-2017.ebuild b/dev-texlive/texlive-latexextra/texlive-latexextra-2017.ebuild index aca99b04143..316c7d9b41a 100644 --- a/dev-texlive/texlive-latexextra/texlive-latexextra-2017.ebuild +++ b/dev-texlive/texlive-latexextra/texlive-latexextra-2017.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="TeXLive LaTeX additional packages" LICENSE=" Apache-2.0 Artistic BSD GPL-1 GPL-2 GPL-3 GPL-3+ LGPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT public-domain TeX-other-free " SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-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 ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=dev-texlive/texlive-latexrecommended-2017 >=dev-texlive/texlive-pictures-2017
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libnl/
commit: 806d82da39e06286f8978870b279fa8b28230933 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:10:33 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:10:33 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=806d82da dev-libs/libnl: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libnl/libnl-3.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libnl/libnl-3.4.0.ebuild b/dev-libs/libnl/libnl-3.4.0.ebuild index 4c6460c8f16..85cc14ab6af 100644 --- a/dev-libs/libnl/libnl-3.4.0.ebuild +++ b/dev-libs/libnl/libnl-3.4.0.ebuild @@ -17,7 +17,7 @@ SRC_URI=" " LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" -KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux" IUSE="+debug static-libs python +threads utils" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: net-firewall/iptables/
commit: 1cfe4af2f0be5eca2571d0e661cdfedd3230dee6 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jul 9 22:06:07 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jul 9 22:06:33 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cfe4af2 net-firewall/iptables: avoid autoreconf Bug: https://bugs.gentoo.org/660790 Package-Manager: Portage-2.3.41, Repoman-2.3.9 net-firewall/iptables/iptables-1.8.0.ebuild | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net-firewall/iptables/iptables-1.8.0.ebuild b/net-firewall/iptables/iptables-1.8.0.ebuild index d4cee0085fc..e8e9447e3dd 100644 --- a/net-firewall/iptables/iptables-1.8.0.ebuild +++ b/net-firewall/iptables/iptables-1.8.0.ebuild @@ -41,15 +41,15 @@ RDEPEND="${COMMON_DEPEND} nftables? ( net-misc/ethertypes ) " -PATCHES=( "${FILESDIR}"/iptables-1.8.0-fix-building-without-nft-backend.patch ) - src_prepare() { + eapply "${FILESDIR}"/iptables-1.8.0-fix-building-without-nft-backend.patch + touch -r configure extensions/GNUmakefile.in || die + # use the saner headers from the kernel rm -f include/linux/{kernel,types}.h - default - - eautoreconf + # Only run autotools if user patched something + eapply_user && eautoreconf || elibtoolize } src_configure() {
[gentoo-commits] repo/gentoo:master commit in: profiles/arch/s390/
commit: fce2a8ea510c9ff37d0114c2b4343c20ce1e3053 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:06:42 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:07:12 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce2a8ea ../s390/p.use.mask: mask bazaar vcs for layman profiles/arch/s390/package.use.mask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/arch/s390/package.use.mask b/profiles/arch/s390/package.use.mask index 6e2409773e2..283bf2459f7 100644 --- a/profiles/arch/s390/package.use.mask +++ b/profiles/arch/s390/package.use.mask @@ -9,7 +9,7 @@ dev-vcs/subversion kwallet app-text/ghostscript-gpl cups # not really interested in supporting alternative # VCS for oberlays yet. -app-portage/layman darcs mercurial +app-portage/layman bazaar darcs mercurial # Michał Górny (08 Aug 2017)
[gentoo-commits] repo/gentoo:master commit in: dev-libs/glib/
commit: a5169e85c6aab903036c4f59558b7fba50e95c7c Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:02:00 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:02:09 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5169e85 dev-libs/glib: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/glib/glib-2.52.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/glib/glib-2.52.3.ebuild b/dev-libs/glib/glib-2.52.3.ebuild index 4b6663a76ac..c85788d6d53 100644 --- a/dev-libs/glib/glib-2.52.3.ebuild +++ b/dev-libs/glib/glib-2.52.3.ebuild @@ -27,7 +27,7 @@ REQUIRED_USE=" test? ( ${PYTHON_REQUIRED_USE} ) " -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" +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" # Added util-linux multilib dependency to have libmount support (which # is always turned on on linux systems, unless explicitly disabled, but
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/FTL-gog/
commit: 64b6661c84d92504c3d4032410f9bc49de416aca Author: Rob Levitsky protonmail ch> AuthorDate: Sun Jun 24 15:36:34 2018 + Commit: Patrice Clement gentoo org> CommitDate: Mon Jul 9 22:01:52 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b6661c games-roguelike/FTL-gog: fix shell script perms. Fixed the permissions on one of the shell scripts called by the start script and stripped useless chmod calls from that start script. Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9089 .../{FTL-gog-1.6.7.18662.ebuild => FTL-gog-1.6.7.18662-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/games-roguelike/FTL-gog/FTL-gog-1.6.7.18662.ebuild b/games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild similarity index 93% rename from games-roguelike/FTL-gog/FTL-gog-1.6.7.18662.ebuild rename to games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild index 513747171d9..c606b4d683d 100644 --- a/games-roguelike/FTL-gog/FTL-gog-1.6.7.18662.ebuild +++ b/games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild @@ -42,12 +42,14 @@ src_prepare() { if ! use amd64; then rm game/data/FTL.amd64 || die fi + + sed -i start.sh -e '/chmod/d' } src_install() { insinto /opt/gog/FTL doins -r . - fperms +x /opt/gog/FTL/{start.sh,game/FTL} + fperms +x /opt/gog/FTL/{start.sh,game/FTL,game/data/FTL} if use x86; then fperms +x /opt/gog/FTL/game/data/FTL.x86
[gentoo-commits] repo/gentoo:master commit in: app-crypt/gnupg/
commit: ecd160adbe1eb3b81c13c811f4c1ef07977370d4 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 22:00:23 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 22:00:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd160ad app-crypt/gnupg: mark s390 stable Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-crypt/gnupg/gnupg-2.2.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-crypt/gnupg/gnupg-2.2.8.ebuild b/app-crypt/gnupg/gnupg-2.2.8.ebuild index af6349832c7..a7cb03c7e85 100644 --- a/app-crypt/gnupg/gnupg-2.2.8.ebuild +++ b/app-crypt/gnupg/gnupg-2.2.8.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://gnupg/gnupg/${MY_P}.tar.bz2" LICENSE="GPL-3" 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 ~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 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="bzip2 doc ldap nls readline selinux +smartcard ssl tofu tools usb wks-server" COMMON_DEPEND_LIBS="
[gentoo-commits] repo/gentoo:master commit in: dev-python/requests/
commit: 71c61035f7ef25a095b02d462c86de22f61285b0 Author: Sebastian Pipping gentoo org> AuthorDate: Mon Jul 9 21:20:20 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Mon Jul 9 21:21:58 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c61035 dev-python/requests: Revbump for RDEPEND changes Follow-up to e3463a845cf8f29372a33fae566c6255cd60aa75 as advised Bug: https://bugs.gentoo.org/658316 Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --force .../requests/{requests-2.18.2-r1.ebuild => requests-2.18.2-r2.ebuild} | 0 dev-python/requests/{requests-2.18.4.ebuild => requests-2.18.4-r1.ebuild} | 0 dev-python/requests/{requests-2.19.1.ebuild => requests-2.19.1-r1.ebuild} | 0 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/dev-python/requests/requests-2.18.2-r1.ebuild b/dev-python/requests/requests-2.18.2-r2.ebuild similarity index 100% rename from dev-python/requests/requests-2.18.2-r1.ebuild rename to dev-python/requests/requests-2.18.2-r2.ebuild diff --git a/dev-python/requests/requests-2.18.4.ebuild b/dev-python/requests/requests-2.18.4-r1.ebuild similarity index 100% rename from dev-python/requests/requests-2.18.4.ebuild rename to dev-python/requests/requests-2.18.4-r1.ebuild diff --git a/dev-python/requests/requests-2.19.1.ebuild b/dev-python/requests/requests-2.19.1-r1.ebuild similarity index 100% rename from dev-python/requests/requests-2.19.1.ebuild rename to dev-python/requests/requests-2.19.1-r1.ebuild
[gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/
commit: 1932f2d90ec370c937d8ddc1784e6e0f39b6d97f Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 21:17:35 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 21:17:35 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1932f2d9 media-gfx/imagemagick: amd64 stable wrt bug #660826 Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild | 2 +- media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild b/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild index d7502b0c6b0..3f7b87e302f 100644 --- a/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild +++ b/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz" LICENSE="imagemagick" SLOT="0/${PV}" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib" RESTRICT="perl? ( userpriv )" diff --git a/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild b/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild index 454ed7bd77a..51e468f0c58 100644 --- a/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild +++ b/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz" LICENSE="imagemagick" SLOT="0/${PV}" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~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 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib" RESTRICT="perl? ( userpriv )"
[gentoo-commits] repo/gentoo:master commit in: dev-util/radare2/
commit: c4043e853d94a585843dc381bc7a3560a9625197 Author: Sergei Trofimovich gentoo org> AuthorDate: Mon Jul 9 21:13:25 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Mon Jul 9 21:14:41 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4043e85 dev-util/radare2: bump up to 2.7.0 Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-util/radare2/Manifest | 1 + dev-util/radare2/radare2-2.7.0.ebuild | 56 +++ 2 files changed, 57 insertions(+) diff --git a/dev-util/radare2/Manifest b/dev-util/radare2/Manifest index 74ffc7d71d7..270d16d5353 100644 --- a/dev-util/radare2/Manifest +++ b/dev-util/radare2/Manifest @@ -1 +1,2 @@ DIST radare2-2.6.0.tar.gz 6306317 BLAKE2B 213ed0ac92f5b4b9cfc2ba93c5cda9168746cffb0016e1368c4c3939d694bffccf689764c60e0e59a52b70b6b7d49407516c9ecd6e62c59ed0db37c6f72867f5 SHA512 44e7d0c10e17b40d4d71af851cf462c159b03b3242dfccd786bd54d3cf9f92441084f26694166dd1385e84c00626f45dbe09d1fe713595721723c468ac47b01b +DIST radare2-2.7.0.tar.gz 6483865 BLAKE2B 4052a601eb154240fb57c64bf2351063685a25e7d8ca46ad721398cd98b5e8bbec6a6daccb9f2df8e222bad74a0ffb4edc72186d7ca51b69ffbf480a7eb576ba SHA512 4a40e4917967aeef34de6ea69dd3c6d07a215e1f1272221db9af92d898e2d44997e339016b3342d69a276eb99f2d0a1e640ce8e9c889fe728dd86865e917a0fd diff --git a/dev-util/radare2/radare2-2.7.0.ebuild b/dev-util/radare2/radare2-2.7.0.ebuild new file mode 100644 index 000..44da1cbab23 --- /dev/null +++ b/dev-util/radare2/radare2-2.7.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit bash-completion-r1 eutils + +DESCRIPTION="unix-like reverse engineering framework and commandline tools" +HOMEPAGE="http://www.radare.org"; + +if [[ ${PV} == * ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/radare/radare2"; +else + SRC_URI="https://github.com/radare/radare2/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~arm ~arm64" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="ssl libressl" + +RDEPEND=" + dev-libs/capstone:0= + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +src_configure() { + econf \ + --with-syscapstone \ + $(use_with ssl openssl) +} + +src_install() { + default + + insinto /usr/share/zsh/site-functions + doins doc/zsh/_* + + newbashcomp doc/bash_autocompletion.sh "${PN}" + bashcomp_alias "${PN}" rafind2 r2 rabin2 rasm2 radiff2 + + # a workaround for unstable $(INSTALL) call, bug #574866 + local d + for d in doc/*; do + if [[ -d $d ]]; then + rm -rfv "$d" || die "failed to delete '$d'" + fi + done +}
[gentoo-commits] repo/gentoo:master commit in: sys-apps/util-linux/
commit: 37340c2319d1fdb343a831faab5d48ad2e3e8177 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jul 9 21:11:30 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jul 9 21:12:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37340c23 sys-apps/util-linux: x86 stable (bug #660774) Package-Manager: Portage-2.3.41, Repoman-2.3.9 sys-apps/util-linux/util-linux-2.32-r4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/util-linux/util-linux-2.32-r4.ebuild b/sys-apps/util-linux/util-linux-2.32-r4.ebuild index 2df26a8844b..49f453847a3 100644 --- a/sys-apps/util-linux/util-linux-2.32-r4.ebuild +++ b/sys-apps/util-linux/util-linux-2.32-r4.ebuild @@ -16,7 +16,7 @@ if [[ ${PV} == ]] ; then EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git"; else [[ "${PV}" = *_rc* ]] || \ - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux" + KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux" SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz" fi
[gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/
commit: 19f8737e3f1deb90d3f4aae4ae293ede0937ced2 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jul 9 21:10:38 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jul 9 21:12:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19f8737e media-gfx/imagemagick: x86 stable (bug #660826) Package-Manager: Portage-2.3.41, Repoman-2.3.9 media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild | 2 +- media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild b/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild index 07ebb1e3f53..d7502b0c6b0 100644 --- a/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild +++ b/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz" LICENSE="imagemagick" SLOT="0/${PV}" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib" RESTRICT="perl? ( userpriv )" diff --git a/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild b/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild index 15b1ca966bf..454ed7bd77a 100644 --- a/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild +++ b/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz" LICENSE="imagemagick" SLOT="0/${PV}" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~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 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib" RESTRICT="perl? ( userpriv )"
[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/
commit: 033c498679dd51aee5170150f28628943ccbdd7f Author: Thomas Raschbacher gentoo org> AuthorDate: Mon Jul 9 21:01:42 2018 + Commit: Thomas Raschbacher gentoo org> CommitDate: Mon Jul 9 21:02:42 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033c4986 app-antivirus/clamav: version bump Package-Manager: Portage-2.3.36, Repoman-2.3.9 app-antivirus/clamav/Manifest | 1 + app-antivirus/clamav/clamav-0.100.1.ebuild | 167 + 2 files changed, 168 insertions(+) diff --git a/app-antivirus/clamav/Manifest b/app-antivirus/clamav/Manifest index e2e531566b3..42bd11c0a76 100644 --- a/app-antivirus/clamav/Manifest +++ b/app-antivirus/clamav/Manifest @@ -1,2 +1,3 @@ DIST clamav-0.100.0.tar.gz 16036757 BLAKE2B c51edfb05726e16e2ff1ef1fee9f174af5a0d65396f847a4f6e1246d5844b92eb70896fc598d2c73719b1315ff3c41aca503823431e0918d52f56d29399dd796 SHA512 57e1da86a32fdfb66887c4aeed03008bc070ce3cb6b881db411332f2f2e640b73dca84d990f5886526b3d6bd0c2770c7dcce5b4e7cf48323824c362452593549 +DIST clamav-0.100.1.tar.gz 16154415 BLAKE2B df4ddde28b0b263765f4a571a407390b30aa6fe58d07e1b8fe427e70141219fb3d7c5addfbf30a350c6c08324dee1ec3dd80319306df7578ed87138c6513b99d SHA512 13a4e050e030ac3d1cc07b12bdd56c455e266e0b205a4c9bc9f18e53f6d8913a66eed2296abf857f395227ab0ed5c7bc90bc357bcb314dc9e18a9c6177dcc5b2 DIST clamav-0.99.4.tar.gz 16083015 BLAKE2B 3c2e7d11ee05fe846f75c3fb6501b5fd809a2e58f8e69c82e493e32fcbc87ca0e5b5f7ab83a0d7e251a5dc8e84aed1475c87c1248b393fa04b6924a2ab32b9bf SHA512 778d5ef510d8d4bdfac5dc33d92469ed4283c414b3d42da6e1a0b13ed70e37755d5c837622dc336bc728ba1f8bf5485fc8a8d3a67a90e9aaa9e4dc71ece0691d diff --git a/app-antivirus/clamav/clamav-0.100.1.ebuild b/app-antivirus/clamav/clamav-0.100.1.ebuild new file mode 100644 index 000..3928b8054dd --- /dev/null +++ b/app-antivirus/clamav/clamav-0.100.1.ebuild @@ -0,0 +1,167 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools eutils flag-o-matic user systemd + +DESCRIPTION="Clam Anti-Virus Scanner" +HOMEPAGE="https://www.clamav.net/"; +SRC_URI="https://www.clamav.net/downloads/production/${P}.tar.gz"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +IUSE="bzip2 doc clamdtop iconv ipv6 libressl milter metadata-analysis-api selinux static-libs system-libmspack test uclibc" + +CDEPEND="bzip2? ( app-arch/bzip2 ) + clamdtop? ( sys-libs/ncurses:0 ) + iconv? ( virtual/libiconv ) + metadata-analysis-api? ( dev-libs/json-c:= ) + milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) + dev-libs/libtommath + >=sys-libs/zlib-1.2.2:= + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + sys-devel/libtool + || ( dev-libs/libpcre2 >dev-libs/libpcre-6 ) + system-libmspack? ( dev-libs/libmspack ) + !!https://blog.clamav.net/2014/02/introducing-openssl-as-dependency-to.html +DEPEND="${CDEPEND} + virtual/pkgconfig + test? ( dev-libs/check )" +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-clamav )" + +DOCS=( docs/clamdoc.pdf docs/phishsigs_howto.pdf docs/signatures.pdf ) +HTML_DOCS=( docs/html ) + +PATCHES=( + "${FILESDIR}/clamav-0.100.0_autotools.patch" +) + +pkg_setup() { + enewgroup clamav + enewuser clamav -1 -1 /dev/null clamav +} + +src_prepare() { + default + + eautoconf +} + +src_configure() { + use ppc64 && append-flags -mminimal-toc + use uclibc && export ac_cv_type_error_t=yes + + econf \ + $(use_enable bzip2) \ + $(use_enable clamdtop) \ + $(use_enable ipv6) \ + $(use_enable milter) \ + $(use_enable static-libs static) \ + $(use_enable test check) \ + $(use_with iconv) \ + $(use_with metadata-analysis-api libjson /usr) \ + $(use_with system-libmspack) \ + --cache-file="${S}"/config.cache \ + --disable-experimental \ + --disable-gcc-vcheck \ + --disable-zlib-vcheck \ + --enable-id-check \ + --with-dbdir="${EPREFIX}"/var/lib/clamav \ + --with-system-tommath \ + --with-zlib="${EPREFIX}"/usr \ + --disable-llvm +} + +src_install() { + default + + rm -rf "${ED}"/var/lib/clamav + newinitd "${FILESDIR}"/clamd.initd-r6 clamd + newconfd "${FILESDIR}"/clamd.conf-r1 clamd + + systemd_dotmpfilesd "${FILESDIR}/tmpfiles.d/clamav.conf" + systemd_newunit "${FILESDIR}/clamd_at.service" "clamd@.service" + systemd_dounit "${FILESDIR}/clamd.service" + systemd_dounit "${FILESDIR}/freshclamd.service" + + keepdir /var/lib/clamav + fowners clamav:clamav
[gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/, media-gfx/imagemagick/files/
commit: 0cef8ccb6f51e3183b5878b14e2987caa0cd26c1 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jul 9 20:55:44 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jul 9 20:56:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cef8ccb media-gfx/imagemagick: fix FTBFS on x86 Closes: https://bugs.gentoo.org/653752 Package-Manager: Portage-2.3.41, Repoman-2.3.9 .../files/imagemagick-7.0.26-FTBFS-on-i386.patch | 36 ++ media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild | 2 ++ media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild | 2 ++ 3 files changed, 40 insertions(+) diff --git a/media-gfx/imagemagick/files/imagemagick-7.0.26-FTBFS-on-i386.patch b/media-gfx/imagemagick/files/imagemagick-7.0.26-FTBFS-on-i386.patch new file mode 100644 index 000..c568ed345ec --- /dev/null +++ b/media-gfx/imagemagick/files/imagemagick-7.0.26-FTBFS-on-i386.patch @@ -0,0 +1,36 @@ +Gentoo-Bug: https://bugs.gentoo.org/653752 +Upstream issue: https://github.com/ImageMagick/ImageMagick/issues/1019 + + +From 0c26fea274e615ff6b179bdd30e970a55f6c3f52 Mon Sep 17 00:00:00 2001 +From: Svante Signell +Date: Mon, 25 Jun 2018 16:06:19 +0200 +Subject: Fix FTBFS on i386 any + +bug-debian: https://bugs.debian.org/898914 +--- + Magick++/tests/attributes.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Magick++/tests/attributes.cpp b/Magick++/tests/attributes.cpp +index 9ebc67f2d..e969def27 100644 +--- a/Magick++/tests/attributes.cpp b/Magick++/tests/attributes.cpp +@@ -154,7 +154,7 @@ int main( int /*argc*/, char ** argv) + // + + // Test default value. +-if ( image.backgroundColor() != ColorRGB("white") ) ++if ( image.backgroundColor() != string(ColorRGB("white")) ) + { + ++failures; + cout << "Line: " << __LINE__ << ", backgroundColor default (" +@@ -1068,7 +1068,7 @@ int main( int /*argc*/, char ** argv) + // pixelColor + // + // Test default +-if ( image.pixelColor(40,60) != canvasColor ) ++if ( image.pixelColor(40,60) != string(canvasColor) ) + { + ++failures; + cout << "Line: " << __LINE__ << ", pixelColor default (" diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild b/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild index 1d46b538e85..07ebb1e3f53 100644 --- a/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild +++ b/media-gfx/imagemagick/imagemagick-6.9.10.5.ebuild @@ -64,6 +64,8 @@ DEPEND="${RDEPEND} REQUIRED_USE="corefonts? ( truetype ) test? ( corefonts )" +PATCHES=( "${FILESDIR}"/${PN}-7.0.26-FTBFS-on-i386.patch ) + S="${WORKDIR}/${MY_P}" src_prepare() { diff --git a/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild b/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild index 49b5b2b7bbd..15b1ca966bf 100644 --- a/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild +++ b/media-gfx/imagemagick/imagemagick-7.0.8.5.ebuild @@ -64,6 +64,8 @@ DEPEND="${RDEPEND} REQUIRED_USE="corefonts? ( truetype ) test? ( corefonts )" +PATCHES=( "${FILESDIR}"/${PN}-7.0.26-FTBFS-on-i386.patch ) + S="${WORKDIR}/${MY_P}" src_prepare() {
[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/
commit: 0ea2e5709ec3c098c160815a138539d20f9b3937 Author: Joonas Niilola gmail com> AuthorDate: Mon Jul 9 16:47:56 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jul 9 20:29:40 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea2e570 x11-terms/terminology: restore KEYWORDS ~ppc ~ppc64 for 1.1.0 Package-Manager: Portage[mgorny]-2.3.36.1 Closes: https://github.com/gentoo/gentoo/pull/9157 x11-terms/terminology/terminology-1.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-terms/terminology/terminology-1.1.0.ebuild b/x11-terms/terminology/terminology-1.1.0.ebuild index d5439fc2a64..bcf5de53d09 100644 --- a/x11-terms/terminology/terminology-1.1.0.ebuild +++ b/x11-terms/terminology/terminology-1.1.0.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"; LICENSE="BSD-2" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="amd64 ~ppc ~ppc64 x86" IUSE="nls" RDEPEND=">=dev-libs/efl-1.18.0[eet,X]"
[gentoo-commits] repo/gentoo:master commit in: x11-wm/enlightenment/
commit: 238ec8b52d3bcb736afabbbceafec4648e9fcced Author: Joonas Niilola gmail com> AuthorDate: Mon Jul 9 16:59:24 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jul 9 20:29:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=238ec8b5 x11-wm/enlightenment: clean old Package-Manager: Portage[mgorny]-2.3.36.1 Closes: https://github.com/gentoo/gentoo/pull/9159 x11-wm/enlightenment/Manifest| 2 - x11-wm/enlightenment/enlightenment-0.20.5.ebuild | 142 --- x11-wm/enlightenment/enlightenment-0.20.6.ebuild | 142 --- 3 files changed, 286 deletions(-) diff --git a/x11-wm/enlightenment/Manifest b/x11-wm/enlightenment/Manifest index a0aa827188a..a165bc047ac 100644 --- a/x11-wm/enlightenment/Manifest +++ b/x11-wm/enlightenment/Manifest @@ -1,5 +1,3 @@ -DIST enlightenment-0.20.5.tar.xz 25039672 BLAKE2B b9f18ecb5afbd4f8675d0c5e9315173d6980e98d77e09c1e818161a92be727a504081c9944dd78519ff2eb02a146b8c3db276bd9a568f82c1584b74c4c7e7d07 SHA512 0d66d23b3462d6bf293229256d88d486d05135ff7bc7ab4258c3923c853f1935a1850b3a3ff0dabb1aae99a31dafb578f5cbb5678d08df490d3c6837b874a911 -DIST enlightenment-0.20.6.tar.xz 25030572 BLAKE2B 7ce9b89ec56a741e81bb6ebae690c84ef89b53e7201723f0d74c99b006957f8c26cd8d4b914015aa7956d23f83beeb2ca2a0e9e145d9b2038a6a337acccd43bd SHA512 97179929c039535f6f03fbd1272bde59e25f62b35e17e859379258dac771183562348f7a5c0148c76bcb05b86c21c24950117901f0c2800ac070ba7a27aeee29 DIST enlightenment-0.21.11.tar.xz 25313532 BLAKE2B 3128137fe81a5b3dccc909eee8aac6845648c088b4cc8de9965408445579ed6aa01bdd879b726d21449c674f07a78386348525d61c0c0d786493d638ec4ae2b4 SHA512 3dee0f7a49fff992a81ce82a730cf8f0cec52a9805dcdd643a35a0bb8c7a27c6af82c136219553684c24c8e2ee2e8623f04858fddab56cdff7477ed2c9cc0ddf DIST enlightenment-0.21.7.tar.xz 25307500 BLAKE2B 54b0bb7f76390d46f7eec40aecafb1b8769ba659acaffe8ade61ef9cd6fcb28d843bc185a3cc6c478fa30f917946d331569a394132c3351215a3d1d051d7d2ac SHA512 9d10116990f83b6a2f066b81fab08a9b49779df22d92b5823bf579d786a3f4602094cf8c4d08b3e23a1cfc0cd7032004b2e389e234a189fb2479d23287bf1277 DIST enlightenment-0.22.3.tar.xz 25648576 BLAKE2B 1abb1fab18c5932b65f1183875bbe0955ce1d608758af0855c550f5581c774bd19dd0b6c8dd8c724b668ff843e1ed4928531f30b60436d9182a07a65fa2af9e3 SHA512 01a9386ee009c76c46cee7176cdeb7f4e97977bdd5014caa51cceeff228ad72f97a362d1eff7e0240e3e2df8b24a6c9d1516c8ab05bd82d288abcfde0d171abd diff --git a/x11-wm/enlightenment/enlightenment-0.20.5.ebuild b/x11-wm/enlightenment/enlightenment-0.20.5.ebuild deleted file mode 100644 index 9d9e764576e..000 --- a/x11-wm/enlightenment/enlightenment-0.20.5.ebuild +++ /dev/null @@ -1,142 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -MY_P=${P/_/-} - -if [[ ${PV} == * ]] ; then - EGIT_SUB_PROJECT="core" - EGIT_URI_APPEND="${PN}" -else - SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${MY_P}.tar.xz"; - EKEY_STATE="snap" -fi - -inherit enlightenment xdg-utils - -DESCRIPTION="Enlightenment DR17 window manager" - -LICENSE="BSD-2" -SLOT="0.17/${PV%%_*}" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" - -__CONF_MODS=( - applications bindings dialogs display - interaction intl menus - paths performance randr shelves theme - window-manipulation window-remembers -) -__NORM_MODS=( - appmenu backlight bluez4 battery - clock conf connman cpufreq everything - fileman fileman-opinfo gadman geolocation - ibar ibox lokker - mixer msgbus music-control notification - pager packagekit pager-plain quickaccess - shot start syscon systray tasks teamwork temperature tiling - winlist wizard wl-desktop-shell wl-drm wl-text-input - wl-weekeyboard wl-wl wl-x11 xkbswitch xwayland -) -IUSE_E_MODULES=( - ${__CONF_MODS[@]/#/enlightenment_modules_conf-} - ${__NORM_MODS[@]/#/enlightenment_modules_} -) - -IUSE="pam spell static-libs systemd ukit wayland ${IUSE_E_MODULES[@]/#/+}" - -RDEPEND=" - pam? ( sys-libs/pam ) - systemd? ( sys-apps/systemd ) - wayland? ( - dev-libs/efl[wayland] - >=dev-libs/wayland-1.8.0 - >=x11-libs/pixman-0.31.1 - >=x11-libs/libxkbcommon-0.3.1 - ) - >=dev-libs/efl-1.17[X] - >=media-libs/elementary-1.17 - x11-libs/xcb-util-keysyms" -DEPEND=" - ${RDEPEND} - sys-devel/automake:1.15 -" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/quickstart.diff - enlightenment_src_prepare -} - -# Sanity check to make sure module lists are kept up-to-date. -check_modules() { - local detected=$( - awk -F'[\\[\\](, ]' '$1 == "AC_E_OPTIONAL_MODULE" { print $3 }' \ -
[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/
commit: 7a689b50fbedb3a464ad4dec38a703a7c7a3b5c9 Author: Joonas Niilola gmail com> AuthorDate: Mon Jul 9 16:48:59 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jul 9 20:29:40 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a689b50 x11-terms/terminology: clean old Package-Manager: Portage[mgorny]-2.3.36.1 x11-terms/terminology/Manifest | 2 -- x11-terms/terminology/terminology-0.9.1.ebuild | 18 -- x11-terms/terminology/terminology-1.0.0.ebuild | 23 --- 3 files changed, 43 deletions(-) diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest index 59a2b4e4b00..90de0c1c9eb 100644 --- a/x11-terms/terminology/Manifest +++ b/x11-terms/terminology/Manifest @@ -1,4 +1,2 @@ -DIST terminology-0.9.1.tar.xz 4961876 BLAKE2B 03aab7c5c0740bede4c06b90721d96c12159b6dd939387e8bd3dae160b4c705cf95a724dd8cc404badc9b9d5f22a5321312f229dd488331e4c4c1e2b0844 SHA512 c6db9fa62f3f168be635da1e3ed7a13deba13cbfa5bed75e3f97ee6e13837ca9cb5facab48c44f200baed34b8f32f852eadd9844de648795733602602fae32fd -DIST terminology-1.0.0.tar.xz 4979420 BLAKE2B cbc78b751a2e6812ab31c69a62ea4abe2bb53f12b647cea7adae03e54fe0a238c56c5c029c43057c3a1326c7c8af0412574a85a404896554a142ed068ab581ab SHA512 5c99e1e1eea0de24d67779059d3ba65a8fbd1fdf63d9f22099e38defc11fdc8923fbe50a7276bc483ce5ee7527f665e3f2c48358d85c3a06f33e551bd8ef2320 DIST terminology-1.1.0.tar.xz 4989512 BLAKE2B b2bcc22a63d25517aa4dd223b914a784d8c4c87ce9d971dff20b9f66b3ff0d2667babc053f3e1923d0bcaa5508902b824302420c0731173c96136d2071400f61 SHA512 ad4ecc6d51a6a124e90eb63d887d5f742500944747b469239366732587510717a227aa41a90089911cf1ac5b289228880619726ae95688de9a92972d554bf95d DIST terminology-1.2.1.tar.xz 4858528 BLAKE2B 953917ed9dac9d17048d19394e6d8b38fd1673bc618cd1ecb596eee7b889f973b5622ef9d3424bc9f94928f44129062a7a4f88cdb2af519b87aeb141661902bc SHA512 8485d38a5426ac0f32b3cb049170bfa015a9f648134973462d72412b291b160f05b6ccfb3ba47115740946c8d87160401d55672a6853027d0cc216bdc7cc659b diff --git a/x11-terms/terminology/terminology-0.9.1.ebuild b/x11-terms/terminology/terminology-0.9.1.ebuild deleted file mode 100644 index 9b08d95ad0d..000 --- a/x11-terms/terminology/terminology-0.9.1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries" -HOMEPAGE="https://www.enlightenment.org/p.php?p=about/terminology"; -SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"; - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=">=dev-libs/efl-1.15.1 - >=media-libs/elementary-1.15.1" -DEPEND="${RDEPEND} - virtual/pkgconfig" diff --git a/x11-terms/terminology/terminology-1.0.0.ebuild b/x11-terms/terminology/terminology-1.0.0.ebuild deleted file mode 100644 index dc28f45542c..000 --- a/x11-terms/terminology/terminology-1.0.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -MY_P=${P/_/-} - -if [[ "${PV}" == "" ]] ; then - EGIT_SUB_PROJECT="apps" - EGIT_URI_APPEND="${PN}" -else - SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${MY_P}.tar.xz"; - KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -fi - -inherit enlightenment - -DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries" -HOMEPAGE="https://www.enlightenment.org/p.php?p=about/terminology"; - -RDEPEND=">=dev-libs/efl-1.18" -DEPEND="${RDEPEND} - virtual/pkgconfig"
[gentoo-commits] repo/gentoo:master commit in: dev-python/python-efl/
commit: 98e0dad2a0d591932e7491c6abbf9adf570e83d8 Author: Joonas Niilola gmail com> AuthorDate: Mon Jul 9 16:55:04 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jul 9 20:29:40 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e0dad2 dev-python/python-efl: clean old Package-Manager: Portage[mgorny]-2.3.36.1 Closes: https://github.com/gentoo/gentoo/pull/9158 dev-python/python-efl/Manifest | 1 - dev-python/python-efl/python-efl-1.17.0.ebuild | 61 -- dev-python/python-efl/python-efl-1.18.0.ebuild | 61 -- 3 files changed, 123 deletions(-) diff --git a/dev-python/python-efl/Manifest b/dev-python/python-efl/Manifest index 59edc28ae69..6a61c48d106 100644 --- a/dev-python/python-efl/Manifest +++ b/dev-python/python-efl/Manifest @@ -1,3 +1,2 @@ -DIST python-efl-1.17.0.tar.xz 8835228 BLAKE2B 0380bfa9ac8a9553bf3c1fa4ed7f4c65007e75ebe159427aff12cfd7359859b42e56b5ebcb02af97324696c3addbc9fe31b4dbe23d4dbe2574b056e4e6d23297 SHA512 ff610dbacf72853b6c8fb1dcd41451f97156845efeb67a2d5d6c35d9b20c0f024c145a26a579f675bc2ad5844c23e58d8b21a09374aa195174f1a0c6316c0de4 DIST python-efl-1.18.0.tar.xz 8927932 BLAKE2B c1b41e1316c78fc42cf21541aba386dce799f1ec26549dda8c547de4cf47870a100070bb442d21116ce956808bcf948eba96601343512ba61fb1fc472e2574be SHA512 c1fc8d4129c2ac61b367ad373ad676a60cf0aed4c9150104d7e81bf464c44a3a5ae555d2298bbf1bdf6a3d6ba3b7d934af390e36755a1516972db2675d920c2b DIST python-efl-1.20.0.tar.xz 8984492 BLAKE2B 526c530d7b8dad59d01cefcbb6cad2710cb46c3b62eb0b2746c3552c8c1ef42cc4691072fbbce16a8a3b6ea9d6b5651a3645ca739e569a0f4db3dd9988ddf2fa SHA512 93d8d6c990350074e203bf3632d92b5253f34f318b30357b05ab5ab73a9f6656d127ff0c1831af1bf7c736822b483c12754085e52103eb0e41362cc28db5651f diff --git a/dev-python/python-efl/python-efl-1.17.0.ebuild b/dev-python/python-efl/python-efl-1.17.0.ebuild deleted file mode 100644 index 0c5169be706..000 --- a/dev-python/python-efl/python-efl-1.17.0.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -PYTHON_COMPAT=( python{2_7,3_4,3_5} ) - -MY_P=${P/_/-} - -if [[ "${PV}" == "" ]] ; then - EGIT_SUB_PROJECT="bindings/python" - EGIT_URI_APPEND="${PN}" - EGIT_REPO_URI="https://git.enlightenment.org/${EGIT_SUB_PROJECT}/${EGIT_URI_APPEND}.git"; - inherit git-2 -else - SRC_URI="https://download.enlightenment.org/rel/bindings/python/${MY_P}.tar.xz"; -fi - -inherit distutils-r1 - -DESCRIPTION="Python bindings for Enlightenment Fundation Libraries" -HOMEPAGE="https://www.enlightenment.org"; - -LICENSE="|| ( GPL-3 LGPL-3 )" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc examples" - -RDEPEND=">=dev-libs/efl-${PV} - >=media-libs/elementary-${PV} - >dev-python/dbus-python-0.83[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - virtual/pkgconfig - dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/cython-0.17[${PYTHON_USEDEP}] - doc? ( - media-gfx/graphviz[python] - dev-python/sphinx[${PYTHON_USEDEP}] - ) - doc? ( >dev-python/sphinx-1.0[${PYTHON_USEDEP}] )" - -python_compile_all() { - if use doc ; then - # Point sphinx to right location with builded sources - sed -i 's|"../build/"+d|"'"${BUILD_DIR}"'/lib"|g' doc/conf.py - esetup.py build_doc --build-dir "${S}"/build/doc/ - fi -} - -python_test() { - cd "${S}"/tests - rm -f ecore/test_09_file_download.py # violates sandbox - sed -i 's:verbosity=1:verbosity=3:' 00_run_all_tests.py || die - ${PYTHON} 00_run_all_tests.py --verbose || die "Tests failed with ${EPYTHON}" -} - -python_install_all() { - use doc && DOCS=( "${S}"/build/doc/html ) - use examples && EXAMPLES=( examples/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/python-efl/python-efl-1.18.0.ebuild b/dev-python/python-efl/python-efl-1.18.0.ebuild deleted file mode 100644 index 749e18e36dc..000 --- a/dev-python/python-efl/python-efl-1.18.0.ebuild +++ /dev/null @@ -1,61 +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} ) - -MY_P=${P/_/-} - -if [[ "${PV}" == "" ]]; then - EGIT_SUB_PROJECT="bindings/python" - EGIT_URI_APPEND="${PN}" - EGIT_REPO_URI="https://git.enlightenment.org/${EGIT_SUB_PROJECT}/${EGIT_URI_APPEND}.git"; - inherit git-2 -else - SRC_URI="https://download.enlightenment.org/rel/bindings/python/${MY_P}.tar.xz"; -fi - -inherit distutils-r1 - -DESCRIPTION="Python bindings for Enlightenment Fundation Libraries" -HOMEPAGE="https://www.enlightenment.org"; - -LICENSE="|| ( GPL-3 LGPL-3 )" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="doc examples" - -RDEPEND=">=dev-libs/efl-
[gentoo-commits] repo/gentoo:master commit in: dev-db/oracle-instantclient-odbc/
commit: 2cfa464ec7d08730bcc90d1b914e1d72982cd7e5 Author: Michael Haubenwallner gentoo org> AuthorDate: Mon Jul 9 19:49:30 2018 + Commit: Michael Haubenwallner gentoo org> CommitDate: Mon Jul 9 19:52:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cfa464e Revert "dev-db/oracle-instantclient-odbc: cleanup old" This reverts commit 99e250cc469bb522c3724e3fd3104258cfd96317. There have been stable keywords around. dev-db/oracle-instantclient-odbc/Manifest | 4 + .../oracle-instantclient-odbc-11.2.0.3.ebuild | 116 + .../oracle-instantclient-odbc-11.2.0.4.ebuild | 96 + 3 files changed, 216 insertions(+) diff --git a/dev-db/oracle-instantclient-odbc/Manifest b/dev-db/oracle-instantclient-odbc/Manifest new file mode 100644 index 000..b18e4f9979f --- /dev/null +++ b/dev-db/oracle-instantclient-odbc/Manifest @@ -0,0 +1,4 @@ +DIST instantclient-odbc-linux-11.2.0.3.0.zip 273840 BLAKE2B 54fd920bb69a12f2df387e89907c6c2a64f05fd611cb53737d6773752c3a08fbe4cb36cc43017a62e7861cd6245b4d92cbf635fabc921c0aeeaa8d00f9e012d5 SHA512 4d928e9eb3deb26db7a95a0e5417bd9355e97956d9394dc2792752fd45002b0abc3463fbb7f337f4731084aa6006d1ff635443c5503f94c6bd97d1bae7245885 +DIST instantclient-odbc-linux-11.2.0.4.0.zip 274999 BLAKE2B 33855608fcd61a7f4ebcab3f969b028069d636d5a709676c07733aeb20dcb4335f485844ec72cb0816307e36c7f0b6748c08ea6e5c67c853999ddc1b0c23eae8 SHA512 64d75c6f9aa4e5b74da12a2a293e6ee7017017a12a724596d51606d3a8d7a9d9653c158d389a5faeb02893ca6a6a93650605d71f885f9439427847583f5cc820 +DIST instantclient-odbc-linux.x64-11.2.0.3.0.zip 309061 BLAKE2B 9ddd2569364a383f525052d4c795c423ed4b44a588ec4e11e5f5130604b6d74b4ede2afdb326023d8a0167b1522669c9acc6f9e74928423f62d08c93404cd98d SHA512 a18c040fc780f893ea22fd6c79b3299d9327975a768a6518622a8ff522dd29a7019494ca7a1227483098f13afe1af1655611a32e06806bab94ab2fce2dc55e3a +DIST instantclient-odbc-linux.x64-11.2.0.4.0.zip 310560 BLAKE2B dc97373ac00f07b4d02beb45ed053d5aa8909fc380990426c118e3fb42b08e8e5e699a518aa137b3fe159107c73929e61d59c997e741a343803f5c26036adf9b SHA512 19f999207e5ea2b5db18b40c0eb40c6ec1ea8a3117915a723338e5c423122b747c5e371446d631c00a5c01005453f85da1d2e680a2c1771a495dc0b68812df69 diff --git a/dev-db/oracle-instantclient-odbc/oracle-instantclient-odbc-11.2.0.3.ebuild b/dev-db/oracle-instantclient-odbc/oracle-instantclient-odbc-11.2.0.3.ebuild new file mode 100644 index 000..e0fbfdf509a --- /dev/null +++ b/dev-db/oracle-instantclient-odbc/oracle-instantclient-odbc-11.2.0.3.ebuild @@ -0,0 +1,116 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="4" + +inherit eutils multilib + +MY_PLAT_x86="Linux x86" +MY_A_x86="${PN/oracle-/}-linux-${PV}.0.zip" + +MY_PLAT_amd64="Linux x86-64" +MY_A_amd64="${PN/oracle-/}-linux.x64-${PV}.0.zip" + +DESCRIPTION="Oracle 11g Instant Client: ODBC supplement" +HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"; +SRC_URI=" + x86? ( ${MY_A_x86} ) + amd64? ( ${MY_A_amd64} multilib? ( ${MY_A_x86} ) ) +" + +LICENSE="OTN" +SLOT="0" +KEYWORDS="amd64 x86" +RESTRICT="fetch" +IUSE="multilib" + +DEPEND="app-arch/unzip" +RDEPEND="~dev-db/oracle-instantclient-basic-${PV}" + +S="${WORKDIR}" + +QA_PREBUILT="usr/lib*/oracle/${PV}/client/lib*/lib*" + +default_abi() { + [[ ${DEFAULT_ABI} == 'default' ]] && echo ${ARCH} || echo ${DEFAULT_ABI} +} + +abi_list() { + if use multilib; then + echo ${MULTILIB_ABIS} + else + default_abi + fi + return 0 +} + +set_abivars() { + local abi=$1 + # platform name + MY_PLAT=MY_PLAT_${abi} + MY_PLAT=${!MY_PLAT} + # runtime distfile + MY_A=MY_A_${abi} + MY_A=${!MY_A} + # abi sourcedir + MY_S="${S}/${abi}/instantclient_11_2" + # ABI might not need to be set at all + [[ -n ${ABI} ]] && MY_ABI=${abi} || MY_ABI= + # abi libdir + MY_LIBDIR=$(ABI=${MY_ABI} get_libdir) +} + +pkg_nofetch() { + eerror "Please go to" + eerror " ${HOMEPAGE%/*}/index-097480.html" + eerror " and download" + local abi + for abi in $(abi_list) + do + set_abivars ${abi} + eerror "Instant Client for ${MY_PLAT}" + eerror "ODBC: ${MY_A}" + done + eerror "After downloading, put them in:" + eerror "${DISTDIR}/" +} + +src_unpack() { + local abi + for abi in $(abi_list) + do + set_abivars ${abi} + mkdir -p "${MY_S%/*}" || die + cd "${MY_S%/*}" || die + unpack ${MY_A} + done +} + +src_install() { + # all binaries go here + local oracle_home=/usr/$(get_libdir)/oracle/${PV}/client + into "${oracle_home}" + + local abi + for abi in $(abi_list) +
[gentoo-commits] repo/gentoo:master commit in: dev-db/oracle-instantclient-sqlplus/
commit: 031749e2097c979c0860d7d44f544cf8fae73e1e Author: Michael Haubenwallner gentoo org> AuthorDate: Mon Jul 9 19:49:06 2018 + Commit: Michael Haubenwallner gentoo org> CommitDate: Mon Jul 9 19:51:58 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=031749e2 Revert "dev-db/oracle-instantclient-sqlplus: cleanup old" This reverts commit 81f2b535a3defef03329a38d529b28d480a78d9a. There have been stable keywords around. dev-db/oracle-instantclient-sqlplus/Manifest | 4 ++ ...oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild | 71 ++ .../oracle-instantclient-sqlplus-11.2.0.3.ebuild | 69 + .../oracle-instantclient-sqlplus-11.2.0.4.ebuild | 71 ++ 4 files changed, 215 insertions(+) diff --git a/dev-db/oracle-instantclient-sqlplus/Manifest b/dev-db/oracle-instantclient-sqlplus/Manifest new file mode 100644 index 000..6a0c1821c8b --- /dev/null +++ b/dev-db/oracle-instantclient-sqlplus/Manifest @@ -0,0 +1,4 @@ +DIST instantclient-sqlplus-linux-11.2.0.3.0.zip 796570 BLAKE2B 0492185103d5fb36f3acb8f52e937fca35bb8b7308eb9317d43f25f4fbde39f15b8b6de0fc9065d04c809a94731c7c011dcac1daf4e734405d065d9959cf215f SHA512 241d812b3955b11efba7764f463417e79dd973ce7ad0624144e661403b71b1c4fb091c6e42d05759eaf74355dfe432970375064d4018cae9ae67cd1401095460 +DIST instantclient-sqlplus-linux-11.2.0.4.0.zip 792608 BLAKE2B c3e8f0843700df9f95428b01520400d95076df5e19169f2a79982293e54ce6cc74321de0f34a0e7865d5d29535e38b60bcca127be06343c979a40985bf349012 SHA512 8f5ff27043a036eab038080bbdc056325cc2c197e12de34e74a8da17bf69b44e4fd4200b638881d86fdf1dc1450d8e1d033daaa56386bd2c8784d556ba0093ce +DIST instantclient-sqlplus-linux.x64-11.2.0.3.0.zip 837574 BLAKE2B c1f123b68b60f211843af954e33922e46d05ff89ce68e8357a8839e7fce8331ab3f16b87204343376657839fd582fb2c80be3148cc34f2340191ed261526 SHA512 55bbac5e8267a4de2c7f9f6750f0e38dcf7c775bccc2e1e05df7fda9e6ffa7d394776e605980d8b67176acf52ba88f2dcaa959934740a1ca6f91d10b12d14024 +DIST instantclient-sqlplus-linux.x64-11.2.0.4.0.zip 834491 BLAKE2B 487091d97c0f2ec383018c39a957c8a27b030c4c8754a6c2714237dc875b89b250b47dbd28ca228a98c6199323ddd031452e1cc90c60824fbcca536aa38bff1f SHA512 b7180b5667e604564cf379b9eb55a2fc8994b87cfb993e728b4c1bdd297cab134a55580018429bdbb2b101ebdf8a350bacc1ddf5a30e1cc419092054c79a108b diff --git a/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild new file mode 100644 index 000..2af3e70ae26 --- /dev/null +++ b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="4" + +inherit eutils multilib pax-utils + +MY_PLAT_x86="Linux x86" +MY_A_x86="${PN#oracle-}-linux-${PV}.0.zip" + +MY_PLAT_amd64="Linux x86-64" +MY_A_amd64="${PN#oracle-}-linux.x64-${PV}.0.zip" + +DESCRIPTION="Oracle 11g Instant Client: SQL*Plus" +HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"; +SRC_URI=" + x86? ( ${MY_A_x86} ) + amd64? ( ${MY_A_amd64} ) +" + +LICENSE="OTN" +SLOT="0" +KEYWORDS="amd64 x86" +RESTRICT="fetch" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="~dev-db/oracle-instantclient-basic-${PV}" + +S="${WORKDIR}"/instantclient_11_2 + +QA_PREBUILT=" + usr/lib*/oracle/${PV}/client/lib*/lib* + usr/lib*/oracle/${PV}/client/bin/sqlplus +" + +my_arch() { + # platform name + MY_PLAT=MY_PLAT_${ARCH} + export MY_PLAT=${!MY_PLAT} + # distfile + MY_A=MY_A_${ARCH} + export MY_A=${!MY_A} +} + +pkg_nofetch() { + my_arch + eerror "Please go to" + eerror " ${HOMEPAGE%/*}/index-097480.html" + eerror " and download" + eerror "Instant Client for ${MY_PLAT}" + eerror "SQL*Plus: ${MY_A}" + eerror "After downloading, put it in:" + eerror " ${DISTDIR}/" +} + +src_install() { + # all binaries go here + local oracle_home=usr/$(get_libdir)/oracle/${PV}/client + into /"${oracle_home}" + + dolib.so libsqlplus$(get_libname) libsqlplusic$(get_libname) + dobin sqlplus + + insinto /"${oracle_home}"/sqlplus/admin + doins glogin.sql + + pax-mark -c "${ED}${oracle_home}"/bin/sqlplus || die + + dosym /"${oracle_home}"/bin/sqlplus /usr/bin/sqlplus +} diff --git a/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3.ebuild b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3.ebuild new file mode 100644 index 000..6df81c9c2be --- /dev/null +++ b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-11.2.0.3.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="
[gentoo-commits] repo/gentoo:master commit in: dev-db/oracle-instantclient-jdbc/
commit: a5912f5d40c230ae45c6e68442dac69f273f41a1 Author: Michael Haubenwallner gentoo org> AuthorDate: Mon Jul 9 19:49:50 2018 + Commit: Michael Haubenwallner gentoo org> CommitDate: Mon Jul 9 19:52:04 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5912f5d Revert "dev-db/oracle-instantclient-jdbc: cleanup old" This reverts commit fdaa33ab2b75287eb555cc5a98d5b2cc94f7ee32. There have been stable keywords around. dev-db/oracle-instantclient-jdbc/Manifest | 4 + .../oracle-instantclient-jdbc-11.2.0.3.ebuild | 109 + .../oracle-instantclient-jdbc-11.2.0.4.ebuild | 92 + 3 files changed, 205 insertions(+) diff --git a/dev-db/oracle-instantclient-jdbc/Manifest b/dev-db/oracle-instantclient-jdbc/Manifest new file mode 100644 index 000..d92783f2161 --- /dev/null +++ b/dev-db/oracle-instantclient-jdbc/Manifest @@ -0,0 +1,4 @@ +DIST instantclient-jdbc-linux-11.2.0.3.0.zip 1562543 BLAKE2B 7f32c39cb7c4fbdd54db0015e081bc8d913e9570c4651d2e41f17155f2a2826ec823adaf36b44d1264ff686c3735835a483f3cd1551a1f5274c028692fd3 SHA512 f78991e57eed2b095e8659825723bfc107d3c4519d1864769a0190f22e3d5667a1a4213a067470a8fb07c1f0562ec950c9fbe37f70e9475811dd1edfaf3f17f0 +DIST instantclient-jdbc-linux-11.2.0.4.0.zip 1562440 BLAKE2B e3f377802958b22aede4d91c9bc16a85f5c0ff2cec3066a4a49f5c71ab90c17f9b7c6f29da146304327569cb3d5d533a3807941e4061254e0cf57a8387a55b04 SHA512 0a92a6529642203d48846d3f22f3756ada22942ea5e7c36d779d220dc7195301d4016edd8ee5124f9e51429bb77d9890602c1a18884eec58ff40c2aed24e55f9 +DIST instantclient-jdbc-linux.x64-11.2.0.3.0.zip 1562504 BLAKE2B 07f0753ff2add12924d05c6a4b4d07356726c7ca7d8a3118e0d65bf30db04eb89aeb0255591583714cd168782313eb083764d6ca9ed64b2081dc119c46222114 SHA512 afb824786e01f316dfa244e304fae7d9a34f4175de8ff6622bed116a9810bfca9ec5eceda6a1de95d46f7170fb63f1345dc1886efd168f1daa8c8498d2b3c8d7 +DIST instantclient-jdbc-linux.x64-11.2.0.4.0.zip 1562474 BLAKE2B f93a05ad324bb364ddab83b0bc75f6c0bc8d7224f53cf337c9887f99e07c98a8752e7d4581b19ca38c70bbe3fcf1b492d753f715bed7ba8144f37c03cc9524c0 SHA512 289a08bddc81687b73a42fb35ae6ea294dd8f536ae9d3e95142ab78ad72eeebf66947fa6f5585e48e35b7f92e65fe6a295fb564b8353d389e76bfecf35c48c18 diff --git a/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild b/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild new file mode 100644 index 000..303d9dbd2c5 --- /dev/null +++ b/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.3.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="4" + +inherit eutils multilib + +MY_PLAT_x86="Linux x86" +MY_A_x86="${PN/oracle-/}-linux-${PV}.0.zip" + +MY_PLAT_amd64="Linux x86-64" +MY_A_amd64="${PN/oracle-/}-linux.x64-${PV}.0.zip" + +DESCRIPTION="Oracle 11g Instant Client: JDBC supplement" +HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"; +SRC_URI=" + x86? ( ${MY_A_x86} ) + amd64? ( ${MY_A_amd64} multilib? ( ${MY_A_x86} ) ) +" + +LICENSE="OTN" +SLOT="0" +KEYWORDS="amd64 x86" +RESTRICT="fetch" +IUSE="multilib" + +DEPEND="app-arch/unzip" +RDEPEND="~dev-db/oracle-instantclient-basic-${PV}" + +S="${WORKDIR}" + +QA_PREBUILT="usr/lib*/oracle/${PV}/client/lib*/lib*" + +default_abi() { + [[ ${DEFAULT_ABI} == 'default' ]] && echo ${ARCH} || echo ${DEFAULT_ABI} +} + +abi_list() { + if use multilib; then + echo ${MULTILIB_ABIS} + else + default_abi + fi + return 0 +} + +set_abivars() { + local abi=$1 + # platform name + MY_PLAT=MY_PLAT_${abi} + MY_PLAT=${!MY_PLAT} + # runtime distfile + MY_A=MY_A_${abi} + MY_A=${!MY_A} + # abi sourcedir + MY_S="${S}/${abi}/instantclient_11_2" + # ABI might not need to be set at all + [[ -n ${ABI} ]] && MY_ABI=${abi} || MY_ABI= + # abi libdir + MY_LIBDIR=$(ABI=${MY_ABI} get_libdir) +} + +pkg_nofetch() { + eerror "Please go to" + eerror " ${HOMEPAGE%/*}/index-097480.html" + eerror " and download" + local abi + for abi in $(abi_list) + do + set_abivars ${abi} + eerror "Instant Client for ${MY_PLAT}" + eerror "JDBC: ${MY_A}" + done + eerror "After downloading, put them in:" + eerror "${DISTDIR}/" +} + +src_unpack() { + local abi + for abi in $(abi_list) + do + set_abivars ${abi} + mkdir -p "${MY_S%/*}" || die + cd "${MY_S%/*}" || die + unpack ${MY_A} + done +} + +src_install() { + # all binaries go here + local oracle_home=/usr/$(get_libdir)/oracle/${PV}/client + into "${oracle_home}" + + local abi + for abi in $(abi_list) +
[gentoo-commits] repo/gentoo:master commit in: dev-db/oracle-instantclient-basic/files/, dev-db/oracle-instantclient-basic/
commit: 68fcf11d4db5454e85386e9f666235aa4fbf6d74 Author: Michael Haubenwallner gentoo org> AuthorDate: Mon Jul 9 19:48:34 2018 + Commit: Michael Haubenwallner gentoo org> CommitDate: Mon Jul 9 19:51:46 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68fcf11d Revert "dev-db/oracle-instantclient-basic: cleanup old" This reverts commit 5719cacb8b4d4f2b0d40e92e667a7c940de1b319. There have been stable keywords around. dev-db/oracle-instantclient-basic/Manifest | 8 + .../files/11.2.0.3-makefile.patch | 57 ++ .../files/tnsnames.ora.sample | 93 ++ .../oracle-instantclient-basic-11.2.0.3.ebuild | 197 .../oracle-instantclient-basic-11.2.0.4.ebuild | 199 + 5 files changed, 554 insertions(+) diff --git a/dev-db/oracle-instantclient-basic/Manifest b/dev-db/oracle-instantclient-basic/Manifest new file mode 100644 index 000..48135bfba5b --- /dev/null +++ b/dev-db/oracle-instantclient-basic/Manifest @@ -0,0 +1,8 @@ +DIST instantclient-basic-linux-11.2.0.3.0.zip 58502865 BLAKE2B da0f428447a4300dc64b9845d6f55c3dbeff38af06b1cb38b083f661a575a5c1749737ab389b7222f7be2a05ccdf367830642b1656505b078c0c3ca523159ae8 SHA512 c790f593e67bcc7c114a6287e1f064c03f292472e0a1a5e617a9f19017f06442f31502f66af8e6cfdf2235a18546104dc9aac164a3aa641db5728b66685c9302 +DIST instantclient-basic-linux-11.2.0.4.0.zip 58793148 BLAKE2B e0f92f119a5e8890a4507160179cd49af15ed14bd7c48480d3f685a3e4918a96e6444e75c6ea11d34681a6c66ff0e8011f44840de5f080e2dc3c03079361e4a1 SHA512 b333c9334e960617ac7cc68ad1c7b45f990d5c24c7a5bc8e51b3bc8ff6476acfb6a032521f75ba39327c71ee9676d1163b252066d52e97c1dfe9c092a92a62a0 +DIST instantclient-basic-linux.x64-11.2.0.3.0.zip 60331694 BLAKE2B 8d3e4946c04edd515f0d2495e8ce25b152ded0d903d58244d0d2a2b8bbaf263b0de67829a932f637193c08e96f4a532c131f50b6594009ca4ee1dc228d6a06d1 SHA512 708940b5ca5bc4e0617da2c4da61d0a85834e3e0731ac328a201954558a624162f71d342d674b08ec2cf076e8f639c230f88a73f6d9bfe8908b0e76805e617b7 +DIST instantclient-basic-linux.x64-11.2.0.4.0.zip 60704657 BLAKE2B 77735e81a0acf88221fefff38447536a81a32a6f5cb09dcd4526d43315be1fabb6882bb9e7a5703a4188ac9e112fba611f3e2c064a128eb66512935a1af62b33 SHA512 01ed32f1771bfa2f8ef1b81314843fb2b7b81582f33c07d86670c959bbb08355dc7cc8da586852bb353a3a914658d1e7828d6b5df884215de8d76881c956a989 +DIST instantclient-sdk-linux-11.2.0.3.0.zip 639306 BLAKE2B 80d0cac2061156fd4cfe0792a7bebcaca77ce855335c651472d0ee74cf87350ae4925d92ecd12407b285605fb0d533dcf2a6dfc46d8a0eaa6172461e9c96dc2f SHA512 fa0f98d4b2002982fab4438f734904e0ebfab777d601321423b454f9188c3b863e853fc5486c9958771f7ff8c9a544ce73e80750d745c3142872927ed1777ee1 +DIST instantclient-sdk-linux-11.2.0.4.0.zip 643080 BLAKE2B 9ea15b227d260f7e24b572be1238074dc3a3033a2ab6313d95b750ae48468bda018c52ac604664caa128396024c0ff4bcbc0d401b7900ae27f5f3877a4b44123 SHA512 09e14a0ed88182b685a00b6370da4379710c4179fcf2d5ebdb43684b7099484122f7f5181a80352464f03ae9d0150f5c2ee5f20ede98faa9073294324b9faec8 +DIST instantclient-sdk-linux.x64-11.2.0.3.0.zip 641586 BLAKE2B b3a3fa4c362031aa9d9e926f852e2bccc41dd12c8dac0a18b707f22130a8bfc1b04e12c13b7f94a845439d922884d9f83c149ac0d59af498a73f4c74730be715 SHA512 08b3fdc68e09f262549e2505867943aff5c3927d158569ea7e0bca4f958af725a46143d325dcf80a6d48d09f9240f147470439ac55ea848a27df3eeedd28f732 +DIST instantclient-sdk-linux.x64-11.2.0.4.0.zip 643089 BLAKE2B 710f0a2a81dde6cabdfb2e1472f40cb715d1e060377bec1d05d8b1c794ec05b023f4feca30603202487b52527723ed9d60f73371443ce76ad2781da9c1ed5412 SHA512 7198ddc7d8804353900e45b36de79659d75dee0197c4dd58bd4d69408e7131c95025223bbd1f39ef208269bff379daa6e05f4371af83a82b83997cafadc1d642 diff --git a/dev-db/oracle-instantclient-basic/files/11.2.0.3-makefile.patch b/dev-db/oracle-instantclient-basic/files/11.2.0.3-makefile.patch new file mode 100644 index 000..efcc2c6fac7 --- /dev/null +++ b/dev-db/oracle-instantclient-basic/files/11.2.0.3-makefile.patch @@ -0,0 +1,57 @@ +Fake demo_xe.mk found in Oracle eXpress Edition, +known by CPAN DBD::Oracle (bug#165834). +This provides absolute paths for headers and libraries. + +Paranoia drops those REMOVE lines. +--- sdk/demo/demo.mk.orig 2012-03-06 17:11:57.636990449 +0100 sdk/demo/demo.mk 2012-03-06 17:19:37.985324293 +0100 +@@ -28,8 +28,9 @@ + CC=/opt/SunProd/SUNWspro6.1/bin/CC + cc=/opt/SunProd/SUNWspro6.1/bin/cc + +-ICINCHOME=../ +-ICLIBHOME=../../ ++LIBDIR=lib ++ICINCHOME=$(ORACLE_HOME)/ ++ICLIBHOME=$(ORACLE_HOME)/$(LIBDIR) + ICLIBPATH=-L$(ICLIBHOME) + THREADLIBS=-lthread + CCLIB=$(ICLIBPATH) -locci -lclntsh $(THREADLIBS) +@@ -64,18 +64,18 @@ + all: clean buildoci $(OCCIDEMO) $(OCCIOBJDEMO) + + buildoci: $(CLNCACHE) $(LIBCLNT) $(CDEMOOBJS) +- $(MKLINK) $(ICLIBHOME)libclntsh$(SO_EXT).11.1 $(ICLIBHOME)libclntsh$(SO_EXT) +- $(MKLINK) $(ICLIBHOME)libocci$(SO_EXT).11.1 $(ICLIBHOME)libocci$(SO_EXT) ++# $(MKLINK) $(ICLIBHOME)libclntsh$
[gentoo-commits] repo/gentoo:master commit in: net-misc/memcached/
commit: a09f7cff4a3e928fa5519cd9048075a02fd04cb1 Author: Matthew Thode gentoo org> AuthorDate: Mon Jul 9 19:48:40 2018 + Commit: Matt Thode gentoo org> CommitDate: Mon Jul 9 19:48:58 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a09f7cff net-misc/memcached: 1.5.9 bup Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/memcached/Manifest | 1 + net-misc/memcached/memcached-1.5.9.ebuild | 95 +++ 2 files changed, 96 insertions(+) diff --git a/net-misc/memcached/Manifest b/net-misc/memcached/Manifest index 2c372fabc78..ba9ffd5e770 100644 --- a/net-misc/memcached/Manifest +++ b/net-misc/memcached/Manifest @@ -5,3 +5,4 @@ DIST memcached-1.5.5.tar.gz 449297 BLAKE2B c4c5f35a83b858942292ee7dcf613ad954214 DIST memcached-1.5.6.tar.gz 452038 BLAKE2B 357197c06a3211a7f2fcd90a3895f0ed3a56bc4e5b685e2dbe605cd9bbab676759b9707c9cedaeec9dbc59dddca92a7e6152cf5f4324ec66edbf7425bd7a7209 SHA512 b8bb3b69358a476c6f11f42e89565dd0261cba3f1eaa6b0999dba7c2cb2d7c5e9ca24dedc6b7fd46ec78e40e52d66fe4694ebafd6bbd4557d25d66757d9024a4 DIST memcached-1.5.7.tar.gz 458062 BLAKE2B 5ff0b2a0f46472dde5037268ff97e88afa15f9f9406e93a8cb43827e2bf918a935e1a29456e756cca1e5adcbf6634b6f1e9a7b007e9f446c1400ff64c1480a1d SHA512 b20a6b0c79007904146c83c119c17e6af47b8c4d9993c316fe2557fade66a1bf14839fe8fdc371a52a7ab558433048a6d9386962647221743ed0908b277003fc DIST memcached-1.5.8.tar.gz 459715 BLAKE2B b151a0c204c392f54551361ac6d12f61b511eaac3837406fc29a6dd64fd7522efb04f33a06f9f316d5e64ef33cf1940d4a90818bbe7401ac27a636cacaeff34b SHA512 6f0e3ce9cae3e424c41223597353b9520e7e7f97fb4719a5d520dfd34e1d917d4ee0e42bced0a5799042227b80bc4ed2778715a71b9941239db13cb367bdb088 +DIST memcached-1.5.9.tar.gz 462605 BLAKE2B e648cd968f64107be11ebb101efd1d61bfb7db677b3cb7ed1325ca1fd810949cb3067ebee07df974f89beff48a38133f4409fcb8cd176b195a5287ea91be3d53 SHA512 06f7f09a0ec1ec02353296f79776ce9229c648f4ca7c6914f82b3e50455c3b5c8d535c62d8a823f5a50375acddb9cb77470bec430c2acb37f107fb660fe29e54 diff --git a/net-misc/memcached/memcached-1.5.9.ebuild b/net-misc/memcached/memcached-1.5.9.ebuild new file mode 100644 index 000..7b92758285f --- /dev/null +++ b/net-misc/memcached/memcached-1.5.9.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools eutils flag-o-matic systemd user + +MY_PV="${PV/_rc/-rc}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="High-performance, distributed memory object caching system" +HOMEPAGE="http://memcached.org/"; +SRC_URI="https://www.memcached.org/files/${MY_P}.tar.gz +https://www.memcached.org/files/old/${MY_P}.tar.gz"; + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="debug sasl seccomp selinux slabs-reassign test" # hugetlbfs later + +RDEPEND=">=dev-libs/libevent-1.4:= +dev-lang/perl +sasl? ( dev-libs/cyrus-sasl ) +seccomp? ( sys-libs/libseccomp ) +selinux? ( sec-policy/selinux-memcached )" +DEPEND="${RDEPEND} + test? ( virtual/perl-Test-Harness >=dev-perl/Cache-Memcached-1.24 )" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + epatch "${FILESDIR}/${PN}-1.2.2-fbsd.patch" + epatch "${FILESDIR}/${PN}-1.4.0-fix-as-needed-linking.patch" + epatch "${FILESDIR}/${PN}-1.4.4-as-needed.patch" + epatch "${FILESDIR}/${PN}-1.4.17-EWOULDBLOCK.patch" + sed -i -e 's,-Werror,,g' configure.ac || die + sed -i -e 's,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,' configure.ac || die + eautoreconf + use slabs-reassign && append-flags -DALLOW_SLABS_REASSIGN + + # Tweak upstream systemd unit to use Gentoo variables/envfile. + # As noted by bug #587440 + sed -i -e '/^ExecStart/{ + s,{USER},{MEMCACHED_RUNAS},g; + s,{CACHESIZE},{MEMUSAGE},g; + s,OPTIONS,MISC_OPTS,g; + }; + /Environment=/{s,OPTIONS,MISC_OPTS,g;}; + /EnvironmentFile=/{s,/sysconfig/,/conf.d/,g;}; + ' \ + "${S}"/scripts/memcached.service + default +} + +src_configure() { + econf \ + --disable-docs \ + $(use_enable sasl) + # The xml2rfc tool to build the additional docs requires TCL :-( + # `use_enable doc docs` +} + +src_compile() { + # There is a heavy degree of per-object compile flags + # Users do NOT know better than upstream. Trying to compile the testapp and + # the -debug version with -DNDEBUG _WILL_ fail. + append-flags -UNDEBUG -pthread + emake testapp memcached-debug CFLAGS="${CFLAGS}" + filter-flags -UNDEBUG + emake +} + +src_install() { + emake DESTDIR="${D}" install +
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 09f249a8dae3a257aa65dfd0b2022a561b6f71a8 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 19:47:53 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 19:48:26 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f249a8 sys-fs/yaffs-utils: remove obsolete entry profiles/package.mask | 6 -- 1 file changed, 6 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index 4cd136305c2..a3d01e98f55 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -378,12 +378,6 @@ virtual/httpd-php:7.3 # Masked for removal in 30 days, bug #657400 media-libs/libgltf -# Mikle Kolyada (9 June 2018) -# Fails to buil, dead upstream, EAPI=2 -# Only the live enuild in the tree. -# Masked for removal in 30 days -sys-fs/yaffs-utils - # Mike Pagano (30 May 2018) # Masking due to bad commit in the networking stack. =sys-kernel/gentoo-sources-4.14.46
[gentoo-commits] repo/gentoo:master commit in: sys-fs/yaffs-utils/, sys-fs/yaffs-utils/files/
commit: 37180689981de73209819b92692cb5616e764021 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 19:46:42 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 19:48:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37180689 sys-fs/yaffs-utils: remove last rited package .../yaffs-utils/files/yaffs-utils--build.patch | 36 -- sys-fs/yaffs-utils/metadata.xml| 8 - sys-fs/yaffs-utils/yaffs-utils-.ebuild | 29 - 3 files changed, 73 deletions(-) diff --git a/sys-fs/yaffs-utils/files/yaffs-utils--build.patch b/sys-fs/yaffs-utils/files/yaffs-utils--build.patch deleted file mode 100644 index 901484db999..000 --- a/sys-fs/yaffs-utils/files/yaffs-utils--build.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff --git a/utils/Makefile b/utils/Makefile -index 4929e08..51c4e5f 100644 a/utils/Makefile -+++ b/utils/Makefile -@@ -16,14 +16,13 @@ - - #KERNELDIR = /usr/src/kernel-headers-2.4.18 - --CFLAGS = -I/usr/include -I.. -O2 -Wall -DCONFIG_YAFFS_UTIL -+CFLAGS+= -I.. -Wall -DCONFIG_YAFFS_UTIL $(CPPFLAGS) - CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations - CFLAGS+= -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline - - ## Change if you are using a cross-compiler - MAKETOOLS = - --CC=$(MAKETOOLS)gcc - - MKYAFFSOBJS = mkyaffs.o - -@@ -36,13 +35,13 @@ $(MKYAFFSIMAGEOBJS): %.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - - mkyaffsimage: $(MKYAFFSIMAGEOBJS) -- $(CC) -o $@ $(MKYAFFSIMAGEOBJS) -+ $(CC) $(CFLAGS) -o $@ $(MKYAFFSIMAGEOBJS) $(LDFLAGS) - - $(MKYAFFSOBJS): %.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - - mkyaffs: $(MKYAFFSOBJS) -- $(CC) -o $@ $(MKYAFFSOBJS) -+ $(CC) $(CFLAGS) -o $@ $(MKYAFFSOBJS) $(LDFLAGS) - - yaffs_ecc.c: - ln -s ../yaffs_ecc.c yaffs_ecc.c diff --git a/sys-fs/yaffs-utils/metadata.xml b/sys-fs/yaffs-utils/metadata.xml deleted file mode 100644 index 71b1461e114..000 --- a/sys-fs/yaffs-utils/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - -http://www.gentoo.org/dtd/metadata.dtd";> - - - embed...@gentoo.org - Embedded Gentoo - - diff --git a/sys-fs/yaffs-utils/yaffs-utils-.ebuild b/sys-fs/yaffs-utils/yaffs-utils-.ebuild deleted file mode 100644 index 9606fd88801..000 --- a/sys-fs/yaffs-utils/yaffs-utils-.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -EGIT_REPO_URI="git://www.aleph1.co.uk/yaffs" -EGIT_SOURCEDIR=${WORKDIR} - -inherit eutils git-2 toolchain-funcs - -DESCRIPTION="tools for generating YAFFS images" -HOMEPAGE="http://www.aleph1.co.uk/yaffs/"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="" - -S=${WORKDIR}/utils - -src_prepare() { - epatch "${FILESDIR}"/${P}-build.patch - tc-export CC -} - -src_install() { - dobin mkyaffs || die - dodoc ../README -}
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 914febc477dac68d772a3bc9e3ff48b7c81d6649 Author: James Le Cuirot gentoo org> AuthorDate: Mon Jul 9 19:35:01 2018 + Commit: James Le Cuirot gentoo org> CommitDate: Mon Jul 9 19:35:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914febc4 Revert "profiles: add arm 17.0 profiles" This reverts commit 8ef566d3672572990664d48595994385df06f535. A news item with a clear migration guide is needed before this is ready for public consumption. Bug: https://bugs.gentoo.org/602440 profiles/profiles.desc | 25 - 1 file changed, 25 deletions(-) diff --git a/profiles/profiles.desc b/profiles/profiles.desc index 0a06390604f..afac0df64f6 100644 --- a/profiles/profiles.desc +++ b/profiles/profiles.desc @@ -93,31 +93,6 @@ arm default/linux/arm/13.0/armv7a dev arm default/linux/arm/13.0/armv7a/desktop dev arm default/linux/arm/13.0/armv7a/desktop/gnome dev arm default/linux/arm/13.0/armv7a/developer dev -arm default/linux/arm/17.0 stable -arm default/linux/arm/17.0/desktop dev -arm default/linux/arm/17.0/desktop/gnomedev -arm default/linux/arm/17.0/desktop/gnome/systemddev -arm default/linux/arm/17.0/developerdev -arm default/linux/arm/17.0/armv4dev -arm default/linux/arm/17.0/armv4/desktopdev -arm default/linux/arm/17.0/armv4/desktop/gnome dev -arm default/linux/arm/17.0/armv4/developer dev -arm default/linux/arm/17.0/armv4t dev -arm default/linux/arm/17.0/armv4t/desktop dev -arm default/linux/arm/17.0/armv4t/desktop/gnome dev -arm default/linux/arm/17.0/armv4t/developer dev -arm default/linux/arm/17.0/armv5te dev -arm default/linux/arm/17.0/armv5te/desktop dev -arm default/linux/arm/17.0/armv5te/desktop/gnomedev -arm default/linux/arm/17.0/armv5te/developerdev -arm default/linux/arm/17.0/armv6j dev -arm default/linux/arm/17.0/armv6j/desktop dev -arm default/linux/arm/17.0/armv6j/desktop/gnome dev -arm default/linux/arm/17.0/armv6j/developer dev -arm default/linux/arm/17.0/armv7a dev -arm default/linux/arm/17.0/armv7a/desktop dev -arm default/linux/arm/17.0/armv7a/desktop/gnome dev -arm default/linux/arm/17.0/armv7a/developer dev # ARM64 Profiles # @MAINTAINER: ar...@gentoo.org
[gentoo-commits] repo/gentoo:master commit in: net-misc/ipmiview/, net-misc/ipmiview/files/
commit: 4b302e8843d71ed41f81feae717b739cc7f07990 Author: Conrad Kostecki kostecki com> AuthorDate: Mon Jul 9 18:02:34 2018 + Commit: James Le Cuirot gentoo org> CommitDate: Mon Jul 9 19:30:29 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b302e88 net-misc/ipmiview: New package Closes: https://bugs.gentoo.org/601406 Package-Manager: Portage-2.3.41, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9109 net-misc/ipmiview/Manifest | 2 + net-misc/ipmiview/files/fake-java.bash | 24 +++ net-misc/ipmiview/files/launcher-pre.bash | 3 + net-misc/ipmiview/ipmiview-2.14.0.180213.ebuild | 85 + net-misc/ipmiview/metadata.xml | 12 5 files changed, 126 insertions(+) diff --git a/net-misc/ipmiview/Manifest b/net-misc/ipmiview/Manifest new file mode 100644 index 000..292d743261e --- /dev/null +++ b/net-misc/ipmiview/Manifest @@ -0,0 +1,2 @@ +DIST IPMIView_2.14.0_build.180213_bundleJRE_Linux.tar.gz 95430772 BLAKE2B 467f1b8b99df6e0b48bab0d652411ce097826eb532e92ac7889ea9c93ad53ff78a291508498d9ffa1463342951cc640fb46bfddd887669b4ebad9f1a9dd09941 SHA512 59fd4ad70f7f6da98a8ca1a95678e368cf963caa3c454e1e1c60006966aa5faeb964c7c68d4fc7f0f5804ffbb49c06d44ab56974bb47bcb77490ad737c707e92 +DIST IPMIView_2.14.0_build.180213_bundleJRE_Linux_x64.tar.gz 94006067 BLAKE2B 38e597401f3bfb27acb2b6c824ac1dcae17b7ca46fcba1ba64d3533142913915a836bbee6ccfbdb9d21f9a9976629b3412e5f6f40850c3ce139a97428bb25be1 SHA512 7b4f0e3438281da33cb85195048f21fe1101a44ec18a67f83f88665c875d01706664df44ea8eb7403b98685c09764094eaf553f985cebadce66c3dcf635151e1 diff --git a/net-misc/ipmiview/files/fake-java.bash b/net-misc/ipmiview/files/fake-java.bash new file mode 100644 index 000..7d4fbfe32a0 --- /dev/null +++ b/net-misc/ipmiview/files/fake-java.bash @@ -0,0 +1,24 @@ +#!/bin/bash + +for ARG in "${@}"; do + case ${ARG} in + -jar) + EXE=${2} + shift 2 + break + ;; + *) + shift + ;; + esac +done + +if [[ ${EXE} != *.jar ]]; then + echo "error: could not find jar argument in java invocation" >&2 + exit 1 +fi + +EXE=${EXE%.jar} +EXE=${EXE,,} + +exec "${EXE}" "${@}" diff --git a/net-misc/ipmiview/files/launcher-pre.bash b/net-misc/ipmiview/files/launcher-pre.bash new file mode 100644 index 000..11b3e52008d --- /dev/null +++ b/net-misc/ipmiview/files/launcher-pre.bash @@ -0,0 +1,3 @@ +gjl_pwd=${XDG_CONFIG_HOME:-${HOME}/.config}/ipmiview +mkdir -p "${gjl_pwd}" || exit $? +ln -snf /usr/share/ipmiview/jre "${gjl_pwd}"/ || exit $? diff --git a/net-misc/ipmiview/ipmiview-2.14.0.180213.ebuild b/net-misc/ipmiview/ipmiview-2.14.0.180213.ebuild new file mode 100644 index 000..8b3eaa7b720 --- /dev/null +++ b/net-misc/ipmiview/ipmiview-2.14.0.180213.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit desktop eapi7-ver java-pkg-2 prefix + +MY_DATE="$(ver_cut 4)" +MY_PN="IPMIView" +MY_PV="$(ver_cut 1-3)" + +DESCRIPTION="A GUI application that allows to manage multiple target systems through BMC" +HOMEPAGE="https://www.supermicro.com/"; +SRC_URI="amd64? ( ftp://ftp.supermicro.com/utility/${MY_PN}/Linux/${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux_x64.tar.gz ) + x86? ( ftp://ftp.supermicro.com/utility/${MY_PN}/Linux/${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux.tar.gz )" + +LICENSE="supermicro" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" + +DEPEND="app-arch/unzip" + +RDEPEND="net-misc/stunnel + virtual/jre:1.8" + +RESTRICT="bindist fetch mirror strip" + +DIR="/usr/share/${PN}" +QA_PREBUILT="usr/lib*" + +pkg_nofetch() { + elog "Please download ${A} from" + elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=IPMI"; + elog "and place it in your DISTDIR directory." +} + +src_unpack() { + unpack ${A} + mv -v ${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux$(usex amd64 _x64 "") ${P} || die +} + +src_prepare() { + default + + # Extract icons for menu entries + unzip -j -LL IPMIView20.jar images/ipmi{view,trap}.ico || die + + # Don't use their scary launchers + rm -v lax.jar || die +} + +src_compile() { + : +} + +src_install() { + java-pkg_dojar *.jar + java-pkg_doso $(usex amd64 '*64.so' '*32.so') + + local pre=$(prefixify_ro "${FILESDIR}"/launcher-pre.bash) + java-pkg_dolauncher ikvm --jar iKVM.jar -pre "${pre}" + java-pkg_dolauncher ikvmmicroblade --jar iKVMMicroBlade.jar -pre "${pre}" + java-pkg_dolauncher ipmiview --jar IPMIView20.jar -pre "${pre}" + java-pkg_dolauncher jviewerx9 --jar JViewerX9.jar -pre "${pre}" + java-pkg_dolauncher trapreceiver --jar TrapView.
[gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop-bin/
commit: 536cae255ca28b6ab7e5e4028375ad12fbbdd5a0 Author: Henning Schild hennsch de> AuthorDate: Fri Jun 29 05:38:08 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 19:23:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=536cae25 net-im/telegram-desktop-bin: Version bump to 1.3.9 Bug: https://bugs.gentoo.org/659568 Signed-off-by: Henning Schild hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/9034 net-im/telegram-desktop-bin/Manifest | 3 ++ .../telegram-desktop-bin-1.3.9.ebuild | 58 ++ 2 files changed, 61 insertions(+) diff --git a/net-im/telegram-desktop-bin/Manifest b/net-im/telegram-desktop-bin/Manifest index d076cb4b0a5..6615073c40c 100644 --- a/net-im/telegram-desktop-bin/Manifest +++ b/net-im/telegram-desktop-bin/Manifest @@ -1,9 +1,12 @@ DIST tdesktop-1.3.0.tar.gz 16974902 BLAKE2B 8a6d4a964e4b487c6a833eddd419bc50ab5056a37345b27676cc5b9e1bea72ecc53c93e33a890095396eabda3d792269eddf5d8d15e9840dff64483f58cf9396 SHA512 06118de30393c611b4e2194eb897ef425c2722b571df5f2cb9ae05191474c53d812f7b0a5df4f52d18a58485cd70a4e92b994d9ec7e21c83538fc447fecad313 DIST tdesktop-1.3.7.tar.gz 17056555 BLAKE2B 1ba22af19a5ad346ee3e540ded473128fe3582fb0260164c1bec3b141a94cedf34e2c75dd8601dd79c9832391bff5a59ff95aef60050f74cb36f109ffb8df98e SHA512 f92003335ac53c77ce5d320e0549734feceed6b60121429f167134cc8d16b547bd27ad3c85dcbf0da5f55ac8e1e60f5027c910082afd9f683d8a98cb7ac16d6b DIST tdesktop-1.3.8.tar.gz 17127764 BLAKE2B ff9390803bbddbd939eb3173f89b42f161d06c81f3c4702562318d08ecbcfbcf548eab04b8bd80a6f4d546db2c6d5a20c3bf73d0db9ae8ccdd9f4c88048f8074 SHA512 4cef9a2b379b090f6993e4e391152d7fa02db3863c0758ea04f04bdac219ae96e4e43459a44a2857895264555f7bf93a03a9969b1f9bd194185cc7c6e746549a +DIST tdesktop-1.3.9.tar.gz 17133428 BLAKE2B b8a8d0bf6d1ae2a55625284c16347b9f5da0f39bdad594b4ae6a8cfe57dce595da2ed54344a13641b31bbe4035b3b83ab9a1b3bce6880777ebd78c3f631c2e89 SHA512 7d9b908e038179448678eb0d29bb9ca62969674e199b89970bac85383ac839156c528939126413e6675901084a2c7d96a254195ebd1780a0b0816ae063f7c7f1 DIST tsetup.1.3.0.tar.xz 33542536 BLAKE2B 81f0361e89a8c92153277288ad74c469baffa0c9f75cbfea6bf387ef23a0c5a57443e90f57f9cadde9df847bed761e9e57f46e8d28ed176b1f6c48c562d3b943 SHA512 735592a09ca6e86bdd2d7375043a61fecf4ae7d768d2e7b177e60579fa56154d56046ae890317111c1d91a222a9a96b9549497efd5018938e0ca711e67439424 DIST tsetup.1.3.7.tar.xz 33921540 BLAKE2B 4d309bab164299ff7729f72aed44e21716e8ff1e6c41434fcd3e6c8ce9238891a2b93e4d55e62c6e44846781e755a32258dda36e02351d56357241daede342eb SHA512 c4d1249cb2e1be0e9410ba6d7b5f34f342c420d1b44e6b78736aeb611fa3e11519e4c0dfe2fd6f9a819fea09030d8cf451b2c36fc283fb12e4007b4a29855949 DIST tsetup.1.3.8.tar.xz 34517696 BLAKE2B 2a3350b2bdb05c880e306965566f622aa6cb440cc8fe3b72e8487efe6473b2e769db988766903634a90c78b66bdcbe7893742346e163de3bef4a4611f657397a SHA512 31766007ca47fe8c47fad9cebb95b1cae0db3ddec8bfee6f0108dd5e490790822d2ef4fceff2c24ca8c09483724f43aa8fa3a6cf5cb0e09de2fc26911cb66fb2 +DIST tsetup.1.3.9.tar.xz 34532440 BLAKE2B 628597a1f04a676129f7b219fa991f1dcae51f70d95366d0ee6bd0c8c8592e4cd3f7453d01d4f980c760e8541f619e9b7ee79ffc7e66953dbf22739d6d600094 SHA512 e176a0d7fe7cad421ec1e09023c8e99f143fef6c6e7aabb344cff9f62e915c9cc3ea7afe4ab58bfb776d8eb304a6a9c140c622614fa9e7f6ef7ea62bb56cf88b DIST tsetup32.1.3.0.tar.xz 35710316 BLAKE2B 68c5d3cd0c286d261cd090c34ebf6c8eedfd29cdbd579c38b65256f2c2dea0196450e06a91944bede2bf9319d9a6e6966178c49da0e8ac19093744cccd56c1a9 SHA512 437e5bdfd11673c5a85933da23f082ff51d4c7366d1aa6e115c9a8f5a6c63987a9102b891525887c27f31c293a8ed167790a6bcd9cb55aa338bbd4e8b870b159 DIST tsetup32.1.3.7.tar.xz 36187736 BLAKE2B 3da383c0067192e523d5b85056acf12085ceea4de6d06135f11c298e1f58ae3b09ffc500fa6cf07b72a186c8c6f6fde592f8a8aaa956ac83f90489c1383a3dd9 SHA512 7b8e3ef29f557af0912ff15cee976b7e244e7367346f1d5b4d6fbdb52941930a8952e0c01f8dc53d4a8c2bd6eb0f1f309b3dbff4b60f8790c204ccaf60565108 DIST tsetup32.1.3.8.tar.xz 37194796 BLAKE2B bfcb48b9f65bc54e1b7c269b500424ec2687c45359aec89da310548d310c5abb9d71547e77a250580f63d077fcb9b477ccd4cd8ae40a4bb4666e216950a3b809 SHA512 cae2c1a6abf2f02515e2ad8df107ab2306c0d1d7d3edf8b04fbee5c2130a0ad4b9e61929fe9b7576dc6d55f42541c2b863c30c1e3aeb186be8c9948334ecdd44 +DIST tsetup32.1.3.9.tar.xz 37241464 BLAKE2B e83927531ecda2fdb3181c105b26d320857d9f047bb50ed17b38c8c8686675240c6b0b7acc139e06064746edaf3fc69af8eb6d12ab06dc49642ca39621594a8b SHA512 8d90b4e6568730e304714afd09daa70937784e82c9ad1a84a9808104a7731a3b61101042be3644b8a2d0982b2aac97827a8228bc0c3be311e233183a806ec623 diff --git a/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.9.ebuild b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.9.ebuild new file mode 100644 index 000..6522d0b976f --- /dev/null +++ b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.9.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms o
[gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop-bin/
commit: d625d9820a771c8126ac4faec8024ca79a2f3fce Author: Henning Schild hennsch de> AuthorDate: Fri Jun 29 05:39:08 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 19:23:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d625d982 net-im/telegram-desktop-bin: clean up old. Signed-off-by: Henning Schild hennsch.de> net-im/telegram-desktop-bin/Manifest | 3 -- .../telegram-desktop-bin-1.3.0.ebuild | 58 -- 2 files changed, 61 deletions(-) diff --git a/net-im/telegram-desktop-bin/Manifest b/net-im/telegram-desktop-bin/Manifest index 6615073c40c..64482faa101 100644 --- a/net-im/telegram-desktop-bin/Manifest +++ b/net-im/telegram-desktop-bin/Manifest @@ -1,12 +1,9 @@ -DIST tdesktop-1.3.0.tar.gz 16974902 BLAKE2B 8a6d4a964e4b487c6a833eddd419bc50ab5056a37345b27676cc5b9e1bea72ecc53c93e33a890095396eabda3d792269eddf5d8d15e9840dff64483f58cf9396 SHA512 06118de30393c611b4e2194eb897ef425c2722b571df5f2cb9ae05191474c53d812f7b0a5df4f52d18a58485cd70a4e92b994d9ec7e21c83538fc447fecad313 DIST tdesktop-1.3.7.tar.gz 17056555 BLAKE2B 1ba22af19a5ad346ee3e540ded473128fe3582fb0260164c1bec3b141a94cedf34e2c75dd8601dd79c9832391bff5a59ff95aef60050f74cb36f109ffb8df98e SHA512 f92003335ac53c77ce5d320e0549734feceed6b60121429f167134cc8d16b547bd27ad3c85dcbf0da5f55ac8e1e60f5027c910082afd9f683d8a98cb7ac16d6b DIST tdesktop-1.3.8.tar.gz 17127764 BLAKE2B ff9390803bbddbd939eb3173f89b42f161d06c81f3c4702562318d08ecbcfbcf548eab04b8bd80a6f4d546db2c6d5a20c3bf73d0db9ae8ccdd9f4c88048f8074 SHA512 4cef9a2b379b090f6993e4e391152d7fa02db3863c0758ea04f04bdac219ae96e4e43459a44a2857895264555f7bf93a03a9969b1f9bd194185cc7c6e746549a DIST tdesktop-1.3.9.tar.gz 17133428 BLAKE2B b8a8d0bf6d1ae2a55625284c16347b9f5da0f39bdad594b4ae6a8cfe57dce595da2ed54344a13641b31bbe4035b3b83ab9a1b3bce6880777ebd78c3f631c2e89 SHA512 7d9b908e038179448678eb0d29bb9ca62969674e199b89970bac85383ac839156c528939126413e6675901084a2c7d96a254195ebd1780a0b0816ae063f7c7f1 -DIST tsetup.1.3.0.tar.xz 33542536 BLAKE2B 81f0361e89a8c92153277288ad74c469baffa0c9f75cbfea6bf387ef23a0c5a57443e90f57f9cadde9df847bed761e9e57f46e8d28ed176b1f6c48c562d3b943 SHA512 735592a09ca6e86bdd2d7375043a61fecf4ae7d768d2e7b177e60579fa56154d56046ae890317111c1d91a222a9a96b9549497efd5018938e0ca711e67439424 DIST tsetup.1.3.7.tar.xz 33921540 BLAKE2B 4d309bab164299ff7729f72aed44e21716e8ff1e6c41434fcd3e6c8ce9238891a2b93e4d55e62c6e44846781e755a32258dda36e02351d56357241daede342eb SHA512 c4d1249cb2e1be0e9410ba6d7b5f34f342c420d1b44e6b78736aeb611fa3e11519e4c0dfe2fd6f9a819fea09030d8cf451b2c36fc283fb12e4007b4a29855949 DIST tsetup.1.3.8.tar.xz 34517696 BLAKE2B 2a3350b2bdb05c880e306965566f622aa6cb440cc8fe3b72e8487efe6473b2e769db988766903634a90c78b66bdcbe7893742346e163de3bef4a4611f657397a SHA512 31766007ca47fe8c47fad9cebb95b1cae0db3ddec8bfee6f0108dd5e490790822d2ef4fceff2c24ca8c09483724f43aa8fa3a6cf5cb0e09de2fc26911cb66fb2 DIST tsetup.1.3.9.tar.xz 34532440 BLAKE2B 628597a1f04a676129f7b219fa991f1dcae51f70d95366d0ee6bd0c8c8592e4cd3f7453d01d4f980c760e8541f619e9b7ee79ffc7e66953dbf22739d6d600094 SHA512 e176a0d7fe7cad421ec1e09023c8e99f143fef6c6e7aabb344cff9f62e915c9cc3ea7afe4ab58bfb776d8eb304a6a9c140c622614fa9e7f6ef7ea62bb56cf88b -DIST tsetup32.1.3.0.tar.xz 35710316 BLAKE2B 68c5d3cd0c286d261cd090c34ebf6c8eedfd29cdbd579c38b65256f2c2dea0196450e06a91944bede2bf9319d9a6e6966178c49da0e8ac19093744cccd56c1a9 SHA512 437e5bdfd11673c5a85933da23f082ff51d4c7366d1aa6e115c9a8f5a6c63987a9102b891525887c27f31c293a8ed167790a6bcd9cb55aa338bbd4e8b870b159 DIST tsetup32.1.3.7.tar.xz 36187736 BLAKE2B 3da383c0067192e523d5b85056acf12085ceea4de6d06135f11c298e1f58ae3b09ffc500fa6cf07b72a186c8c6f6fde592f8a8aaa956ac83f90489c1383a3dd9 SHA512 7b8e3ef29f557af0912ff15cee976b7e244e7367346f1d5b4d6fbdb52941930a8952e0c01f8dc53d4a8c2bd6eb0f1f309b3dbff4b60f8790c204ccaf60565108 DIST tsetup32.1.3.8.tar.xz 37194796 BLAKE2B bfcb48b9f65bc54e1b7c269b500424ec2687c45359aec89da310548d310c5abb9d71547e77a250580f63d077fcb9b477ccd4cd8ae40a4bb4666e216950a3b809 SHA512 cae2c1a6abf2f02515e2ad8df107ab2306c0d1d7d3edf8b04fbee5c2130a0ad4b9e61929fe9b7576dc6d55f42541c2b863c30c1e3aeb186be8c9948334ecdd44 DIST tsetup32.1.3.9.tar.xz 37241464 BLAKE2B e83927531ecda2fdb3181c105b26d320857d9f047bb50ed17b38c8c8686675240c6b0b7acc139e06064746edaf3fc69af8eb6d12ab06dc49642ca39621594a8b SHA512 8d90b4e6568730e304714afd09daa70937784e82c9ad1a84a9808104a7731a3b61101042be3644b8a2d0982b2aac97827a8228bc0c3be311e233183a806ec623 diff --git a/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.0.ebuild b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.0.ebuild deleted file mode 100644 index 6522d0b976f..000 --- a/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.0.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit desktop gnome2-utils xdg - -DESCRIPT
[gentoo-commits] repo/gentoo:master commit in: x11-themes/experience/
commit: 348c9e6123d432411b5d2b3354e9293e4e271487 Author: Mart Raudsepp gentoo org> AuthorDate: Mon Jul 9 19:14:42 2018 + Commit: Mart Raudsepp gentoo org> CommitDate: Mon Jul 9 19:15:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=348c9e61 x11-themes/experience: remove old Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-themes/experience/Manifest | 1 - x11-themes/experience/experience-3.04.ebuild | 44 2 files changed, 45 deletions(-) diff --git a/x11-themes/experience/Manifest b/x11-themes/experience/Manifest index 61b06e78b90..50c4af0e76b 100644 --- a/x11-themes/experience/Manifest +++ b/x11-themes/experience/Manifest @@ -1,2 +1 @@ DIST experience-3.04.tar.gz 108140 BLAKE2B 0909eb0a55fcc27f806ccebcf4ebfa8fef53e753227bf04accd4460c0ea4507d9627c7a2796a4fb6fad1841b9c032de0397e72ce62a623a0cd6756578340ddce SHA512 528c282fae43da76d88401dc1225cb8ce357e3c2786d5848bfdc3560692939837a813d7689f2136ef1cf8f832390a8619c4736c0ff99ea5a2c1818be2cd47a81 -DIST experience-gtk-3.04.tar.gz 108140 BLAKE2B 0909eb0a55fcc27f806ccebcf4ebfa8fef53e753227bf04accd4460c0ea4507d9627c7a2796a4fb6fad1841b9c032de0397e72ce62a623a0cd6756578340ddce SHA512 528c282fae43da76d88401dc1225cb8ce357e3c2786d5848bfdc3560692939837a813d7689f2136ef1cf8f832390a8619c4736c0ff99ea5a2c1818be2cd47a81 diff --git a/x11-themes/experience/experience-3.04.ebuild b/x11-themes/experience/experience-3.04.ebuild deleted file mode 100644 index dce8d130b17..000 --- a/x11-themes/experience/experience-3.04.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="GTK+2 themes which copy and improve the look of XP Luna" -HOMEPAGE="https://web.archive.org/web/20130730053042/https://art.gnome.org/themes/gtk2/1058"; -SRC_URI="http://freshmeat.net/redir/${PN}/50795/url_tgz/${PN}-gtk-${PV}.tar.gz"; - -KEYWORDS="amd64 ~ppc sparc x86" -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -RDEPEND="x11-themes/gtk-engines-experience" -DEPEND="${RDEPEND} - sys-apps/findutils" - -src_unpack() { - unpack ${A} - cd "${WORKDIR}" - - mv "eXperience - ice" eXperience-ice - mv "eXperience - olive" eXperience-olive - - # Don't install index files, since this package doesn't provide the icon - # set. Remove cruft files also. - find . -name 'index.theme' -o -name '*~' | xargs rm -f -} - -src_compile() { - :; -} - -src_install() { - cd "${WORKDIR}" - - for dir in eXperience* ; do - insinto "/usr/share/themes/${dir}" - doins -r ${dir}/* - done - - dodoc eXperience/README -}
[gentoo-commits] repo/gentoo:master commit in: dev-util/meld/
commit: 1a874bed3618b04f7ccdd51b35ca33d166647712 Author: Mart Raudsepp gentoo org> AuthorDate: Mon Jul 9 19:11:45 2018 + Commit: Mart Raudsepp gentoo org> CommitDate: Mon Jul 9 19:15:17 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a874bed dev-util/meld: remove old Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/meld/Manifest | 2 -- dev-util/meld/meld-3.18.0.ebuild | 35 --- dev-util/meld/meld-3.18.1.ebuild | 36 3 files changed, 73 deletions(-) diff --git a/dev-util/meld/Manifest b/dev-util/meld/Manifest index 974d4b66f83..2d125cbd844 100644 --- a/dev-util/meld/Manifest +++ b/dev-util/meld/Manifest @@ -1,3 +1 @@ -DIST meld-3.18.0.tar.xz 553772 BLAKE2B 9a481f18147a767e65cb6d58bd4770232e9d2f8e10261f8fe19d305ab44c19b8728dd5f7e7b77e4607fcdc4e6b47a0464ba5dbb4491ddc9d91ae8c1a10c1e409 SHA512 1d9f07223f33f2156e6821a567b7f3b28c942adf62b2948504301ce8788100bdac525fc4626a59c9c03cba63fa590407910abdcc41d627da5b4c8fa6ccfd2582 -DIST meld-3.18.1.tar.xz 563516 BLAKE2B 2463fd6c2a74d9eb655c6e2d531ef69950d8f7a275c01a0dbacf48a8c236a860b27dcc79a137a56241183a1b000d36503c33112c7dcb55055a931f4c415f178d SHA512 ca60c8ea9a5b95b228bd72fe3f8c0d4a8aa004bed27c2b29cd8ff647839973f1808df81dcb5c85cb5420ab2ad4413b0ab31b617494fe6eb366b2b9ad3a83eef1 DIST meld-3.18.2.tar.xz 568292 BLAKE2B 379ec993e7e2ba79d5ff8ea0e960c294fba390d3ba4276bea7700ebe1e55820b07d00d2a88ec5b95a8eae0549a976af0a06e1b7cb7f211aa5e77b0afb266a0d4 SHA512 6a3e47c472b12cbebc392e964b30ac80d344e0a82d0dd25a43df3eeba185e40e6ae5245b09e79ad9d789618b91ccec1ccb0f1c5e6c0ae1d76bb6b4fcd9446574 diff --git a/dev-util/meld/meld-3.18.0.ebuild b/dev-util/meld/meld-3.18.0.ebuild deleted file mode 100644 index 4ca57bfc588..000 --- a/dev-util/meld/meld-3.18.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -PYTHON_REQ_USE="xml" -PYTHON_COMPAT=( python3_{4,5,6} ) -DISTUTILS_SINGLE_IMPL=1 - -inherit gnome2 distutils-r1 - -DESCRIPTION="A graphical diff and merge tool" -HOMEPAGE="http://meldmerge.org/"; - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND="${PYTHON_DEPS} - >=dev-libs/glib-2.50:2[dbus] - >=dev-python/pygobject-3.12:3[cairo,${PYTHON_USEDEP}] - gnome-base/gsettings-desktop-schemas - >=x11-libs/gtk+-3.14:3[introspection] - >=x11-libs/gtksourceview-3.14:3.0[introspection] - x11-themes/hicolor-icon-theme -" -DEPEND="${RDEPEND} - dev-util/intltool - dev-util/itstool - sys-devel/gettext -" - -python_compile_all() { - mydistutilsargs=( --no-update-icon-cache --no-compile-schemas ) -} diff --git a/dev-util/meld/meld-3.18.1.ebuild b/dev-util/meld/meld-3.18.1.ebuild deleted file mode 100644 index ea18fe9d5a8..000 --- a/dev-util/meld/meld-3.18.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -PYTHON_REQ_USE="xml" -PYTHON_COMPAT=( python3_{4,5,6} ) -DISTUTILS_SINGLE_IMPL=1 - -inherit gnome2 distutils-r1 - -DESCRIPTION="A graphical diff and merge tool" -HOMEPAGE="http://meldmerge.org/"; - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND="${PYTHON_DEPS} - >=dev-libs/glib-2.50:2[dbus] - >=dev-python/pygobject-3.12:3[cairo,${PYTHON_USEDEP}] - gnome-base/gsettings-desktop-schemas - >=x11-libs/gtk+-3.14:3[introspection] - >=x11-libs/gtksourceview-3.14:3.0[introspection] - >=x11-libs/pango-1.34[introspection] - x11-themes/hicolor-icon-theme -" -DEPEND="${RDEPEND} - dev-util/intltool - dev-util/itstool - sys-devel/gettext -" - -python_compile_all() { - mydistutilsargs=( --no-update-icon-cache --no-compile-schemas ) -}
[gentoo-commits] repo/gentoo:master commit in: sys-apps/osinfo-db/
commit: 6bbe5c880b107d06467ff9462b3af202c8f28aeb Author: Mart Raudsepp gentoo org> AuthorDate: Mon Jul 9 19:13:20 2018 + Commit: Mart Raudsepp gentoo org> CommitDate: Mon Jul 9 19:15:22 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bbe5c88 sys-apps/osinfo-db: remove old Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-apps/osinfo-db/Manifest | 1 - sys-apps/osinfo-db/osinfo-db-20170813.ebuild | 27 --- 2 files changed, 28 deletions(-) diff --git a/sys-apps/osinfo-db/Manifest b/sys-apps/osinfo-db/Manifest index 92a1a649e0a..521b0e7a891 100644 --- a/sys-apps/osinfo-db/Manifest +++ b/sys-apps/osinfo-db/Manifest @@ -1,3 +1,2 @@ -DIST osinfo-db-20170813.tar.xz 64424 BLAKE2B b4d46f82197bb5f1b956fe72e87ef365b139c6a1ab90906ac30dd3191fb6c3f5ef3978ceaf56d029a3766e8354558aa00554a767c637eef49b861b6a775fc614 SHA512 0ae4906b5c3eb400ca397f0c3baf5146b8197ee2dc712b1b89dd2f443f9505aee208327f008118628407b54ce52390a8b6138425f3f6f974b94f4a8d79955653 DIST osinfo-db-20180531.tar.xz 70868 BLAKE2B 919a2767d24af91e9aa7b14f3a238b9239aa774bec04233c95929981531d1fabb24ebfdc5c92ab401f51cf6bbf2432b6e8486a833d06a96a51e1893f39f6f641 SHA512 48b3bd2e52c16829f70d62ad8b1f32313956fcb7085cd906965f1d7b12f61952c60123ef335fbd4a1dd86aebc9751b9bf44f71c61f4bb6ac9bcb30d514ac36a9 DIST osinfo-db-20180612.tar.xz 71356 BLAKE2B 3dcf9d843d32eb4e5be7cda47e8c8d123939b381d41f0596d8fd5794c64130b1fed39b367a1f6b58c34e91b5a38811af54066311ece209cbcaf268d1f032e55c SHA512 02c92bca33ae35abe28fb575c73ab96fedf5652e7822a10a213f084390b3d863e3ea83469d8a2bbf6ed69328803d48f2f35a1e45f938ca698a63e08b82c05e9d diff --git a/sys-apps/osinfo-db/osinfo-db-20170813.ebuild b/sys-apps/osinfo-db/osinfo-db-20170813.ebuild deleted file mode 100644 index 23e97e0aa42..000 --- a/sys-apps/osinfo-db/osinfo-db-20170813.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="osinfo database files" -HOMEPAGE="http://libosinfo.org/"; -SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz"; -S="${WORKDIR}" - -LICENSE="GPL-2+" -SLOT="0" - -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" - -RDEPEND="" -DEPEND="${RDEPEND} - sys-apps/osinfo-db-tools -" -# we don't depend on intltool here, contrary to README, as the tarball already -# contains the processed results with translations in XML files - -src_unpack() { :; } - -src_install() { - osinfo-db-import --root "${D}" --dir "/usr/share/osinfo" "${DISTDIR}/${A}" -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/networkmanager-openvpn/
commit: c939178d2be9cb280a57940aee4794c15f5de786 Author: Mart Raudsepp gentoo org> AuthorDate: Mon Jul 9 19:12:53 2018 + Commit: Mart Raudsepp gentoo org> CommitDate: Mon Jul 9 19:15:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c939178d net-misc/networkmanager-openvpn: remove old Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/networkmanager-openvpn/Manifest | 1 - .../networkmanager-openvpn-1.8.2.ebuild| 55 -- 2 files changed, 56 deletions(-) diff --git a/net-misc/networkmanager-openvpn/Manifest b/net-misc/networkmanager-openvpn/Manifest index 8bdde4eb923..e8860498bdc 100644 --- a/net-misc/networkmanager-openvpn/Manifest +++ b/net-misc/networkmanager-openvpn/Manifest @@ -1,2 +1 @@ -DIST NetworkManager-openvpn-1.8.2.tar.xz 540912 BLAKE2B e972a1767fa8219aff2ecfb18c69d309f0147db16ff08db2fe50f9154defea2e805142ac38e77854902f430390f0909c692110a8bcb2e18cec27ce9661a1510c SHA512 c17f0de1d41df00b3359ab2dcce939574104b1272896bd403834b426c3fc3f177a5d2ea9cb5a1b98268f63095bc14c5904bd98c2fcf23481e78d8b8acb667927 DIST NetworkManager-openvpn-1.8.4.tar.xz 547984 BLAKE2B bb637c824414b792c6272a1791a3e99ebb3c0fc7145b01b4fa6c9b0bc2d8a0879141b7e2d1f3157b8b05366e3d0410370d3523dbe0d2daf069e4f73cdd9cf84c SHA512 dd0381175fa6a88259726a848ac46b7a5ee07a797cbe34382d3f4c0b6d8ad3807d224bfbb53cff793f4854558484d77fc7c6a6970e5364d39d058da5c35eac5a diff --git a/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.8.2.ebuild b/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.8.2.ebuild deleted file mode 100644 index 9f64c0d65de..000 --- a/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.8.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME_ORG_MODULE="NetworkManager-${PN##*-}" - -inherit gnome2 user - -DESCRIPTION="NetworkManager OpenVPN plugin" -HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"; - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="gtk test" - -RDEPEND=" - >=dev-libs/glib-2.32:2 - >=net-misc/networkmanager-1.7.0:= - >=net-vpn/openvpn-2.1 - gtk? ( - >=app-crypt/libsecret-0.18 - >=gnome-extra/nm-applet-1.7.0 - >=x11-libs/gtk+-3.4:3 - ) -" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/intltool-0.35 - virtual/pkgconfig -" - -pkg_setup() { - enewgroup nm-openvpn - enewuser nm-openvpn -1 -1 -1 nm-openvpn -} - -src_prepare() { - # Test will fail if the machine doesn't have a particular locale installed - # FAIL: (tls-import-data) unexpected 'ca' secret value, upstream bug #742708 - sed '/test_non_utf8_import (plugin, test_dir)/ d' \ - -i properties/tests/test-import-export.c || die "sed failed" - - gnome2_src_prepare -} - -src_configure() { - # --localstatedir=/var needed per bug #536248 - gnome2_src_configure \ - --localstatedir=/var \ - --disable-more-warnings \ - --disable-static \ - --with-dist-version=Gentoo \ - $(use_with gtk gnome) -}
[gentoo-commits] repo/gentoo:master commit in: dev-libs/oniguruma/
commit: 3db8a0cc93cb4eca2120914cf2f29ca9db996585 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 19:12:50 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 19:12:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3db8a0cc dev-libs/oniguruma: s390 stable wrt bug #658070 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/oniguruma/oniguruma-6.8.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/oniguruma/oniguruma-6.8.2.ebuild b/dev-libs/oniguruma/oniguruma-6.8.2.ebuild index d4a968fc0f4..b4d87472117 100644 --- a/dev-libs/oniguruma/oniguruma-6.8.2.ebuild +++ b/dev-libs/oniguruma/oniguruma-6.8.2.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/5" -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="crnl-as-line-terminator static-libs" S="${WORKDIR}/${MY_P}"
[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap/
commit: a934c48719d7bc24c8360943405653ba44e5be3d Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 19:10:16 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 19:10:16 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a934c487 sys-libs/libcap: s390 stable wrt bug #660334 Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-libs/libcap/libcap-2.25.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/libcap/libcap-2.25.ebuild b/sys-libs/libcap/libcap-2.25.ebuild index 44f01eb31e8..0c234ad75ec 100644 --- a/sys-libs/libcap/libcap-2.25.ebuild +++ b/sys-libs/libcap/libcap-2.25.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://kernel/linux/libs/security/linux-privs/libcap2/${P}.tar.xz" # it's available under either of the licenses LICENSE="|| ( GPL-2 BSD )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="pam static-libs" # While the build system optionally uses gperf, we don't DEPEND on it because
[gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc/
commit: 782e327b5da70fa5d34f8aec857e5b7db9b70123 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Jul 9 19:08:13 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Mon Jul 9 19:08:27 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782e327b sys-devel/gcc: s390 stable wrt bug #658444 Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-devel/gcc/gcc-7.3.0-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-devel/gcc/gcc-7.3.0-r3.ebuild b/sys-devel/gcc/gcc-7.3.0-r3.ebuild index 4e4bff32b6d..ffa5df4593a 100644 --- a/sys-devel/gcc/gcc-7.3.0-r3.ebuild +++ b/sys-devel/gcc/gcc-7.3.0-r3.ebuild @@ -8,7 +8,7 @@ PATCH_VER="1.4" inherit toolchain -KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos" +KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos" RDEPEND="" DEPEND="${RDEPEND}