GNU bug report logs -
#62201
[PATCH] gnu: Add payload-dumper.
Previous Next
Reported by: conses <contact <at> conses.eu>
Date: Wed, 15 Mar 2023 12:35:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 62201 in the body.
You can then email your comments to 62201 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#62201
; Package
guix-patches
.
(Wed, 15 Mar 2023 12:35:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
conses <contact <at> conses.eu>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 15 Mar 2023 12:35:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/android.scm (payload-dumper): New variable.
---
gnu/packages/android.scm | 53 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 881b75d763..d7a308775f 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -51,6 +51,7 @@ (define-module (gnu packages android)
#:use-module (gnu packages java)
#:use-module (gnu packages linux)
#:use-module (gnu packages pcre)
+ #:use-module (gnu packages protobuf)
#:use-module (gnu packages python)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-web)
@@ -982,6 +983,58 @@ (define-public git-repo
script that you can put anywhere in your path.")
(license license:asl2.0)))
+(define-public payload-dumper
+ (let ((commit "35134a28d641deda899c30aed57aace21bfd4a3c")
+ (revision "0"))
+ (package
+ (name "payload-dumper")
+ (version (git-version "0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/vm03/payload_dumper")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1sdq6dgva5yxz147bkv8xbf79pz60vwc33f0cmj9awgfbxha2b43"))))
+ (inputs
+ (list python-3 python-protobuf python-six python-bsdiff4))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:use-setuptools? #f
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'build)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (begin
+ (use-modules (guix build utils))
+ (let* ((python (string-append
+ #$(this-package-input "python")
+ "/bin"))
+ (bin (string-append #$output "/bin"))
+ (target (string-append bin "/payload_dumper"))
+ (version (python-version
+ #$(this-package-input "python")))
+ (pydir (string-append #$output "/lib/python"
+ version "/site-packages")))
+ (mkdir-p bin)
+ (copy-file (string-append #$source "/payload_dumper.py")
+ target)
+ (install-file "update_metadata_pb2.py" pydir)
+ (substitute* target
+ (("/usr/bin/env python") (which "python3")))
+ (chmod target #o555))))))))
+ (synopsis "Android OTA payload dumper")
+ (description "Script to extract the payload of incremental and full
+OTA's.")
+ (home-page "https://github.com/vm03/payload_dumper")
+ (license license:gpl3+))))
+
(define-public abootimg
(package
(name "abootimg")
--
2.39.1
--
Best regards,
conses
Information forwarded
to
guix-patches <at> gnu.org
:
bug#62201
; Package
guix-patches
.
(Tue, 13 Jun 2023 11:01:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 62201 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On 2023-03-15 13:34, conses wrote:
> * gnu/packages/android.scm (payload-dumper): New variable.
> ---
> gnu/packages/android.scm | 53 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 53 insertions(+)
>
> diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
> index 881b75d763..d7a308775f 100644
> --- a/gnu/packages/android.scm
> +++ b/gnu/packages/android.scm
> @@ -51,6 +51,7 @@ (define-module (gnu packages android)
> #:use-module (gnu packages java)
> #:use-module (gnu packages linux)
> #:use-module (gnu packages pcre)
> + #:use-module (gnu packages protobuf)
> #:use-module (gnu packages python)
> #:use-module (gnu packages python-crypto)
> #:use-module (gnu packages python-web)
> @@ -982,6 +983,58 @@ (define-public git-repo
> script that you can put anywhere in your path.")
> (license license:asl2.0)))
>
> +(define-public payload-dumper
> + (let ((commit "35134a28d641deda899c30aed57aace21bfd4a3c")
> + (revision "0"))
> + (package
> + (name "payload-dumper")
> + (version (git-version "0" revision commit))
> + (source
> + (origin
> + (method git-fetch)
> + (uri
> + (git-reference
> + (url "https://github.com/vm03/payload_dumper")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "1sdq6dgva5yxz147bkv8xbf79pz60vwc33f0cmj9awgfbxha2b43"))))
> + (inputs
> + (list python-3 python-protobuf python-six python-bsdiff4))
> + (build-system python-build-system)
> + (arguments
> + (list
> + #:use-setuptools? #f
> + #:tests? #f
> + #:phases
> + #~(modify-phases %standard-phases
> + (delete 'build)
> + (replace 'install
> + (lambda* (#:key outputs #:allow-other-keys)
> + (begin
> + (use-modules (guix build utils))
> + (let* ((python (string-append
> + #$(this-package-input "python")
> + "/bin"))
> + (bin (string-append #$output "/bin"))
> + (target (string-append bin "/payload_dumper"))
> + (version (python-version
> + #$(this-package-input "python")))
> + (pydir (string-append #$output "/lib/python"
> + version "/site-packages")))
> + (mkdir-p bin)
> + (copy-file (string-append #$source "/payload_dumper.py")
> + target)
> + (install-file "update_metadata_pb2.py" pydir)
> + (substitute* target
> + (("/usr/bin/env python") (which "python3")))
> + (chmod target #o555))))))))
> + (synopsis "Android OTA payload dumper")
> + (description "Script to extract the payload of incremental and full
> +OTA's.")
> + (home-page "https://github.com/vm03/payload_dumper")
> + (license license:gpl3+))))
> +
> (define-public abootimg
> (package
> (name "abootimg")
> --
> 2.39.1
Hi Miguel!
I can't find the license for this project, can you ask an author to
specify it, please?
--
Best regards,
Andrew Tropin
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#62201
; Package
guix-patches
.
(Wed, 28 Jun 2023 14:51:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 62201 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Andrew,
Thanks for having a look. I raised an issue on the repo, but
the maintainer told me he isn't the original author of the tool and thus
doesn't feel comfortable adding a license to it, see
<https://github.com/vm03/payload_dumper/issues/58>. How should we
proceed in this case?
--
Best regards,
Miguel Ángel Moreno
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#62201
; Package
guix-patches
.
(Thu, 29 Jun 2023 13:15:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 62201 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On 2023-06-28 09:51, Miguel Ángel Moreno wrote:
> Hi Andrew,
>
> Thanks for having a look. I raised an issue on the repo, but
> the maintainer told me he isn't the original author of the tool and thus
> doesn't feel comfortable adding a license to it, see
> <https://github.com/vm03/payload_dumper/issues/58>. How should we
> proceed in this case?
I would summon more advanced in this topic colleagues :)
CCed Ludo and Liliana.
--
Best regards,
Andrew Tropin
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#62201
; Package
guix-patches
.
(Thu, 29 Jun 2023 17:00:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 62201 <at> debbugs.gnu.org (full text, mbox):
Am Donnerstag, dem 29.06.2023 um 17:14 +0400 schrieb Andrew Tropin:
> On 2023-06-28 09:51, Miguel Ángel Moreno wrote:
>
> > Hi Andrew,
> >
> > Thanks for having a look. I raised an issue on the repo, but
> > the maintainer told me he isn't the original author of the tool and
> > thus doesn't feel comfortable adding a license to it, see
> > <https://github.com/vm03/payload_dumper/issues/58>. How should we
> > proceed in this case?
>
> I would summon more advanced in this topic colleagues :)
>
> CCed Ludo and Liliana.
No license, no original source? No, thanks.
For more background, see [1,2].
Cheers
[1] https://www.gnu.org/licenses/license-list.html#NoLicense
[2] https://www.gnu.org/licenses/license-list.html.en#NoLicense
Information forwarded
to
guix-patches <at> gnu.org
:
bug#62201
; Package
guix-patches
.
(Fri, 30 Jun 2023 08:55:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 62201 <at> debbugs.gnu.org (full text, mbox):
On 2023-06-29 18:59, Liliana Marie Prikler wrote:
> Am Donnerstag, dem 29.06.2023 um 17:14 +0400 schrieb Andrew Tropin:
>> On 2023-06-28 09:51, Miguel Ángel Moreno wrote:
>>
>> > Hi Andrew,
>> >
>> > Thanks for having a look. I raised an issue on the repo, but
>> > the maintainer told me he isn't the original author of the tool and
>> > thus doesn't feel comfortable adding a license to it, see
>> > <https://github.com/vm03/payload_dumper/issues/58>. How should we
>> > proceed in this case?
>>
>> I would summon more advanced in this topic colleagues :)
>>
>> CCed Ludo and Liliana.
> No license, no original source? No, thanks.
> For more background, see [1,2].
>
> Cheers
>
> [1] https://www.gnu.org/licenses/license-list.html#NoLicense
> [2] https://www.gnu.org/licenses/license-list.html.en#NoLicense
Thanks for the heads up. Unless Ludo or someone else has some pointers
on what could be done to tackle this scenario, I'll try to package this
elsewhere.
--
Best regards,
Miguel Ángel Moreno
Reply sent
to
Ludovic Courtès <ludo <at> gnu.org>
:
You have taken responsibility.
(Mon, 10 Jul 2023 21:30:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
conses <contact <at> conses.eu>
:
bug acknowledged by developer.
(Mon, 10 Jul 2023 21:30:02 GMT)
Full text and
rfc822 format available.
Message #25 received at 62201-done <at> debbugs.gnu.org (full text, mbox):
Hi,
Miguel Ángel Moreno <mail <at> migalmoreno.com> skribis:
> On 2023-06-29 18:59, Liliana Marie Prikler wrote:
>
>> Am Donnerstag, dem 29.06.2023 um 17:14 +0400 schrieb Andrew Tropin:
>>> On 2023-06-28 09:51, Miguel Ángel Moreno wrote:
>>>
>>> > Hi Andrew,
>>> >
>>> > Thanks for having a look. I raised an issue on the repo, but
>>> > the maintainer told me he isn't the original author of the tool and
>>> > thus doesn't feel comfortable adding a license to it, see
>>> > <https://github.com/vm03/payload_dumper/issues/58>. How should we
>>> > proceed in this case?
>>>
>>> I would summon more advanced in this topic colleagues :)
>>>
>>> CCed Ludo and Liliana.
>> No license, no original source? No, thanks.
>> For more background, see [1,2].
>>
>> Cheers
>>
>> [1] https://www.gnu.org/licenses/license-list.html#NoLicense
>> [2] https://www.gnu.org/licenses/license-list.html.en#NoLicense
>
> Thanks for the heads up. Unless Ludo or someone else has some pointers
> on what could be done to tackle this scenario, I'll try to package this
> elsewhere.
Sorry for the delay! If there’s no license, it’s indeed not
even distributable, so definitely not suitable for Guix.
Ludo’.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 08 Aug 2023 11:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 276 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.