All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python3-pykickstart: 3.22 -> 3.26
@ 2020-07-09  7:54 kai
  2020-07-12 18:16 ` [oe] " Trevor Gamblin
  0 siblings, 1 reply; 2+ messages in thread
From: kai @ 2020-07-09  7:54 UTC (permalink / raw)
  To: openembedded-devel

From: Kai Kang <kai.kang@windriver.com>

Update python3-pykickstart from 3.22 to 3.26.

* Update context of 0001-support-authentication-for-kickstart.patch

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 .../0001-support-authentication-for-kickstart.patch    | 10 +++++-----
 ...pykickstart_3.22.bb => python3-pykickstart_3.26.bb} |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)
 rename meta-python/recipes-extended/python-pykickstart/{python3-pykickstart_3.22.bb => python3-pykickstart_3.26.bb} (94%)

diff --git a/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch b/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch
index e7533f476..0e64ce420 100644
--- a/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch
+++ b/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch
@@ -32,10 +32,10 @@ index bf08ac5..aada7aa 100644
  And some warning classes:
  
      KickstartWarning - A generic warning class.
-@@ -131,3 +134,17 @@ class KickstartDeprecationWarning(KickstartParseWarning, DeprecationWarning):
+@@ -125,3 +128,17 @@ class KickstartDeprecationWarning(KickstartParseWarning, DeprecationWarning):
+     """A class for warnings occurring during parsing related to using deprecated
         commands and options.
      """
-     pass
 +
 +class KickstartAuthError(KickstartError):
 +    """An exception for errors relating to authentication failed while
@@ -43,7 +43,7 @@ index bf08ac5..aada7aa 100644
 +    """
 +    def __init__(self, msg):
 +        """Create a new KickstartAuthError exception instance with the
-+           descriptive message val.  val should be the return value of
++           descriptive message val. val should be the return value of
 +           formatErrorMsg.
 +        """
 +        KickstartError.__init__(self, msg)
@@ -125,7 +125,7 @@ diff --git a/pykickstart/parser.py b/pykickstart/parser.py
 index d8880eb..22d14cb 100644
 --- a/pykickstart/parser.py
 +++ b/pykickstart/parser.py
-@@ -787,7 +787,7 @@ class KickstartParser(object):
+@@ -801,7 +801,7 @@ class KickstartParser(object):
          i = PutBackIterator(s.splitlines(True) + [""])
          self._stateMachine(i)
  
@@ -134,7 +134,7 @@ index d8880eb..22d14cb 100644
          """Process a kickstart file, given by the filename f."""
          if reset:
              self._reset()
-@@ -808,7 +808,7 @@ class KickstartParser(object):
+@@ -822,7 +822,7 @@ class KickstartParser(object):
          self.currentdir[self._includeDepth] = cd
  
          try:
diff --git a/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.22.bb b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.26.bb
similarity index 94%
rename from meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.22.bb
rename to meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.26.bb
index 041abd3e8..7aeb5d6c9 100644
--- a/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.22.bb
+++ b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.26.bb
@@ -18,7 +18,7 @@ SRC_URI = "git://github.com/rhinstaller/pykickstart.git;protocol=https;branch=ma
            file://0003-comment-out-sections-shutdown-and-environment-in-gen.patch \
            file://0004-load.py-retry-to-invoke-request-with-timeout.patch \
            "
-SRCREV = "674c17b1e231f56a0d8a5ced4a204cdbc4c1edf3"
+SRCREV = "4c93e84c8798da511da1c05f1912d2f908f8f85f"
 
 UPSTREAM_CHECK_GITTAGREGEX = "r(?P<pver>\d+(\.\d+)+(-\d+)*)"
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [oe] [meta-python][PATCH] python3-pykickstart: 3.22 -> 3.26
  2020-07-09  7:54 [meta-python][PATCH] python3-pykickstart: 3.22 -> 3.26 kai
@ 2020-07-12 18:16 ` Trevor Gamblin
  0 siblings, 0 replies; 2+ messages in thread
From: Trevor Gamblin @ 2020-07-12 18:16 UTC (permalink / raw)
  To: kai, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 4027 bytes --]


