[openib-general] [PATCH] Ref count user doorbell pages in mthca

2005-06-16 Thread Roland Dreier
This patch keeps a reference count on the doorbell pages that are
mapped into userspace for direct verbs access.  This prevents a
buggy/malicious app from closing its context but keeping a doorbell
page mapped, and then improperly accessing the doorbell page after it
gets allocated again to a new process.

Anyone see any issues with this?

 - R.

--- infiniband/hw/mthca/mthca_dev.h (revision 2631)
+++ infiniband/hw/mthca/mthca_dev.h (working copy)
@@ -301,7 +301,7 @@ struct mthca_dev {
struct mthca_av_table  av_table;
struct mthca_mcg_table mcg_table;
 
-   struct mthca_uar   driver_uar;
+   struct mthca_uar  *driver_uar;
struct mthca_db_table *db_tab;
struct mthca_pddriver_pd;
struct mthca_mrdriver_mr;
@@ -382,8 +382,8 @@ void mthca_cleanup_mcg_table(struct mthc
 int mthca_register_device(struct mthca_dev *dev);
 void mthca_unregister_device(struct mthca_dev *dev);
 
-int mthca_uar_alloc(struct mthca_dev *dev, struct mthca_uar *uar);
-void mthca_uar_free(struct mthca_dev *dev, struct mthca_uar *uar);
+struct mthca_uar *mthca_uar_alloc(struct mthca_dev *dev);
+void mthca_uar_put(struct mthca_uar *uar);
 
 int mthca_pd_alloc(struct mthca_dev *dev, int privileged, struct mthca_pd *pd);
 void mthca_pd_free(struct mthca_dev *dev, struct mthca_pd *pd);
--- infiniband/hw/mthca/mthca_main.c(revision 2631)
+++ infiniband/hw/mthca/mthca_main.c(working copy)
@@ -636,14 +636,15 @@ static int __devinit mthca_setup_hca(str
return err;
}
 
-   err = mthca_uar_alloc(dev, &dev->driver_uar);
-   if (err) {
+   dev->driver_uar = mthca_uar_alloc(dev);
+   if (IS_ERR(dev->driver_uar)) {
    mthca_err(dev, "Failed to allocate driver access region, "
  "aborting.\n");
+   err = PTR_ERR(dev->driver_uar);
goto err_uar_table_free;
        }
 
-   dev->kar = ioremap(dev->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
+   dev->kar = ioremap(dev->driver_uar->pfn << PAGE_SHIFT, PAGE_SIZE);
if (!dev->kar) {
mthca_err(dev, "Couldn't map kernel access region, "
      "aborting.\n");
@@ -760,7 +761,7 @@ err_kar_unmap:
iounmap(dev->kar);
 
 err_uar_free:
-   mthca_uar_free(dev, &dev->driver_uar);
+   mthca_uar_put(dev->driver_uar);
 
 err_uar_table_free:
mthca_cleanup_uar_table(dev);
@@ -1117,7 +1118,7 @@ static void __devexit mthca_remove_one(s
mthca_cleanup_pd_table(mdev);
 
iounmap(mdev->kar);
-   mthca_uar_free(mdev, &mdev->driver_uar);
+   mthca_uar_put(mdev->driver_uar);
mthca_cleanup_uar_table(mdev);
 
mthca_close_hca(mdev);
--- infiniband/hw/mthca/mthca_uar.c (revision 2631)
+++ infiniband/hw/mthca/mthca_uar.c (working copy)
@@ -35,20 +35,35 @@
 #include "mthca_dev.h"
 #include "mthca_memfree.h"
 
-int mthca_uar_alloc(struct mthca_dev *dev, struct mthca_uar *uar)
+struct mthca_uar *mthca_uar_alloc(struct mthca_dev *dev)
 {
+   struct mthca_uar *uar = kmalloc(sizeof *uar, GFP_KERNEL);
+   if (!uar)
+   return ERR_PTR(-ENOMEM);
+
+   kref_init(&uar->ref);
+
uar->index = mthca_alloc(&dev->uar_table.alloc);
if (uar->index == -1)
-   return -ENOMEM;
+   return ERR_PTR(-ENOMEM);
 
uar->pfn = (pci_resource_start(dev->pdev, 2) >> PAGE_SHIFT) + 
uar->index;
+   uar->dev = dev;
+
+   return uar;
+}
+
+static void mthca_uar_free(struct kref *ref)
+{
+   struct mthca_uar *uar = container_of(ref, struct mthca_uar, ref);
 
-   return 0;
+   mthca_free(&uar->dev->uar_table.alloc, uar->index);
+   kfree(uar);
 }
 
-void mthca_uar_free(struct mthca_dev *dev, struct mthca_uar *uar)
+void mthca_uar_put(struct mthca_uar *uar)
 {
-   mthca_free(&dev->uar_table.alloc, uar->index);
+   kref_put(&uar->ref, mthca_uar_free);
 }
 
 int mthca_init_uar_table(struct mthca_dev *dev)
--- infiniband/hw/mthca/mthca_provider.c(revision 2631)
+++ infiniband/hw/mthca/mthca_provider.c(working copy)
@@ -309,8 +309,9 @@ static struct ib_ucontext *mthca_alloc_u
if (!context)
    return ERR_PTR(-ENOMEM);
 
-   err = mthca_uar_alloc(to_mdev(ibdev), &context->uar);
-   if (err) {
+   context->uar = mthca_uar_alloc(to_mdev(ibdev));
+   if (IS_ERR(context->uar)) {
+   err = PTR_ERR(context->uar);
        kfree(context);
return ERR_PTR(err);
}
@@ -318,15 +319,15 @@ static struct ib_ucontext *mthca_alloc_u
context->db_tab = mthca_init_user_db_tab(to_mdev(ibdev));
if (IS_ERR(context->db_tab

[gentoo-commits] dev/mrueg:master commit in: dev-go/context/

2016-08-28 Thread Manuel Rüger
commit: c7bf6bf9890a367d125f04f69a46741dc4898be2
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug 28 22:01:38 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug 28 22:01:38 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=c7bf6bf9

dev-go/context: Initial version

Package-Manager: portage-2.3.0

 dev-go/context/Manifest   |  1 +
 dev-go/context/context-0_p20160817.ebuild | 18 ++++++
 dev-go/context/metadata.xml   |  8 
 3 files changed, 27 insertions(+)

diff --git a/dev-go/context/Manifest b/dev-go/context/Manifest
new file mode 100644
index 000..9807f00
--- /dev/null
+++ b/dev-go/context/Manifest
@@ -0,0 +1 @@
+DIST context-0_p20160817.tar.gz 4578 SHA256 
e6f21eb5ee761b70044d161bf8329f17f04fc41d1742b6fb170def0ee2892f96 SHA512 
12bc7a9c828c450e1b2734273d7791dacb50ba0056922b63e73f96878a2b6ceeb8718caf71421c099d38991954030601b72b30d930e222af161eb3d39bd94ea2
 WHIRLPOOL 
75f0e8c786e198c625509278bde8b7ed37cb5aab5b2cfe5adb0ef4b8ca40129d495a4dc5d4ed6e3b435ccdb114c7079bce89f19cca13e2d8b060d6f19078

diff --git a/dev-go/context/context-0_p20160817.ebuild 
b/dev-go/context/context-0_p20160817.ebuild
new file mode 100644
index 000..3bf8b79
--- /dev/null
+++ b/dev-go/context/context-0_p20160817.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/gorilla/context/..."
+EGIT_COMMIT="08b5f424b9271eedf6f9f0ce86cb9396ed337a42"
+ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="A golang registry for global request variables"
+HOMEPAGE="https://github.com/gorilla/context";
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="BSD"
+SLOT="0/${PVR}"
+IUSE=""

diff --git a/dev-go/context/metadata.xml b/dev-go/context/metadata.xml
new file mode 100644
index 000..97df2a0
--- /dev/null
+++ b/dev-go/context/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+



[openib-general] Re: [PATCH] Ref count user doorbell pages in mthca

2005-06-16 Thread Michael S. Tsirkin
Quoting r. Roland Dreier <[EMAIL PROTECTED]>:
> Subject: [PATCH] Ref count user doorbell pages in mthca
> 
> This patch keeps a reference count on the doorbell pages that are
> mapped into userspace for direct verbs access.  This prevents a
> buggy/malicious app from closing its context but keeping a doorbell
> page mapped, and then improperly accessing the doorbell page after it
> gets allocated again to a new process.

How does one close the context? I thought thats done by closing the
file descriptor, isnt that right? And if not - why not?
I think closing the file descriptor will kill the vmas without work in
mthca, avoiding this issue altogether.

> Anyone see any issues with this?
> 
>  - R.

For hotswap we'll need a way to find and unmap all uars, anyway,
and I think the same shall be done when context is closed by the
application. IMO, when the app closes the context, all resources shall go.

> +void mthca_uar_put(struct mthca_uar *uar)
>  {
> - mthca_free(&dev->uar_table.alloc, uar->index);
> + kref_put(&uar->ref, mthca_uar_free);
>  }

What lock prevents the reference count from going to 0, and driver deciding
to kill the uar object, when at the same time vma (by vm_ops) has a pointer
to this object and is calling kref_get?

MST


> --- infiniband/hw/mthca/mthca_dev.h   (revision 2631)
> +++ infiniband/hw/mthca/mthca_dev.h   (working copy)
> @@ -301,7 +301,7 @@ struct mthca_dev {
>   struct mthca_av_table  av_table;
>   struct mthca_mcg_table mcg_table;
>  
> - struct mthca_uar   driver_uar;
> + struct mthca_uar  *driver_uar;
>   struct mthca_db_table *db_tab;
>   struct mthca_pddriver_pd;
>   struct mthca_mrdriver_mr;
> @@ -382,8 +382,8 @@ void mthca_cleanup_mcg_table(struct mthc
>  int mthca_register_device(struct mthca_dev *dev);
>  void mthca_unregister_device(struct mthca_dev *dev);
>  
> -int mthca_uar_alloc(struct mthca_dev *dev, struct mthca_uar *uar);
> -void mthca_uar_free(struct mthca_dev *dev, struct mthca_uar *uar);
> +struct mthca_uar *mthca_uar_alloc(struct mthca_dev *dev);
> +void mthca_uar_put(struct mthca_uar *uar);
>  
>  int mthca_pd_alloc(struct mthca_dev *dev, int privileged, struct mthca_pd 
> *pd);
>  void mthca_pd_free(struct mthca_dev *dev, struct mthca_pd *pd);
> --- infiniband/hw/mthca/mthca_main.c  (revision 2631)
> +++ infiniband/hw/mthca/mthca_main.c  (working copy)
> @@ -636,14 +636,15 @@ static int __devinit mthca_setup_hca(str
>       return err;
>   }
>  
> - err = mthca_uar_alloc(dev, &dev->driver_uar);
> - if (err) {
> + dev->driver_uar = mthca_uar_alloc(dev);
> +     if (IS_ERR(dev->driver_uar)) {
>   mthca_err(dev, "Failed to allocate driver access region, "
> "aborting.\n");
> + err = PTR_ERR(dev->driver_uar);
>   goto err_uar_table_free;
>   }
>  
> - dev->kar = ioremap(dev->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
> + dev->kar = ioremap(dev->driver_uar->pfn << PAGE_SHIFT, PAGE_SIZE);
>   if (!dev->kar) {
>   mthca_err(dev, "Couldn't map kernel access region, "
> "aborting.\n");
> @@ -760,7 +761,7 @@ err_kar_unmap:
>   iounmap(dev->kar);
>  
>  err_uar_free:
> - mthca_uar_free(dev, &dev->driver_uar);
> + mthca_uar_put(dev->driver_uar);
>  
>  err_uar_table_free:
>   mthca_cleanup_uar_table(dev);
> @@ -1117,7 +1118,7 @@ static void __devexit mthca_remove_one(s
>   mthca_cleanup_pd_table(mdev);
>  
>   iounmap(mdev->kar);
> - mthca_uar_free(mdev, &mdev->driver_uar);
> +     mthca_uar_put(mdev->driver_uar);
>   mthca_cleanup_uar_table(mdev);
>  
>   mthca_close_hca(mdev);
> --- infiniband/hw/mthca/mthca_uar.c   (revision 2631)
> +++ infiniband/hw/mthca/mthca_uar.c   (working copy)
> @@ -35,20 +35,35 @@
>  #include "mthca_dev.h"
>  #include "mthca_memfree.h"
>  
> -int mthca_uar_alloc(struct mthca_dev *dev, struct mthca_uar *uar)
> +struct mthca_uar *mthca_uar_alloc(struct mthca_dev *dev)
>  {
> +     struct mthca_uar *uar = kmalloc(sizeof *uar, GFP_KERNEL);
> + if (!uar)
> + return ERR_PTR(-ENOMEM);
> +
> + kref_init(&uar->ref);
> +
>   uar->index = mthca_alloc(&dev->uar_table.alloc);
>   if (uar->index == -1)
> - return -ENOMEM;
> + return ERR_PTR(-ENOMEM);
>  
>   uar->pfn = (pci_resource_start(dev->pdev, 2) >> PAGE_SHIFT) + 
> uar->index

[gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-recursion-context/, dev-php/sebastian-recursion-context/files/, ...

2023-09-15 Thread David Seifert
commit: 32665f22bb58ff7aa0f3d8485f19a89cfb6d379a
Author: David Seifert  gentoo  org>
AuthorDate: Fri Sep 15 07:52:13 2023 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Sep 15 07:52:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32665f22

dev-php/sebastian-recursion-context: treeclean

Signed-off-by: David Seifert  gentoo.org>

 dev-php/sebastian-recursion-context/Manifest   |  2 --
 .../sebastian-recursion-context/files/autoload.php | 15 -----
 dev-php/sebastian-recursion-context/metadata.xml   | 12 --
 .../sebastian-recursion-context-2.0.0.ebuild   | 26 --
 .../sebastian-recursion-context-3.0.0.ebuild   | 26 --
 profiles/package.mask  |  1 -
 6 files changed, 82 deletions(-)

diff --git a/dev-php/sebastian-recursion-context/Manifest 
b/dev-php/sebastian-recursion-context/Manifest
deleted file mode 100644
index 75c7c5f109e9..0000
--- a/dev-php/sebastian-recursion-context/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST sebastian-recursion-context-2.0.0.tar.gz 4526 BLAKE2B 
54ecdfc255c3bdbedc2a909f5b569c62b19e2e66fc5ea4ae7be8401516c142b43e611d5e8f1c056be329983f21e1a8b85e7fb2ff1ddb92a2f6aad4d4191418a6
 SHA512 
9d25d148decc81f5a21d7a4e1f966563bf6ec765fcc1b1ce779668b74dfa39959db07cf296e9cffcbcb3943c8911709bb73f22c5bfcc81c5d2fcbb51967cf75e
-DIST sebastian-recursion-context-3.0.0.tar.gz 4414 BLAKE2B 
04a0aca4b6012013306c813109c0ed6f60d2f4f1381ba6506398388b5065d69375191290d33cdc4b82359dc30b1fd98ef61005a657fa8db302472597950255b5
 SHA512 
0fce5709cb22818de6bbfda1ba2a99fea511d5b36bcbe7955661d756a6f82ba84cbf8fb4eb421d6b51ae9e36a8edac56c5bafbccf8b665a0296883ea0dbb3b91

diff --git a/dev-php/sebastian-recursion-context/files/autoload.php 
b/dev-php/sebastian-recursion-context/files/autoload.php
deleted file mode 100644
index 5f7e83143612..0000
--- a/dev-php/sebastian-recursion-context/files/autoload.php
+++ /dev/null
@@ -1,15 +0,0 @@
- '/Context.php',
-   'sebastianbergmann\recursioncontext\exception' => 
'/Exception.php',
-   'sebastianbergmann\recursioncontext\invalidargumentexception' 
=> '/InvalidArgumentException.php',
-   ),
-   __DIR__
-);

diff --git a/dev-php/sebastian-recursion-context/metadata.xml 
b/dev-php/sebastian-recursion-context/metadata.xml
deleted file mode 100644
index 539eefc99110..0000
--- a/dev-php/sebastian-recursion-context/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   php-b...@gentoo.org
-   PHP
-   
-   
-   
-   sebastianbergmann/recursion-context
-   
-

diff --git 
a/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild 
b/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild
deleted file mode 100644
index 7aeb39d9e647..00000000
--- 
a/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="${PN/sebastian-//}"
-
-DESCRIPTION="Recursively process PHP variables"
-HOMEPAGE="https://phpunit.de";
-SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="dev-php/fedora-autoloader
-   >=dev-lang/php-5.6:*"
-
-src_install() {
-   insinto /usr/share/php/SebastianBergmann/RecursionContext
-   doins -r src/*
-   doins "${FILESDIR}/autoload.php"
-}

diff --git 
a/dev-php/sebastian-recursion-context/sebastian-recursion-context-3.0.0.ebuild 
b/dev-php/sebastian-recursion-context/sebastian-recursion-context-3.0.0.ebuild
deleted file mode 100644
index fc0a0fd747d0..
--- 
a/dev-php/sebastian-recursion-context/sebastian-recursion-context-3.0.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/sebastian-//}"
-
-DESCRIPTION="Recursively process PHP variables"
-HOMEPAGE="https://phpunit.de";
-SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="dev-php/fedora-autoloader
-   =dev-lang/php-7*:*"
-
-src_install() {
-   insinto /usr/share/php/SebastianBergmann/RecursionCont

[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2017-08-02 Thread Matt Thode
commit: d4faa454fb4fa7dce4a2fdfb0e5a6d98e0e8c313
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  2 23:55:29 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  2 23:59:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4faa454

dev-python/oslo-context: 2.12.2 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/oslo-context/Manifest   |  1 -
 dev-python/oslo-context/oslo-context-2.12.1.ebuild | 47 ------
 dev-python/oslo-context/oslo-context-2.12.2.ebuild |  2 +-
 3 files changed, 1 insertion(+), 49 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 9d462ab902c..c0f849a3774 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-2.12.1.tar.gz 25879 SHA256 
e257c5962928c564ad323a436703733662b39e45d4892d5aff3f290e89e95b94 SHA512 
075f402786dfe0e153c0fe21f2a2a8a2099cc2451a6f891fef00e0fd460f9f39220d390c9ae7ba0515a3ad79a94a1b2288c65029aea8f5e7481f8fe181d877b4
 WHIRLPOOL 
9df270cd41bc2067dcbbba4312fd60682a4f2a5f461d61c80d4b5d5e19a4b1c691c08e8bd34d581e89e4998760f950cc7e8964d04a23c6188cf906892623c55b
 DIST oslo.context-2.12.2.tar.gz 26860 SHA256 
36decf5f8bd72a986d58c2e603c2e0d96d31da4283f2fbc145c6804113b86f64 SHA512 
752d2e9744fbf94d23d6cc3205f3b4974d440bf71ab885de2feea3e706ed93b771b50df264c754cc8f6882f8526de0318cb3d1fc07a28a872f4b02e59118af98
 WHIRLPOOL 
e54612a8fda6ee4a07ad603f54356f6bf5aa8bedcd11f9faaf88ff7f98ef79b0407dc50d9295b8131375fbc4916b5915096ce97a142a2c8c06eb9345749483e6

diff --git a/dev-python/oslo-context/oslo-context-2.12.1.ebuild 
b/dev-python/oslo-context/oslo-context-2.12.1.ebuild
deleted file mode 100644
index adbcca66fe8..000
--- a/dev-python/oslo-context/oslo-context-2.12.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-       test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
-   =dev-python/reno-1.8.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}

diff --git a/dev-python/oslo-context/oslo-context-2.12.2.ebuild 
b/dev-python/oslo-context/oslo-context-2.12.2.ebuild
index 87096c97748..adbcca66fe8 100644
--- a/dev-python/oslo-context/oslo-context-2.12.2.ebuild
+++ b/dev-python/oslo-context/oslo-context-2.12.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2022-03-15 Thread Michał Górny
commit: 2a48cd3e6f1e055bcd7a81a11a29bf60cdf18d06
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 15 14:16:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 15 14:16:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a48cd3e

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  2 --
 dev-python/oslo-context/oslo-context-3.4.0.ebuild | 30 ------
 dev-python/oslo-context/oslo-context-4.0.0.ebuild | 31 ---
 3 files changed, 63 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 03801bf0fb44..b5d6441c6de2 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,3 +1 @@
-DIST oslo.context-3.4.0.tar.gz 32954 BLAKE2B 
9f22ce6af5efcfec8ab92bdb6c806e420b09037bce08b68fd43684fd459cb12b8196a1e6ee48dcb41ae7aa5d4679851fbed2058709d17e5bb7efc85c9b6d04ea
 SHA512 
bf31c01237352a296e46fdb533ea921dce24cd3c3a918e39f7ff17305104d8f033527738fe562dfe61c8700dbce96e26433068503ca8c5cf9dffb0780e42ec53
-DIST oslo.context-4.0.0.tar.gz 33057 BLAKE2B 
180df04bd331489f2f175f8ab6f23750f0ab5f2c805ecd3a4ece4ad3e04a165ab08244cbb70bedfaeb2b38912ba45f4773671408eb1b5e8ee379809362e6016f
 SHA512 
6a79d4c9568ad021365531e58679297700207472667a84153f016edd9044550d7c8ab868940772a45e9359ebf660a15a6f6d21f8f653fb8f297219bee1122d2f
 DIST oslo.context-4.1.0.tar.gz 33573 BLAKE2B 
8fa4f94f5cb5c82d95e55bbc553f97088ae8907b38ebc95b81674709c6fb4eeffab4f83f042c2069a9bcddfa827ca0c5c9e31ec12f21ad1c82dc111ea7d1732e
 SHA512 
83ef0aafc94460bc16ac84841ffa78bad2594d7b81578552579251b2548779296552f86204788fe3acd1a393e7ca54d479475e8c062649d0fd2f4989c3cbebe9

diff --git a/dev-python/oslo-context/oslo-context-3.4.0.ebuild 
b/dev-python/oslo-context/oslo-context-3.4.0.ebuild
deleted file mode 100644
index e6c16586c809..0000
--- a/dev-python/oslo-context/oslo-context-3.4.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-S="${WORKDIR}/oslo.context-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme

diff --git a/dev-python/oslo-context/oslo-context-4.0.0.ebuild 
b/dev-python/oslo-context/oslo-context-4.0.0.ebuild
deleted file mode 100644
index c7ba0a96f32b..
--- a/dev-python/oslo-context/oslo-context-4.0.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-S="${WORKDIR}/oslo.context-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-       >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2017-12-20 Thread Matt Thode
commit: ba60c165db77f0ad8d23db6434bd638b62478d45
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Dec 21 06:57:55 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Dec 21 07:12:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba60c165

dev-python/oslo-context: 2.17.1 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-python/oslo-context/Manifest   |  1 -
 dev-python/oslo-context/oslo-context-2.17.0.ebuild | 49 ------
 dev-python/oslo-context/oslo-context-2.17.1.ebuild |  2 +-
 3 files changed, 1 insertion(+), 51 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index facb8f9db2c..2e79375174b 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,3 +1,2 @@
 DIST oslo.context-2.12.2.tar.gz 26860 BLAKE2B 
cdf6e6b36fc625b183745a2030b9acb827cb43c4032f98637314655082ee65a0182d801ded3f6d1d4b1f9b3bec789d4ae3f382c7f9aaf1d4f788bf8286335384
 SHA512 
752d2e9744fbf94d23d6cc3205f3b4974d440bf71ab885de2feea3e706ed93b771b50df264c754cc8f6882f8526de0318cb3d1fc07a28a872f4b02e59118af98
-DIST oslo.context-2.17.0.tar.gz 27756 BLAKE2B 
83e1abeab1f567e647d2434f380f0baa2a97ed5e67e2b7b3de8806c20690e8b6f740e42518020b447bd8235b7b968b4d683e223dd61a2fcd08378de023a5f9fc
 SHA512 
158ccfb5517f2e4521d9be0b4864b2f6cc491f2dc00b479ea6314892b24b0293fe1e5e654d1503b73f992d011bf79c0b3c5b1f7b69dc7d32549a8327897957ae
 DIST oslo.context-2.17.1.tar.gz 27266 BLAKE2B 
6d539af2d191103a411db0a7671d0ea4a9bb21d0a33e4e306ceac8455c4b0aafe594541b3cf7e565372dee66c3a7c6685b86c96256046e108ee21f74633d01a5
 SHA512 
f75d9cececaa095cab3b87b05ab0c4bf9f115b96ab7feb5607edd00a33440a4418692f4f6cf8a3dffbbc302758e734c4184f271e3860e65d9da95f0a97ae633f

diff --git a/dev-python/oslo-context/oslo-context-2.17.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.17.0.ebuild
deleted file mode 100644
index 30395570fad..000
--- a/dev-python/oslo-context/oslo-context-2.17.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-       test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
-   >=dev-python/openstackdocstheme-1.11.0[${PYTHON_USEDEP}]
-   >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
-   !~dev-python/reno-2.3.1[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}

diff --git a/dev-python/oslo-context/oslo-context-2.17.1.ebuild 
b/dev-python/oslo-context/oslo-context-2.17.1.ebuild
index aa47f5087ef..17309776404 100644
--- a/dev-python/oslo-context/oslo-context-2.17.1.ebuild
+++ b/dev-python/oslo-context/oslo-context-2.17.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-recursion-context/, dev-php/sebastian-recursion-context/files/

2017-03-09 Thread Brian Evans
commit: be3acfa0bb749805cc28cf4fed380c4a78a04a37
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Mar  9 15:18:02 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Mar  9 16:21:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be3acfa0

dev-php/sebastian-recursion-context: New package for an unbundled phpunit

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-php/sebastian-recursion-context/Manifest   |  1 +
 .../sebastian-recursion-context/files/autoload.php | 15 +++++
 dev-php/sebastian-recursion-context/metadata.xml   |  8 +++
 .../sebastian-recursion-context-2.0.0.ebuild   | 26 ++
 4 files changed, 50 insertions(+)

diff --git a/dev-php/sebastian-recursion-context/Manifest 
b/dev-php/sebastian-recursion-context/Manifest
new file mode 100644
index 000..8dddec180be
--- /dev/null
+++ b/dev-php/sebastian-recursion-context/Manifest
@@ -0,0 +1 @@
+DIST sebastian-recursion-context-2.0.0.tar.gz 4526 SHA256 
4e3344e2f3b76ea9cf1cfad9c3bd69c0513d9b25bd2030e8d8c578a924642a97 SHA512 
9d25d148decc81f5a21d7a4e1f966563bf6ec765fcc1b1ce779668b74dfa39959db07cf296e9cffcbcb3943c8911709bb73f22c5bfcc81c5d2fcbb51967cf75e
 WHIRLPOOL 
05edbc06187307de51bcd88bc0177c7ee5cb443f426d5154d1bce7d33948fc8092aec765e9cfd67a9471a254402dbb269ebbfb3655c6721e5873150b29208924

diff --git a/dev-php/sebastian-recursion-context/files/autoload.php 
b/dev-php/sebastian-recursion-context/files/autoload.php
new file mode 100644
index 000..5f7e8314361
--- /dev/null
+++ b/dev-php/sebastian-recursion-context/files/autoload.php
@@ -0,0 +1,15 @@
+ '/Context.php',
+   'sebastianbergmann\recursioncontext\exception' => 
'/Exception.php',
+   'sebastianbergmann\recursioncontext\invalidargumentexception' 
=> '/InvalidArgumentException.php',
+   ),
+   __DIR__
+);

diff --git a/dev-php/sebastian-recursion-context/metadata.xml 
b/dev-php/sebastian-recursion-context/metadata.xml
new file mode 100644
index 000..b86acf66c75
--- /dev/null
+++ b/dev-php/sebastian-recursion-context/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+       php-b...@gentoo.org
+       PHP
+   
+

diff --git 
a/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild 
b/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild
new file mode 100644
index 000..0f4ea3a96a8
--- /dev/null
+++ 
b/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN="${PN/sebastian-//}"
+
+DESCRIPTION="Recursively process PHP variables"
+HOMEPAGE="http://phpunit.de";
+SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="dev-php/fedora-autoloader
+   >=dev-lang/php-5.6:*"
+
+src_install() {
+   insinto /usr/share/php/SebastianBergmann/RecursionContext
+   doins -r src/*
+   doins "${FILESDIR}/autoload.php"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2020-01-13 Thread Michał Górny
commit: df716181ff21a1d48ece305cef01048b02fc1c8c
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 12 21:40:38 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 13 09:45:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df716181

dev-python/oslo-context: Remove Python 2 support

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/oslo-context-2.21.0.ebuild | 2 +-
 dev-python/oslo-context/oslo-context-2.22.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/oslo-context/oslo-context-2.21.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.21.0.ebuild
index 4972380fe4b..19dcc5f416c 100644
--- a/dev-python/oslo-context/oslo-context-2.21.0.ebuild
+++ b/dev-python/oslo-context/oslo-context-2.21.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_{6,7}} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 

diff --git a/dev-python/oslo-context/oslo-context-2.22.1.ebuild 
b/dev-python/oslo-context/oslo-context-2.22.1.ebuild
index e947ddebb79..945f4d2d90c 100644
--- a/dev-python/oslo-context/oslo-context-2.22.1.ebuild
+++ b/dev-python/oslo-context/oslo-context-2.22.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{2_7,3_{6,7}} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Eval-Context/

2014-07-21 Thread Kent Fredric
commit: d3d5cce19b96cd0d69efd77295b0a37b69eb40f6
Author: Kent Fredric  gmail  com>
AuthorDate: Tue Jul 22 02:37:52 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Tue Jul 22 02:37:52 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=d3d5cce1

[fixup] dev-perl/Eval-Context Update EAPI and deps, mark tests as presently 
broken till upstream fixes a bug

Package-Manager: portage-2.2.10
Manifest-Sign-Key: E854324B1366A820

---
 dev-perl/Eval-Context/ChangeLog|  9 -
 ...l-Context-0.09.11.ebuild => Eval-Context-0.9.11.ebuild} | 14 +++---
 2 files changed, 15 insertions(+), 8 deletions(-)

diff --git a/dev-perl/Eval-Context/ChangeLog b/dev-perl/Eval-Context/ChangeLog
index 70a5e1f..c937752 100644
--- a/dev-perl/Eval-Context/ChangeLog
+++ b/dev-perl/Eval-Context/ChangeLog
@@ -1,7 +1,14 @@
 # ChangeLog for dev-perl/Eval-Context
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*Eval-Context-0.9.11 (22 Jul 2014)
+
+  22 Jul 2014; Kent Fredric 
+  -Eval-Context-0.09.11.ebuild, +Eval-Context-0.9.11.ebuild:
+  Update EAPI and deps, mark tests as presently broken till upstream fixes a
+  bug
+
 *Eval-Context-0.09.11 (19 Jun 2010)
 
   19 Jun 2010; Kent Fredric 

diff --git a/dev-perl/Eval-Context/Eval-Context-0.09.11.ebuild 
b/dev-perl/Eval-Context/Eval-Context-0.9.11.ebuild
similarity index 76%
rename from dev-perl/Eval-Context/Eval-Context-0.09.11.ebuild
rename to dev-perl/Eval-Context/Eval-Context-0.9.11.ebuild
index 63b7f5d..686ffc3 100644
--- a/dev-perl/Eval-Context/Eval-Context-0.09.11.ebuild
+++ b/dev-perl/Eval-Context/Eval-Context-0.9.11.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=3
-
+EAPI=5
 MODULE_AUTHOR=NKH
+MODULE_VERSION=0.09.11
 inherit perl-module
 
 DESCRIPTION="Evalute perl code in context wrapper"
@@ -20,8 +20,8 @@ RDEPEND="dev-perl/Readonly
dev-perl/Data-TreeDumper
dev-perl/File-Slurp
dev-perl/Sub-Install
-   >=virtual/perl-Safe-2.16
-   >=virtual/perl-version-0.50
+   >=virtual/perl-Safe-2.160.0
+   >=virtual/perl-version-0.500.0
dev-perl/Data-TreeDumper
 "
 DEPEND="
@@ -35,5 +35,5 @@ DEPEND="
        dev-perl/Directory-Scratch-Structured
dev-perl/Test-Output
 "
-
-SRC_TEST=do
+# https://rt.cpan.org/Ticket/Display.html?id=86017
+SRC_TEST=broken



[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-context/

2024-03-29 Thread Florian Schmaus
commit: 1bca88987927e0aa8a8b4f7a99c912b27d971a59
Author: Florian Schmaus  gentoo  org>
AuthorDate: Fri Mar 29 17:18:18 2024 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Fri Mar 29 17:18:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bca8898

dev-texlive/texlive-context: set TEXLIVE_MODULE_OPTIONAL_ENGINE=luajittex

Closes: https://bugs.gentoo.org/928122
Signed-off-by: Florian Schmaus  gentoo.org>

 dev-texlive/texlive-context/metadata.xml  | 3 +++
 ...ntext-2023_p69108.ebuild => texlive-context-2023_p69108-r1.ebuild} | 4 +++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-texlive/texlive-context/metadata.xml 
b/dev-texlive/texlive-context/metadata.xml
index a91e8498da9f..631cd7535765 100644
--- a/dev-texlive/texlive-context/metadata.xml
+++ b/dev-texlive/texlive-context/metadata.xml
@@ -13,4 +13,7 @@
Hans Hagen's powerful ConTeXt system, http://pragma-ade.com.
Also includes third-party ConTeXt packages.

+   
+   Add support for LuaJitTeX: LuaTeX based 
on LuaJIT which is usually faster.
+   
 

diff --git a/dev-texlive/texlive-context/texlive-context-2023_p69108.ebuild 
b/dev-texlive/texlive-context/texlive-context-2023_p69108-r1.ebuild
similarity index 95%
rename from dev-texlive/texlive-context/texlive-context-2023_p69108.ebuild
rename to dev-texlive/texlive-context/texlive-context-2023_p69108-r1.ebuild
index 763d3d6a8d0e..2619f7d82809 100644
--- a/dev-texlive/texlive-context/texlive-context-2023_p69108.ebuild
+++ b/dev-texlive/texlive-context/texlive-context-2023_p69108-r1.ebuild
@@ -53,6 +53,8 @@ TEXLIVE_MODULE_SRC_CONTENTS="
context-visualcounter.source.r47085
 "
 
+TEXLIVE_MODULE_OPTIONAL_ENGINE="luajittex"
+
 inherit texlive-module
 
 DESCRIPTION="TeXLive ConTeXt and packages"
@@ -69,7 +71,7 @@ RDEPEND="
 "
 DEPEND="
${COMMON_DEPEND}
-   >=app-text/texlive-core-2023[xetex]
+   >=app-text/texlive-core-2023[xetex,luajittex?]
 "
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2024-03-09 Thread Michał Górny
commit: b04a3557604f3470deea170c100b4e473976b7e3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  9 14:13:27 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar  9 14:19:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04a3557

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  2 --
 dev-python/oslo-context/oslo-context-5.3.0.ebuild | 38 ---
 dev-python/oslo-context/oslo-context-5.4.0.ebuild | 38 ---
 3 files changed, 78 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 2dcf22f113cf..fc7816b78973 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,3 +1 @@
-DIST oslo.context-5.3.0.tar.gz 34831 BLAKE2B 
6fcc6667562967cc77f7e6a0e3c1cc97d44690686e58c00eb2cde2593b48272abc1661b173e6bde1fec8d0eff2deb9484042fbac737fa0bd162cd2bc6d0ac7d2
 SHA512 
862039386c44ff55ddcea0d5a6de5caa9441382e2e7750bd60f24a33c4e3963f0788b3c79d86c61a20ff097d4d3a8ee381f9ee81e9b8a5a44356595b26d319e8
-DIST oslo.context-5.4.0.tar.gz 34815 BLAKE2B 
31e204203566dada7867054c228f00b4b8c44b52320a6eebef179dfa58d7376fcae5f7b61719c513a07bc76ba9f2911f0ff6251d6358992e41c336923da7ab14
 SHA512 
87b8c0e03fe1863ee09b7ca8e4b40f04c14348fada5249b1800ebb4201bc0ed903b0099424397ba19474ffb7b231343c3756b4ed74998468a7523bab24280e52
 DIST oslo.context-5.5.0.tar.gz 34832 BLAKE2B 
5131efed421d925ae311a31dba9b39cb881195493524e1ca9562aaef4b7bd81700cc23f004c04797dea59d136d274aca71e0d0a9377e133edfe0f51f0fca2341
 SHA512 
89b6aff1f0b01b64e3c7aa4e03e3a633a4b722514ac23d9b261449fd0cf0950077d801bbeae8c8542634c7336577dfbcad81bec8fad5e00a8c34d3a32412cb8c

diff --git a/dev-python/oslo-context/oslo-context-5.3.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.3.0.ebuild
deleted file mode 100644
index db454ce1d571..0000
--- a/dev-python/oslo-context/oslo-context-5.3.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="
-   https://opendev.org/openstack/oslo.context/
-   https://github.com/openstack/oslo.context/
-   https://pypi.org/project/oslo.context/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme

diff --git a/dev-python/oslo-context/oslo-context-5.4.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.4.0.ebuild
deleted file mode 100644
index a67ee6deeadd..
--- a/dev-python/oslo-context/oslo-context-5.4.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="
-   https://opendev.org/openstack/oslo.context/
-   https://github.com/openstack/oslo.context/
-   https://pypi.org/project/oslo.context/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-       >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-context: texlive-context-2013.ebuild ChangeLog texlive-context-2013-r1.ebuild texlive-context-2012-r1.ebuild

2014-03-09 Thread Ulrich Mueller (ulm)
ulm 14/03/09 18:56:33

  Modified: texlive-context-2013.ebuild ChangeLog
texlive-context-2013-r1.ebuild
texlive-context-2012-r1.ebuild
  Log:
  Call texlive-module_src_prepare instead of base_src_prepare, bug 497054.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.2  dev-texlive/texlive-context/texlive-context-2013.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013.ebuild?r1=1.1&r2=1.2

Index: texlive-context-2013.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- texlive-context-2013.ebuild 28 Jun 2013 16:08:59 -  1.1
+++ texlive-context-2013.ebuild 9 Mar 2014 18:56:33 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013.ebuild,v
 1.1 2013/06/28 16:08:59 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013.ebuild,v
 1.2 2014/03/09 18:56:33 ulm Exp $
 
 EAPI="5"
 
@@ -58,7 +58,7 @@
# No need to install these .exe
rm -rf texmf-dist/scripts/context/stubs/mswin || die
 
-   base_src_prepare
+   texlive-module_src_prepare
 }
 
 TL_MODULE_INFORMATION="For using ConTeXt mkII simply use 'texexec' to generate



1.75     dev-texlive/texlive-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.75&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.75&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
=======
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   2 Jul 2013 22:03:35 -   1.74
+++ ChangeLog   9 Mar 2014 18:56:33 -0000   1.75
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-context
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.74 2013/07/02 22:03:35 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.75 2014/03/09 18:56:33 ulm Exp $
+
+  09 Mar 2014; Ulrich Müller  texlive-context-2012-r1.ebuild,
+  texlive-context-2013.ebuild, texlive-context-2013-r1.ebuild:
+  Call texlive-module_src_prepare instead of base_src_prepare, bug 497054.
 
 *texlive-context-2013-r1 (02 Jul 2013)
 



1.2      dev-texlive/texlive-context/texlive-context-2013-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013-r1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013-r1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013-r1.ebuild?r1=1.1&r2=1.2

Index: texlive-context-2013-r1.ebuild
=======
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- texlive-context-2013-r1.ebuild  2 Jul 2013 22:03:35 -   1.1
+++ texlive-context-2013-r1.ebuild  9 Mar 2014 18:56:33 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013-r1.ebuild,v
 1.1 2013/07/02 22:03:35 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2013-r1.ebuild,v
 1.2 2014/03/09 18:56:33 ulm Exp $
 
 EAPI="5"
 
@@ -50,7 +50,7 @@
    # No need to install these .exe
rm -rf texmf-dist/scripts/context/stubs/msw

[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Eval-Context/, profiles/

2014-10-05 Thread Kent Fredric
commit: 84da9825b42579b37ff50ca4f2ee93b51d685876
Author: Kent Fredric  gmail  com>
AuthorDate: Sun Oct  5 09:39:35 2014 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sun Oct  5 09:39:35 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=84da9825

[treeclean] Eval-Context as per mask notice

---
 dev-perl/Eval-Context/Eval-Context-0.9.11.ebuild | 39 ----
 dev-perl/Eval-Context/metadata.xml   |  9 --
 profiles/package.mask|  1 -
 3 files changed, 49 deletions(-)

diff --git a/dev-perl/Eval-Context/Eval-Context-0.9.11.ebuild 
b/dev-perl/Eval-Context/Eval-Context-0.9.11.ebuild
deleted file mode 100644
index 686ffc3..000
--- a/dev-perl/Eval-Context/Eval-Context-0.9.11.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-MODULE_AUTHOR=NKH
-MODULE_VERSION=0.09.11
-inherit perl-module
-
-DESCRIPTION="Evalute perl code in context wrapper"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-perl/Readonly
-   dev-perl/Data-Compare
-   dev-perl/Sub-Exporter
-   dev-perl/Package-Generator
-   dev-perl/Data-TreeDumper
-   dev-perl/File-Slurp
-   dev-perl/Sub-Install
-   >=virtual/perl-Safe-2.160.0
-   >=virtual/perl-version-0.500.0
-   dev-perl/Data-TreeDumper
-"
-DEPEND="
-   ${RDEPEND}
-       virtual/perl-Module-Build
-   dev-perl/Text-Diff
-   dev-perl/Test-Block
-   dev-perl/Test-Exception
-   dev-perl/Test-NoWarnings
-   dev-perl/Test-Warn
-   dev-perl/Directory-Scratch-Structured
-   dev-perl/Test-Output
-"
-# https://rt.cpan.org/Ticket/Display.html?id=86017
-SRC_TEST=broken

diff --git a/dev-perl/Eval-Context/metadata.xml 
b/dev-perl/Eval-Context/metadata.xml
deleted file mode 100644
index 44bd671..000
--- a/dev-perl/Eval-Context/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-    perl
-
-Eval-Context
-Eval::Context
-
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 0d6b396..d7e37b0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -15,7 +15,6 @@ virtual/perl-Term-UI
 # Kent Fredric  (05 Sep 2014)
 # Deprecations due to Text-Block being deprecated upstream.
 # Will be treecleaned on, or after, 05 Oct 2014
-dev-perl/Eval-Context
 dev-perl/Test-Block
 
 # Kent Fredric  (03 Jul 2014)



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/shoulda-context/

2016-04-03 Thread Manuel Rüger
commit: 3038ab516ec948779fd9813abf9a30a243b02ed1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr  3 18:08:42 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr  3 18:08:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3038ab51

dev-ruby/shoulda-context: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild | 4 ++--
 dev-ruby/shoulda-context/shoulda-context-1.2.1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild 
b/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild
index 0b6ba5c..22dccba 100644
--- a/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild
+++ b/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"

diff --git a/dev-ruby/shoulda-context/shoulda-context-1.2.1.ebuild 
b/dev-ruby/shoulda-context/shoulda-context-1.2.1.ebuild
index c72750e..b92d6a3 100644
--- a/dev-ruby/shoulda-context/shoulda-context-1.2.1.ebuild
+++ b/dev-ruby/shoulda-context/shoulda-context-1.2.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"



[gentoo-commits] gentoo-x86 commit in dev-python/oslo-context: metadata.xml oslo-context-0.1.0.ebuild Manifest ChangeLog

2015-01-31 Thread Matt Thode (prometheanfire)
prometheanfire15/01/31 18:10:40

  Added:metadata.xml oslo-context-0.1.0.ebuild Manifest
ChangeLog
  Log:
  adding for oslo-middleware
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.1  dev-python/oslo-context/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

http://www.gentoo.org/dtd/metadata.dtd";>

  python
  
prometheanf...@gentoo.org
Matthew Thode
  
  
The Oslo context library has helpers to maintain useful information about a 
request context. The request context is usually populated in the WSGI pipeline 
and used by various modules such as logging.
  





1.1      dev-python/oslo-context/oslo-context-0.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0.ebuild?rev=1.1&content-type=text/plain

Index: oslo-context-0.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0.ebuild,v 1.1 
2015/01/31 18:10:40 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="Helpers to maintain useful information about a request context"
HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
S="${WORKDIR}/oslo.context-${PV}"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/pbr-0.8[${PYTHON_USEDEP}]
=dev-python/hacking-0.9.2[${PYTHON_USEDEP}]
=dev-python/oslotest-1.2.0[${PYTHON_USEDEP}]
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
>=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
        !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/Manifest?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/Manifest?rev=1.1&content-type=text/plain

Index: Manifest
===
DIST oslo.context-0.1.0.tar.gz 12320 SHA256 
0340e533033607c18ce6a305d92f38a71fd89aaf439bf45074fd4ba9ee086971 SHA512 
3e2e2cab4d5efbf8385277ac33d2babad3054b22713b3f343a47644c4420b1034e7711d353990116d2e149383293ba5a1ab1fe9247b42bf119705f5006e1a5b0
 WHIRLPOOL 
61b8b1be44213a8f1520c29de80adffd1341a3d3278fce0c7fc0bd50165a5b6793aaf6d62ea7685871cf20b59b922d773d3e67fbc26e3d7d13ef01773cbd8e7d
EBUILD oslo-context-0.1.0.ebuild 1314 SHA256 
d502b3a84b7181f1496b0b29f5dc85e7d51db535d2b476aee37022ec8b362244 SHA512 
7f949d5b19aa64ebc74e2477e82b41ddbbcebb8a17458ba3814da0311acbdacf5986942510c416d0d34ad69cf6687bda0df573e13521d3ff8d8d062e3038f69c
 WHIRLPOOL 
47bfacc647db96ae58baea869bc0b8ca894d011129eb64c3c3dd5c56f3b97d64f055366c09ea63de20b2dd0e26a667848b1b8c59016e314af4e0cb8d6e339b57
MISC metadata.xml 524 SHA256 
f0b0db058864b726f0d165b5f6e1367eaf44e1822a203778e65e95dedce1bb00 SHA512 
714b2cbae3120a4521899095e28f838c752c2b669f19b0bdcc789727e19aba46d449c23af41ffabd80f204a3026bbed9486a3b6d56005fb3b61ab5773ad0ba7f
 WHIRLPOOL 
b27e27cc40709ca05bb01caaf67f24797382bb870e91c28c6fa30ed86c195015274979623596b2b7f7b0861a0cad437a3c78dba6f15978a015d295c95f8d



1.1      dev-python/oslo-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-python/oslo-context
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.1 
2015/01/31 18:10:40 prometheanfire Exp $

*oslo-context-0.1.0 (31 Jan 2015)

  31 Jan 2015; Matthew Thode  +metadata.xml,
  +oslo-context-0.1.0.ebuild:
  adding for oslo-middleware






[PATCH v4 07/10] IB/mthca: Replace counting semaphore event_sem with wait_event

2016-10-27 Thread Binoy Jayan
Counting semaphores are going away in the future, so replace the semaphore
mthca_cmd::event_sem with a conditional wait_event.

Signed-off-by: Binoy Jayan 
---
 drivers/infiniband/hw/mthca/mthca_cmd.c | 47 ++---
 drivers/infiniband/hw/mthca/mthca_dev.h |  3 ++-
 2 files changed, 34 insertions(+), 16 deletions(-)

diff --git a/drivers/infiniband/hw/mthca/mthca_cmd.c 
b/drivers/infiniband/hw/mthca/mthca_cmd.c
index 49c6e19..d6a048a 100644
--- a/drivers/infiniband/hw/mthca/mthca_cmd.c
+++ b/drivers/infiniband/hw/mthca/mthca_cmd.c
@@ -405,6 +405,34 @@ void mthca_cmd_event(struct mthca_dev *dev,
complete(&context->done);
 }
 
+static inline struct mthca_cmd_context *
+mthca_try_get_context(struct mthca_cmd *cmd)
+{
+   struct mthca_cmd_context *context = NULL;
+
+   spin_lock(&cmd->context_lock);
+
+   if (cmd->free_head < 0)
+   goto out;
+
+   context = &cmd->context[cmd->free_head];
+   context->token += cmd->token_mask + 1;
+   cmd->free_head = context->next;
+out:
+   spin_unlock(&cmd->context_lock);
+   return context;
+}
+
+/* wait for and acquire a free context */
+static inline struct mthca_cmd_context *
+mthca_get_free_context(struct mthca_cmd *cmd)
+{
+   struct mthca_cmd_context *context;
+
+   wait_event(cmd->wq, (context = mthca_try_get_context(cmd)));
+   return context;
+}
+
 static int mthca_cmd_wait(struct mthca_dev *dev,
  u64 in_param,
  u64 *out_param,
@@ -417,15 +445,7 @@ static int mthca_cmd_wait(struct mthca_dev *dev,
    int err = 0;
    struct mthca_cmd_context *context;
 
-       down(&dev->cmd.event_sem);
-
-   spin_lock(&dev->cmd.context_lock);
-   BUG_ON(dev->cmd.free_head < 0);
-   context = &dev->cmd.context[dev->cmd.free_head];
-   context->token += dev->cmd.token_mask + 1;
-   dev->cmd.free_head = context->next;
-   spin_unlock(&dev->cmd.context_lock);
-
+   context = mthca_get_free_context(&dev->cmd);
init_completion(&context->done);
 
    err = mthca_cmd_post(dev, in_param,
@@ -458,8 +478,8 @@ static int mthca_cmd_wait(struct mthca_dev *dev,
    context->next = dev->cmd.free_head;
    dev->cmd.free_head = context - dev->cmd.context;
spin_unlock(&dev->cmd.context_lock);
+   wake_up(&dev->cmd.wq);
 
-   up(&dev->cmd.event_sem);
return err;
 }
 
@@ -571,7 +591,7 @@ int mthca_cmd_use_events(struct mthca_dev *dev)
dev->cmd.context[dev->cmd.max_cmds - 1].next = -1;
    dev->cmd.free_head = 0;
 
-   sema_init(&dev->cmd.event_sem, dev->cmd.max_cmds);
+   init_waitqueue_head(&dev->cmd.wq);
spin_lock_init(&dev->cmd.context_lock);
 
for (dev->cmd.token_mask = 1;
@@ -590,12 +610,9 @@ int mthca_cmd_use_events(struct mthca_dev *dev)
  */
 void mthca_cmd_use_polling(struct mthca_dev *dev)
 {
-   int i;
-
    dev->cmd.flags &= ~MTHCA_CMD_USE_EVENTS;
 
-   for (i = 0; i < dev->cmd.max_cmds; ++i)
-   down(&dev->cmd.event_sem);
+   dev->cmd.free_head = -1;
 
kfree(dev->cmd.context);
 }
diff --git a/drivers/infiniband/hw/mthca/mthca_dev.h 
b/drivers/infiniband/hw/mthca/mthca_dev.h
index 87ab964..2fc86db 100644
--- a/drivers/infiniband/hw/mthca/mthca_dev.h
+++ b/drivers/infiniband/hw/mthca/mthca_dev.h
@@ -46,6 +46,7 @@
 #include 
 #include 
 
+#include 
 #include "mthca_provider.h"
 #include "mthca_doorbell.h"
 
@@ -121,7 +122,7 @@ struct mthca_cmd {
struct pci_pool  *pool;
struct mutex  hcr_mutex;
struct mutex  poll_mutex;
-   struct semaphore  event_sem;
+   wait_queue_head_t wq;
int   max_cmds;
spinlock_tcontext_lock;
int   free_head;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project



[PATCH v3 7/9] IB/mthca: Replace counting semaphore event_sem with wait_event

2016-10-26 Thread Binoy Jayan
Counting semaphores are going away in the future, so replace the semaphore
mthca_cmd::event_sem with a conditional wait_event.

Signed-off-by: Binoy Jayan 
---
 drivers/infiniband/hw/mthca/mthca_cmd.c | 45 ++---
 drivers/infiniband/hw/mthca/mthca_dev.h |  3 ++-
 2 files changed, 32 insertions(+), 16 deletions(-)

diff --git a/drivers/infiniband/hw/mthca/mthca_cmd.c 
b/drivers/infiniband/hw/mthca/mthca_cmd.c
index 49c6e19..fab5509 100644
--- a/drivers/infiniband/hw/mthca/mthca_cmd.c
+++ b/drivers/infiniband/hw/mthca/mthca_cmd.c
@@ -405,6 +405,32 @@ void mthca_cmd_event(struct mthca_dev *dev,
complete(&context->done);
 }
 
+static inline struct mthca_cmd_context *
+mthca_try_get_context(struct mthca_cmd *cmd)
+{
+   struct mthca_cmd_context *context = NULL;
+   spin_lock(&cmd->context_lock);
+
+   if (cmd->free_head < 0)
+   goto out;
+
+   context = &cmd->context[cmd->free_head];
+   context->token += cmd->token_mask + 1;
+   cmd->free_head = context->next;
+out:
+   spin_unlock(&cmd->context_lock);
+   return context;
+}
+
+/* wait for and acquire a free context */
+static inline struct mthca_cmd_context *
+mthca_get_free_context(struct mthca_cmd *cmd)
+{
+   struct mthca_cmd_context *context;
+   wait_event(cmd->wq, (context = mthca_try_get_context(cmd)));
+   return context;
+}
+
 static int mthca_cmd_wait(struct mthca_dev *dev,
  u64 in_param,
  u64 *out_param,
@@ -417,15 +443,7 @@ static int mthca_cmd_wait(struct mthca_dev *dev,
    int err = 0;
    struct mthca_cmd_context *context;
 
-       down(&dev->cmd.event_sem);
-
-   spin_lock(&dev->cmd.context_lock);
-   BUG_ON(dev->cmd.free_head < 0);
-   context = &dev->cmd.context[dev->cmd.free_head];
-   context->token += dev->cmd.token_mask + 1;
-   dev->cmd.free_head = context->next;
-   spin_unlock(&dev->cmd.context_lock);
-
+   context = mthca_get_free_context(&dev->cmd);
init_completion(&context->done);
 
    err = mthca_cmd_post(dev, in_param,
@@ -458,8 +476,8 @@ static int mthca_cmd_wait(struct mthca_dev *dev,
    context->next = dev->cmd.free_head;
    dev->cmd.free_head = context - dev->cmd.context;
spin_unlock(&dev->cmd.context_lock);
+   wake_up(&dev->cmd.wq);
 
-   up(&dev->cmd.event_sem);
return err;
 }
 
@@ -571,7 +589,7 @@ int mthca_cmd_use_events(struct mthca_dev *dev)
dev->cmd.context[dev->cmd.max_cmds - 1].next = -1;
    dev->cmd.free_head = 0;
 
-   sema_init(&dev->cmd.event_sem, dev->cmd.max_cmds);
+   init_waitqueue_head(&dev->cmd.wq);
spin_lock_init(&dev->cmd.context_lock);
 
for (dev->cmd.token_mask = 1;
@@ -590,12 +608,9 @@ int mthca_cmd_use_events(struct mthca_dev *dev)
  */
 void mthca_cmd_use_polling(struct mthca_dev *dev)
 {
-   int i;
-
    dev->cmd.flags &= ~MTHCA_CMD_USE_EVENTS;
 
-   for (i = 0; i < dev->cmd.max_cmds; ++i)
-   down(&dev->cmd.event_sem);
+   dev->cmd.free_head = -1;
 
kfree(dev->cmd.context);
 }
diff --git a/drivers/infiniband/hw/mthca/mthca_dev.h 
b/drivers/infiniband/hw/mthca/mthca_dev.h
index 87ab964..2fc86db 100644
--- a/drivers/infiniband/hw/mthca/mthca_dev.h
+++ b/drivers/infiniband/hw/mthca/mthca_dev.h
@@ -46,6 +46,7 @@
 #include 
 #include 
 
+#include 
 #include "mthca_provider.h"
 #include "mthca_doorbell.h"
 
@@ -121,7 +122,7 @@ struct mthca_cmd {
struct pci_pool  *pool;
struct mutex  hcr_mutex;
struct mutex  poll_mutex;
-   struct semaphore  event_sem;
+   wait_queue_head_t wq;
int   max_cmds;
spinlock_tcontext_lock;
int   free_head;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project



[PATCH v5 7/9] IB/mthca: Replace counting semaphore event_sem with wait_event

2016-11-20 Thread Binoy Jayan
Counting semaphores are going away in the future, so replace the semaphore
mthca_cmd::event_sem with a conditional wait_event.

Signed-off-by: Binoy Jayan 
---
 drivers/infiniband/hw/mthca/mthca_cmd.c | 47 ++---
 drivers/infiniband/hw/mthca/mthca_dev.h |  3 ++-
 2 files changed, 34 insertions(+), 16 deletions(-)

diff --git a/drivers/infiniband/hw/mthca/mthca_cmd.c 
b/drivers/infiniband/hw/mthca/mthca_cmd.c
index 49c6e19..d6a048a 100644
--- a/drivers/infiniband/hw/mthca/mthca_cmd.c
+++ b/drivers/infiniband/hw/mthca/mthca_cmd.c
@@ -405,6 +405,34 @@ void mthca_cmd_event(struct mthca_dev *dev,
complete(&context->done);
 }
 
+static inline struct mthca_cmd_context *
+mthca_try_get_context(struct mthca_cmd *cmd)
+{
+   struct mthca_cmd_context *context = NULL;
+
+   spin_lock(&cmd->context_lock);
+
+   if (cmd->free_head < 0)
+   goto out;
+
+   context = &cmd->context[cmd->free_head];
+   context->token += cmd->token_mask + 1;
+   cmd->free_head = context->next;
+out:
+   spin_unlock(&cmd->context_lock);
+   return context;
+}
+
+/* wait for and acquire a free context */
+static inline struct mthca_cmd_context *
+mthca_get_free_context(struct mthca_cmd *cmd)
+{
+   struct mthca_cmd_context *context;
+
+   wait_event(cmd->wq, (context = mthca_try_get_context(cmd)));
+   return context;
+}
+
 static int mthca_cmd_wait(struct mthca_dev *dev,
  u64 in_param,
  u64 *out_param,
@@ -417,15 +445,7 @@ static int mthca_cmd_wait(struct mthca_dev *dev,
    int err = 0;
    struct mthca_cmd_context *context;
 
-       down(&dev->cmd.event_sem);
-
-   spin_lock(&dev->cmd.context_lock);
-   BUG_ON(dev->cmd.free_head < 0);
-   context = &dev->cmd.context[dev->cmd.free_head];
-   context->token += dev->cmd.token_mask + 1;
-   dev->cmd.free_head = context->next;
-   spin_unlock(&dev->cmd.context_lock);
-
+   context = mthca_get_free_context(&dev->cmd);
init_completion(&context->done);
 
    err = mthca_cmd_post(dev, in_param,
@@ -458,8 +478,8 @@ static int mthca_cmd_wait(struct mthca_dev *dev,
    context->next = dev->cmd.free_head;
    dev->cmd.free_head = context - dev->cmd.context;
spin_unlock(&dev->cmd.context_lock);
+   wake_up(&dev->cmd.wq);
 
-   up(&dev->cmd.event_sem);
return err;
 }
 
@@ -571,7 +591,7 @@ int mthca_cmd_use_events(struct mthca_dev *dev)
dev->cmd.context[dev->cmd.max_cmds - 1].next = -1;
    dev->cmd.free_head = 0;
 
-   sema_init(&dev->cmd.event_sem, dev->cmd.max_cmds);
+   init_waitqueue_head(&dev->cmd.wq);
spin_lock_init(&dev->cmd.context_lock);
 
for (dev->cmd.token_mask = 1;
@@ -590,12 +610,9 @@ int mthca_cmd_use_events(struct mthca_dev *dev)
  */
 void mthca_cmd_use_polling(struct mthca_dev *dev)
 {
-   int i;
-
    dev->cmd.flags &= ~MTHCA_CMD_USE_EVENTS;
 
-   for (i = 0; i < dev->cmd.max_cmds; ++i)
-   down(&dev->cmd.event_sem);
+   dev->cmd.free_head = -1;
 
kfree(dev->cmd.context);
 }
diff --git a/drivers/infiniband/hw/mthca/mthca_dev.h 
b/drivers/infiniband/hw/mthca/mthca_dev.h
index 87ab964..2fc86db 100644
--- a/drivers/infiniband/hw/mthca/mthca_dev.h
+++ b/drivers/infiniband/hw/mthca/mthca_dev.h
@@ -46,6 +46,7 @@
 #include 
 #include 
 
+#include 
 #include "mthca_provider.h"
 #include "mthca_doorbell.h"
 
@@ -121,7 +122,7 @@ struct mthca_cmd {
struct pci_pool  *pool;
struct mutex  hcr_mutex;
struct mutex  poll_mutex;
-   struct semaphore  event_sem;
+   wait_queue_head_t wq;
int   max_cmds;
spinlock_tcontext_lock;
int   free_head;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project



[gentoo-commits] gentoo-x86 commit in dev-python/oslo-context: oslo-context-0.1.0-r1.ebuild ChangeLog

2015-02-27 Thread Matt Thode (prometheanfire)
prometheanfire15/02/28 07:01:27

  Modified: ChangeLog
  Added:oslo-context-0.1.0-r1.ebuild
  Log:
  adding py3 support to oslo-context
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.3  dev-python/oslo-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   31 Jan 2015 18:14:32 -  1.2
+++ ChangeLog   28 Feb 2015 07:01:27 -  1.3
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/oslo-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.2 
2015/01/31 18:14:32 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.3 
2015/02/28 07:01:27 prometheanfire Exp $
+
+*oslo-context-0.1.0-r1 (28 Feb 2015)
+
+  28 Feb 2015; Matthew Thode 
+  +oslo-context-0.1.0-r1.ebuild:
+  adding py3 support to oslo-context
 
   31 Jan 2015; Matthew Thode  metadata.xml:
   touching for signing



1.1      dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: oslo-context-0.1.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild,v 
1.1 2015/02/28 07:01:27 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )

inherit distutils-r1

DESCRIPTION="Helpers to maintain useful information about a request context"
HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
S="${WORKDIR}/oslo.context-${PV}"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/pbr-0.8[${PYTHON_USEDEP}]
=dev-python/hacking-0.9.2[${PYTHON_USEDEP}]
=dev-python/oslotest-1.2.0[${PYTHON_USEDEP}]
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
>=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]


[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-context: ChangeLog texlive-context-2014.ebuild

2014-11-02 Thread Alexis Ballier (aballier)
aballier14/11/03 06:46:36

  Modified: ChangeLog
  Added:texlive-context-2014.ebuild
  Log:
  bump to texlive 2014
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.76 dev-texlive/texlive-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.76&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.76&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   9 Mar 2014 18:56:33 -   1.75
+++ ChangeLog   3 Nov 2014 06:46:36 -   1.76
@@ -1,6 +1,12 @@
 # ChangeLog for dev-texlive/texlive-context
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.75 2014/03/09 18:56:33 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.76 2014/11/03 06:46:36 aballier Exp $
+
+*texlive-context-2014 (03 Nov 2014)
+
+  03 Nov 2014; Alexis Ballier 
+  +texlive-context-2014.ebuild:
+  bump to texlive 2014
 
   09 Mar 2014; Ulrich Müller  texlive-context-2012-r1.ebuild,
   texlive-context-2013.ebuild, texlive-context-2013-r1.ebuild:



1.1      dev-texlive/texlive-context/texlive-context-2014.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild?rev=1.1&content-type=text/plain

Index: texlive-context-2014.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2014.ebuild,v
 1.1 2014/11/03 06:46:36 aballier Exp $

EAPI="5"

TEXLIVE_MODULE_CONTENTS="context jmn context-account context-algorithmic 
context-bnf context-chromato context-construction-plan context-cyrillicnumbers 
context-degrade context-filter context-fixme context-french context-fullpage 
context-games context-gantt context-gnuplot context-letter context-lettrine 
context-lilypond context-mathsets context-notes-zh-cn context-rst context-ruby 
context-simplefonts context-simpleslides context-transliterator 
context-typearea context-typescripts context-vim collection-context
"
TEXLIVE_MODULE_DOC_CONTENTS="context.doc context-account.doc context-bnf.doc 
context-chromato.doc context-construction-plan.doc context-cyrillicnumbers.doc 
context-degrade.doc context-filter.doc context-french.doc context-fullpage.doc 
context-games.doc context-gantt.doc context-gnuplot.doc context-letter.doc 
context-lettrine.doc context-lilypond.doc context-mathsets.doc 
context-notes-zh-cn.doc context-rst.doc context-ruby.doc 
context-simplefonts.doc context-simpleslides.doc context-transliterator.doc 
context-typearea.doc context-typescripts.doc context-vim.doc "
TEXLIVE_MODULE_SRC_CONTENTS=""
inherit  texlive-module
DESCRIPTION="TeXLive ConTeXt and packages"

LICENSE=" BSD GPL-1 GPL-2 public-domain TeX-other-free "
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~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-basic-2014
>=dev-texlive/texlive-latex-2010
!=app-text/texlive-core-2010[xetex]
>=dev-texlive/texlive-metapost-2010
"
RDEPEND="${DEPEND} dev-lang/ruby
"
PATCHES=( "${FILESDIR}/luacnfspec2013.patch" )

TL_CONTEXT_UNIX_STUBS="contextjit mtxrunjit mtxrun texexec context metatex 
luatools mtxworks texmfstart"

TEXLIVE_MODULE_BINSCRIPTS=""

for i in ${TL_CONTEXT_UNIX_STUBS} ; do
TEXLIVE_MODULE_BINSCRIPTS="${TEXLIVE_MODULE_BINSCRIPTS} 
texmf-dist/scripts/context/stubs/unix/$i"
done

# This small hack is needed in order to have a sane upgrade path:
# the new TeX Live 2009 metapost produces this file but it is not recorded in
# any package; when running fmtutil (like texmf-update does) this file will be
# created and cause collisions.

pkg_setup() {
if [ -f "${ROOT}/var/lib/texmf/web2c/metapost/metafun.log" ]; then
einfo "Removing 
${ROOT}/var/lib/texmf/web2c/metapost/metafun.log"
    rm -f "${ROOT}/var/

[PATCH 1/2] amdgpu: cleanup public interface

2015-04-23 Thread Christian König
From: Christian König 

Remove the mostly unused device parameter, for the few cases
where we really need it keep a copy in the context structure.

Signed-off-by: Christian König 
Reviewed-by: Jammy Zhou 
Reviewed-by: Alex Deucher 
---
 amdgpu/amdgpu.h|  24 +++---
 amdgpu/amdgpu_cs.c | 115 +++--
 amdgpu/amdgpu_internal.h   |   2 +
 tests/amdgpu/basic_tests.c |  33 +++--
 tests/amdgpu/cs_tests.c|  14 +++---
 5 files changed, 78 insertions(+), 110 deletions(-)

diff --git a/amdgpu/amdgpu.h b/amdgpu/amdgpu.h
index 90dc33c..7a85982 100644
--- a/amdgpu/amdgpu.h
+++ b/amdgpu/amdgpu.h
@@ -882,7 +882,6 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
  *
  * Destroy GPU execution context when not needed any more
  *
- * \param   dev- \c [in] Device handle. See 
#amdgpu_device_initialize()
  * \param   context - \c [in] GPU Context handle
  *
  * \return   0 on success\n
@@ -892,13 +891,11 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
  * \sa amdgpu_cs_ctx_create()
  *
 */
-int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
-  amdgpu_context_handle context);
+int amdgpu_cs_ctx_free(amdgpu_context_handle context);

 /**
  * Query reset state for the specific GPU Context
  *
- * \param   dev- \c [in] Device handle. See 
#amdgpu_device_initialize()
  * \param   context - \c [in]  GPU Context handle
  * \param   state   - \c [out] Reset state status
  *
@@ -909,8 +906,7 @@ int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
  * \sa amdgpu_cs_ctx_create()
  *
 */
-int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
-   amdgpu_context_handle context,
+int amdgpu_cs_query_reset_state(amdgpu_context_handle context,
enum amdgpu_cs_ctx_reset_state *state);


@@ -924,7 +920,6 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
  * Allocate memory to be filled with PM4 packets and be served as the first
  * entry point of execution (a.k.a. Indirect Buffer)
  *
- * \param   dev- \c [in] Device handle. See 
#amdgpu_device_initialize()
  * \param   context - \c [in]  GPU Context which will use IB
  * \param   ib_size - \c [in]  Size of allocation
  * \param   output  - \c [out] Pointer to structure to get information about
@@ -937,8 +932,7 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
  * \sa amdgpu_cs_free_ib()
  *
 */
-int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
-  amdgpu_context_handle context,
+int amdgpu_cs_alloc_ib(amdgpu_context_handle context,
   enum amdgpu_cs_ib_size ib_size,
   struct amdgpu_cs_ib_alloc_result *output);

@@ -946,8 +940,6 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
  * If UMD has allocates IBs which doesn’t need any more than those IBs must
  * be explicitly freed
  *
- * \param   dev- \c [in] Device handle. See 
#amdgpu_device_initialize()
- * \param   context - \c [in] GPU Context containing IB
  * \param   handle  - \c [in] IB handle
  *
  * \return   0 on success\n
@@ -960,9 +952,7 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
  * \sa amdgpu_cs_alloc_ib()
  *
 */
-int amdgpu_cs_free_ib(amdgpu_device_handle dev,
- amdgpu_context_handle context,
- amdgpu_ib_handle handle);
+int amdgpu_cs_free_ib(amdgpu_ib_handle handle);

 /**
  * Send request to submit command buffers to hardware.
@@ -1011,8 +1001,7 @@ int amdgpu_cs_free_ib(amdgpu_device_handle dev,
  * amdgpu_cs_query_fence_status()
  *
 */
-int amdgpu_cs_submit(amdgpu_device_handle  dev,
-amdgpu_context_handle context,
+int amdgpu_cs_submit(amdgpu_context_handle context,
 uint64_t flags,
 struct amdgpu_cs_request *ibs_request,
 uint32_t number_of_requests,
@@ -1038,8 +1027,7 @@ int amdgpu_cs_submit(amdgpu_device_handle  dev,
  *
  * \sa amdgpu_cs_submit()
 */
-int amdgpu_cs_query_fence_status(amdgpu_device_handle dev,
-struct amdgpu_cs_query_fence *fence,
+int amdgpu_cs_query_fence_status(struct amdgpu_cs_query_fence *fence,
 uint32_t *expired);


diff --git a/amdgpu/amdgpu_cs.c b/amdgpu/amdgpu_cs.c
index 614904d..d6b4b2d 100644
--- a/amdgpu/amdgpu_cs.c
+++ b/amdgpu/amdgpu_cs.c
@@ -42,8 +42,7 @@
  *
  * \return  0 on success otherwise POSIX Error code
 */
-static int amdgpu_cs_create_ib(amdgpu_device_handle dev,
-  amdgpu_context_handle context,
+static int amdgpu_cs_create_ib(amdgpu_context_handle context,
   enum amdgpu_cs_ib_size ib_size,
   amdgpu_ib_handle *ib)
 {
@@ -79,7 +78,7 @@ static int amdgpu_cs_create_ib(amdgpu_device_handle dev,

alloc_buffer.preferred_heap = AMDGPU_GEM_DOMAIN_GTT;

-   r = amdgpu_bo_alloc(dev,
+   r

[PATCH 1/2] amdgpu: cleanup public interface

2015-04-24 Thread Alex Deucher
On Thu, Apr 23, 2015 at 11:53 AM, Christian König
 wrote:
> From: Christian König 
>
> Remove the mostly unused device parameter, for the few cases
> where we really need it keep a copy in the context structure.

Are you going to send out the mesa patches as well?

Alex

>
> Signed-off-by: Christian König 
> Reviewed-by: Jammy Zhou 
> Reviewed-by: Alex Deucher 
> ---
>  amdgpu/amdgpu.h|  24 +++---
>  amdgpu/amdgpu_cs.c | 115 
> +++--
>  amdgpu/amdgpu_internal.h   |   2 +
>  tests/amdgpu/basic_tests.c |  33 +++--
>  tests/amdgpu/cs_tests.c|  14 +++---
>  5 files changed, 78 insertions(+), 110 deletions(-)
>
> diff --git a/amdgpu/amdgpu.h b/amdgpu/amdgpu.h
> index 90dc33c..7a85982 100644
> --- a/amdgpu/amdgpu.h
> +++ b/amdgpu/amdgpu.h
> @@ -882,7 +882,6 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>   *
>   * Destroy GPU execution context when not needed any more
>   *
> - * \param   dev    - \c [in] Device handle. See 
> #amdgpu_device_initialize()
>   * \param   context - \c [in] GPU Context handle
>   *
>   * \return   0 on success\n
> @@ -892,13 +891,11 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>   * \sa amdgpu_cs_ctx_create()
>   *
>  */
> -int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
> -  amdgpu_context_handle context);
> +int amdgpu_cs_ctx_free(amdgpu_context_handle context);
>
>  /**
>   * Query reset state for the specific GPU Context
>   *
> - * \param   dev- \c [in] Device handle. See 
> #amdgpu_device_initialize()
>   * \param   context - \c [in]  GPU Context handle
>   * \param   state   - \c [out] Reset state status
>   *
> @@ -909,8 +906,7 @@ int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
>   * \sa amdgpu_cs_ctx_create()
>   *
>  */
> -int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
> -   amdgpu_context_handle context,
> +int amdgpu_cs_query_reset_state(amdgpu_context_handle context,
> enum amdgpu_cs_ctx_reset_state *state);
>
>
> @@ -924,7 +920,6 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
>   * Allocate memory to be filled with PM4 packets and be served as the first
>   * entry point of execution (a.k.a. Indirect Buffer)
>   *
> - * \param   dev- \c [in] Device handle. See 
> #amdgpu_device_initialize()
>   * \param   context - \c [in]  GPU Context which will use IB
>   * \param   ib_size - \c [in]  Size of allocation
>   * \param   output  - \c [out] Pointer to structure to get information about
> @@ -937,8 +932,7 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
>   * \sa amdgpu_cs_free_ib()
>   *
>  */
> -int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
> -  amdgpu_context_handle context,
> +int amdgpu_cs_alloc_ib(amdgpu_context_handle context,
>enum amdgpu_cs_ib_size ib_size,
>struct amdgpu_cs_ib_alloc_result *output);
>
> @@ -946,8 +940,6 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>   * If UMD has allocates IBs which doesn’t need any more than those IBs must
>   * be explicitly freed
>   *
> - * \param   dev- \c [in] Device handle. See 
> #amdgpu_device_initialize()
> - * \param   context - \c [in] GPU Context containing IB
>   * \param   handle  - \c [in] IB handle
>   *
>   * \return   0 on success\n
> @@ -960,9 +952,7 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>   * \sa amdgpu_cs_alloc_ib()
>   *
>  */
> -int amdgpu_cs_free_ib(amdgpu_device_handle dev,
> -     amdgpu_context_handle context,
> - amdgpu_ib_handle handle);
> +int amdgpu_cs_free_ib(amdgpu_ib_handle handle);
>
>  /**
>   * Send request to submit command buffers to hardware.
> @@ -1011,8 +1001,7 @@ int amdgpu_cs_free_ib(amdgpu_device_handle dev,
>   * amdgpu_cs_query_fence_status()
>   *
>  */
> -int amdgpu_cs_submit(amdgpu_device_handle  dev,
> -amdgpu_context_handle context,
> +int amdgpu_cs_submit(amdgpu_context_handle context,
>      uint64_t flags,
>  struct amdgpu_cs_request *ibs_request,
>  uint32_t number_of_requests,
> @@ -1038,8 +1027,7 @@ int amdgpu_cs_submit(amdgpu_device_handle  dev,
>   *
>   * \sa amdgpu_cs_submit()
>  */
> -int amdgpu_cs_query_fence_status(amdgpu_device_handle dev,
> -struct amdgpu_cs_query_fence *fence,
> +int amdgpu_cs_query_fence_status(struct amdgpu_cs_query_fence *fence,
>  uint32_t *expired);
>
>
> diff --git a

[PATCH 1/2] amdgpu: cleanup public interface

2015-04-28 Thread Marek Olšák
Hi Alex,

He sent them to me. I've applied them to my tree:

http://cgit.freedesktop.org/~mareko/mesa/log/?h=amdgpu

Marek

On Fri, Apr 24, 2015 at 5:38 PM, Alex Deucher  wrote:
> On Thu, Apr 23, 2015 at 11:53 AM, Christian König
>  wrote:
>> From: Christian König 
>>
>> Remove the mostly unused device parameter, for the few cases
>> where we really need it keep a copy in the context structure.
>
> Are you going to send out the mesa patches as well?
>
> Alex
>
>>
>> Signed-off-by: Christian König 
>> Reviewed-by: Jammy Zhou 
>> Reviewed-by: Alex Deucher 
>> ---
>>  amdgpu/amdgpu.h|  24 +++---
>>  amdgpu/amdgpu_cs.c | 115 
>> +++--
>>  amdgpu/amdgpu_internal.h   |   2 +
>>  tests/amdgpu/basic_tests.c |  33 +++--
>>  tests/amdgpu/cs_tests.c|  14 +++---
>>  5 files changed, 78 insertions(+), 110 deletions(-)
>>
>> diff --git a/amdgpu/amdgpu.h b/amdgpu/amdgpu.h
>> index 90dc33c..7a85982 100644
>> --- a/amdgpu/amdgpu.h
>> +++ b/amdgpu/amdgpu.h
>> @@ -882,7 +882,6 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>>   *
>>   * Destroy GPU execution context when not needed any more
>>   *
>> - * \param   dev- \c [in] Device handle. See 
>> #amdgpu_device_initialize()
>>   * \param   context - \c [in] GPU Context handle
>>   *
>>   * \return   0 on success\n
>> @@ -892,13 +891,11 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>>   * \sa amdgpu_cs_ctx_create()
>>   *
>>  */
>> -int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
>> -  amdgpu_context_handle context);
>> +int amdgpu_cs_ctx_free(amdgpu_context_handle context);
>>
>>  /**
>>   * Query reset state for the specific GPU Context
>>   *
>> - * \param   dev- \c [in] Device handle. See 
>> #amdgpu_device_initialize()
>>   * \param   context - \c [in]  GPU Context handle
>>   * \param   state   - \c [out] Reset state status
>>   *
>> @@ -909,8 +906,7 @@ int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
>>   * \sa amdgpu_cs_ctx_create()
>>   *
>>  */
>> -int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
>> -   amdgpu_context_handle context,
>> +int amdgpu_cs_query_reset_state(amdgpu_context_handle context,
>> enum amdgpu_cs_ctx_reset_state *state);
>>
>>
>> @@ -924,7 +920,6 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
>>   * Allocate memory to be filled with PM4 packets and be served as the first
>>   * entry point of execution (a.k.a. Indirect Buffer)
>>   *
>> - * \param   dev- \c [in] Device handle. See 
>> #amdgpu_device_initialize()
>>   * \param   context - \c [in]  GPU Context which will use IB
>>   * \param   ib_size - \c [in]  Size of allocation
>>   * \param   output  - \c [out] Pointer to structure to get information about
>> @@ -937,8 +932,7 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
>>   * \sa amdgpu_cs_free_ib()
>>   *
>>  */
>> -int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>> -  amdgpu_context_handle context,
>> +int amdgpu_cs_alloc_ib(amdgpu_context_handle context,
>>enum amdgpu_cs_ib_size ib_size,
>>struct amdgpu_cs_ib_alloc_result *output);
>>
>> @@ -946,8 +940,6 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>   * If UMD has allocates IBs which doesn’t need any more than those IBs 
>> must
>>   * be explicitly freed
>>   *
>> - * \param   dev- \c [in] Device handle. See 
>> #amdgpu_device_initialize()
>> - * \param   context - \c [in] GPU Context containing IB
>>   * \param   handle  - \c [in] IB handle
>>   *
>>   * \return   0 on success\n
>> @@ -960,9 +952,7 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>   * \sa amdgpu_cs_alloc_ib()
>>   *
>>  */
>> -int amdgpu_cs_free_ib(amdgpu_device_handle dev,
>> - amdgpu_context_handle context,
>> - amdgpu_ib_handle handle);
>> +int amdgpu_cs_free_ib(amdgpu_ib_handle handle);
>>
>>  /**
>>   * Send request to submit command buffers to hardware.
>> @@ -1011,8 +1001,7 @@ int amdgpu_cs_free_ib(amdgpu_device_handle dev,
>>   * amdgpu_cs_query_fence_status()
>>   *
>>  */
>> -int amdgpu_cs_submit(amdgpu_device_handle  dev,
>> -amdgpu_context_handle context,
>> +in

[PATCH 1/2] amdgpu: cleanup public interface

2015-04-28 Thread Christian König
Haven't I CCed the list as well?

If not then sorry that was my fault,
Christian.

On 28.04.2015 15:41, Marek Olšák wrote:
> Hi Alex,
>
> He sent them to me. I've applied them to my tree:
>
> http://cgit.freedesktop.org/~mareko/mesa/log/?h=amdgpu
>
> Marek
>
> On Fri, Apr 24, 2015 at 5:38 PM, Alex Deucher  
> wrote:
>> On Thu, Apr 23, 2015 at 11:53 AM, Christian König
>>  wrote:
>>> From: Christian König 
>>>
>>> Remove the mostly unused device parameter, for the few cases
>>> where we really need it keep a copy in the context structure.
>> Are you going to send out the mesa patches as well?
>>
>> Alex
>>
>>> Signed-off-by: Christian König 
>>> Reviewed-by: Jammy Zhou 
>>> Reviewed-by: Alex Deucher 
>>> ---
>>>   amdgpu/amdgpu.h|  24 +++---
>>>   amdgpu/amdgpu_cs.c | 115 
>>> +++--
>>>   amdgpu/amdgpu_internal.h   |   2 +
>>>   tests/amdgpu/basic_tests.c |  33 +++--
>>>   tests/amdgpu/cs_tests.c|  14 +++---
>>>   5 files changed, 78 insertions(+), 110 deletions(-)
>>>
>>> diff --git a/amdgpu/amdgpu.h b/amdgpu/amdgpu.h
>>> index 90dc33c..7a85982 100644
>>> --- a/amdgpu/amdgpu.h
>>> +++ b/amdgpu/amdgpu.h
>>> @@ -882,7 +882,6 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>>>*
>>>* Destroy GPU execution context when not needed any more
>>>*
>>> - * \param   dev- \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>>* \param   context - \c [in] GPU Context handle
>>>*
>>>* \return   0 on success\n
>>> @@ -892,13 +891,11 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>>>* \sa amdgpu_cs_ctx_create()
>>>*
>>>   */
>>> -int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
>>> -  amdgpu_context_handle context);
>>> +int amdgpu_cs_ctx_free(amdgpu_context_handle context);
>>>
>>>   /**
>>>* Query reset state for the specific GPU Context
>>>*
>>> - * \param   dev    - \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>>* \param   context - \c [in]  GPU Context handle
>>>* \param   state   - \c [out] Reset state status
>>>*
>>> @@ -909,8 +906,7 @@ int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
>>>* \sa amdgpu_cs_ctx_create()
>>>*
>>>   */
>>> -int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
>>> -   amdgpu_context_handle context,
>>> +int amdgpu_cs_query_reset_state(amdgpu_context_handle context,
>>>  enum amdgpu_cs_ctx_reset_state *state);
>>>
>>>
>>> @@ -924,7 +920,6 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle 
>>> dev,
>>>* Allocate memory to be filled with PM4 packets and be served as the 
>>> first
>>>    * entry point of execution (a.k.a. Indirect Buffer)
>>>*
>>> - * \param   dev- \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>>* \param   context - \c [in]  GPU Context which will use IB
>>>* \param   ib_size - \c [in]  Size of allocation
>>>* \param   output  - \c [out] Pointer to structure to get information 
>>> about
>>> @@ -937,8 +932,7 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle 
>>> dev,
>>>* \sa amdgpu_cs_free_ib()
>>>*
>>>   */
>>> -int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>> -      amdgpu_context_handle context,
>>> +int amdgpu_cs_alloc_ib(amdgpu_context_handle context,
>>> enum amdgpu_cs_ib_size ib_size,
>>> struct amdgpu_cs_ib_alloc_result *output);
>>>
>>> @@ -946,8 +940,6 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>>* If UMD has allocates IBs which doesn’t need any more than those IBs 
>>> must
>>>* be explicitly freed
>>>*
>>> - * \param   dev- \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>> - * \param   context - \c [in] GPU Context containing IB
>>>* \param   handle  - \c [in] IB handle
>>>*
>>>* \return   0 on success\n
>>> @@ -960,9 +952,7 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>>* \sa amdgpu_cs_

[PATCH 1/2] amdgpu: cleanup public interface

2015-04-28 Thread Alex Deucher
On Tue, Apr 28, 2015 at 9:41 AM, Marek Olšák  wrote:
> Hi Alex,
>
> He sent them to me. I've applied them to my tree:
>
> http://cgit.freedesktop.org/~mareko/mesa/log/?h=amdgpu

I've pushed them to my mesa tree as well.

Alex

>
> Marek
>
> On Fri, Apr 24, 2015 at 5:38 PM, Alex Deucher  
> wrote:
>> On Thu, Apr 23, 2015 at 11:53 AM, Christian König
>>  wrote:
>>> From: Christian König 
>>>
>>> Remove the mostly unused device parameter, for the few cases
>>> where we really need it keep a copy in the context structure.
>>
>> Are you going to send out the mesa patches as well?
>>
>> Alex
>>
>>>
>>> Signed-off-by: Christian König 
>>> Reviewed-by: Jammy Zhou 
>>> Reviewed-by: Alex Deucher 
>>> ---
>>>  amdgpu/amdgpu.h|  24 +++---
>>>  amdgpu/amdgpu_cs.c | 115 
>>> +++--
>>>  amdgpu/amdgpu_internal.h   |   2 +
>>>  tests/amdgpu/basic_tests.c |  33 +++--
>>>  tests/amdgpu/cs_tests.c|  14 +++---
>>>  5 files changed, 78 insertions(+), 110 deletions(-)
>>>
>>> diff --git a/amdgpu/amdgpu.h b/amdgpu/amdgpu.h
>>> index 90dc33c..7a85982 100644
>>> --- a/amdgpu/amdgpu.h
>>> +++ b/amdgpu/amdgpu.h
>>> @@ -882,7 +882,6 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>>>   *
>>>   * Destroy GPU execution context when not needed any more
>>>   *
>>> - * \param   dev- \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>>   * \param   context - \c [in] GPU Context handle
>>>   *
>>>   * \return   0 on success\n
>>> @@ -892,13 +891,11 @@ int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
>>>   * \sa amdgpu_cs_ctx_create()
>>>   *
>>>  */
>>> -int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
>>> -  amdgpu_context_handle context);
>>> +int amdgpu_cs_ctx_free(amdgpu_context_handle context);
>>>
>>>  /**
>>>   * Query reset state for the specific GPU Context
>>>   *
>>> - * \param   dev- \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>>   * \param   context - \c [in]  GPU Context handle
>>>   * \param   state   - \c [out] Reset state status
>>>   *
>>> @@ -909,8 +906,7 @@ int amdgpu_cs_ctx_free(amdgpu_device_handle dev,
>>>   * \sa amdgpu_cs_ctx_create()
>>>   *
>>>  */
>>> -int amdgpu_cs_query_reset_state(amdgpu_device_handle dev,
>>> -       amdgpu_context_handle context,
>>> +int amdgpu_cs_query_reset_state(amdgpu_context_handle context,
>>> enum amdgpu_cs_ctx_reset_state *state);
>>>
>>>
>>> @@ -924,7 +920,6 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle 
>>> dev,
>>>   * Allocate memory to be filled with PM4 packets and be served as the first
>>>   * entry point of execution (a.k.a. Indirect Buffer)
>>>   *
>>> - * \param   dev- \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>>   * \param   context - \c [in]  GPU Context which will use IB
>>>   * \param   ib_size - \c [in]  Size of allocation
>>>   * \param   output  - \c [out] Pointer to structure to get information 
>>> about
>>> @@ -937,8 +932,7 @@ int amdgpu_cs_query_reset_state(amdgpu_device_handle 
>>> dev,
>>>   * \sa amdgpu_cs_free_ib()
>>>   *
>>>  */
>>> -int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>> -      amdgpu_context_handle context,
>>> +int amdgpu_cs_alloc_ib(amdgpu_context_handle context,
>>>enum amdgpu_cs_ib_size ib_size,
>>>struct amdgpu_cs_ib_alloc_result *output);
>>>
>>> @@ -946,8 +940,6 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>>   * If UMD has allocates IBs which doesn’t need any more than those IBs 
>>> must
>>>   * be explicitly freed
>>>   *
>>> - * \param   dev- \c [in] Device handle. See 
>>> #amdgpu_device_initialize()
>>> - * \param   context - \c [in] GPU Context containing IB
>>>   * \param   handle  - \c [in] IB handle
>>>   *
>>>   * \return   0 on success\n
>>> @@ -960,9 +952,7 @@ int amdgpu_cs_alloc_ib(amdgpu_device_handle dev,
>>>   * \sa amdgpu_cs_alloc_ib()
>>>   *
>>>  */
>>&g

[gentoo-commits] gentoo-x86 commit in dev-ruby/shoulda-context: shoulda-context-1.1.6.ebuild ChangeLog

2014-10-10 Thread Manuel Rueger (mrueg)
mrueg   14/10/10 22:47:28

  Modified: shoulda-context-1.1.6.ebuild ChangeLog
  Log:
  Whitespace
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with 
key )

Revision  ChangesPath
1.6  dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?r1=1.5&r2=1.6

Index: shoulda-context-1.1.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- shoulda-context-1.1.6.ebuild10 Oct 2014 22:46:37 -  1.5
+++ shoulda-context-1.1.6.ebuild10 Oct 2014 22:47:28 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.5 2014/10/10 22:46:37 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.6 2014/10/10 22:47:28 mrueg Exp $
 
 EAPI=5
 
@@ -25,7 +25,7 @@
 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64"
 IUSE="doc test"
 
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
=======
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   10 Oct 2014 22:46:37 -  1.8
+++ ChangeLog   10 Oct 2014 22:47:28 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/shoulda-context
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.8 
2014/10/10 22:46:37 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.9 
2014/10/10 22:47:28 mrueg Exp $
+
+  10 Oct 2014; Manuel Rüger  shoulda-context-1.1.6.ebuild:
+  Whitespace
 
   10 Oct 2014; Manuel Rüger  shoulda-context-1.1.6.ebuild:
   Add ruby21 target, require 

[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2021-10-22 Thread Michał Górny
commit: 6cb3a3ba63f57dd94b45d7c2d38b50819ff5448d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 22 08:15:58 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 22 10:28:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb3a3ba

dev-python/oslo-context: Bump to 3.4.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-3.4.0.ebuild | 30 +++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index fd8b54b4480..66219d0cfd3 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-3.3.1.tar.gz 32676 BLAKE2B 
38d5eaf7a3162fdb6a8887f2c627ee192950d743a9de929ea332495099bcc76e27a192ce6e8a3b010e190ef749ea67dcf168476bc84ede99d43c1ec8b11e1734
 SHA512 
40f3418020246066841e62e5579ac4a1c761c92c5f439b07059cd0b6b2e8984d2e1dacfa57af7c6d9c97c2fda8eeb5cfde76f2110a36ef21513b42d0d3bffc73
+DIST oslo.context-3.4.0.tar.gz 32954 BLAKE2B 
9f22ce6af5efcfec8ab92bdb6c806e420b09037bce08b68fd43684fd459cb12b8196a1e6ee48dcb41ae7aa5d4679851fbed2058709d17e5bb7efc85c9b6d04ea
 SHA512 
bf31c01237352a296e46fdb533ea921dce24cd3c3a918e39f7ff17305104d8f033527738fe562dfe61c8700dbce96e26433068503ca8c5cf9dffb0780e42ec53

diff --git a/dev-python/oslo-context/oslo-context-3.4.0.ebuild 
b/dev-python/oslo-context/oslo-context-3.4.0.ebuild
new file mode 100644
index 000..c95e2201c2a
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-3.4.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.org/project/oslo.context/";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+S="${WORKDIR}/oslo.context-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] gentoo-x86 commit in dev-python/oslo-context: oslo-context-0.2.0.ebuild ChangeLog

2015-03-10 Thread Matt Thode (prometheanfire)
prometheanfire15/03/11 05:25:11

  Modified: ChangeLog
  Added:oslo-context-0.2.0.ebuild
  Log:
  bup
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.4  dev-python/oslo-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   28 Feb 2015 07:01:27 -  1.3
+++ ChangeLog   11 Mar 2015 05:25:11 -  1.4
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/oslo-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.3 
2015/02/28 07:01:27 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.4 
2015/03/11 05:25:11 prometheanfire Exp $
+
+*oslo-context-0.2.0 (11 Mar 2015)
+
+  11 Mar 2015; Matthew Thode 
+  +oslo-context-0.2.0.ebuild:
+  bup
 
 *oslo-context-0.1.0-r1 (28 Feb 2015)
 



1.1      dev-python/oslo-context/oslo-context-0.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?rev=1.1&content-type=text/plain

Index: oslo-context-0.2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild,v 1.1 
2015/03/11 05:25:11 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )

inherit distutils-r1

DESCRIPTION="Helpers to maintain useful information about a request context"
HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
S="${WORKDIR}/oslo.context-${PV}"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/pbr-0.8[${PYTHON_USEDEP}]
=dev-python/hacking-0.9.2[${PYTHON_USEDEP}]
=dev-python/oslotest-1.2.0[${PYTHON_USEDEP}]
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
>=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]


[gentoo-commits] gentoo-x86 commit in dev-python/oslo-context: oslo-context-0.3.0.ebuild ChangeLog

2015-04-22 Thread Matt Thode (prometheanfire)
prometheanfire15/04/22 19:52:36

  Modified: ChangeLog
  Added:oslo-context-0.3.0.ebuild
  Log:
  bup
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.5  dev-python/oslo-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   11 Mar 2015 05:25:11 -  1.4
+++ ChangeLog   22 Apr 2015 19:52:36 -  1.5
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/oslo-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.4 
2015/03/11 05:25:11 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.5 
2015/04/22 19:52:36 prometheanfire Exp $
+
+*oslo-context-0.3.0 (22 Apr 2015)
+
+  22 Apr 2015; Matthew Thode 
+  +oslo-context-0.3.0.ebuild:
+  bup
 
 *oslo-context-0.2.0 (11 Mar 2015)
 



1.1      dev-python/oslo-context/oslo-context-0.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.3.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.3.0.ebuild?rev=1.1&content-type=text/plain

Index: oslo-context-0.3.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.3.0.ebuild,v 1.1 
2015/04/22 19:52:36 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )

inherit distutils-r1

DESCRIPTION="Helpers to maintain useful information about a request context"
HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
S="${WORKDIR}/oslo.context-${PV}"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/pbr-0.8[${PYTHON_USEDEP}]
=dev-python/hacking-0.10[${PYTHON_USEDEP}]
=dev-python/oslotest-1.5.1[${PYTHON_USEDEP}]
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
>=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]


[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2018-06-17 Thread Matt Thode
commit: a68c5df385b77e21ffab45ca7d12d1c4e25c6055
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun 18 01:50:32 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Jun 18 01:59:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a68c5df3

dev-python/oslo-context: cleanup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/oslo-context/Manifest   |  1 -
 dev-python/oslo-context/oslo-context-2.17.1.ebuild | 49 --
 2 files changed, 50 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 39afa9d84d7..f723f91c4be 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-2.17.1.tar.gz 27266 BLAKE2B 
6d539af2d191103a411db0a7671d0ea4a9bb21d0a33e4e306ceac8455c4b0aafe594541b3cf7e565372dee66c3a7c6685b86c96256046e108ee21f74633d01a5
 SHA512 
f75d9cececaa095cab3b87b05ab0c4bf9f115b96ab7feb5607edd00a33440a4418692f4f6cf8a3dffbbc302758e734c4184f271e3860e65d9da95f0a97ae633f
 DIST oslo.context-2.20.0.tar.gz 28203 BLAKE2B 
cbb3cb6f30b1b16011caa6fdec36c19aae571125b88f642bfc52c5a8a63a2b17eb308628d9a5f19b8a0c3bd28fb0db54e5485abd10c90c9495de05263ac25709
 SHA512 
ce7bd92c7e22e02e91bdc86e9b697f746233a41081b4f3ebb9fe30fec8000c69f732f55de0d333b349b8e01e638ddc835fd3cf0d8f7a11aa3454466a1e87ad08

diff --git a/dev-python/oslo-context/oslo-context-2.17.1.ebuild 
b/dev-python/oslo-context/oslo-context-2.17.1.ebuild
deleted file mode 100644
index a15d9908170..000
--- a/dev-python/oslo-context/oslo-context-2.17.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-       test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
-   >=dev-python/openstackdocstheme-1.16.0[${PYTHON_USEDEP}]
-   >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
-   !~dev-python/reno-2.3.1[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}



[gentoo-commits] gentoo-x86 commit in dev-ruby/shoulda-context: ChangeLog shoulda-context-1.1.6.ebuild

2014-08-11 Thread Jeroen Roovers (jer)
jer 14/08/11 09:53:48

  Modified: ChangeLog shoulda-context-1.1.6.ebuild
  Log:
  Marked ~hppa (bug #519170).
  
  (Portage version: 2.2.11-r1/cvs/Linux x86_64, RepoMan options: 
--ignore-arches, signed Manifest commit with key A792A613)

Revision  ChangesPath
1.6  dev-ruby/shoulda-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   25 Apr 2014 05:13:45 -  1.5
+++ ChangeLog   11 Aug 2014 09:53:48 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/shoulda-context
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.5 
2014/04/25 05:13:45 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.6 
2014/08/11 09:53:48 jer Exp $
+
+  11 Aug 2014; Jeroen Roovers  shoulda-context-1.1.6.ebuild:
+  Marked ~hppa (bug #519170).
 
   25 Apr 2014; Hans de Graaff 
   -shoulda-context-1.1.4.ebuild:



1.3      dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?r1=1.2&r2=1.3

Index: shoulda-context-1.1.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- shoulda-context-1.1.6.ebuild5 Mar 2014 21:18:42 -0000   1.2
+++ shoulda-context-1.1.6.ebuild11 Aug 2014 09:53:48 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.2 2014/03/05 21:18:42 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.3 2014/08/11 09:53:48 jer Exp $
 
 EAPI=5
 
@@ -22,7 +22,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~hppa"
 IUSE="doc test"
 
 ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/mocha )"






Build failed in Jenkins: Mesos » gcc,--verbose,ubuntu:14.04,docker||Hadoop #724

2015-08-21 Thread Apache Jenkins Server
Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 269.1 MB
Sending build context to Docker daemon 269.4 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in db7e0b0f92e3
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkdb5-7 amd64 
1.12+dfsg-2ubuntu5.1 [36.2 kB]
Get:15 http://archive.ubuntu.co

Build failed in Jenkins: Mesos » clang,--verbose --enable-libevent,ubuntu:14.04,docker||Hadoop #725

2015-08-24 Thread Apache Jenkins Server
daemon 269.1 MB
Sending build context to Docker daemon 269.6 MB
Sending build context to Docker daemon 270.2 MB
Sending build context to Docker daemon 270.7 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in 52c7ce087ac3
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkdb5-7 amd64 
1.12+dfsg-2ubuntu5.1 [36.2 kB]
Get:15 http://archive.ubuntu.co

Build failed in Jenkins: Mesos » gcc,--verbose --enable-libevent --enable-ssl,ubuntu:14.04,docker||Hadoop #732

2015-08-25 Thread Apache Jenkins Server
5.7 MB
Sending build context to Docker daemon 266.3 MB
Sending build context to Docker daemon 266.8 MB
Sending build context to Docker daemon 267.4 MB
Sending build context to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 268.5 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in 54556ae0d75a
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 h

Build failed in Jenkins: Mesos » gcc,--verbose,ubuntu:14.04,docker||Hadoop #732

2015-08-25 Thread Apache Jenkins Server
Docker daemon 267.4 MB
Sending build context to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 269.1 MB
Sending build context to Docker daemon 269.6 MB
Sending build context to Docker daemon 269.6 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in 4fecc4b3f716
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 http://archive.ubuntu.com/ubuntu/ tru

Build failed in Jenkins: Mesos » gcc,--verbose --enable-libevent --enable-ssl,ubuntu:14.04,docker||Hadoop #738

2015-08-27 Thread Apache Jenkins Server
MB
Sending build context to Docker daemon 267.4 MB
Sending build context to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 268.7 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in c76a5b98eed0
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkdb5-7 amd64 
1.12+dfsg-2ubuntu5.1 [36.2 kB]
Get:1

Build failed in Jenkins: Mesos » clang,--verbose --enable-libevent --enable-ssl,ubuntu:14.04,docker||Hadoop #739

2015-08-27 Thread Apache Jenkins Server
Docker daemon 266.8 MB
Sending build context to Docker daemon 267.4 MB
Sending build context to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 268.6 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in 954b371b420c
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkdb5-7 amd64 
1.12+dfsg-2ub

Build failed in Jenkins: Mesos » clang,--verbose,ubuntu:14.04,docker||Hadoop #739

2015-08-27 Thread Apache Jenkins Server
ontext to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 269.1 MB
Sending build context to Docker daemon 269.1 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in 74450ad7861d
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkdb5-7 amd64 
1.12+dfsg-2ubuntu5.1 [36.2 kB]
Get:15 http://a

Build failed in Jenkins: Mesos » clang,--verbose,ubuntu:14.04,docker||Hadoop #741

2015-08-27 Thread Apache Jenkins Server
6.3 MB
Sending build context to Docker daemon 266.8 MB
Sending build context to Docker daemon 267.4 MB
Sending build context to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 269.1 MB
Sending build context to Docker daemon 269.2 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in e12cbae56de2
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 h

Build failed in Jenkins: Mesos » gcc,--verbose --enable-libevent --enable-ssl,ubuntu:14.04,docker||Hadoop #742

2015-08-27 Thread Apache Jenkins Server
g build context to Docker daemon 265.2 MB
Sending build context to Docker daemon 265.7 MB
Sending build context to Docker daemon 266.3 MB
Sending build context to Docker daemon 266.8 MB
Sending build context to Docker daemon 267.4 MB
Sending build context to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 268.9 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in 63b77c748762
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu

Build failed in Jenkins: Mesos » gcc,--verbose --enable-libevent --enable-ssl,ubuntu:14.04,docker||Hadoop #744

2015-08-27 Thread Apache Jenkins Server
ext to Docker daemon 267.9 MB
Sending build context to Docker daemon 268.5 MB
Sending build context to Docker daemon 269.1 MB
Sending build context to Docker daemon 269.2 MB

Sending build context to Docker daemon 
Step 0 : FROM ubuntu:14.04
 ---> d2a0ecffe6fa
Step 1 : RUN apt-get update
 ---> Using cache
 ---> 8e6b7641dada
Step 2 : RUN apt-get -y install build-essential clang git maven autoconf libtool
 ---> Using cache
 ---> 0500165e0009
Step 3 : RUN apt-get -y install openjdk-7-jdk python-dev python-boto 
libcurl4-nss-dev libsasl2-dev libapr1-dev libsvn-dev libevent-dev
 ---> Running in 78be2059c176
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  comerr-dev krb5-multidev libapr1 libaprutil1 libaprutil1-dev libcurl3-nss
  libevent-2.0-5 libevent-core-2.0-5 libevent-extra-2.0-5
  libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev
  libgnutls-dev libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev
  libidn11-dev libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev
  libldap2-dev libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev
  libp11-kit-dev libpcre3 libpcre3-dev libpcrecpp0 libpq-dev libpq5
  libpthread-stubs0-dev libpython-dev libpython2.7 libpython2.7-dev
  librtmp-dev libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-0
  libsqlite3-dev libssl-dev libssl-doc libsvn1 libtasn1-6-dev libuuid1
  libx11-dev libx11-doc libxau-dev libxcb1-dev libxdmcp-dev libxt-dev
  lksctp-tools mysql-common pkg-config python-chardet python-requests
  python-six python-urllib3 python2.7-dev uuid-dev x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  doc-base krb5-doc libcurl4-doc libcurl3-dbg libgcrypt11-doc gnutls26-doc
  gnutls-bin krb5-user libice-doc postgresql-doc-9.3 libsm-doc sqlite3-doc
  libsvn-doc libserf-dev libxcb-doc libxt-doc openjdk-7-demo openjdk-7-source
  visualvm
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  comerr-dev krb5-multidev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  libcurl3-nss libcurl4-nss-dev libevent-2.0-5 libevent-core-2.0-5
  libevent-dev libevent-extra-2.0-5 libevent-openssl-2.0-5
  libevent-pthreads-2.0-5 libexpat1-dev libgcrypt11-dev libgnutls-dev
  libgnutlsxx27 libgpg-error-dev libgssrpc4 libice-dev libidn11-dev
  libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 libkrb5-dev libldap2-dev
  libmysqlclient-dev libmysqlclient18 libnspr4-dev libnss3-dev libp11-kit-dev
  libpcre3-dev libpcrecpp0 libpq-dev libpq5 libpthread-stubs0-dev
  libpython-dev libpython2.7 libpython2.7-dev librtmp-dev libsasl2-dev
  libsctp-dev libsctp1 libserf-1-1 libsm-dev libsqlite3-dev libssl-dev
  libssl-doc libsvn-dev libsvn1 libtasn1-6-dev libx11-dev libx11-doc
  libxau-dev libxcb1-dev libxdmcp-dev libxt-dev lksctp-tools mysql-common
  openjdk-7-jdk pkg-config python-boto python-chardet python-dev
  python-requests python-six python-urllib3 python2.7-dev uuid-dev
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev xorg-sgml-doctools
  xtrans-dev zlib1g-dev
The following packages will be upgraded:
  libpcre3 libsqlite3-0 libuuid1
3 upgraded, 76 newly installed, 0 to remove and 16 not upgraded.
Need to get 56.8 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libpcre3 amd64 
1:8.31-2ubuntu2.1 [144 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libuuid1 amd64 
2.20.1-5.1ubuntu20.6 [10.9 kB]
Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libsqlite3-0 amd64 
3.8.2-1ubuntu2.1 [342 kB]
Get:4 http://archive.ubuntu.com/ubuntu/ trusty/main libapr1 amd64 1.5.0-1 [85.1 
kB]
Get:5 http://archive.ubuntu.com/ubuntu/ trusty/main libaprutil1 amd64 1.5.3-1 
[76.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libcurl3-nss amd64 
7.35.0-1ubuntu2.5 [176 kB]
Get:7 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libevent-core-2.0-5 
amd64 2.0.21-stable-1ubuntu1.14.04.1 [78.3 kB]
Get:9 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-extra-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [57.8 kB]
Get:10 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-openssl-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [12.6 kB]
Get:11 http://archive.ubuntu.com/ubuntu/ trusty-updates/main 
libevent-pthreads-2.0-5 amd64 2.0.21-stable-1ubuntu1.14.04.1 [6126 B]
Get:12 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libgssrpc4 amd64 
1.12+dfsg-2ubuntu5.1 [53.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkadm5clnt-mit9 
amd64 1.12+dfsg-2ubuntu5.1 [36.1 kB]
Get:14 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libkdb5-7 amd64 
1.12+dfsg-2ubuntu5.1 [36.2 kB]
Get:15 http://a

[gentoo-commits] gentoo-x86 commit in dev-ruby/shoulda-context: shoulda-context-1.1.6.ebuild ChangeLog

2014-10-29 Thread Manuel Rueger (mrueg)
mrueg   14/10/29 19:34:27

  Modified: shoulda-context-1.1.6.ebuild ChangeLog
  Log:
  Drop jruby target.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.7  dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?r1=1.6&r2=1.7

Index: shoulda-context-1.1.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- shoulda-context-1.1.6.ebuild10 Oct 2014 22:47:28 -  1.6
+++ shoulda-context-1.1.6.ebuild29 Oct 2014 19:34:27 -  1.7
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.6 2014/10/10 22:47:28 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.7 2014/10/29 19:34:27 mrueg Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 jruby"
+USE_RUBY="ruby19 ruby20 ruby21"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"



1.10 dev-ruby/shoulda-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===========
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   10 Oct 2014 22:47:28 -  1.9
+++ ChangeLog   29 Oct 2014 19:34:27 -0000  1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/shoulda-context
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.9 
2014/10/10 22:47:28 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.10 
2014/10/29 19:34:27 mrueg Exp $
+
+  29 Oct 2014; Manuel Rüger  shoulda-context-1.1.6.ebuild:
+  Drop jruby target.
 
   10 Oct 2014; Manuel Rüger  shoulda-context-1.1.6.ebuild:
   Whitespace






[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2021-09-25 Thread Michał Górny
commit: 319042cf57f686bcf0e7f09ccd9e35d5fc14871d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep 25 22:02:02 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep 25 22:02:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=319042cf

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-3.1.1.ebuild | 28 ---
 2 files changed, 29 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 13fb7753c2b..fd8b54b4480 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-3.1.1.tar.gz 29335 BLAKE2B 
2179e5c273b5e387806fc4a8b1ac2f0641f4cc9f2345cb00e6ef9c2e7c8b69709c0c14dd11254d026283b2be7e032044b6f753a13f062915db9f000ae1873f1a
 SHA512 
a9d16475bac5aa96d086019632f417fa5b496f615b814527e547a43362f1e36ed47c47266032e72194f88716237ccff7a24bf941d66bf36afe09b846a810583b
 DIST oslo.context-3.3.1.tar.gz 32676 BLAKE2B 
38d5eaf7a3162fdb6a8887f2c627ee192950d743a9de929ea332495099bcc76e27a192ce6e8a3b010e190ef749ea67dcf168476bc84ede99d43c1ec8b11e1734
 SHA512 
40f3418020246066841e62e5579ac4a1c761c92c5f439b07059cd0b6b2e8984d2e1dacfa57af7c6d9c97c2fda8eeb5cfde76f2110a36ef21513b42d0d3bffc73

diff --git a/dev-python/oslo-context/oslo-context-3.1.1.ebuild 
b/dev-python/oslo-context/oslo-context-3.1.1.ebuild
deleted file mode 100644
index 2fccec70376..000
--- a/dev-python/oslo-context/oslo-context-3.1.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-S="${WORKDIR}/oslo.context-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
-BDEPEND="${CDEPEND}
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2021-08-19 Thread Michał Górny
commit: 1e42bc2b07bd9bb534b2781555c5b3975c333cde
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 19 22:01:32 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 19 22:13:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e42bc2b

dev-python/oslo-context: Bump to 3.3.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-3.3.1.ebuild | 28 +++
 2 files changed, 29 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 9669fbc0d10..13fb7753c2b 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-3.1.1.tar.gz 29335 BLAKE2B 
2179e5c273b5e387806fc4a8b1ac2f0641f4cc9f2345cb00e6ef9c2e7c8b69709c0c14dd11254d026283b2be7e032044b6f753a13f062915db9f000ae1873f1a
 SHA512 
a9d16475bac5aa96d086019632f417fa5b496f615b814527e547a43362f1e36ed47c47266032e72194f88716237ccff7a24bf941d66bf36afe09b846a810583b
+DIST oslo.context-3.3.1.tar.gz 32676 BLAKE2B 
38d5eaf7a3162fdb6a8887f2c627ee192950d743a9de929ea332495099bcc76e27a192ce6e8a3b010e190ef749ea67dcf168476bc84ede99d43c1ec8b11e1734
 SHA512 
40f3418020246066841e62e5579ac4a1c761c92c5f439b07059cd0b6b2e8984d2e1dacfa57af7c6d9c97c2fda8eeb5cfde76f2110a36ef21513b42d0d3bffc73

diff --git a/dev-python/oslo-context/oslo-context-3.3.1.ebuild 
b/dev-python/oslo-context/oslo-context-3.3.1.ebuild
new file mode 100644
index 000..bd441f414e8
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-3.3.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.org/project/oslo.context/";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+S="${WORKDIR}/oslo.context-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+RDEPEND="${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
+BDEPEND="${CDEPEND}
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2021-10-02 Thread Arthur Zamarin
commit: 6c3660126eff2e547cfedd29e6d231fa2d757370
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Oct  2 07:01:25 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Oct  2 08:35:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c366012

dev-python/oslo-context: enable doc generation, cleanup deps

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/oslo-context/oslo-context-3.3.1.ebuild | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/dev-python/oslo-context/oslo-context-3.3.1.ebuild 
b/dev-python/oslo-context/oslo-context-3.3.1.ebuild
index 6a0c34e7217..e6c16586c80 100644
--- a/dev-python/oslo-context/oslo-context-3.3.1.ebuild
+++ b/dev-python/oslo-context/oslo-context-3.3.1.ebuild
@@ -15,14 +15,16 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64 ~arm arm64 x86"
 
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
>=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
-BDEPEND="${CDEPEND}
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
test? (
>=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
>=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
    )"
 
 distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-context: ChangeLog texlive-context-2015.ebuild

2015-07-16 Thread Alexis Ballier (aballier)
aballier15/07/16 09:13:29

  Modified: ChangeLog
  Added:texlive-context-2015.ebuild
  Log:
  bump to texlive 2015
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.80 dev-texlive/texlive-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.80&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.80&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   12 Jul 2015 17:30:48 -  1.79
+++ ChangeLog   16 Jul 2015 09:13:29 -  1.80
@@ -1,6 +1,12 @@
 # ChangeLog for dev-texlive/texlive-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.79 2015/07/12 17:30:48 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.80 2015/07/16 09:13:29 aballier Exp $
+
+*texlive-context-2015 (16 Jul 2015)
+
+  16 Jul 2015; Alexis Ballier 
+  +texlive-context-2015.ebuild:
+  bump to texlive 2015
 
   12 Jul 2015; Mikle Kolyada  texlive-context-2014.ebuild:
   x86 stable wrt bug #550840



1.1      dev-texlive/texlive-context/texlive-context-2015.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild?rev=1.1&content-type=text/plain

Index: texlive-context-2015.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild,v
 1.1 2015/07/16 09:13:29 aballier Exp $

EAPI="5"

TEXLIVE_MODULE_CONTENTS="context jmn context-account context-algorithmic 
context-animation context-annotation context-bnf context-chromato 
context-construction-plan context-cyrillicnumbers context-degrade 
context-fancybreak context-filter context-fixme context-french context-fullpage 
context-games context-gantt context-gnuplot context-letter context-lettrine 
context-lilypond context-mathsets context-notes-zh-cn context-rst context-ruby 
context-simplefonts context-simpleslides context-title context-transliterator 
context-typearea context-typescripts context-vim context-visualcounter 
collection-context
"
TEXLIVE_MODULE_DOC_CONTENTS="context.doc context-account.doc 
context-animation.doc context-annotation.doc context-bnf.doc 
context-chromato.doc context-construction-plan.doc context-cyrillicnumbers.doc 
context-degrade.doc context-fancybreak.doc context-filter.doc 
context-french.doc context-fullpage.doc context-games.doc context-gantt.doc 
context-gnuplot.doc context-letter.doc context-lettrine.doc 
context-lilypond.doc context-mathsets.doc context-notes-zh-cn.doc 
context-rst.doc context-ruby.doc context-simplefonts.doc 
context-simpleslides.doc context-title.doc context-transliterator.doc 
context-typearea.doc context-typescripts.doc context-vim.doc 
context-visualcounter.doc "
TEXLIVE_MODULE_SRC_CONTENTS="context-visualcounter.source "
inherit  texlive-module
DESCRIPTION="TeXLive ConTeXt and packages"

LICENSE=" BSD GPL-1 GPL-2 GPL-3 public-domain TeX-other-free "
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~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-basic-2015
>=dev-texlive/texlive-latex-2010
!=app-text/texlive-core-2010[xetex]
>=dev-texlive/texlive-metapost-2010
"
RDEPEND="${DEPEND} dev-lang/ruby
"
PATCHES=( "${FILESDIR}/luacnfspec2013.patch" )

TL_CONTEXT_UNIX_STUBS="contextjit mtxrunjit mtxrun texexec context metatex 
luatools mtxworks texmfstart"

TEXLIVE_MODULE_BINSCRIPTS=""

for i in ${TL_CONTEXT_UNIX_STUBS} ; do
TEXLIVE_MODULE_BINSCRIPTS="${TEXLIVE_MODULE_BINSCRIPTS} 
texmf-dist/scripts/context/stubs/unix/$i"
done

# This small hack is needed in order to have a sane upgrade path:
# the new TeX Live 2009 metapost produces this file but it is not recorded in
# any package; when running fmtutil (like texmf-update does) this file will be
# created and cause collisions.

pkg_setup() {
if [ 

[gentoo-commits] gentoo-x86 commit in dev-perl/Context-Preserve: Context-Preserve-0.10.0-r1.ebuild ChangeLog Context-Preserve-0.10.0.ebuild

2014-08-26 Thread Ian Stakenvicius (axs)
axs 14/08/26 15:06:29

  Modified: ChangeLog
  Added:Context-Preserve-0.10.0-r1.ebuild
  Removed:  Context-Preserve-0.10.0.ebuild
  Log:
  bumped EAPI to 5 to help with dev-lang/perl upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
2B6559ED)

Revision  ChangesPath
1.9  dev-perl/Context-Preserve/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   5 Aug 2014 13:19:50 -   1.8
+++ ChangeLog   26 Aug 2014 15:06:29 -  1.9
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Context-Preserve
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v 1.8 
2014/08/05 13:19:50 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v 1.9 
2014/08/26 15:06:29 axs Exp $
+
+*Context-Preserve-0.10.0-r1 (26 Aug 2014)
+
+  26 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Context-Preserve-0.10.0-r1.ebuild, -Context-Preserve-0.10.0.ebuild:
+  bumped EAPI to 5 to help with dev-lang/perl upgrade
 
   05 Aug 2014; Mikle Kolyada 
   Context-Preserve-0.10.0.ebuild:



1.1          dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Context-Preserve-0.10.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild,v
 1.1 2014/08/26 15:06:29 axs Exp $

EAPI=5

MODULE_AUTHOR=JROCKWAY
MODULE_VERSION=0.01
inherit perl-module

DESCRIPTION="Pass chained return values from subs, modifying their values, 
without losing context"

SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris"
IUSE="test"

RDEPEND=""
DEPEND="${RDEPEND}
test? (
dev-perl/Test-Exception
dev-perl/Test-use-ok
)"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Context-Preserve: Context-Preserve-0.10.0-r1.ebuild ChangeLog

2015-06-13 Thread Andreas Huettel (dilfridge)
dilfridge15/06/13 11:32:44

  Modified: Context-Preserve-0.10.0-r1.ebuild ChangeLog
  Log:
  virtual/perl-Test-Simple has gobbled up Test::use::ok, bug 550990
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.2  dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild?r1=1.1&r2=1.2

Index: Context-Preserve-0.10.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Context-Preserve-0.10.0-r1.ebuild   26 Aug 2014 15:06:29 -  1.1
+++ Context-Preserve-0.10.0-r1.ebuild   13 Jun 2015 11:32:44 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild,v
 1.1 2014/08/26 15:06:29 axs Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild,v
 1.2 2015/06/13 11:32:44 dilfridge Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 DEPEND="${RDEPEND}
test? (
    dev-perl/Test-Exception
-   dev-perl/Test-use-ok
+   || ( >=virtual/perl-Test-Simple-1.1.10 dev-perl/Test-use-ok )
)"
 
 SRC_TEST="do"



1.10 dev-perl/Context-Preserve/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===========
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   26 Aug 2014 15:06:29 -  1.9
+++ ChangeLog   13 Jun 2015 11:32:44 -0000  1.10
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Context-Preserve
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v 1.9 
2014/08/26 15:06:29 axs Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v 1.10 
2015/06/13 11:32:44 dilfridge Exp $
+
+  13 Jun 2015; Andreas K. Huettel 
+  Context-Preserve-0.10.0-r1.ebuild:
+  virtual/perl-Test-Simple has gobbled up Test::use::ok, bug 550990
 
 *Context-Preserve-0.10.0-r1 (26 Aug 2014)
 






[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2024-08-21 Thread Michał Górny
commit: 2625eda9dca69e15784f5c4c4b13025bb256a9e0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 21 19:02:02 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 21 19:12:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2625eda9

dev-python/oslo-context: Bump to 5.6.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.6.0.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index fc7816b78973..8804dc516d47 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-5.5.0.tar.gz 34832 BLAKE2B 
5131efed421d925ae311a31dba9b39cb881195493524e1ca9562aaef4b7bd81700cc23f004c04797dea59d136d274aca71e0d0a9377e133edfe0f51f0fca2341
 SHA512 
89b6aff1f0b01b64e3c7aa4e03e3a633a4b722514ac23d9b261449fd0cf0950077d801bbeae8c8542634c7336577dfbcad81bec8fad5e00a8c34d3a32412cb8c
+DIST oslo.context-5.6.0.tar.gz 34632 BLAKE2B 
2aace96e2ac59fa50411d692b555e3f895288075f61f2221de9204e2f3a3e68a8aad6bb77affde12f239550f204abc44593e9bece5f7f8214980e74a4901f6df
 SHA512 
2c4bb27fe12bf13ca11e23dcc1f1c4456fa0052956c357d5ef369f3775ccc0c1517c365ce898c21435876086118da10149e07cb540cb3f48e6dc008642d6d841

diff --git a/dev-python/oslo-context/oslo-context-5.6.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.6.0.ebuild
new file mode 100644
index ..749807bba733
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.6.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2024-09-07 Thread Michał Górny
commit: 7ed91d2556d26c8414485496e134208effaf46cd
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  7 10:49:57 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  7 10:49:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ed91d25

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-5.5.0.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 8804dc516d47..96630e99ad41 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-5.5.0.tar.gz 34832 BLAKE2B 
5131efed421d925ae311a31dba9b39cb881195493524e1ca9562aaef4b7bd81700cc23f004c04797dea59d136d274aca71e0d0a9377e133edfe0f51f0fca2341
 SHA512 
89b6aff1f0b01b64e3c7aa4e03e3a633a4b722514ac23d9b261449fd0cf0950077d801bbeae8c8542634c7336577dfbcad81bec8fad5e00a8c34d3a32412cb8c
 DIST oslo.context-5.6.0.tar.gz 34632 BLAKE2B 
2aace96e2ac59fa50411d692b555e3f895288075f61f2221de9204e2f3a3e68a8aad6bb77affde12f239550f204abc44593e9bece5f7f8214980e74a4901f6df
 SHA512 
2c4bb27fe12bf13ca11e23dcc1f1c4456fa0052956c357d5ef369f3775ccc0c1517c365ce898c21435876086118da10149e07cb540cb3f48e6dc008642d6d841

diff --git a/dev-python/oslo-context/oslo-context-5.5.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.5.0.ebuild
deleted file mode 100644
index 936d37d3bcde..0000
--- a/dev-python/oslo-context/oslo-context-5.5.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="
-   https://opendev.org/openstack/oslo.context/
-   https://github.com/openstack/oslo.context/
-   https://pypi.org/project/oslo.context/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-08-28 Thread Michał Górny
commit: e5ee09fb3a621c1797f798e7e4ac17b65e28721c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 28 16:21:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 28 16:53:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5ee09fb

dev-python/oslo-context: Bump to 5.2.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.2.0.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 718cedd36876..1b59d35dbbee 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-5.1.1.tar.gz 33596 BLAKE2B 
ec16afb8af4c8532ee865a2184ff7d85845d826146482113d1c3e2e7ec43bb26d4e23b73f0de7589b9e1c82f6ef6f441bbff6c153f6c2dc4a1f81efe1ced6de1
 SHA512 
49e411b33dbe66ed20851a830db3fb52dc19ace786f7ba9b07be772390791d914eb7dd8424d38d48540c82a8cdccaf6a5eb70f8d2ca6f81ce24dfa72e6a8fa3a
+DIST oslo.context-5.2.0.tar.gz 33729 BLAKE2B 
3ad22132b4951d00e5e884e77fc3e5acc122c43a09176886a7ef1f7aba3ed8bd0df562295fd2107edc8178b791101ef45bf1b44681dfbc6de49a06661a44ebd4
 SHA512 
d79c34a5f30a2e8ef2d44678f2e8200ab96aa5ceca501152461ea0d9e9eedcfccc563a075bbc7b85a5deba9165890d29e8e604f278a374b0f90c973ee4265c3e

diff --git a/dev-python/oslo-context/oslo-context-5.2.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.2.0.ebuild
new file mode 100644
index ..5c3230db8562
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.2.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-09-29 Thread Michał Górny
commit: d57a18929d9460272e0993f2c5e1c081881365c4
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep 30 05:45:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep 30 06:38:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d57a1892

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-5.1.1.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 1b59d35dbbee..60eef0b94c70 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-5.1.1.tar.gz 33596 BLAKE2B 
ec16afb8af4c8532ee865a2184ff7d85845d826146482113d1c3e2e7ec43bb26d4e23b73f0de7589b9e1c82f6ef6f441bbff6c153f6c2dc4a1f81efe1ced6de1
 SHA512 
49e411b33dbe66ed20851a830db3fb52dc19ace786f7ba9b07be772390791d914eb7dd8424d38d48540c82a8cdccaf6a5eb70f8d2ca6f81ce24dfa72e6a8fa3a
 DIST oslo.context-5.2.0.tar.gz 33729 BLAKE2B 
3ad22132b4951d00e5e884e77fc3e5acc122c43a09176886a7ef1f7aba3ed8bd0df562295fd2107edc8178b791101ef45bf1b44681dfbc6de49a06661a44ebd4
 SHA512 
d79c34a5f30a2e8ef2d44678f2e8200ab96aa5ceca501152461ea0d9e9eedcfccc563a075bbc7b85a5deba9165890d29e8e604f278a374b0f90c973ee4265c3e

diff --git a/dev-python/oslo-context/oslo-context-5.1.1.ebuild 
b/dev-python/oslo-context/oslo-context-5.1.1.ebuild
deleted file mode 100644
index db454ce1d571..0000
--- a/dev-python/oslo-context/oslo-context-5.1.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="
-   https://opendev.org/openstack/oslo.context/
-   https://github.com/openstack/oslo.context/
-   https://pypi.org/project/oslo.context/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2024-02-22 Thread Michał Górny
commit: afe0b64185021b1febbfd28da71c9039d49c1644
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 23 03:23:43 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 23 03:37:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe0b641

dev-python/oslo-context: Bump to 5.4.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.4.0.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 4764deaba528..001fc1a0a173 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-5.3.0.tar.gz 34831 BLAKE2B 
6fcc6667562967cc77f7e6a0e3c1cc97d44690686e58c00eb2cde2593b48272abc1661b173e6bde1fec8d0eff2deb9484042fbac737fa0bd162cd2bc6d0ac7d2
 SHA512 
862039386c44ff55ddcea0d5a6de5caa9441382e2e7750bd60f24a33c4e3963f0788b3c79d86c61a20ff097d4d3a8ee381f9ee81e9b8a5a44356595b26d319e8
+DIST oslo.context-5.4.0.tar.gz 34815 BLAKE2B 
31e204203566dada7867054c228f00b4b8c44b52320a6eebef179dfa58d7376fcae5f7b61719c513a07bc76ba9f2911f0ff6251d6358992e41c336923da7ab14
 SHA512 
87b8c0e03fe1863ee09b7ca8e4b40f04c14348fada5249b1800ebb4201bc0ed903b0099424397ba19474ffb7b231343c3756b4ed74998468a7523bab24280e52

diff --git a/dev-python/oslo-context/oslo-context-5.4.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.4.0.ebuild
new file mode 100644
index ..a67ee6deeadd
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.4.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2024-02-29 Thread Michał Górny
commit: d8053c0c862f9be45d7cc4a558c1c62df63e16d1
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  1 04:40:23 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  1 04:46:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8053c0c

dev-python/oslo-context: Bump to 5.5.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.5.0.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 001fc1a0a173..2dcf22f113cf 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1,3 @@
 DIST oslo.context-5.3.0.tar.gz 34831 BLAKE2B 
6fcc6667562967cc77f7e6a0e3c1cc97d44690686e58c00eb2cde2593b48272abc1661b173e6bde1fec8d0eff2deb9484042fbac737fa0bd162cd2bc6d0ac7d2
 SHA512 
862039386c44ff55ddcea0d5a6de5caa9441382e2e7750bd60f24a33c4e3963f0788b3c79d86c61a20ff097d4d3a8ee381f9ee81e9b8a5a44356595b26d319e8
 DIST oslo.context-5.4.0.tar.gz 34815 BLAKE2B 
31e204203566dada7867054c228f00b4b8c44b52320a6eebef179dfa58d7376fcae5f7b61719c513a07bc76ba9f2911f0ff6251d6358992e41c336923da7ab14
 SHA512 
87b8c0e03fe1863ee09b7ca8e4b40f04c14348fada5249b1800ebb4201bc0ed903b0099424397ba19474ffb7b231343c3756b4ed74998468a7523bab24280e52
+DIST oslo.context-5.5.0.tar.gz 34832 BLAKE2B 
5131efed421d925ae311a31dba9b39cb881195493524e1ca9562aaef4b7bd81700cc23f004c04797dea59d136d274aca71e0d0a9377e133edfe0f51f0fca2341
 SHA512 
89b6aff1f0b01b64e3c7aa4e03e3a633a4b722514ac23d9b261449fd0cf0950077d801bbeae8c8542634c7336577dfbcad81bec8fad5e00a8c34d3a32412cb8c

diff --git a/dev-python/oslo-context/oslo-context-5.5.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.5.0.ebuild
new file mode 100644
index ..a67ee6deeadd
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.5.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-11-29 Thread Michał Górny
commit: f33f6f2be7089cd8df4279ef164dab26c3a2f765
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 29 10:05:46 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 29 10:05:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f33f6f2b

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-5.2.0.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index ed35340cd370..4764deaba528 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-5.2.0.tar.gz 33729 BLAKE2B 
3ad22132b4951d00e5e884e77fc3e5acc122c43a09176886a7ef1f7aba3ed8bd0df562295fd2107edc8178b791101ef45bf1b44681dfbc6de49a06661a44ebd4
 SHA512 
d79c34a5f30a2e8ef2d44678f2e8200ab96aa5ceca501152461ea0d9e9eedcfccc563a075bbc7b85a5deba9165890d29e8e604f278a374b0f90c973ee4265c3e
 DIST oslo.context-5.3.0.tar.gz 34831 BLAKE2B 
6fcc6667562967cc77f7e6a0e3c1cc97d44690686e58c00eb2cde2593b48272abc1661b173e6bde1fec8d0eff2deb9484042fbac737fa0bd162cd2bc6d0ac7d2
 SHA512 
862039386c44ff55ddcea0d5a6de5caa9441382e2e7750bd60f24a33c4e3963f0788b3c79d86c61a20ff097d4d3a8ee381f9ee81e9b8a5a44356595b26d319e8

diff --git a/dev-python/oslo-context/oslo-context-5.2.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.2.0.ebuild
deleted file mode 100644
index db454ce1d571..0000
--- a/dev-python/oslo-context/oslo-context-5.2.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="
-   https://opendev.org/openstack/oslo.context/
-   https://github.com/openstack/oslo.context/
-   https://pypi.org/project/oslo.context/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-11-14 Thread Michał Górny
commit: c8e2835167ec95fa9084678d272e0d0291342ad4
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 14 19:57:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 14 20:05:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8e28351

dev-python/oslo-context: Bump to 5.3.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.3.0.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 60eef0b94c70..ed35340cd370 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-5.2.0.tar.gz 33729 BLAKE2B 
3ad22132b4951d00e5e884e77fc3e5acc122c43a09176886a7ef1f7aba3ed8bd0df562295fd2107edc8178b791101ef45bf1b44681dfbc6de49a06661a44ebd4
 SHA512 
d79c34a5f30a2e8ef2d44678f2e8200ab96aa5ceca501152461ea0d9e9eedcfccc563a075bbc7b85a5deba9165890d29e8e604f278a374b0f90c973ee4265c3e
+DIST oslo.context-5.3.0.tar.gz 34831 BLAKE2B 
6fcc6667562967cc77f7e6a0e3c1cc97d44690686e58c00eb2cde2593b48272abc1661b173e6bde1fec8d0eff2deb9484042fbac737fa0bd162cd2bc6d0ac7d2
 SHA512 
862039386c44ff55ddcea0d5a6de5caa9441382e2e7750bd60f24a33c4e3963f0788b3c79d86c61a20ff097d4d3a8ee381f9ee81e9b8a5a44356595b26d319e8

diff --git a/dev-python/oslo-context/oslo-context-5.3.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.3.0.ebuild
new file mode 100644
index ..5c3230db8562
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.3.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2022-08-17 Thread Arthur Zamarin
commit: 7aacd7c84af6b8783fc4d377630c181a378ee42b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 19:30:11 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 19:30:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aacd7c8

dev-python/oslo-context: drop 4.1.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-4.1.0.ebuild | 32 ---
 2 files changed, 33 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 3d3e72c65b47..c188051d4c65 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-4.1.0.tar.gz 33573 BLAKE2B 
8fa4f94f5cb5c82d95e55bbc553f97088ae8907b38ebc95b81674709c6fb4eeffab4f83f042c2069a9bcddfa827ca0c5c9e31ec12f21ad1c82dc111ea7d1732e
 SHA512 
83ef0aafc94460bc16ac84841ffa78bad2594d7b81578552579251b2548779296552f86204788fe3acd1a393e7ca54d479475e8c062649d0fd2f4989c3cbebe9
 DIST oslo.context-5.0.0.tar.gz 33660 BLAKE2B 
546191a1697fa833187890dfa50f6458b86c83f8d25382c55a3987cbad99e967b014275152fdfa5690b502f657c007734423af7544c8c9fbab4659ba29d5d3be
 SHA512 
8a20e3bf94b018e2494712b7b72bc7d976af16db771338f76ef27a1d7b63cef77e5f5ae01fa6c42c3e2522a74b5f1c6dbd19a358bd74da4a3ef4398e3598b6b0

diff --git a/dev-python/oslo-context/oslo-context-4.1.0.ebuild 
b/dev-python/oslo-context/oslo-context-4.1.0.ebuild
deleted file mode 100644
index 601a617e6c76..0000
--- a/dev-python/oslo-context/oslo-context-4.1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-S="${WORKDIR}/oslo.context-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-04-22 Thread Michał Górny
commit: 7e9cb0bc6219537a8396ef4af3e7e333de376e0d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 22 09:11:29 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 22 09:16:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e9cb0bc

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-5.1.0.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 5a379b3eae64..718cedd36876 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-5.1.0.tar.gz 33601 BLAKE2B 
0e1af626afa40ac2448e97b37f960d6e650d25e0b866e91f6afc9b585b5649e705e462894f7922ca89f3365f4085a00fe6b58e56d4653001bd6ca648143f9679
 SHA512 
d32b2a3bbd4e2f9c9e8c0438c9492380b8bbcda7563b9731852e714b202fc7a991b47a547d005bd815329e51500804afc7b8650a7cc4dd2b1cb28bbcd8401c77
 DIST oslo.context-5.1.1.tar.gz 33596 BLAKE2B 
ec16afb8af4c8532ee865a2184ff7d85845d826146482113d1c3e2e7ec43bb26d4e23b73f0de7589b9e1c82f6ef6f441bbff6c153f6c2dc4a1f81efe1ced6de1
 SHA512 
49e411b33dbe66ed20851a830db3fb52dc19ace786f7ba9b07be772390791d914eb7dd8424d38d48540c82a8cdccaf6a5eb70f8d2ca6f81ce24dfa72e6a8fa3a

diff --git a/dev-python/oslo-context/oslo-context-5.1.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.1.0.ebuild
deleted file mode 100644
index 751d7dc090ed..0000
--- a/dev-python/oslo-context/oslo-context-5.1.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_P=${P/-/.}
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="
-   https://opendev.org/openstack/oslo.context/
-   https://github.com/openstack/oslo.context/
-   https://pypi.org/project/oslo.context/
-"
-SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-       test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-02-21 Thread Michał Górny
commit: 8c0df23a2fbb9fe4560a4fe33933e1d2ea3288e1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 22 04:52:14 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 22 04:52:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c0df23a

dev-python/oslo-context: Bump to 5.1.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.1.1.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index cee1f7914bb4..80fdc12db114 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1,3 @@
 DIST oslo.context-5.0.0.tar.gz 33660 BLAKE2B 
546191a1697fa833187890dfa50f6458b86c83f8d25382c55a3987cbad99e967b014275152fdfa5690b502f657c007734423af7544c8c9fbab4659ba29d5d3be
 SHA512 
8a20e3bf94b018e2494712b7b72bc7d976af16db771338f76ef27a1d7b63cef77e5f5ae01fa6c42c3e2522a74b5f1c6dbd19a358bd74da4a3ef4398e3598b6b0
 DIST oslo.context-5.1.0.tar.gz 33601 BLAKE2B 
0e1af626afa40ac2448e97b37f960d6e650d25e0b866e91f6afc9b585b5649e705e462894f7922ca89f3365f4085a00fe6b58e56d4653001bd6ca648143f9679
 SHA512 
d32b2a3bbd4e2f9c9e8c0438c9492380b8bbcda7563b9731852e714b202fc7a991b47a547d005bd815329e51500804afc7b8650a7cc4dd2b1cb28bbcd8401c77
+DIST oslo.context-5.1.1.tar.gz 33596 BLAKE2B 
ec16afb8af4c8532ee865a2184ff7d85845d826146482113d1c3e2e7ec43bb26d4e23b73f0de7589b9e1c82f6ef6f441bbff6c153f6c2dc4a1f81efe1ced6de1
 SHA512 
49e411b33dbe66ed20851a830db3fb52dc19ace786f7ba9b07be772390791d914eb7dd8424d38d48540c82a8cdccaf6a5eb70f8d2ca6f81ce24dfa72e6a8fa3a

diff --git a/dev-python/oslo-context/oslo-context-5.1.1.ebuild 
b/dev-python/oslo-context/oslo-context-5.1.1.ebuild
new file mode 100644
index ..acf9c83bdc90
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.1.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+SRC_URI="$(pypi_sdist_url --no-normalize "${PN/-/.}")"
+S=${WORKDIR}/${P/-/.}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-02-10 Thread Michał Górny
commit: eac8e6deb5d1a5cd5f756076b62f6f67581cf610
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb 11 06:24:16 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb 11 06:24:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac8e6de

dev-python/oslo-context: Bump to 5.1.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.1.0.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index c188051d4c65..cee1f7914bb4 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-5.0.0.tar.gz 33660 BLAKE2B 
546191a1697fa833187890dfa50f6458b86c83f8d25382c55a3987cbad99e967b014275152fdfa5690b502f657c007734423af7544c8c9fbab4659ba29d5d3be
 SHA512 
8a20e3bf94b018e2494712b7b72bc7d976af16db771338f76ef27a1d7b63cef77e5f5ae01fa6c42c3e2522a74b5f1c6dbd19a358bd74da4a3ef4398e3598b6b0
+DIST oslo.context-5.1.0.tar.gz 33601 BLAKE2B 
0e1af626afa40ac2448e97b37f960d6e650d25e0b866e91f6afc9b585b5649e705e462894f7922ca89f3365f4085a00fe6b58e56d4653001bd6ca648143f9679
 SHA512 
d32b2a3bbd4e2f9c9e8c0438c9492380b8bbcda7563b9731852e714b202fc7a991b47a547d005bd815329e51500804afc7b8650a7cc4dd2b1cb28bbcd8401c77

diff --git a/dev-python/oslo-context/oslo-context-5.1.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.1.0.ebuild
new file mode 100644
index ..62077e148021
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.1.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+MY_P=${P/-/.}
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2023-03-13 Thread Michał Górny
commit: d28cef8a74ed386c7b00fc3e330300886b96308f
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 14 04:47:26 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 14 04:47:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d28cef8a

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-5.0.0.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 80fdc12db114..5a379b3eae64 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,3 +1,2 @@
-DIST oslo.context-5.0.0.tar.gz 33660 BLAKE2B 
546191a1697fa833187890dfa50f6458b86c83f8d25382c55a3987cbad99e967b014275152fdfa5690b502f657c007734423af7544c8c9fbab4659ba29d5d3be
 SHA512 
8a20e3bf94b018e2494712b7b72bc7d976af16db771338f76ef27a1d7b63cef77e5f5ae01fa6c42c3e2522a74b5f1c6dbd19a358bd74da4a3ef4398e3598b6b0
 DIST oslo.context-5.1.0.tar.gz 33601 BLAKE2B 
0e1af626afa40ac2448e97b37f960d6e650d25e0b866e91f6afc9b585b5649e705e462894f7922ca89f3365f4085a00fe6b58e56d4653001bd6ca648143f9679
 SHA512 
d32b2a3bbd4e2f9c9e8c0438c9492380b8bbcda7563b9731852e714b202fc7a991b47a547d005bd815329e51500804afc7b8650a7cc4dd2b1cb28bbcd8401c77
 DIST oslo.context-5.1.1.tar.gz 33596 BLAKE2B 
ec16afb8af4c8532ee865a2184ff7d85845d826146482113d1c3e2e7ec43bb26d4e23b73f0de7589b9e1c82f6ef6f441bbff6c153f6c2dc4a1f81efe1ced6de1
 SHA512 
49e411b33dbe66ed20851a830db3fb52dc19ace786f7ba9b07be772390791d914eb7dd8424d38d48540c82a8cdccaf6a5eb70f8d2ca6f81ce24dfa72e6a8fa3a

diff --git a/dev-python/oslo-context/oslo-context-5.0.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.0.0.ebuild
deleted file mode 100644
index 751d7dc090ed..0000
--- a/dev-python/oslo-context/oslo-context-5.0.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_P=${P/-/.}
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="
-   https://opendev.org/openstack/oslo.context/
-   https://github.com/openstack/oslo.context/
-   https://pypi.org/project/oslo.context/
-"
-SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-       test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2022-07-12 Thread Michał Górny
commit: d7a2c613e04bd0b1c93ec02113af758aa0bfff9b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 12 15:23:55 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 12 15:48:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7a2c613

dev-python/oslo-context: Bump to 5.0.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-5.0.0.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index b5d6441c6de2..3d3e72c65b47 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-4.1.0.tar.gz 33573 BLAKE2B 
8fa4f94f5cb5c82d95e55bbc553f97088ae8907b38ebc95b81674709c6fb4eeffab4f83f042c2069a9bcddfa827ca0c5c9e31ec12f21ad1c82dc111ea7d1732e
 SHA512 
83ef0aafc94460bc16ac84841ffa78bad2594d7b81578552579251b2548779296552f86204788fe3acd1a393e7ca54d479475e8c062649d0fd2f4989c3cbebe9
+DIST oslo.context-5.0.0.tar.gz 33660 BLAKE2B 
546191a1697fa833187890dfa50f6458b86c83f8d25382c55a3987cbad99e967b014275152fdfa5690b502f657c007734423af7544c8c9fbab4659ba29d5d3be
 SHA512 
8a20e3bf94b018e2494712b7b72bc7d976af16db771338f76ef27a1d7b63cef77e5f5ae01fa6c42c3e2522a74b5f1c6dbd19a358bd74da4a3ef4398e3598b6b0

diff --git a/dev-python/oslo-context/oslo-context-5.0.0.ebuild 
b/dev-python/oslo-context/oslo-context-5.0.0.ebuild
new file mode 100644
index ..eb803db07a3b
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-5.0.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_P=${P/-/.}
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="
+   https://opendev.org/openstack/oslo.context/
+   https://github.com/openstack/oslo.context/
+   https://pypi.org/project/oslo.context/
+"
+SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2022-02-16 Thread Michał Górny
commit: ffed957d9ee526dd338f0eda5d4b60f1bfa97f3c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 16 21:44:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 16 22:34:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffed957d

dev-python/oslo-context: Bump to 4.1.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-4.1.0.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index e03e3ed3caa5..03801bf0fb44 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1,3 @@
 DIST oslo.context-3.4.0.tar.gz 32954 BLAKE2B 
9f22ce6af5efcfec8ab92bdb6c806e420b09037bce08b68fd43684fd459cb12b8196a1e6ee48dcb41ae7aa5d4679851fbed2058709d17e5bb7efc85c9b6d04ea
 SHA512 
bf31c01237352a296e46fdb533ea921dce24cd3c3a918e39f7ff17305104d8f033527738fe562dfe61c8700dbce96e26433068503ca8c5cf9dffb0780e42ec53
 DIST oslo.context-4.0.0.tar.gz 33057 BLAKE2B 
180df04bd331489f2f175f8ab6f23750f0ab5f2c805ecd3a4ece4ad3e04a165ab08244cbb70bedfaeb2b38912ba45f4773671408eb1b5e8ee379809362e6016f
 SHA512 
6a79d4c9568ad021365531e58679297700207472667a84153f016edd9044550d7c8ab868940772a45e9359ebf660a15a6f6d21f8f653fb8f297219bee1122d2f
+DIST oslo.context-4.1.0.tar.gz 33573 BLAKE2B 
8fa4f94f5cb5c82d95e55bbc553f97088ae8907b38ebc95b81674709c6fb4eeffab4f83f042c2069a9bcddfa827ca0c5c9e31ec12f21ad1c82dc111ea7d1732e
 SHA512 
83ef0aafc94460bc16ac84841ffa78bad2594d7b81578552579251b2548779296552f86204788fe3acd1a393e7ca54d479475e8c062649d0fd2f4989c3cbebe9

diff --git a/dev-python/oslo-context/oslo-context-4.1.0.ebuild 
b/dev-python/oslo-context/oslo-context-4.1.0.ebuild
new file mode 100644
index ..93efa8adf760
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-4.1.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.org/project/oslo.context/";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+S="${WORKDIR}/oslo.context-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2021-11-21 Thread Michał Górny
commit: e56b120dc72cda990ea49644c69e321eb7e19b29
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 21 19:13:46 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 21 19:13:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56b120d

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 -
 dev-python/oslo-context/oslo-context-3.3.1.ebuild | 30 ---
 2 files changed, 31 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 66219d0cfd3b..2fa6c79ce69d 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-3.3.1.tar.gz 32676 BLAKE2B 
38d5eaf7a3162fdb6a8887f2c627ee192950d743a9de929ea332495099bcc76e27a192ce6e8a3b010e190ef749ea67dcf168476bc84ede99d43c1ec8b11e1734
 SHA512 
40f3418020246066841e62e5579ac4a1c761c92c5f439b07059cd0b6b2e8984d2e1dacfa57af7c6d9c97c2fda8eeb5cfde76f2110a36ef21513b42d0d3bffc73
 DIST oslo.context-3.4.0.tar.gz 32954 BLAKE2B 
9f22ce6af5efcfec8ab92bdb6c806e420b09037bce08b68fd43684fd459cb12b8196a1e6ee48dcb41ae7aa5d4679851fbed2058709d17e5bb7efc85c9b6d04ea
 SHA512 
bf31c01237352a296e46fdb533ea921dce24cd3c3a918e39f7ff17305104d8f033527738fe562dfe61c8700dbce96e26433068503ca8c5cf9dffb0780e42ec53

diff --git a/dev-python/oslo-context/oslo-context-3.3.1.ebuild 
b/dev-python/oslo-context/oslo-context-3.3.1.ebuild
deleted file mode 100644
index e6c16586c809..0000
--- a/dev-python/oslo-context/oslo-context-3.3.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-S="${WORKDIR}/oslo.context-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx doc/source \
-   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2022-02-03 Thread Arthur Zamarin
commit: 3192c887ae5956c9805a828fcb128d4aa3f96550
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Feb  3 20:15:09 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Feb  3 20:39:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3192c887

dev-python/oslo-context: add 4.0.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-4.0.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 2fa6c79ce69d..e03e3ed3caa5 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-3.4.0.tar.gz 32954 BLAKE2B 
9f22ce6af5efcfec8ab92bdb6c806e420b09037bce08b68fd43684fd459cb12b8196a1e6ee48dcb41ae7aa5d4679851fbed2058709d17e5bb7efc85c9b6d04ea
 SHA512 
bf31c01237352a296e46fdb533ea921dce24cd3c3a918e39f7ff17305104d8f033527738fe562dfe61c8700dbce96e26433068503ca8c5cf9dffb0780e42ec53
+DIST oslo.context-4.0.0.tar.gz 33057 BLAKE2B 
180df04bd331489f2f175f8ab6f23750f0ab5f2c805ecd3a4ece4ad3e04a165ab08244cbb70bedfaeb2b38912ba45f4773671408eb1b5e8ee379809362e6016f
 SHA512 
6a79d4c9568ad021365531e58679297700207472667a84153f016edd9044550d7c8ab868940772a45e9359ebf660a15a6f6d21f8f653fb8f297219bee1122d2f

diff --git a/dev-python/oslo-context/oslo-context-4.0.0.ebuild 
b/dev-python/oslo-context/oslo-context-4.0.0.ebuild
new file mode 100644
index ..c7ba0a96f32b
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-4.0.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.org/project/oslo.context/";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+S="${WORKDIR}/oslo.context-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests unittest
+distutils_enable_sphinx doc/source \
+   dev-python/openstackdocstheme



[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-context/

2019-07-21 Thread Mikle Kolyada
commit: df6107eb78afe10dceff4c2f1d544ee80801c047
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Jul 21 19:09:44 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Jul 21 19:09:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6107eb

dev-texlive/texlive-context: fix missing context symlink

Closes: https://bugs.gentoo.org/690236
Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-texlive/texlive-context/texlive-context-2019.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-texlive/texlive-context/texlive-context-2019.ebuild 
b/dev-texlive/texlive-context/texlive-context-2019.ebuild
index 396efc3a337..34a6a80129d 100644
--- a/dev-texlive/texlive-context/texlive-context-2019.ebuild
+++ b/dev-texlive/texlive-context/texlive-context-2019.ebuild
@@ -22,7 +22,7 @@ DEPEND=">=dev-texlive/texlive-basic-2019
 "
 RDEPEND="${DEPEND} dev-lang/ruby"
 
-TL_CONTEXT_UNIX_STUBS="contextjit mtxrunjit mtxrun texexec texmfstart"
+TL_CONTEXT_UNIX_STUBS="context contextjit luatools mtxrunjit mtxrun texexec 
texmfstart"
 
 TEXLIVE_MODULE_BINSCRIPTS=""
 



[gentoo-commits] gentoo-x86 commit in dev-python/oslo-context: oslo-context-0.2.0.ebuild ChangeLog

2015-07-08 Thread Mikle Kolyada (zlogene)
zlogene 15/07/08 20:22:51

  Modified: oslo-context-0.2.0.ebuild ChangeLog
  Log:
  x86 stable wrt bug #554114
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  dev-python/oslo-context/oslo-context-0.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?r1=1.2&r2=1.3

Index: oslo-context-0.2.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oslo-context-0.2.0.ebuild   7 Jul 2015 15:27:36 -   1.2
+++ oslo-context-0.2.0.ebuild   8 Jul 2015 20:22:51 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild,v 1.2 
2015/07/07 15:27:36 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild,v 1.3 
2015/07/08 20:22:51 zlogene Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
@@ -14,7 +14,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.8  dev-python/oslo-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===========
RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   7 Jul 2015 15:27:36 -   1.7
+++ ChangeLog   8 Jul 2015 20:22:51 -   1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/oslo-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.7 
2015/07/07 15:27:36 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.8 
2015/07/08 20:22:51 zlogene Exp $
+
+  08 Jul 2015; Mikle Kolyada  oslo-context-0.2.0.ebuild:
+  x86 stable wrt bug #554114
 
   07 Jul 2015; Mikle Kolyada  oslo-context-0.2.0.ebuild:
   amd64 stable wrt bug #554114






[gentoo-commits] gentoo-x86 commit in dev-perl/Context-Preserve: Context-Preserve-0.10.0.ebuild ChangeLog

2014-08-05 Thread Mikle Kolyada (zlogene)
zlogene 14/08/05 13:19:50

  Modified: Context-Preserve-0.10.0.ebuild ChangeLog
  Log:
  Fix DESCRIPTION
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  dev-perl/Context-Preserve/Context-Preserve-0.10.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0.ebuild?r1=1.2&r2=1.3

Index: Context-Preserve-0.10.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Context-Preserve-0.10.0.ebuild  1 Sep 2012 11:24:30 -   1.2
+++ Context-Preserve-0.10.0.ebuild  5 Aug 2014 13:19:50 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0.ebuild,v
 1.2 2012/09/01 11:24:30 grobian Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/Context-Preserve-0.10.0.ebuild,v
 1.3 2014/08/05 13:19:50 zlogene Exp $
 
 EAPI=4
 
@@ -8,7 +8,7 @@
 MODULE_VERSION=0.01
 inherit perl-module
 
-DESCRIPTION="Pass chained return values from subs, modifying their values, 
without losing context."
+DESCRIPTION="Pass chained return values from subs, modifying their values, 
without losing context"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris"



1.8  dev-perl/Context-Preserve/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Context-Preserve/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===========
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   1 Sep 2012 11:24:30 -   1.7
+++ ChangeLog   5 Aug 2014 13:19:50 -0000   1.8
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Context-Preserve
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v 1.7 
2012/09/01 11:24:30 grobian Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Context-Preserve/ChangeLog,v 1.8 
2014/08/05 13:19:50 zlogene Exp $
+
+  05 Aug 2014; Mikle Kolyada 
+  Context-Preserve-0.10.0.ebuild:
+  Fix DESCRIPTION
 
   01 Sep 2012; Fabian Groffen 
   Context-Preserve-0.10.0.ebuild:






svn commit: r223370 - head/sys/dev/acpica

2011-06-21 Thread John Baldwin
Author: jhb
Date: Tue Jun 21 19:29:27 2011
New Revision: 223370
URL: http://svn.freebsd.org/changeset/base/223370

Log:
  Use AcpiWalkResources() to parse the resource list from _CRS rather than
  using a home-rolled loop.  While here, add support for 64-bit address
  range resources.
  
  Silence on:   acpi@ (older version)

Modified:
  head/sys/dev/acpica/acpi_resource.c
  head/sys/dev/acpica/acpivar.h

Modified: head/sys/dev/acpica/acpi_resource.c
==
--- head/sys/dev/acpica/acpi_resource.c Tue Jun 21 19:15:23 2011
(r223369)
+++ head/sys/dev/acpica/acpi_resource.c Tue Jun 21 19:29:27 2011
(r223370)
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -139,6 +140,248 @@ acpi_config_intr(device_t dev, ACPI_RESO
INTR_POLARITY_HIGH : INTR_POLARITY_LOW);
 }
 
+struct acpi_resource_context {
+struct acpi_parse_resource_set *set;
+device_t   dev;
+void   *context;
+};
+
+#ifdef ACPI_DEBUG_OUTPUT
+static const char *
+acpi_address_range_name(UINT8 ResourceType)
+{
+static char buf[16];
+
+switch (ResourceType) {
+case ACPI_MEMORY_RANGE:
+   return ("Memory");
+case ACPI_IO_RANGE:
+   return ("IO");
+case ACPI_BUS_NUMBER_RANGE:
+   return ("Bus Number");
+default:
+   snprintf(buf, sizeof(buf), "type %u", ResourceType);
+   return (buf);
+}
+}
+#endif
+   
+static ACPI_STATUS
+acpi_parse_resource(ACPI_RESOURCE *res, void *context)
+{
+struct acpi_parse_resource_set *set;
+struct acpi_resource_context *arc;
+UINT64 min, max, length, gran;
+const char *name;
+device_t dev;
+
+arc = context;
+dev = arc->dev;
+set = arc->set;
+
+switch (res->Type) {
+case ACPI_RESOURCE_TYPE_END_TAG:
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "EndTag\n"));
+   break;
+case ACPI_RESOURCE_TYPE_FIXED_IO:
+   if (res->Data.FixedIo.AddressLength <= 0)
+   break;
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "FixedIo 0x%x/%d\n",
+   res->Data.FixedIo.Address, res->Data.FixedIo.AddressLength));
+   set->set_ioport(dev, arc->context, res->Data.FixedIo.Address,
+   res->Data.FixedIo.AddressLength);
+   break;
+case ACPI_RESOURCE_TYPE_IO:
+   if (res->Data.Io.AddressLength <= 0)
+   break;
+   if (res->Data.Io.Minimum == res->Data.Io.Maximum) {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Io 0x%x/%d\n",
+   res->Data.Io.Minimum, res->Data.Io.AddressLength));
+   set->set_ioport(dev, arc->context, res->Data.Io.Minimum,
+   res->Data.Io.AddressLength);
+   } else {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Io 0x%x-0x%x/%d\n",
+   res->Data.Io.Minimum, res->Data.Io.Maximum,
+   res->Data.Io.AddressLength));
+   set->set_iorange(dev, arc->context, res->Data.Io.Minimum,
+   res->Data.Io.Maximum, res->Data.Io.AddressLength,
+   res->Data.Io.Alignment);
+   }
+   break;
+case ACPI_RESOURCE_TYPE_FIXED_MEMORY32:
+   if (res->Data.FixedMemory32.AddressLength <= 0)
+   break;
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "FixedMemory32 0x%x/%d\n",
+   res->Data.FixedMemory32.Address,
+   res->Data.FixedMemory32.AddressLength));
+   set->set_memory(dev, arc->context, res->Data.FixedMemory32.Address, 
+   res->Data.FixedMemory32.AddressLength);
+   break;
+case ACPI_RESOURCE_TYPE_MEMORY32:
+   if (res->Data.Memory32.AddressLength <= 0)
+   break;
+   if (res->Data.Memory32.Minimum == res->Data.Memory32.Maximum) {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Memory32 0x%x/%d\n",
+   res->Data.Memory32.Minimum, res->Data.Memory32.AddressLength));
+   set->set_memory(dev, arc->context, res->Data.Memory32.Minimum,
+   res->Data.Memory32.AddressLength);
+   } else {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Memory32 0x%x-0x%x/%d\n",
+   res->Data.Memory32.Minimum, res->Data.Memory32.Maximum,
+   res->Data.Memory32.AddressLength));
+   set->set_memoryrange(dev, arc->context, res->Data.Memory32.Minimum,
+   res->Data.Memory32.Maximum, res->Data.Memory32.AddressLength,
+   res->Data.Memory32.Alignment);
+   }
+   break;
+case ACPI_RESOURCE_TYPE_MEMORY24:
+   if (res->Data.Memory24.AddressLength <= 0)
+   break;
+   if (res->Data.Memory24.Minimum == res->Data.Memory24.Maximum) {
+   ACPI_DE

svn commit: r223370 - head/sys/dev/acpica

2011-06-21 Thread John Baldwin
Author: jhb
Date: Tue Jun 21 19:29:27 2011
New Revision: 223370
URL: http://svn.freebsd.org/changeset/base/223370

Log:
  Use AcpiWalkResources() to parse the resource list from _CRS rather than
  using a home-rolled loop.  While here, add support for 64-bit address
  range resources.
  
  Silence on:   acpi@ (older version)

Modified:
  head/sys/dev/acpica/acpi_resource.c
  head/sys/dev/acpica/acpivar.h

Modified: head/sys/dev/acpica/acpi_resource.c
==
--- head/sys/dev/acpica/acpi_resource.c Tue Jun 21 19:15:23 2011
(r223369)
+++ head/sys/dev/acpica/acpi_resource.c Tue Jun 21 19:29:27 2011
(r223370)
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -139,6 +140,248 @@ acpi_config_intr(device_t dev, ACPI_RESO
INTR_POLARITY_HIGH : INTR_POLARITY_LOW);
 }
 
+struct acpi_resource_context {
+struct acpi_parse_resource_set *set;
+device_t   dev;
+void   *context;
+};
+
+#ifdef ACPI_DEBUG_OUTPUT
+static const char *
+acpi_address_range_name(UINT8 ResourceType)
+{
+static char buf[16];
+
+switch (ResourceType) {
+case ACPI_MEMORY_RANGE:
+   return ("Memory");
+case ACPI_IO_RANGE:
+   return ("IO");
+case ACPI_BUS_NUMBER_RANGE:
+   return ("Bus Number");
+default:
+   snprintf(buf, sizeof(buf), "type %u", ResourceType);
+   return (buf);
+}
+}
+#endif
+   
+static ACPI_STATUS
+acpi_parse_resource(ACPI_RESOURCE *res, void *context)
+{
+struct acpi_parse_resource_set *set;
+struct acpi_resource_context *arc;
+UINT64 min, max, length, gran;
+const char *name;
+device_t dev;
+
+arc = context;
+dev = arc->dev;
+set = arc->set;
+
+switch (res->Type) {
+case ACPI_RESOURCE_TYPE_END_TAG:
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "EndTag\n"));
+   break;
+case ACPI_RESOURCE_TYPE_FIXED_IO:
+   if (res->Data.FixedIo.AddressLength <= 0)
+   break;
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "FixedIo 0x%x/%d\n",
+   res->Data.FixedIo.Address, res->Data.FixedIo.AddressLength));
+   set->set_ioport(dev, arc->context, res->Data.FixedIo.Address,
+   res->Data.FixedIo.AddressLength);
+   break;
+case ACPI_RESOURCE_TYPE_IO:
+   if (res->Data.Io.AddressLength <= 0)
+   break;
+   if (res->Data.Io.Minimum == res->Data.Io.Maximum) {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Io 0x%x/%d\n",
+   res->Data.Io.Minimum, res->Data.Io.AddressLength));
+   set->set_ioport(dev, arc->context, res->Data.Io.Minimum,
+   res->Data.Io.AddressLength);
+   } else {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Io 0x%x-0x%x/%d\n",
+   res->Data.Io.Minimum, res->Data.Io.Maximum,
+   res->Data.Io.AddressLength));
+   set->set_iorange(dev, arc->context, res->Data.Io.Minimum,
+   res->Data.Io.Maximum, res->Data.Io.AddressLength,
+   res->Data.Io.Alignment);
+   }
+   break;
+case ACPI_RESOURCE_TYPE_FIXED_MEMORY32:
+   if (res->Data.FixedMemory32.AddressLength <= 0)
+   break;
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "FixedMemory32 0x%x/%d\n",
+   res->Data.FixedMemory32.Address,
+   res->Data.FixedMemory32.AddressLength));
+   set->set_memory(dev, arc->context, res->Data.FixedMemory32.Address, 
+   res->Data.FixedMemory32.AddressLength);
+   break;
+case ACPI_RESOURCE_TYPE_MEMORY32:
+   if (res->Data.Memory32.AddressLength <= 0)
+   break;
+   if (res->Data.Memory32.Minimum == res->Data.Memory32.Maximum) {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Memory32 0x%x/%d\n",
+   res->Data.Memory32.Minimum, res->Data.Memory32.AddressLength));
+   set->set_memory(dev, arc->context, res->Data.Memory32.Minimum,
+   res->Data.Memory32.AddressLength);
+   } else {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Memory32 0x%x-0x%x/%d\n",
+   res->Data.Memory32.Minimum, res->Data.Memory32.Maximum,
+   res->Data.Memory32.AddressLength));
+   set->set_memoryrange(dev, arc->context, res->Data.Memory32.Minimum,
+   res->Data.Memory32.Maximum, res->Data.Memory32.AddressLength,
+   res->Data.Memory32.Alignment);
+   }
+   break;
+case ACPI_RESOURCE_TYPE_MEMORY24:
+   if (res->Data.Memory24.AddressLength <= 0)
+   break;
+   if (res->Data.Memory24.Minimum == res->Data.Memory24.Maximum) {
+   ACPI_DE

[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2017-07-06 Thread Matt Thode
commit: ef94747c7b56ada11db85aca365dd6bbc8e820bb
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul  6 16:40:10 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul  6 16:57:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef94747c

dev-python/oslo-context: 2.12.2 bup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/oslo-context/Manifest   |  1 +
 dev-python/oslo-context/oslo-context-2.12.2.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index bb981283ff1..9d462ab902c 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-2.12.1.tar.gz 25879 SHA256 
e257c5962928c564ad323a436703733662b39e45d4892d5aff3f290e89e95b94 SHA512 
075f402786dfe0e153c0fe21f2a2a8a2099cc2451a6f891fef00e0fd460f9f39220d390c9ae7ba0515a3ad79a94a1b2288c65029aea8f5e7481f8fe181d877b4
 WHIRLPOOL 
9df270cd41bc2067dcbbba4312fd60682a4f2a5f461d61c80d4b5d5e19a4b1c691c08e8bd34d581e89e4998760f950cc7e8964d04a23c6188cf906892623c55b
+DIST oslo.context-2.12.2.tar.gz 26860 SHA256 
36decf5f8bd72a986d58c2e603c2e0d96d31da4283f2fbc145c6804113b86f64 SHA512 
752d2e9744fbf94d23d6cc3205f3b4974d440bf71ab885de2feea3e706ed93b771b50df264c754cc8f6882f8526de0318cb3d1fc07a28a872f4b02e59118af98
 WHIRLPOOL 
e54612a8fda6ee4a07ad603f54356f6bf5aa8bedcd11f9faaf88ff7f98ef79b0407dc50d9295b8131375fbc4916b5915096ce97a142a2c8c06eb9345749483e6

diff --git a/dev-python/oslo-context/oslo-context-2.12.2.ebuild 
b/dev-python/oslo-context/oslo-context-2.12.2.ebuild
new file mode 100644
index 000..87096c97748
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-2.12.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
+   =dev-python/reno-1.8.0[${PYTHON_USEDEP}]
+   )"
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/oslo.context-${PV}"
+
+python_prepare_all() {
+   sed -i '/^hacking/d' test-requirements.txt || die
+   distutils-r1_python_prepare_all
+}
+
+# This time half the doc files are missing; Do you want them?
+python_test() {
+   nosetests tests/ || die "test failed under ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2017-02-26 Thread Matt Thode
commit: 64c1ed5765f9edd240aafe13f8a0704b1e2b0b16
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Feb 27 01:04:35 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Feb 27 02:14:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64c1ed57

dev-python/oslo-context: bup

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/oslo-context/Manifest   |  1 +
 dev-python/oslo-context/oslo-context-2.12.1.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 602d460dd8..ea9c6e898f 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1,3 @@
+DIST oslo.context-2.12.1.tar.gz 25879 SHA256 
e257c5962928c564ad323a436703733662b39e45d4892d5aff3f290e89e95b94 SHA512 
075f402786dfe0e153c0fe21f2a2a8a2099cc2451a6f891fef00e0fd460f9f39220d390c9ae7ba0515a3ad79a94a1b2288c65029aea8f5e7481f8fe181d877b4
 WHIRLPOOL 
9df270cd41bc2067dcbbba4312fd60682a4f2a5f461d61c80d4b5d5e19a4b1c691c08e8bd34d581e89e4998760f950cc7e8964d04a23c6188cf906892623c55b
 DIST oslo.context-2.2.0.tar.gz 16981 SHA256 
8c9fbbf56d3f37cf00a039cac3455cffeb6588f61537e36a36ce9447c4be72ec SHA512 
f4ccb7a5e652a4820fb40e538a631c11be5f978de2219dc923e18559d30625a31e0ca031f095ce2e0545290cdfdeb714fcf086add6b5a7eb2413ebd1e7a25875
 WHIRLPOOL 
a9a5685dd62105ddaee9c48fdc96231ea700ab8821e7e918920afc1bdf1f1a0e36aa1845c9665bf753fb56d95005f69d4927b12aac9712f41f43e2d89682beaf
 DIST oslo.context-2.9.0.tar.gz 23049 SHA256 
2682d59ebea3c61421bba98cd3f36dcef5416ad771b220856f14fb528ef81b39 SHA512 
6aa062542953007d8cfaf05e231105865c35370a80c9b32a4faae266d07981e83ebe34790b0217d818e2bb40d82d0a7ef3ebf77c7008ce358f7b4e61f6a38ff8
 WHIRLPOOL 
7ab7cca5c1d5e260e5e97df7cc1a3136e6f96f8237251c3bed46ebc565a9706fcabaa8b138d14e61024d34f34e7be83da313c02e8eba502d68d9b9a1342e1cde

diff --git a/dev-python/oslo-context/oslo-context-2.12.1.ebuild 
b/dev-python/oslo-context/oslo-context-2.12.1.ebuild
new file mode 100644
index 00..87096c9774
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-2.12.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
+   =dev-python/reno-1.8.0[${PYTHON_USEDEP}]
+   )"
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/oslo.context-${PV}"
+
+python_prepare_all() {
+   sed -i '/^hacking/d' test-requirements.txt || die
+   distutils-r1_python_prepare_all
+}
+
+# This time half the doc files are missing; Do you want them?
+python_test() {
+   nosetests tests/ || die "test failed under ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2020-11-18 Thread Michał Górny
commit: 151903808808bb673ad0c3bf91d66d6d5328600a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 18 08:51:23 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 18 09:12:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15190380

dev-python/oslo-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oslo-context/Manifest   |  1 -
 dev-python/oslo-context/oslo-context-2.22.1.ebuild | 46 --
 2 files changed, 47 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 20a319c097c..9669fbc0d10 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-2.22.1.tar.gz 29315 BLAKE2B 
89c7dacfe42a9c3cd8d7fde8a77e3654f48788909cea725151e833a305c6916534919496393e603084311625cc9242661e72cbf1a2bdb72bedca3127e77ca9d9
 SHA512 
d0a3b9e41d23e8f642f8aacd998f6d6f4ad1fbf103947fc7403a57c4e3d9ae51b3cf73dfb79139d541875a0e412ed8600c4ce6b19cc207697429f48a7fb72887
 DIST oslo.context-3.1.1.tar.gz 29335 BLAKE2B 
2179e5c273b5e387806fc4a8b1ac2f0641f4cc9f2345cb00e6ef9c2e7c8b69709c0c14dd11254d026283b2be7e032044b6f753a13f062915db9f000ae1873f1a
 SHA512 
a9d16475bac5aa96d086019632f417fa5b496f615b814527e547a43362f1e36ed47c47266032e72194f88716237ccff7a24bf941d66bf36afe09b846a810583b

diff --git a/dev-python/oslo-context/oslo-context-2.22.1.ebuild 
b/dev-python/oslo-context/oslo-context-2.22.1.ebuild
deleted file mode 100644
index 945f4d2d90c..000
--- a/dev-python/oslo-context/oslo-context-2.22.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2018-01-05 Thread Michał Górny
commit: 0fa93555073a897b3acb33f42e4fa0a0aba90b38
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan  5 09:56:33 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan  5 13:25:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fa93555

dev-python/oslo-context: Clean old up

 dev-python/oslo-context/Manifest   |  1 -
 dev-python/oslo-context/oslo-context-2.12.2.ebuild | 47 --
 2 files changed, 48 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 2e79375174b..f9713b43e74 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-2.12.2.tar.gz 26860 BLAKE2B 
cdf6e6b36fc625b183745a2030b9acb827cb43c4032f98637314655082ee65a0182d801ded3f6d1d4b1f9b3bec789d4ae3f382c7f9aaf1d4f788bf8286335384
 SHA512 
752d2e9744fbf94d23d6cc3205f3b4974d440bf71ab885de2feea3e706ed93b771b50df264c754cc8f6882f8526de0318cb3d1fc07a28a872f4b02e59118af98
 DIST oslo.context-2.17.1.tar.gz 27266 BLAKE2B 
6d539af2d191103a411db0a7671d0ea4a9bb21d0a33e4e306ceac8455c4b0aafe594541b3cf7e565372dee66c3a7c6685b86c96256046e108ee21f74633d01a5
 SHA512 
f75d9cececaa095cab3b87b05ab0c4bf9f115b96ab7feb5607edd00a33440a4418692f4f6cf8a3dffbbc302758e734c4184f271e3860e65d9da95f0a97ae633f

diff --git a/dev-python/oslo-context/oslo-context-2.12.2.ebuild 
b/dev-python/oslo-context/oslo-context-2.12.2.ebuild
deleted file mode 100644
index adbcca66fe8..000
--- a/dev-python/oslo-context/oslo-context-2.12.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-       test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
-   =dev-python/reno-1.8.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2017-05-02 Thread Michał Górny
commit: 0cf9327bcec1fb53e13c1cfc16660b7b3406f7c3
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  2 12:13:36 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  2 13:11:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cf9327b

dev-python/oslo-context: Clean old versions up

 dev-python/oslo-context/Manifest  |  2 -
 dev-python/oslo-context/oslo-context-2.2.0.ebuild | 46 ------
 dev-python/oslo-context/oslo-context-2.9.0.ebuild | 48 ---
 3 files changed, 96 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index ea9c6e898f8..bb981283ff1 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,3 +1 @@
 DIST oslo.context-2.12.1.tar.gz 25879 SHA256 
e257c5962928c564ad323a436703733662b39e45d4892d5aff3f290e89e95b94 SHA512 
075f402786dfe0e153c0fe21f2a2a8a2099cc2451a6f891fef00e0fd460f9f39220d390c9ae7ba0515a3ad79a94a1b2288c65029aea8f5e7481f8fe181d877b4
 WHIRLPOOL 
9df270cd41bc2067dcbbba4312fd60682a4f2a5f461d61c80d4b5d5e19a4b1c691c08e8bd34d581e89e4998760f950cc7e8964d04a23c6188cf906892623c55b
-DIST oslo.context-2.2.0.tar.gz 16981 SHA256 
8c9fbbf56d3f37cf00a039cac3455cffeb6588f61537e36a36ce9447c4be72ec SHA512 
f4ccb7a5e652a4820fb40e538a631c11be5f978de2219dc923e18559d30625a31e0ca031f095ce2e0545290cdfdeb714fcf086add6b5a7eb2413ebd1e7a25875
 WHIRLPOOL 
a9a5685dd62105ddaee9c48fdc96231ea700ab8821e7e918920afc1bdf1f1a0e36aa1845c9665bf753fb56d95005f69d4927b12aac9712f41f43e2d89682beaf
-DIST oslo.context-2.9.0.tar.gz 23049 SHA256 
2682d59ebea3c61421bba98cd3f36dcef5416ad771b220856f14fb528ef81b39 SHA512 
6aa062542953007d8cfaf05e231105865c35370a80c9b32a4faae266d07981e83ebe34790b0217d818e2bb40d82d0a7ef3ebf77c7008ce358f7b4e61f6a38ff8
 WHIRLPOOL 
7ab7cca5c1d5e260e5e97df7cc1a3136e6f96f8237251c3bed46ebc565a9706fcabaa8b138d14e61024d34f34e7be83da313c02e8eba502d68d9b9a1342e1cde

diff --git a/dev-python/oslo-context/oslo-context-2.2.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.2.0.ebuild
deleted file mode 100644
index d7255345bbe..000
--- a/dev-python/oslo-context/oslo-context-2.2.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-       test? (
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
-   >=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-sphinx-3.4.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
-   !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
-   https://pypi.python.org/pypi/oslo.context";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
-   >=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
-       !~dev-python/oslo-sphinx-3.4.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
-   !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
-   =dev-python/reno-1.8.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/positional-1.0.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}



[gentoo-commits] gentoo-x86 commit in dev-ruby/shoulda-context: shoulda-context-1.1.6.ebuild ChangeLog

2014-10-10 Thread Manuel Rueger (mrueg)
mrueg   14/10/10 22:46:37

  Modified: shoulda-context-1.1.6.ebuild ChangeLog
  Log:
  Add ruby21 target, require http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?r1=1.4&r2=1.5

Index: shoulda-context-1.1.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- shoulda-context-1.1.6.ebuild18 Aug 2014 01:42:40 -  1.4
+++ shoulda-context-1.1.6.ebuild10 Oct 2014 22:46:37 -  1.5
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.4 2014/08/18 01:42:40 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.5 2014/10/10 22:46:37 mrueg Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 jruby"
+USE_RUBY="ruby19 ruby20 ruby21 jruby"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"
@@ -25,8 +25,12 @@
 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64"
 IUSE="doc test"
 
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/mocha )"
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2 
+   0.10'\n" test/test_helper.rb || die
+}
 each_ruby_test() {
ruby-ng_testrb-2 -Itest test/shoulda/*_test.rb || die
 }



1.8      dev-ruby/shoulda-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
=======
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   18 Aug 2014 01:42:40 -      1.7
+++ ChangeLog   10 Oct 2014 22:46:37 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/shoulda-context
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.7 
2014/08/18 01:42:40 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.8 
2014/10/10 22:46:37 mrueg Exp $
+
+  10 Oct 2014; Manuel Rüger  shoulda-context-1.1.6.ebuild:
+  Add ruby21 target, require 
   shoulda-context-1.1.6.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-ruby/shoulda-context: shoulda-context-1.1.6.ebuild ChangeLog

2014-08-17 Thread Anthony G. Basile (blueness)
blueness14/08/18 01:42:40

  Modified: shoulda-context-1.1.6.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #501968
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?r1=1.3&r2=1.4

Index: shoulda-context-1.1.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- shoulda-context-1.1.6.ebuild11 Aug 2014 09:53:48 -  1.3
+++ shoulda-context-1.1.6.ebuild18 Aug 2014 01:42:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.3 2014/08/11 09:53:48 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.4 2014/08/18 01:42:40 blueness Exp $
 
 EAPI=5
 
@@ -22,7 +22,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64"
 IUSE="doc test"
 
 ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/mocha )"



1.7  dev-ruby/shoulda-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===========
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   11 Aug 2014 09:53:48 -  1.6
+++ ChangeLog   18 Aug 2014 01:42:40 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/shoulda-context
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.6 
2014/08/11 09:53:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.7 
2014/08/18 01:42:40 blueness Exp $
+
+  18 Aug 2014; Anthony G. Basile 
+  shoulda-context-1.1.6.ebuild:
+  Keyword ~ppc ~ppc64, bug #501968
 
   11 Aug 2014; Jeroen Roovers  shoulda-context-1.1.6.ebuild:
   Marked ~hppa (bug #519170).
@@ -27,4 +31,3 @@
   26 Nov 2013; Hans de Graaff 
   +shoulda-context-1.1.4.ebuild, +metadata.xml:
   Initial import. New dependency for newer shoulda versions.
-






[gentoo-commits] gentoo-x86 commit in dev-python/oslo-context: oslo-context-0.2.0.ebuild ChangeLog

2015-07-07 Thread Mikle Kolyada (zlogene)
zlogene 15/07/07 15:27:36

  Modified: oslo-context-0.2.0.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #554114
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  dev-python/oslo-context/oslo-context-0.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild?r1=1.1&r2=1.2

Index: oslo-context-0.2.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oslo-context-0.2.0.ebuild   11 Mar 2015 05:25:11 -  1.1
+++ oslo-context-0.2.0.ebuild   7 Jul 2015 15:27:36 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild,v 1.1 
2015/03/11 05:25:11 prometheanfire Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.2.0.ebuild,v 1.2 
2015/07/07 15:27:36 zlogene Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
@@ -14,7 +14,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.7  dev-python/oslo-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===========
RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   3 Jun 2015 20:34:32 -   1.6
+++ ChangeLog   7 Jul 2015 15:27:36 -   1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/oslo-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.6 
2015/06/03 20:34:32 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.7 
2015/07/07 15:27:36 zlogene Exp $
+
+  07 Jul 2015; Mikle Kolyada  oslo-context-0.2.0.ebuild:
+  amd64 stable wrt bug #554114
 
   03 Jun 2015; Justin Lecher  metadata.xml:
   Add pypi to remote-id in metadata.xml






[PATCH v2] drm: context: Clean up documentation

2020-03-07 Thread Benjamin Gaignard
Fix kernel doc comments to avoid warnings when compiling with W=1.

Signed-off-by: Benjamin Gaignard 
---
version 2:
- Since it is legacy interface do not fix the description but
  replace /** by /* to remove kerneldoc validation warnings

 drivers/gpu/drm/drm_context.c | 28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/drm_context.c b/drivers/gpu/drm/drm_context.c
index 1f802d8e5681..c99be950bf17 100644
--- a/drivers/gpu/drm/drm_context.c
+++ b/drivers/gpu/drm/drm_context.c
@@ -47,7 +47,7 @@ struct drm_ctx_list {
 /** \name Context bitmap support */
 /*@{*/
 
-/**
+/*
  * Free a handle from the context bitmap.
  *
  * \param dev DRM device.
@@ -68,7 +68,7 @@ void drm_legacy_ctxbitmap_free(struct drm_device * dev, int 
ctx_handle)
mutex_unlock(&dev->struct_mutex);
 }
 
-/**
+/*
  * Context bitmap allocation.
  *
  * \param dev DRM device.
@@ -88,7 +88,7 @@ static int drm_legacy_ctxbitmap_next(struct drm_device * dev)
return ret;
 }
 
-/**
+/*
  * Context bitmap initialization.
  *
  * \param dev DRM device.
@@ -104,7 +104,7 @@ void drm_legacy_ctxbitmap_init(struct drm_device * dev)
idr_init(&dev->ctx_idr);
 }
 
-/**
+/*
  * Context bitmap cleanup.
  *
  * \param dev DRM device.
@@ -163,7 +163,7 @@ void drm_legacy_ctxbitmap_flush(struct drm_device *dev, 
struct drm_file *file)
 /** \name Per Context SAREA Support */
 /*@{*/
 
-/**
+/*
  * Get per-context SAREA.
  *
  * \param inode device inode.
@@ -211,7 +211,7 @@ int drm_legacy_getsareactx(struct drm_device *dev, void 
*data,
return 0;
 }
 
-/**
+/*
  * Set per-context SAREA.
  *
  * \param inode device inode.
@@ -263,7 +263,7 @@ int drm_legacy_setsareactx(struct drm_device *dev, void 
*data,
 /** \name The actual DRM context handling routines */
 /*@{*/
 
-/**
+/*
  * Switch context.
  *
  * \param dev DRM device.
@@ -290,7 +290,7 @@ static int drm_context_switch(struct drm_device * dev, int 
old, int new)
return 0;
 }
 
-/**
+/*
  * Complete context switch.
  *
  * \param dev DRM device.
@@ -318,7 +318,7 @@ static int drm_context_switch_complete(struct drm_device 
*dev,
return 0;
 }
 
-/**
+/*
  * Reserve contexts.
  *
  * \param inode device inode.
@@ -351,7 +351,7 @@ int drm_legacy_resctx(struct drm_device *dev, void *data,
return 0;
 }
 
-/**
+/*
  * Add context.
  *
  * \param inode device inode.
@@ -404,7 +404,7 @@ int drm_legacy_addctx(struct drm_device *dev, void *data,
return 0;
 }
 
-/**
+/*
  * Get context.
  *
  * \param inode device inode.
@@ -428,7 +428,7 @@ int drm_legacy_getctx(struct drm_device *dev, void *data,
return 0;
 }
 
-/**
+/*
  * Switch context.
  *
  * \param inode device inode.
@@ -452,7 +452,7 @@ int drm_legacy_switchctx(struct drm_device *dev, void *data,
return drm_context_switch(dev, dev->last_context, ctx->handle);
 }
 
-/**
+/*
  * New context.
  *
  * \param inode device inode.
@@ -478,7 +478,7 @@ int drm_legacy_newctx(struct drm_device *dev, void *data,
return 0;
 }
 
-/**
+/*
  * Remove context.
  *
  * \param inode device inode.
-- 
2.15.0

___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel


[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2019-03-24 Thread Matthew Thode
commit: 7da3cf07037b3da0e857fc1ef8c4431c173a4997
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:59:37 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7da3cf07

dev-python/oslo-context: remove pike/queens

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/oslo-context/Manifest   |  1 -
 dev-python/oslo-context/oslo-context-2.20.0.ebuild | 45 --
 2 files changed, 46 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index ce3c2b4f4cd..ce96eb325c2 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-2.20.0.tar.gz 28203 BLAKE2B 
cbb3cb6f30b1b16011caa6fdec36c19aae571125b88f642bfc52c5a8a63a2b17eb308628d9a5f19b8a0c3bd28fb0db54e5485abd10c90c9495de05263ac25709
 SHA512 
ce7bd92c7e22e02e91bdc86e9b697f746233a41081b4f3ebb9fe30fec8000c69f732f55de0d333b349b8e01e638ddc835fd3cf0d8f7a11aa3454466a1e87ad08
 DIST oslo.context-2.21.0.tar.gz 27605 BLAKE2B 
fa2be8819c3b5c46e12eacae12c665e8168c4d8ac88fe7e8b8c3454093ea14d1a5980d1ecc377eb7294d913e117cf5188571be3bf678f270712e09c5230f2f7e
 SHA512 
af25aebd306d0a3d60032778e6e3ca10b976e758c10e5d02302ebfef6a6183c8f9a102e9b4c2c8400914d71976dff284654bbcec63c15192dcfd2605928596eb

diff --git a/dev-python/oslo-context/oslo-context-2.20.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.20.0.ebuild
deleted file mode 100644
index 5e4b1fba433..000
--- a/dev-python/oslo-context/oslo-context-2.20.0.ebuild
+++ /dev/null
@@ -1,45 +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,5,6}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/";
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2018-08-30 Thread Matt Thode
commit: b20b0b3b276df43d8c98e3b8f98ce026bb284cdc
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Aug 30 16:51:47 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Aug 30 17:09:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20b0b3b

dev-python/oslo-context: 2.21.0 bump

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 dev-python/oslo-context/Manifest   |  1 +
 dev-python/oslo-context/oslo-context-2.21.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index f723f91c4be..ce3c2b4f4cd 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-2.20.0.tar.gz 28203 BLAKE2B 
cbb3cb6f30b1b16011caa6fdec36c19aae571125b88f642bfc52c5a8a63a2b17eb308628d9a5f19b8a0c3bd28fb0db54e5485abd10c90c9495de05263ac25709
 SHA512 
ce7bd92c7e22e02e91bdc86e9b697f746233a41081b4f3ebb9fe30fec8000c69f732f55de0d333b349b8e01e638ddc835fd3cf0d8f7a11aa3454466a1e87ad08
+DIST oslo.context-2.21.0.tar.gz 27605 BLAKE2B 
fa2be8819c3b5c46e12eacae12c665e8168c4d8ac88fe7e8b8c3454093ea14d1a5980d1ecc377eb7294d913e117cf5188571be3bf678f270712e09c5230f2f7e
 SHA512 
af25aebd306d0a3d60032778e6e3ca10b976e758c10e5d02302ebfef6a6183c8f9a102e9b4c2c8400914d71976dff284654bbcec63c15192dcfd2605928596eb

diff --git a/dev-python/oslo-context/oslo-context-2.21.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.21.0.ebuild
new file mode 100644
index 000..4d0db0d234d
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-2.21.0.ebuild
@@ -0,0 +1,45 @@
+# 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,5,6}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.org/project/oslo.context/";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
+   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
+       >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
+   )"
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/oslo.context-${PV}"
+
+python_prepare_all() {
+   sed -i '/^hacking/d' test-requirements.txt || die
+   distutils-r1_python_prepare_all
+}
+
+# This time half the doc files are missing; Do you want them?
+python_test() {
+   nosetests tests/ || die "test failed under ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2018-02-16 Thread Matt Thode
commit: 4c6f6e909a0822e86ed918c50e21f69581654190
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Feb 16 23:42:20 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Feb 17 01:38:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c6f6e90

dev-python/oslo-context: 2.20.0 bup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/oslo-context/Manifest   |  1 +
 dev-python/oslo-context/oslo-context-2.20.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index f9713b43e74..39afa9d84d7 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-2.17.1.tar.gz 27266 BLAKE2B 
6d539af2d191103a411db0a7671d0ea4a9bb21d0a33e4e306ceac8455c4b0aafe594541b3cf7e565372dee66c3a7c6685b86c96256046e108ee21f74633d01a5
 SHA512 
f75d9cececaa095cab3b87b05ab0c4bf9f115b96ab7feb5607edd00a33440a4418692f4f6cf8a3dffbbc302758e734c4184f271e3860e65d9da95f0a97ae633f
+DIST oslo.context-2.20.0.tar.gz 28203 BLAKE2B 
cbb3cb6f30b1b16011caa6fdec36c19aae571125b88f642bfc52c5a8a63a2b17eb308628d9a5f19b8a0c3bd28fb0db54e5485abd10c90c9495de05263ac25709
 SHA512 
ce7bd92c7e22e02e91bdc86e9b697f746233a41081b4f3ebb9fe30fec8000c69f732f55de0d333b349b8e01e638ddc835fd3cf0d8f7a11aa3454466a1e87ad08

diff --git a/dev-python/oslo-context/oslo-context-2.20.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.20.0.ebuild
new file mode 100644
index 000..9f56c6954ad
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-2.20.0.ebuild
@@ -0,0 +1,45 @@
+# 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,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
+   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
+       >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
+   )"
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/oslo.context-${PV}"
+
+python_prepare_all() {
+   sed -i '/^hacking/d' test-requirements.txt || die
+   distutils-r1_python_prepare_all
+}
+
+# This time half the doc files are missing; Do you want them?
+python_test() {
+   nosetests tests/ || die "test failed under ${EPYTHON}"
+}



[gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Text-Context/

2015-06-15 Thread Kent Fredric
commit: 188e043bbdd0a0f6043377aa2f2a6c8b81ad59bb
Author: Kent Fredric  gmail  com>
AuthorDate: Sun Jun 14 23:17:06 2015 +
Commit: Kent Fredric  gmail  com>
CommitDate: Sun Jun 14 23:17:06 2015 +
URL:https://gitweb.gentoo.org/proj/perl-overlay.git/commit/?id=188e043b

[fixup] Text-Context: EAPI5, fixup deps and tests

Package-Manager: portage-2.2.17

 ...t-3.700.0.ebuild => Text-Context-3.700.0-r1.ebuild} | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/dev-perl/Text-Context/Text-Context-3.700.0.ebuild 
b/dev-perl/Text-Context/Text-Context-3.700.0-r1.ebuild
similarity index 56%
rename from dev-perl/Text-Context/Text-Context-3.700.0.ebuild
rename to dev-perl/Text-Context/Text-Context-3.700.0-r1.ebuild
index 63e0eca..4c25e2a 100644
--- a/dev-perl/Text-Context/Text-Context-3.700.0.ebuild
+++ b/dev-perl/Text-Context/Text-Context-3.700.0-r1.ebuild
@@ -1,25 +1,27 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
-EAPI=2
+EAPI=5
 MODULE_AUTHOR=TMTM
-MODULE_VERSION="3.7"
+MODULE_VERSION=3.7
 inherit perl-module
 
 DESCRIPTION="Handle highlighting search result context snippets"
-LICENSE="|| ( Artistic GPL-2 )"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 IUSE=""
+PERL_RM_FILES=(
+   t/pod-coverage.t
+   t/pod.t
+)
 RDEPEND="
dev-perl/HTML-Parser
-   >=dev-perl/Text-Context-EitherSide-1.1
-   >=dev-perl/UNIVERSAL-require-0.03
+   >=dev-perl/Text-Context-EitherSide-1.100.0
+   >=dev-perl/UNIVERSAL-require-0.30.0
 "
 DEPEND="
${RDEPEND}
+   virtual/perl-Test-Simple
 "
-
-SRC_TEST=do



[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-context/, dev-texlive/texlive-basic/

2024-06-05 Thread Florian Schmaus
commit: fa6fadb1b7323f22a157b769d4d383ef439ee2f2
Author: Florian Schmaus  gentoo  org>
AuthorDate: Wed Jun  5 12:05:06 2024 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Wed Jun  5 12:18:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa6fadb1

dev-texlive/texlive-{basic,context}: move luajittex from -context into -basic

The motivation for this change is a little bit complex. The gist is,
that luajittex belongs into -basic, even though tlpdb lists luajittex in
collection-context for Tex Live 2023 (and probably in
collection-binextra for TeX Live 2024).

In Gentoo, texlive-basic had already luajittex in IUSE, at least since
TeX Live 2021. And this seems sensible.

We can not easily put the luajittex TeX Live package in
app-text/texlive-core, even though we *build* luajit(hb)tex there. But
the luajittex TeX Live package also has a AddFormat directive in its
tlpobj, which we do not process in texlive-core. This is mostly because
texilve-core only inherits texlive-common.eclass, but the tlpojb
processing, including the AddFormat processing, is done by
texlive-module.eclass.

Therefore, we put luajittex in texlive-basic, since this will always be
installed and the texlive-basic ebuilds processes luajits AddFormat
directive, because it inherits texlive-module.eclass.

Closes: https://bugs.gentoo.org/933520
Bug: https://bugs.gentoo.org/928122
Fixes: 1bca88987927 ("dev-texlive/texlive-context: set 
TEXLIVE_MODULE_OPTIONAL_ENGINE=luajittex")
Signed-off-by: Florian Schmaus  gentoo.org>

 dev-texlive/texlive-basic/Manifest |  2 ++
 ...23_p59159-r3.ebuild => texlive-basic-2023_p59159-r4.ebuild} | 10 ++
 dev-texlive/texlive-context/Manifest       |  2 --
 dev-texlive/texlive-context/metadata.xml   |  3 ---
 ..._p69108-r2.ebuild => texlive-context-2023_p69108-r3.ebuild} |  6 +-
 5 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/dev-texlive/texlive-basic/Manifest 
b/dev-texlive/texlive-basic/Manifest
index c3447bbac05f..afefe3e0ea0e 100644
--- a/dev-texlive/texlive-basic/Manifest
+++ b/dev-texlive/texlive-basic/Manifest
@@ -34,6 +34,8 @@ DIST lua-alt-getopt.doc.r56414.tar.xz 3320 BLAKE2B 
5c165fe265ef36b12f4e4552fcde5
 DIST lua-alt-getopt.r56414.tar.xz 2008 BLAKE2B 
9fe768e1070b66d076b6083b0f8a5f4c6320b5081d2218584dc5acbaa3c1f5978cd75215866d68bc933b933dd07c6fd29b376c1676369bb2fee64395790b5eed
 SHA512 
60ad4731ac61f9b5c4360bb3d0c6475e2abd358418e20bed29cc94761fdfb97fcf02829b9785e559ca6052a1e82ee7f0b104b166592b9fd87237679ac3caa2e6
 DIST luahbtex.doc.r66186.tar.xz 30240 BLAKE2B 
9f34b53e124b27e90a0fb68dcdfb9cfd0c365941cf21bfc6d9a3ec3f623ca27d4435627c1a0eb5402527b8434afb5e72651f3fca3553fc1ea4242945fb563efe
 SHA512 
3016c12de8386af715932819701a6da1b106c504a7d13ba9bb5a04999737709f474b50c08311c1d4c23b5532ba7c1546cb0585e5375babbcd2091adf52d05664
 DIST luahbtex.r66186.tar.xz 460 BLAKE2B 
968bc635fb4bfe101aea1d13a32dd259b77e2e15a3a1d81b9e7ca81699b1d40d393085ae1031ca57e906d159409f441c748396a8f5ebdef0a30d9415a2a7b8cc
 SHA512 
30b1fcd361cff27688c65ecffbcffc65053696200abfccd543a14253b53a35de2af53b37f7ed1580510a8c63293d2d002cf4d9fd2d44f86678e2ecb09f02e4b8
+DIST luajittex.doc.r66186.tar.xz 30360 BLAKE2B 
9011b987bee46fa3fd857c4a7c122911e5e614857a74ba6fafc18a768bd99c5c87a6255438c5cf5841e4a2f0aeb53137244313326d3276408591d90259c9b078
 SHA512 
7637835fae934f4fb1aea954270281a986733d0e0592204346edc290f2cd7d5200ee2fa0d9e15a27be8221c3c990a8c3d4654e314f96441a65c197d3bd259129
+DIST luajittex.r66186.tar.xz 484 BLAKE2B 
9832037e5fc311ffa73cf68b63b5c462d9619c3351d8c0801c83d949c163321886d3ce1c9cca8158f288d63d169015e734a92d7ab20d2365c6a2cc21e22dcfcc
 SHA512 
21313a5786f2bea08ce55db3a7beedabaf66f3331bd0eac1f8f3d7b926f68e103b14b1a5beaa271c37b60fc56735cc180e424f91db62f6e740530a65495d8e82
 DIST luatex.doc.r69182.tar.xz 1956816 BLAKE2B 
43dea0a99a1db57b98447a8ad58a7c4e2dcee975230d1ba54b5fa700bfd6ac9eb80dc1136e8a71266c35b350650aaef48aa73edd1b9557f9a7a7ef79f48ffaf7
 SHA512 
36a5dfb6b7ca09adad807d2fa74df854363107eb3fb514977e3ed8c69eeb1181a19a55a49eb8c001a3532601c0a222a3ae9d130827caa19864df03705af7271c
 DIST luatex.r69182.tar.xz 13432 BLAKE2B 
cebbf54237e3d908746ad7510675ab6b98576ebb61302edcaf360c4cbfd039c7b5f422adc123e21cd2656d975484922d0e0d577326a518f7c87beafd8f5eda77
 SHA512 
5ddb75ca2e358bea261363cc19d39a37a9e467f9cbf4f8006f036a96fea61cb00f86c4000c09d7dd07f71f9b9a01ec165ddefb862aa84f0bc3da6a387ca1f42b
 DIST metafont.doc.r66186.tar.xz 53096 BLAKE2B 
46b3696de3af1c116894bea54cedd035904cd31dcfa7724a55e4bd37ccb3541cb9ed92d2f392743baafb94004a9b4a1c26d48d054b537e20149bc9d2d53da474
 SHA512 
48b1def32bfba5ab1123712fe41d69f979e33a77456801c21f030de8a39b37fcae179db44a517d7b194d7e6e6eb93d770e179ca49db9014cd433c86ef91b07d0

diff --git a/dev-texlive/texlive-basic/texlive-basic-2023_p59159-r3.ebuild 
b/dev-texlive/texlive-basic/texlive-basic-2023_p59159-r4.ebuild
similarity index 91%
rename from 

[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2020-10-10 Thread Matthew Thode
commit: 11817667fbe76a3be2d8f95836fb2b151d8123b0
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Oct 11 00:58:20 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Oct 11 01:29:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11817667

dev-python/oslo-context: 3.1.1 bump

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-3.1.1.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 38d82ebd550..20a319c097c 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-2.22.1.tar.gz 29315 BLAKE2B 
89c7dacfe42a9c3cd8d7fde8a77e3654f48788909cea725151e833a305c6916534919496393e603084311625cc9242661e72cbf1a2bdb72bedca3127e77ca9d9
 SHA512 
d0a3b9e41d23e8f642f8aacd998f6d6f4ad1fbf103947fc7403a57c4e3d9ae51b3cf73dfb79139d541875a0e412ed8600c4ce6b19cc207697429f48a7fb72887
+DIST oslo.context-3.1.1.tar.gz 29335 BLAKE2B 
2179e5c273b5e387806fc4a8b1ac2f0641f4cc9f2345cb00e6ef9c2e7c8b69709c0c14dd11254d026283b2be7e032044b6f753a13f062915db9f000ae1873f1a
 SHA512 
a9d16475bac5aa96d086019632f417fa5b496f615b814527e547a43362f1e36ed47c47266032e72194f88716237ccff7a24bf941d66bf36afe09b846a810583b

diff --git a/dev-python/oslo-context/oslo-context-3.1.1.ebuild 
b/dev-python/oslo-context/oslo-context-3.1.1.ebuild
new file mode 100644
index 000..0bed5501a70
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-3.1.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.org/project/oslo.context/";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+S="${WORKDIR}/oslo.context-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+DEPEND="${CDEPEND}"
+RDEPEND="${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]"



[gentoo-commits] gentoo-x86 commit in dev-ruby/shoulda-context: ChangeLog shoulda-context-1.1.6.ebuild

2015-04-11 Thread Hans de Graaff (graaff)
graaff  15/04/11 15:52:27

  Modified: ChangeLog shoulda-context-1.1.6.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.11 dev-ruby/shoulda-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   29 Oct 2014 19:34:27 -  1.10
+++ ChangeLog   11 Apr 2015 15:52:27 -  1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/shoulda-context
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.10 
2014/10/29 19:34:27 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/ChangeLog,v 1.11 
2015/04/11 15:52:27 graaff Exp $
+
+  11 Apr 2015; Hans de Graaff  shoulda-context-1.1.6.ebuild:
+  Add ruby22.
 
   29 Oct 2014; Manuel Rüger  shoulda-context-1.1.6.ebuild:
   Drop jruby target.



1.8      dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild?r1=1.7&r2=1.8

Index: shoulda-context-1.1.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- shoulda-context-1.1.6.ebuild29 Oct 2014 19:34:27 -0000  1.7
+++ shoulda-context-1.1.6.ebuild11 Apr 2015 15:52:27 -  1.8
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.7 2014/10/29 19:34:27 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 
1.8 2015/04/11 15:52:27 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"






[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2017-08-26 Thread Matt Thode
commit: 902591cf8ec60c9912632100ddac83978d794560
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Aug 27 01:32:07 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Aug 27 04:24:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=902591cf

dev-python/oslo-context: 2.17.0 bup

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/oslo-context/Manifest   |  1 +
 dev-python/oslo-context/oslo-context-2.17.0.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index c0f849a3774..4b6fc777e84 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1 +1,2 @@
 DIST oslo.context-2.12.2.tar.gz 26860 SHA256 
36decf5f8bd72a986d58c2e603c2e0d96d31da4283f2fbc145c6804113b86f64 SHA512 
752d2e9744fbf94d23d6cc3205f3b4974d440bf71ab885de2feea3e706ed93b771b50df264c754cc8f6882f8526de0318cb3d1fc07a28a872f4b02e59118af98
 WHIRLPOOL 
e54612a8fda6ee4a07ad603f54356f6bf5aa8bedcd11f9faaf88ff7f98ef79b0407dc50d9295b8131375fbc4916b5915096ce97a142a2c8c06eb9345749483e6
+DIST oslo.context-2.17.0.tar.gz 27756 SHA256 
e4c2080dd4767a843f8f3c287e24f89bc749ec7cac34fa6ec2b4de3b1bff9085 SHA512 
158ccfb5517f2e4521d9be0b4864b2f6cc491f2dc00b479ea6314892b24b0293fe1e5e654d1503b73f992d011bf79c0b3c5b1f7b69dc7d32549a8327897957ae
 WHIRLPOOL 
e48de23e16422c34b229c74d1d0b789f5db6ed43c3c8ec0db43ebc1b3e8e4ecb1edc22df2ce23e5d83c8c5fd1e01dd228d6b40f7acf44947a234ad9663a4f3c2

diff --git a/dev-python/oslo-context/oslo-context-2.17.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.17.0.ebuild
new file mode 100644
index 000..14c2209fa7f
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-2.17.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
+   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
+   >=dev-python/openstackdocstheme-1.11.0[${PYTHON_USEDEP}]
+   >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
+   !~dev-python/reno-2.3.1[${PYTHON_USEDEP}]
+   )"
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/oslo.context-${PV}"
+
+python_prepare_all() {
+   sed -i '/^hacking/d' test-requirements.txt || die
+   distutils-r1_python_prepare_all
+}
+
+# This time half the doc files are missing; Do you want them?
+python_test() {
+   nosetests tests/ || die "test failed under ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2017-11-21 Thread Matt Thode
commit: 5f84908db1f90334e586863c4f4b45df294e8eff
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Nov 22 01:40:11 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Nov 22 01:59:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f84908d

dev-python/oslo-context: 2.17.1 bup

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-python/oslo-context/Manifest   |  1 +
 dev-python/oslo-context/oslo-context-2.17.1.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 4b6fc777e84..91643b3213f 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1,3 @@
 DIST oslo.context-2.12.2.tar.gz 26860 SHA256 
36decf5f8bd72a986d58c2e603c2e0d96d31da4283f2fbc145c6804113b86f64 SHA512 
752d2e9744fbf94d23d6cc3205f3b4974d440bf71ab885de2feea3e706ed93b771b50df264c754cc8f6882f8526de0318cb3d1fc07a28a872f4b02e59118af98
 WHIRLPOOL 
e54612a8fda6ee4a07ad603f54356f6bf5aa8bedcd11f9faaf88ff7f98ef79b0407dc50d9295b8131375fbc4916b5915096ce97a142a2c8c06eb9345749483e6
 DIST oslo.context-2.17.0.tar.gz 27756 SHA256 
e4c2080dd4767a843f8f3c287e24f89bc749ec7cac34fa6ec2b4de3b1bff9085 SHA512 
158ccfb5517f2e4521d9be0b4864b2f6cc491f2dc00b479ea6314892b24b0293fe1e5e654d1503b73f992d011bf79c0b3c5b1f7b69dc7d32549a8327897957ae
 WHIRLPOOL 
e48de23e16422c34b229c74d1d0b789f5db6ed43c3c8ec0db43ebc1b3e8e4ecb1edc22df2ce23e5d83c8c5fd1e01dd228d6b40f7acf44947a234ad9663a4f3c2
+DIST oslo.context-2.17.1.tar.gz 27266 SHA256 
43ac02fbb0bfd6bc967c3b24c8bac846ab33f3372fe9e1767419c8fcf57389f6 SHA512 
f75d9cececaa095cab3b87b05ab0c4bf9f115b96ab7feb5607edd00a33440a4418692f4f6cf8a3dffbbc302758e734c4184f271e3860e65d9da95f0a97ae633f
 WHIRLPOOL 
6df4387fe67c54375e7c1ce72defd8066c80ebb1b2cacd35f1d61a593ce4ed1a53bec2cd79f6c4cc4b7b4052d1e04de4a8a668e119363f3fe6c6de2f5eec22c8

diff --git a/dev-python/oslo-context/oslo-context-2.17.1.ebuild 
b/dev-python/oslo-context/oslo-context-2.17.1.ebuild
new file mode 100644
index 000..aa47f5087ef
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-2.17.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+       test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
+   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
+   >=dev-python/openstackdocstheme-1.16.0[${PYTHON_USEDEP}]
+   >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
+   !~dev-python/reno-2.3.1[${PYTHON_USEDEP}]
+   )"
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/positional-1.1.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/oslo.context-${PV}"
+
+python_prepare_all() {
+   sed -i '/^hacking/d' test-requirements.txt || die
+   distutils-r1_python_prepare_all
+}
+
+# This time half the doc files are missing; Do you want them?
+python_test() {
+   nosetests tests/ || die "test failed under ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/shoulda-context/

2023-07-07 Thread Hans de Graaff
commit: d67a052682641e4e51346dc21b3786f07bc24820
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jul  8 04:23:57 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jul  8 04:25:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d67a0526

dev-ruby/shoulda-context: add 2.0.0

Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/shoulda-context/Manifest  |  1 +
 .../shoulda-context/shoulda-context-2.0.0.ebuild   | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-ruby/shoulda-context/Manifest 
b/dev-ruby/shoulda-context/Manifest
index 1e75b8b29b29..436b7385e5a5 100644
--- a/dev-ruby/shoulda-context/Manifest
+++ b/dev-ruby/shoulda-context/Manifest
@@ -1 +1,2 @@
 DIST shoulda-context-1.2.2.gem 24064 BLAKE2B 
a6068da369c00a36e6056a8ebba96eca90efddf94613dfc90c9f2a47bec2c054a41fa61b861b2f3ec1195e417bdc54ab60d53f91bc5e0f167eac07b84880892b
 SHA512 
b09f5ce2db59bbb26d5678b17b6641b79df7983d25e81a31bc10c42b702bdba09795b692d711d59c103beb2f691b503567e37c46668f77e600416551ef2c5e05
+DIST shoulda-context-2.0.0.gem 34304 BLAKE2B 
b31f7e052b54fb60fb7fff84fc48beed406864b871f3c125db4f28d1ce0f400bb0ad3479d438d20a28f585b6e5da101b71228f598e6bdc177512f048273a8524
 SHA512 
c8d856a95b3dfe85fd92c79f18e03a2765ad219b83ab132017fefcffd0262b04bcebf267e6bbaec0ed3dff1d4d345bd74c1f9db1d2a22938ee8d85ee1078ac6e

diff --git a/dev-ruby/shoulda-context/shoulda-context-2.0.0.ebuild 
b/dev-ruby/shoulda-context/shoulda-context-2.0.0.ebuild
new file mode 100644
index ..f4025618e223
--- /dev/null
+++ b/dev-ruby/shoulda-context/shoulda-context-2.0.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby30 ruby31 ruby32"
+
+RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"
+
+RUBY_FAKEGEM_EXTRAINSTALL="tasks"
+
+# Don't install the conversion script to avoid collisions with older
+# shoulda.
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Context framework extracted from Shoulda"
+HOMEPAGE="https://github.com/thoughtbot/shoulda-context";
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="doc test"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2
+   dev-ruby/mocha )"
+
+all_ruby_prepare() {
+   sed -e '/\(current_bundle\|CurrentBundle\)/ s:^:#:' \
+   -e '/pry-byebug/ s:^:#:' \
+   -e '/warnings_logger/ s:^:#: ; /WarningsLogger/,/^)/ s:^:#:' \
+   -e '/rails_application_with_shoulda_context/ s:^:#:' \
+   -i test/test_helper.rb || die
+   rm -f 
test/shoulda/{railtie,rerun_snippet,test_framework_detection}_test.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/shoulda/*_test.rb"].each { require 
_1 }' || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2016-03-25 Thread Matt Thode
commit: 7884cf1546a387a52a9bcbaa56b0cfb1efd4f4c1
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Mar 25 22:32:20 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Mar 25 22:32:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7884cf15

dev-python/oslo-context: bup for mitaka

Package-Manager: portage-2.2.26

 dev-python/oslo-context/Manifest  |  1 +
 dev-python/oslo-context/oslo-context-2.2.0.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index 317bbac..07d2f50 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -2,3 +2,4 @@ DIST oslo.context-0.1.0.tar.gz 12320 SHA256 
0340e533033607c18ce6a305d92f38a71fd8
 DIST oslo.context-0.2.0.tar.gz 12726 SHA256 
30bee9680a2bf5f947227cfd5996cebb17fd8c8e3013e5a594f7a7accb2947dd SHA512 
afc1cf80a97bb90386750719e8314801057bf75c7cab1c2689d774bb337944cff324dc3737931f78b24bbf686ba4b5bbcb1e1ac1aae5347e700fd148556e6881
 WHIRLPOOL 
99dc8b37c582befbb9b32c26d8d106eb89bd9ef561193bc2cbf22c5ed0c2470f0f60a79bd06f9390866849eab2e65525ced9c8974c330ff5df2df3b5f3261e82
 DIST oslo.context-0.3.0.tar.gz 13108 SHA256 
5ac98e1bf0f502de8f31d4ae397ce6b663beab26870e9f9a80d231400353b9cb SHA512 
3a6cb17ec85b159d3bc496d3acfcfd7f03e92f32e5483c79be391d45a2af88ceb3c8ec2aae6714ac75f66b6664e3260a1e29c6f14c6802e8fa156f303b943ffa
 WHIRLPOOL 
c511b7470c09281402809af78ff7bd57d6ca241ab15736c876a9f705c08da8c7b5ce3dccd1867325e7b2052e83aec4fdd9fd9a32a9bd05f68ad10ccb4a9983cc
 DIST oslo.context-0.6.0.tar.gz 12684 SHA256 
0655075480c7bc1f01977f3b13463746fd48498b9884a535498b0e36334e999b SHA512 
8baf0de0be92bf061f6040d57c4121c1251a329844d341b333bf1c32398aa84313459e1d402dbee09efe8d1271306cc7e095d41e56f6711dec8f11bd086faacb
 WHIRLPOOL 
616d9b76823cdfd9531203a5927160d1fd9b51364d64a70234cc91b3616bc486c5c05ef511cf4363e6c05193e598d885ac61896d7c260f143af236437f51a03b
+DIST oslo.context-2.2.0.tar.gz 16981 SHA256 
8c9fbbf56d3f37cf00a039cac3455cffeb6588f61537e36a36ce9447c4be72ec SHA512 
f4ccb7a5e652a4820fb40e538a631c11be5f978de2219dc923e18559d30625a31e0ca031f095ce2e0545290cdfdeb714fcf086add6b5a7eb2413ebd1e7a25875
 WHIRLPOOL 
a9a5685dd62105ddaee9c48fdc96231ea700ab8821e7e918920afc1bdf1f1a0e36aa1845c9665bf753fb56d95005f69d4927b12aac9712f41f43e2d89682beaf

diff --git a/dev-python/oslo-context/oslo-context-2.2.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.2.0.ebuild
new file mode 100644
index 000..ca23559
--- /dev/null
+++ b/dev-python/oslo-context/oslo-context-2.2.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Helpers to maintain useful information about a request context"
+HOMEPAGE="https://pypi.python.org/pypi/oslo.context";
+SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+       test? (
+   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
+   >=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
+   !~dev-python/oslo-sphinx-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
+   !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
+   

[PATCH 8/8] [media] staging: lirc_sasem: remove

2017-03-25 Thread Sean Young
 /* USB device presence */
-   struct mutex ctx_lock;  /* to lock this object */
-   wait_queue_head_t remove_ok;/* For unexpected USB disconnects */
-
-   struct lirc_driver *driver;
-   struct usb_endpoint_descriptor *rx_endpoint;
-   struct usb_endpoint_descriptor *tx_endpoint;
-   struct urb *rx_urb;
-   struct urb *tx_urb;
-   unsigned char usb_rx_buf[8];
-   unsigned char usb_tx_buf[8];
-
-   struct tx_t {
-   unsigned char data_buf[SASEM_DATA_BUF_SZ]; /* user data
-   * buffer
-   */
-   struct completion finished;  /* wait for write to finish  */
-   atomic_t busy;   /* write in progress */
-   int status;  /* status of tx completion */
-   } tx;
-
-   /* for dealing with repeat codes (wish there was a toggle bit!) */
-   ktime_t presstime;
-   char lastcode[8];
-   int codesaved;
-};
-
-/* VFD file operations */
-static const struct file_operations vfd_fops = {
-   .owner  = THIS_MODULE,
-   .open   = &vfd_open,
-   .write  = vfd_write,
-   .unlocked_ioctl = &vfd_ioctl,
-   .release= &vfd_close,
-   .llseek = noop_llseek,
-};
-
-/* USB Device ID for Sasem USB Control Board */
-static struct usb_device_id sasem_usb_id_table[] = {
-   /* Sasem USB Control Board */
-   { USB_DEVICE(0x11ba, 0x0101) },
-   /* Terminating entry */
-   {}
-};
-
-/* USB Device data */
-static struct usb_driver sasem_driver = {
-   .name   = MOD_NAME,
-   .probe  = sasem_probe,
-   .disconnect = sasem_disconnect,
-   .id_table   = sasem_usb_id_table,
-};
-
-static struct usb_class_driver sasem_class = {
-   .name   = DEVICE_NAME,
-   .fops   = &vfd_fops,
-   .minor_base = VFD_MINOR_BASE,
-};
-
-/* to prevent races between open() and disconnect() */
-static DEFINE_MUTEX(disconnect_lock);
-
-static int debug;
-
-
-/*** M O D U L E   C O D E ***/
-MODULE_AUTHOR(MOD_AUTHOR);
-MODULE_DESCRIPTION(MOD_DESC);
-MODULE_LICENSE("GPL");
-module_param(debug, int, 0644);
-MODULE_PARM_DESC(debug, "Debug messages: 0=no, 1=yes (default: no)");
-
-static void delete_context(struct sasem_context *context)
-{
-   usb_free_urb(context->tx_urb);  /* VFD */
-   usb_free_urb(context->rx_urb);  /* IR */
-   lirc_buffer_free(context->driver->rbuf);
-   kfree(context->driver->rbuf);
-   kfree(context->driver);
-   kfree(context);
-}
-
-static void deregister_from_lirc(struct sasem_context *context)
-{
-   int retval;
-   int minor = context->driver->minor;
-
-   retval = lirc_unregister_driver(minor);
-   if (retval)
-   dev_err(&context->dev->dev,
-   "%s: unable to deregister from lirc (%d)\n",
-   __func__, retval);
-   else
-   dev_info(&context->dev->dev,
-"Deregistered Sasem driver (minor:%d)\n", minor);
-}
-
-/**
- * Called when the VFD device (e.g. /dev/usb/lcd)
- * is opened by the application.
- */
-static int vfd_open(struct inode *inode, struct file *file)
-{
-   struct usb_interface *interface;
-   struct sasem_context *context = NULL;
-   int subminor;
-   int retval = 0;
-
-   /* prevent races with disconnect */
-   mutex_lock(&disconnect_lock);
-
-   subminor = iminor(inode);
-   interface = usb_find_interface(&sasem_driver, subminor);
-   if (!interface) {
-   pr_err("%s: could not find interface for minor %d\n",
-  __func__, subminor);
-   retval = -ENODEV;
-   goto exit;
-   }
-   context = usb_get_intfdata(interface);
-
-   if (!context) {
-   dev_err(&interface->dev, "no context found for minor %d\n",
-   subminor);
-   retval = -ENODEV;
-   goto exit;
-   }
-
-   mutex_lock(&context->ctx_lock);
-
-   if (context->vfd_isopen) {
-   dev_err(&interface->dev,
-   "%s: VFD port is already open", __func__);
-   retval = -EBUSY;
-   } else {
-   context->vfd_isopen = 1;
-   file->private_data = context;
-   dev_info(&interface->dev, "VFD port opened\n");
-   }
-
-   mutex_unlock(&context->ctx_lock);
-
-exit:
-   mutex_unlock(&disconnect_lock);
-   return retval;
-}
-
-/**
- * Called when the VFD device (e.g. /dev/usb/lcd)
- * is closed by the application.
- */
-static long vfd_ioctl(struct file *file, unsigned int cmd, unsigne

[gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-context/

2021-12-02 Thread Michał Górny
commit: 373a415df855c5b2970cbc65f919fe80f486233d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec  2 09:36:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec  2 09:38:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373a415d

dev-python/jaraco-context: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/jaraco-context/Manifest |  1 -
 .../jaraco-context/jaraco-context-4.0.0.ebuild | 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/jaraco-context/Manifest 
b/dev-python/jaraco-context/Manifest
index cc7a4c6734ab..2e1a16f87807 100644
--- a/dev-python/jaraco-context/Manifest
+++ b/dev-python/jaraco-context/Manifest
@@ -1,2 +1 @@
-DIST jaraco.context-4.0.0.tar.gz 11257 BLAKE2B 
38faeb6036ebd2fc6cea9f29dc7fbd89b0ea60819e280e36c8c4f0f90e9ba2552524bfc0f3fc16601cd43276d19e166d9de4107ced885f88dea11efbe0a79913
 SHA512 
ec76e03d3d5a2148dd49159b303ee278501b9744d3e4d096d6aca516658fb04da020d1cbb1c8eb3dcb58097266e0419883d23e4064c295ced3846540177e57ee
 DIST jaraco.context-4.1.1.tar.gz 7615 BLAKE2B 
5734da1c55420c45520aea57398e66a3d880a555c76650bcaf3427911a7814be92f4a879219c8ccf3c808fdf00d3a77b76e68a93ef3fdad4ea50550188118317
 SHA512 
e01d3bd7b4eb712d00aba3fc40a78a5484141fcacf5bc772287a35ac81eca4c9744963679daadf6a170cf2ec26234243e602c89f71833fe84175ac39fb401453

diff --git a/dev-python/jaraco-context/jaraco-context-4.0.0.ebuild 
b/dev-python/jaraco-context/jaraco-context-4.0.0.ebuild
deleted file mode 100644
index 702ff2406a64..0000
--- a/dev-python/jaraco-context/jaraco-context-4.0.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-inherit distutils-r1
-
-MY_PN="${PN/-/.}"
-DESCRIPTION="Context managers by jaraco"
-HOMEPAGE="https://github.com/jaraco/jaraco.context";
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ppc ~ppc64 ~riscv x86"
-
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-context/

2021-01-29 Thread Michał Górny
commit: 418933ddfe504c102f16b3cb90d69f7b16cecd14
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 29 08:29:49 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 29 09:00:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=418933dd

dev-python/jaraco-context: Bump to 4.0.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/jaraco-context/Manifest |  1 +
 .../jaraco-context/jaraco-context-4.0.0.ebuild | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/jaraco-context/Manifest 
b/dev-python/jaraco-context/Manifest
index 521629f10e5..3e3330b3017 100644
--- a/dev-python/jaraco-context/Manifest
+++ b/dev-python/jaraco-context/Manifest
@@ -1 +1,2 @@
 DIST jaraco.context-3.0.0.tar.gz 12901 BLAKE2B 
b0a18d8799de211c9827a708302798372dff06767fbac08f4bff8ed48e1dde4cca8d3896a3c4dccd186efdc4d80ffe2b972a05e8f351ec53dcd0c7dec45cfcea
 SHA512 
fd48a9af65edea3212c194758ba1a8fc2d7efc35f7eaec959a7f327ad46d1bf15f295af29d62726f813d35baaeaff35bc3fcd6e27a0e0f272232772e1cb87c17
+DIST jaraco.context-4.0.0.tar.gz 11257 BLAKE2B 
38faeb6036ebd2fc6cea9f29dc7fbd89b0ea60819e280e36c8c4f0f90e9ba2552524bfc0f3fc16601cd43276d19e166d9de4107ced885f88dea11efbe0a79913
 SHA512 
ec76e03d3d5a2148dd49159b303ee278501b9744d3e4d096d6aca516658fb04da020d1cbb1c8eb3dcb58097266e0419883d23e4064c295ced3846540177e57ee

diff --git a/dev-python/jaraco-context/jaraco-context-4.0.0.ebuild 
b/dev-python/jaraco-context/jaraco-context-4.0.0.ebuild
new file mode 100644
index 000..a854993fe13
--- /dev/null
+++ b/dev-python/jaraco-context/jaraco-context-4.0.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} pypy3 )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Context managers by jaraco"
+HOMEPAGE="https://github.com/jaraco/jaraco.context";
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   dev-python/toml[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-context/

2021-11-01 Thread Michał Górny
commit: 2a1a16e182de3e23be87bae90500e0274f2edbd5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  1 07:22:14 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov  1 08:32:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a1a16e1

dev-python/jaraco-context: Bump to 4.1.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/jaraco-context/Manifest |  1 +
 .../jaraco-context/jaraco-context-4.1.1.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-python/jaraco-context/Manifest 
b/dev-python/jaraco-context/Manifest
index a1dc974d4ca..cc7a4c6734a 100644
--- a/dev-python/jaraco-context/Manifest
+++ b/dev-python/jaraco-context/Manifest
@@ -1 +1,2 @@
 DIST jaraco.context-4.0.0.tar.gz 11257 BLAKE2B 
38faeb6036ebd2fc6cea9f29dc7fbd89b0ea60819e280e36c8c4f0f90e9ba2552524bfc0f3fc16601cd43276d19e166d9de4107ced885f88dea11efbe0a79913
 SHA512 
ec76e03d3d5a2148dd49159b303ee278501b9744d3e4d096d6aca516658fb04da020d1cbb1c8eb3dcb58097266e0419883d23e4064c295ced3846540177e57ee
+DIST jaraco.context-4.1.1.tar.gz 7615 BLAKE2B 
5734da1c55420c45520aea57398e66a3d880a555c76650bcaf3427911a7814be92f4a879219c8ccf3c808fdf00d3a77b76e68a93ef3fdad4ea50550188118317
 SHA512 
e01d3bd7b4eb712d00aba3fc40a78a5484141fcacf5bc772287a35ac81eca4c9744963679daadf6a170cf2ec26234243e602c89f71833fe84175ac39fb401453

diff --git a/dev-python/jaraco-context/jaraco-context-4.1.1.ebuild 
b/dev-python/jaraco-context/jaraco-context-4.1.1.ebuild
new file mode 100644
index 000..74789d5377a
--- /dev/null
+++ b/dev-python/jaraco-context/jaraco-context-4.1.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Context managers by jaraco"
+HOMEPAGE="https://github.com/jaraco/jaraco.context";
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   dev-python/toml[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-context/

2022-03-03 Thread Michał Górny
commit: 6826f591416a13631c62aec8ee4bb563e295c7a2
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  4 07:50:33 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  4 07:56:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6826f591

dev-python/jaraco-context: Rename dist-info for pkg_resources

Bug: https://bugs.gentoo.org/834522
Signed-off-by: Michał Górny  gentoo.org>

 ...raco-context-4.1.1-r1.ebuild => jaraco-context-4.1.1-r2.ebuild} | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/dev-python/jaraco-context/jaraco-context-4.1.1-r1.ebuild 
b/dev-python/jaraco-context/jaraco-context-4.1.1-r2.ebuild
similarity index 83%
rename from dev-python/jaraco-context/jaraco-context-4.1.1-r1.ebuild
rename to dev-python/jaraco-context/jaraco-context-4.1.1-r2.ebuild
index b7f36c26be0e..38c43218c585 100644
--- a/dev-python/jaraco-context/jaraco-context-4.1.1-r1.ebuild
+++ b/dev-python/jaraco-context/jaraco-context-4.1.1-r2.ebuild
@@ -36,3 +36,10 @@ src_configure() {
description = "Context managers by jaraco"
EOF
 }
+
+python_install() {
+   distutils-r1_python_install
+   # rename to workaround a bug in pkg_resources
+   # https://bugs.gentoo.org/834522
+   mv "${D}$(python_get_sitedir)"/jaraco{_,.}context-${PV}.dist-info || die
+}



[PATCH] Change acpi_parse_resources() to use AcpiWalkResources()

2011-05-02 Thread John Baldwin
This patch changes acpi_parse_resources() to use AcpiWalkResources() rather
than doing its own home-grown loop to walk a resource list.  It also adds
support for 64-bit resource ranges.  I've booted it on amd64 but have not
tested it on i386.

--- //depot/vendor/freebsd/src/sys/dev/acpica/acpi_resource.c   2011-02-14 
20:10:17.0 
+++ //depot/projects/pci/sys/dev/acpica/acpi_resource.c 2011-04-16 
21:33:25.0 
@@ -139,332 +139,277 @@
INTR_POLARITY_HIGH : INTR_POLARITY_LOW);
 }
 
-/*
- * Fetch a device's resources and associate them with the device.
- *
- * Note that it might be nice to also locate ACPI-specific resource items, such
- * as GPE bits.
- *
- * We really need to split the resource-fetching code out from the
- * resource-parsing code, since we may want to use the parsing
- * code for _PRS someday.
- */
-ACPI_STATUS
-acpi_parse_resources(device_t dev, ACPI_HANDLE handle,
-struct acpi_parse_resource_set *set, void *arg)
+struct acpi_resource_context {
+struct acpi_parse_resource_set *set;
+device_t   dev;
+void   *context;
+};
+
+#ifdef ACPI_DEBUG_OUTPUT
+static const char *
+acpi_address_range_name(UINT8 ResourceType)
 {
-ACPI_BUFFERbuf;
-ACPI_RESOURCE  *res;
-char   *curr, *last;
-ACPI_STATUSstatus;
-void       *context;
+static char buf[16];
 
-ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
-
-/*
- * Special-case some devices that abuse _PRS/_CRS to mean
- * something other than "I consume this resource".
- *
- * XXX do we really need this?  It's only relevant once
- * we start always-allocating these resources, and even
- * then, the only special-cased device is likely to be
- * the PCI interrupt link.
- */
-
-/* Fetch the device's current resources. */
-buf.Length = ACPI_ALLOCATE_BUFFER;
-if (ACPI_FAILURE((status = AcpiGetCurrentResources(handle, &buf {
-   if (status != AE_NOT_FOUND && status != AE_TYPE)
-   printf("can't fetch resources for %s - %s\n",
-  acpi_name(handle), AcpiFormatException(status));
-   return_ACPI_STATUS (status);
+switch (ResourceType) {
+case ACPI_MEMORY_RANGE:
+   return ("Memory");
+case ACPI_IO_RANGE:
+   return ("IO");
+case ACPI_BUS_NUMBER_RANGE:
+   return ("Bus Number");
+default:
+   snprintf(buf, sizeof(buf), "type %u", ResourceType);
+   return (buf);
 }
-ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "%s - got %ld bytes of resources\n",
-acpi_name(handle), (long)buf.Length));
-set->set_init(dev, arg, &context);
+}
+#endif
+   
+static ACPI_STATUS
+acpi_parse_resource(ACPI_RESOURCE *res, void *context)
+{
+struct acpi_parse_resource_set *set;
+    struct acpi_resource_context *arc;
+UINT64 min, max, length, gran;
+const char *name;
+device_t dev;
 
-/* Iterate through the resources */
-curr = buf.Pointer;
-last = (char *)buf.Pointer + buf.Length;
-    while (curr < last) {
-   res = (ACPI_RESOURCE *)curr;
-   curr += res->Length;
+arc = context;
+dev = arc->dev;
+set = arc->set;
 
-   /* Handle the individual resource types */
-   switch(res->Type) {
-   case ACPI_RESOURCE_TYPE_END_TAG:
-   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "EndTag\n"));
-   curr = last;
+switch (res->Type) {
+case ACPI_RESOURCE_TYPE_END_TAG:
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "EndTag\n"));
+   break;
+case ACPI_RESOURCE_TYPE_FIXED_IO:
+   if (res->Data.FixedIo.AddressLength <= 0)
+   break;
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "FixedIo 0x%x/%d\n",
+   res->Data.FixedIo.Address, res->Data.FixedIo.AddressLength));
+   set->set_ioport(dev, arc->context, res->Data.FixedIo.Address,
+   res->Data.FixedIo.AddressLength);
+   break;
+case ACPI_RESOURCE_TYPE_IO:
+   if (res->Data.Io.AddressLength <= 0)
+   break;
+   if (res->Data.Io.Minimum == res->Data.Io.Maximum) {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Io 0x%x/%d\n",
+   res->Data.Io.Minimum, res->Data.Io.AddressLength));
+   set->set_ioport(dev, arc->context, res->Data.Io.Minimum,
+   res->Data.Io.AddressLength);
+   } else {
+   ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES, "Io 0x%x-0x%x/%d\n",
+   res->Data.Io.Minimum, res->Data.Io.Maximum,
+   res->Data.Io.AddressLength));
+   set->set_iorange(dev, arc->context, res->Data.Io.Minimum,
+   res->Data.Io.Maximum, res->Data.Io.Ad

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Context-Preserve/

2017-05-27 Thread Kent Fredric
commit: f21824968f04deb1f7b075f9e362a88015258966
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun May 28 00:24:06 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun May 28 00:24:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2182496

dev-perl/Context-Preserve: Cleanup old re bug #615516

Remove old versions affected by '.' removal from @INC

Bug: https://bugs.gentoo.org/615516
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../Context-Preserve-0.10.0-r1.ebuild  | 23 ------
 dev-perl/Context-Preserve/Manifest |  1 -
 2 files changed, 24 deletions(-)

diff --git a/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild 
b/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild
deleted file mode 100644
index ddbb6b0ca38..0000000
--- a/dev-perl/Context-Preserve/Context-Preserve-0.10.0-r1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=JROCKWAY
-MODULE_VERSION=0.01
-inherit perl-module
-
-DESCRIPTION="Return chained, modified values from subs, without losing context"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   test? (
-   dev-perl/Test-Exception
-   >=virtual/perl-Test-Simple-1.1.10
-   )"
-
-SRC_TEST="do"

diff --git a/dev-perl/Context-Preserve/Manifest 
b/dev-perl/Context-Preserve/Manifest
index 00d9f690b18..f927a23f7bd 100644
--- a/dev-perl/Context-Preserve/Manifest
+++ b/dev-perl/Context-Preserve/Manifest
@@ -1,2 +1 @@
-DIST Context-Preserve-0.01.tar.gz 13158 SHA256 
867c0ee574d1cc90aff019b547a7b78ba42ef879eef480f4c4764aae288d5a3f SHA512 
f579fdb935fb3d73375d1420db4f2357fae8a9feb350f5967f17dfe67074c02a5567180151fff6387324d995782a720e704cb0f5f5332623e88730117c3fe160
 WHIRLPOOL 
8927d16af4e209525ccb29d9296497620e6ea4691ee4b0009924637f0cf7e2af329ffec13f9e10fb161cf54c9186bd104465c0270b0e3af23d900e44fd3601fe
 DIST Context-Preserve-0.02.tar.gz 25305 SHA256 
ec1d3405e84a5404c0286bdc8f208dcfddecdb0bc25a771dfd07651771907262 SHA512 
e5c230e38430c6ea9b7ed75e075a12454262adf1883e5ab6ada4696099e2f246d0f9b613934b4197b0529e126ea083d12d9bbe4ece5cfb82a93f913b7d70b068
 WHIRLPOOL 
e79d6bd8395e6d9c5d51baceb53ee2de382f14b2303986bbc59f4925f551fc0dbd134854211ffe1393afada83af7462e8a40fecc275889de4b0d379220554546



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Context-Preserve/

2020-07-31 Thread Kent Fredric
commit: 7bda8493031352010c09506d630c5e92be0a4dfa
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Jul 31 12:25:27 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Jul 31 12:32:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bda8493

dev-perl/Context-Preserve: Cleanup old 0.20.0

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 .../Context-Preserve-0.20.0.ebuild | 29 ------
 dev-perl/Context-Preserve/Manifest |  1 -
 2 files changed, 30 deletions(-)

diff --git a/dev-perl/Context-Preserve/Context-Preserve-0.20.0.ebuild 
b/dev-perl/Context-Preserve/Context-Preserve-0.20.0.ebuild
deleted file mode 100644
index 8c377713ce0..000
--- a/dev-perl/Context-Preserve/Context-Preserve-0.20.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ETHER
-DIST_VERSION=0.02
-inherit perl-module
-
-DESCRIPTION="Return chained, modified values from subs, without losing context"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   virtual/perl-Carp
-   virtual/perl-Exporter
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   >=virtual/perl-CPAN-Meta-2.120.900
-   virtual/perl-File-Spec
-   dev-perl/Test-Exception
-   virtual/perl-Test-Simple
-   )
-"

diff --git a/dev-perl/Context-Preserve/Manifest 
b/dev-perl/Context-Preserve/Manifest
index 29faa0b79ba..bf14cb0fb78 100644
--- a/dev-perl/Context-Preserve/Manifest
+++ b/dev-perl/Context-Preserve/Manifest
@@ -1,2 +1 @@
-DIST Context-Preserve-0.02.tar.gz 25305 BLAKE2B 
6974a9a8827e67652e407dfb05099449bfd2ed8c672552235746dd13b1504799694390e537795946eb4fbdc703e5aee129b40128d35d0d9145fcfef56931d229
 SHA512 
e5c230e38430c6ea9b7ed75e075a12454262adf1883e5ab6ada4696099e2f246d0f9b613934b4197b0529e126ea083d12d9bbe4ece5cfb82a93f913b7d70b068
 DIST Context-Preserve-0.03.tar.gz 25915 BLAKE2B 
78866e1c0d20f12fd95da981d42f8de2405a9bbd092d5518c777d7897955b8823c8607f49469b556fcfa58dc48643ec50a394e7e3e938f5777f8b3c65602f21b
 SHA512 
a5f412d553ba2ded7302f594b920bd9c04021c5ec60e94939da097a0fa2de61a0b49dd864e3212eb9b3a7d5236295e1923452e81d56789ae6852c73ec3086cea



[gentoo-commits] gentoo-x86 commit in dev-texlive/texlive-context: ChangeLog texlive-context-2015.ebuild

2015-07-24 Thread Alexis Ballier (aballier)
aballier15/07/24 14:05:03

  Modified: ChangeLog texlive-context-2015.ebuild
  Log:
  update elog info to tell people to run mtxrun --generate, bug #64
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.82 dev-texlive/texlive-context/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.82&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?rev=1.82&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog   22 Jul 2015 19:37:41 -  1.81
+++ ChangeLog   24 Jul 2015 14:05:03 -  1.82
@@ -1,6 +1,10 @@
 # ChangeLog for dev-texlive/texlive-context
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.81 2015/07/22 19:37:41 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-texlive/texlive-context/ChangeLog,v 
1.82 2015/07/24 14:05:03 aballier Exp $
+
+  24 Jul 2015; Alexis Ballier 
+  texlive-context-2015.ebuild:
+  update elog info to tell people to run mtxrun --generate, bug #64
 
   22 Jul 2015; Anthony G. Basile 
   texlive-context-2014.ebuild:



1.2      dev-texlive/texlive-context/texlive-context-2015.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild?r1=1.1&r2=1.2

Index: texlive-context-2015.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- texlive-context-2015.ebuild 16 Jul 2015 09:13:29 -0000  1.1
+++ texlive-context-2015.ebuild 24 Jul 2015 14:05:03 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild,v
 1.1 2015/07/16 09:13:29 aballier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-texlive/texlive-context/texlive-context-2015.ebuild,v
 1.2 2015/07/24 14:05:03 aballier Exp $
 
 EAPI="5"
 
@@ -56,7 +56,7 @@
 TL_MODULE_INFORMATION="For using ConTeXt mkII simply use 'texexec' to generate
 your documents.
 If you plan to use mkIV and its 'context' command to generate your documents,
-you have to run 'luatools --generate' as normal user before first use.
+you have to run 'mtxrun --generate' as normal user before first use.
 
 More information and advanced options on:
 http://wiki.contextgarden.net/TeX_Live_2011";






  1   2   3   4   5   6   7   8   9   10   >