On 7/9/20 3:54 AM, kai wrote:
> From: Kai Kang <kai.kang@windriver.com>
>
> Update python3-pykickstart from 3.22 to 3.26.
>
> * Update context of 0001-support-authentication-for-kickstart.patch
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../0001-support-authentication-for-kickstart.patch    | 10 +++++-----
>   ...pykickstart_3.22.bb => python3-pykickstart_3.26.bb} |  2 +-
>   2 files changed, 6 insertions(+), 6 deletions(-)
>   rename meta-python/recipes-extended/python-pykickstart/{python3-pykickstart_3.22.bb => python3-pykickstart_3.26.bb} (94%)
>
> diff --git a/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch b/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch
> index e7533f476..0e64ce420 100644
> --- a/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch
> +++ b/meta-python/recipes-extended/python-pykickstart/files/0001-support-authentication-for-kickstart.patch
> @@ -32,10 +32,10 @@ index bf08ac5..aada7aa 100644
>    And some warning classes:
>    
>        KickstartWarning - A generic warning class.
> -@@ -131,3 +134,17 @@ class KickstartDeprecationWarning(KickstartParseWarning, DeprecationWarning):
> +@@ -125,3 +128,17 @@ class KickstartDeprecationWarning(KickstartParseWarning, DeprecationWarning):
> +     """A class for warnings occurring during parsing related to using deprecated
>           commands and options.
>        """
> -     pass
>   +
>   +class KickstartAuthError(KickstartError):
>   +    """An exception for errors relating to authentication failed while
> @@ -43,7 +43,7 @@ index bf08ac5..aada7aa 100644
>   +    """
>   +    def __init__(self, msg):
>   +        """Create a new KickstartAuthError exception instance with the
> -+           descriptive message val.  val should be the return value of
> ++           descriptive message val. val should be the return value of
>   +           formatErrorMsg.
>   +        """
>   +        KickstartError.__init__(self, msg)
> @@ -125,7 +125,7 @@ diff --git a/pykickstart/parser.py b/pykickstart/parser.py
>   index d8880eb..22d14cb 100644
>   --- a/pykickstart/parser.py
>   +++ b/pykickstart/parser.py
> -@@ -787,7 +787,7 @@ class KickstartParser(object):
> +@@ -801,7 +801,7 @@ class KickstartParser(object):
>            i = PutBackIterator(s.splitlines(True) + [""])
>            self._stateMachine(i)
>    
> @@ -134,7 +134,7 @@ index d8880eb..22d14cb 100644
>            """Process a kickstart file, given by the filename f."""
>            if reset:
>                self._reset()
> -@@ -808,7 +808,7 @@ class KickstartParser(object):
> +@@ -822,7 +822,7 @@ class KickstartParser(object):
>            self.currentdir[self._includeDepth] = cd
>    
>            try:
> diff --git a/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.22.bb b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.26.bb
> similarity index 94%
> rename from meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.22.bb
> rename to meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.26.bb
> index 041abd3e8..7aeb5d6c9 100644
> --- a/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.22.bb
> +++ b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_3.26.bb
> @@ -18,7 +18,7 @@ SRC_URI = "git://github.com/rhinstaller/pykickstart.git;protocol=https;branch=ma
>              file://0003-comment-out-sections-shutdown-and-environment-in-gen.patch \
>              file://0004-load.py-retry-to-invoke-request-with-timeout.patch \
>              "
> -SRCREV = "674c17b1e231f56a0d8a5ced4a204cdbc4c1edf3"
> +SRCREV = "4c93e84c8798da511da1c05f1912d2f908f8f85f"
>   
>   UPSTREAM_CHECK_GITTAGREGEX = "r(?P<pver>\d+(\.\d+)+(-\d+)*)"
>   
>
> 

[-- Attachment #2: Type: text/html, Size: 5439 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-07-12 18:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-09  7:54 [meta-python][PATCH] python3-pykickstart: 3.22 -> 3.26 kai
2020-07-12 18:16 ` [oe] " Trevor Gamblin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.