public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
       [not found] <1522384205.3f04d4d93d00afa5242a0c9459487c9eea7e9a6f.zmedico@gentoo>
@ 2018-03-30  5:20 ` Michał Górny
  2018-03-30  7:07   ` Zac Medico
  0 siblings, 1 reply; 7+ messages in thread
From: Michał Górny @ 2018-03-30  5:20 UTC (permalink / raw)
  To: gentoo-dev, Zac Medico, gentoo-commits

Dnia 30 marca 2018 06:30:14 CEST, Zac Medico <zmedico@gentoo.org> napisał(a):
>commit:     3f04d4d93d00afa5242a0c9459487c9eea7e9a6f
>Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>AuthorDate: Fri Mar 30 04:18:05 2018 +0000
>Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>CommitDate: Fri Mar 30 04:30:05 2018 +0000
>URL:       
>https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f04d4d9
>
>app-portage/repoman: version bump to 2.3.8
>
>This release adds support for plugin module systems.
>
>See: https://wiki.gentoo.org/wiki/Project:Portage/Repoman-Module-specs
>Package-Manager: Portage-2.3.27_p1, Repoman-2.3.8

Please revert this immediately. This was never finished, had open concerns that were never addressed and the added Gentoo repository files were never subject to proper RFC/review that was requested.

>
> app-portage/repoman/Manifest             |  1 +
>app-portage/repoman/repoman-2.3.8.ebuild | 61
>++++++++++++++++++++++++++++++++
> 2 files changed, 62 insertions(+)
>
>diff --git a/app-portage/repoman/Manifest
>b/app-portage/repoman/Manifest
>index 52f25ab072a..0056cf0e140 100644
>--- a/app-portage/repoman/Manifest
>+++ b/app-portage/repoman/Manifest
>@@ -4,3 +4,4 @@ DIST repoman-2.3.3.tar.bz2 78045 BLAKE2B
>5c2e770af3ba0c93ce24c710fb32e8b9d937ad8
>DIST repoman-2.3.4.tar.bz2 78764 BLAKE2B
>0fb6bd75463fe10dd41ab1fcdfd0857341dbe973e796f2f97e636df2c29dd633d7199eb22b4605b34d6e56624ac5a75f4783ff7119c421e2303aacf7adae4877
>SHA512
>1a434eea6361cc06ba3c27ccd31aa02875af1a577860490f8de666b0160370f09d1c46cea95d577163845e12c5672486b176c0009c32e735e16752d67bf4d96c
>DIST repoman-2.3.6.tar.bz2 78961 BLAKE2B
>c11953ced4d6bcd5e6e6a5b2dacb8802446f3acfd1842854b33fa8c0a64fa636a0b278b4fd3010b7070a7e2f00ae841ea331925ca20175e7c7e571082195d3d1
>SHA512
>490078d4621073e448d037373617911093bc4c3262961c4da00f201f880069c0b70c019abd86c15954ff0c547b0ea49434ee97cd972c2baff82f7cfed1a987b3
>DIST repoman-2.3.7.tar.bz2 80514 BLAKE2B
>9342b5be35523f1eb597c94ad33425fd9f1bc81cf7b48c0194d96d2afc2cc27962e9cfbea14492c5e16856c79ab6429988201b269ef0444c17c6d91c9c11feaa
>SHA512
>9caeb06cfe55e38566154923b785c1e3053722b50d7423241950b73c810781d111848e64815001abe218e6073a96ca462debdc99acc05123987cf4d4be0a0420
>+DIST repoman-2.3.8.tar.bz2 83747 BLAKE2B
>7afe3cdf211dc4311ad72d1100c981e7ce4bfcb3b6a0b3d5cf60db89a03adbe1610e42804a00aea9f7258ebc340d6b1d77e0a633b37cd17dc967993bf3600ebe
>SHA512
>0d0241a6a1ea83d8816981a2d5061cd7cf3abcbd6b8a63be8ecb96572efce3df778402b9b860116e63e8eff6a76619eda86a8b032979dd329259f346abe9e7cc
>
>diff --git a/app-portage/repoman/repoman-2.3.8.ebuild
>b/app-portage/repoman/repoman-2.3.8.ebuild
>new file mode 100644
>index 00000000000..fa83b9131a3
>--- /dev/null
>+++ b/app-portage/repoman/repoman-2.3.8.ebuild
>@@ -0,0 +1,61 @@
>+# Copyright 1999-2018 Gentoo Foundation
>+# Distributed under the terms of the GNU General Public License v2
>+
>+EAPI=6
>+
>+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
>+PYTHON_REQ_USE='bzip2(+)'
>+
>+inherit distutils-r1
>+
>+if [[ ${PV} == *9999 ]]; then
>+	inherit git-r3
>+	EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git"
>+	S="${WORKDIR}/${P}/repoman"
>+else
>+	SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2"
>+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64
>~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos
>~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris
>~x64-solaris ~x86-solaris"
>+fi
>+
>+DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"
>+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"
>+
>+LICENSE="GPL-2"
>+SLOT="0"
>+IUSE=""
>+
>+RDEPEND="
>+	>=sys-apps/portage-2.3.25[${PYTHON_USEDEP}]
>+	>=dev-python/lxml-3.6.0[${PYTHON_USEDEP}]
>+	dev-python/pyyaml[${PYTHON_USEDEP}]
>+"
>+DEPEND="${RDEPEND}"
>+
>+python_test() {
>+	esetup.py test
>+}
>+
>+python_install() {
>+	# Install sbin scripts to bindir for python-exec linking
>+	# they will be relocated in pkg_preinst()
>+	distutils-r1_python_install \
>+		--system-prefix="${EPREFIX}/usr" \
>+		--bindir="$(python_get_scriptdir)" \
>+		--docdir="${EPREFIX}/usr/share/doc/${PF}" \
>+		--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
>+		--sbindir="$(python_get_scriptdir)" \
>+		--sysconfdir="${EPREFIX}/etc" \
>+		"${@}"
>+}
>+
>+pkg_postinst() {
>+	einfo ""
>+	einfo "This release of repoman is from the new portage/repoman split"
>+	einfo "release code base."
>+	einfo "This new repoman code base is still being developed.  So its
>API's"
>+	einfo "are not to be considered stable and are subject to change."
>+	einfo "The code released has been tested and considered ready for
>use."
>+	einfo "This however does not guarantee it to be completely bug free."
>+	einfo "Please report any bugs you may encounter."
>+	einfo ""
>+}


-- 
Best regards,
Michał Górny (by phone)


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

* [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
  2018-03-30  5:20 ` [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/ Michał Górny
@ 2018-03-30  7:07   ` Zac Medico
  2018-03-30  8:42     ` Michał Górny
  0 siblings, 1 reply; 7+ messages in thread
From: Zac Medico @ 2018-03-30  7:07 UTC (permalink / raw)
  To: Michał Górny, gentoo-dev, Zac Medico, gentoo-commits


[-- Attachment #1.1: Type: text/plain, Size: 1067 bytes --]

On 03/29/2018 10:20 PM, Michał Górny wrote:
> Dnia 30 marca 2018 06:30:14 CEST, Zac Medico <zmedico@gentoo.org> napisał(a):
>> commit:     3f04d4d93d00afa5242a0c9459487c9eea7e9a6f
>> Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>> AuthorDate: Fri Mar 30 04:18:05 2018 +0000
>> Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>> CommitDate: Fri Mar 30 04:30:05 2018 +0000
>> URL:       
>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f04d4d9
>>
>> app-portage/repoman: version bump to 2.3.8
>>
>> This release adds support for plugin module systems.
>>
>> See: https://wiki.gentoo.org/wiki/Project:Portage/Repoman-Module-specs
>> Package-Manager: Portage-2.3.27_p1, Repoman-2.3.8
> 
> Please revert this immediately. This was never finished, had open concerns that were never addressed and the added Gentoo repository files were never subject to proper RFC/review that was requested.

I've disabled this feature by default, and hidden it behind an
--experimental-repository-modules=<y|n> option.
-- 
Thanks,
Zac


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 224 bytes --]

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

* Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
  2018-03-30  7:07   ` Zac Medico
@ 2018-03-30  8:42     ` Michał Górny
  2018-03-30  9:01       ` Zac Medico
  0 siblings, 1 reply; 7+ messages in thread
From: Michał Górny @ 2018-03-30  8:42 UTC (permalink / raw)
  To: gentoo-dev, Zac Medico, gentoo-commits

Dnia 30 marca 2018 09:07:03 CEST, Zac Medico <zmedico@gentoo.org> napisał(a):
>On 03/29/2018 10:20 PM, Michał Górny wrote:
>> Dnia 30 marca 2018 06:30:14 CEST, Zac Medico <zmedico@gentoo.org>
>napisał(a):
>>> commit:     3f04d4d93d00afa5242a0c9459487c9eea7e9a6f
>>> Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>> AuthorDate: Fri Mar 30 04:18:05 2018 +0000
>>> Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>> CommitDate: Fri Mar 30 04:30:05 2018 +0000
>>> URL:       
>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f04d4d9
>>>
>>> app-portage/repoman: version bump to 2.3.8
>>>
>>> This release adds support for plugin module systems.
>>>
>>> See:
>https://wiki.gentoo.org/wiki/Project:Portage/Repoman-Module-specs
>>> Package-Manager: Portage-2.3.27_p1, Repoman-2.3.8
>> 
>> Please revert this immediately. This was never finished, had open
>concerns that were never addressed and the added Gentoo repository
>files were never subject to proper RFC/review that was requested.
>
>I've disabled this feature by default, and hidden it behind an
>--experimental-repository-modules=<y|n> option.

That isn't going to work for me. Given that the yml files were added to repository without prior discussion, and contrary to the promises given by Portage team such discussion hasn't been started before merging the changes to master, I'd like to request removing all those files and not reintroducing them until Portage team specifies their format and brings it to open discussion.


-- 
Best regards,
Michał Górny (by phone)


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

* Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
  2018-03-30  8:42     ` Michał Górny
@ 2018-03-30  9:01       ` Zac Medico
  2018-03-30 10:42         ` Michał Górny
  0 siblings, 1 reply; 7+ messages in thread
From: Zac Medico @ 2018-03-30  9:01 UTC (permalink / raw)
  To: Michał Górny, gentoo-dev, Zac Medico, gentoo-commits


[-- Attachment #1.1: Type: text/plain, Size: 1846 bytes --]

On 03/30/2018 01:42 AM, Michał Górny wrote:
> Dnia 30 marca 2018 09:07:03 CEST, Zac Medico <zmedico@gentoo.org> napisał(a):
>> On 03/29/2018 10:20 PM, Michał Górny wrote:
>>> Dnia 30 marca 2018 06:30:14 CEST, Zac Medico <zmedico@gentoo.org>
>> napisał(a):
>>>> commit:     3f04d4d93d00afa5242a0c9459487c9eea7e9a6f
>>>> Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>>> AuthorDate: Fri Mar 30 04:18:05 2018 +0000
>>>> Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>>> CommitDate: Fri Mar 30 04:30:05 2018 +0000
>>>> URL:       
>>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f04d4d9
>>>>
>>>> app-portage/repoman: version bump to 2.3.8
>>>>
>>>> This release adds support for plugin module systems.
>>>>
>>>> See:
>> https://wiki.gentoo.org/wiki/Project:Portage/Repoman-Module-specs
>>>> Package-Manager: Portage-2.3.27_p1, Repoman-2.3.8
>>>
>>> Please revert this immediately. This was never finished, had open
>> concerns that were never addressed and the added Gentoo repository
>> files were never subject to proper RFC/review that was requested.
>>
>> I've disabled this feature by default, and hidden it behind an
>> --experimental-repository-modules=<y|n> option.
> 
> That isn't going to work for me. Given that the yml files were added to repository without prior discussion, and contrary to the promises given by Portage team such discussion hasn't been started before merging the changes to master, I'd like to request removing all those files and not reintroducing them until Portage team specifies their format and brings it to open discussion.

Yeah I agree that the format really needs a proper specification. I've
gone ahead and removed them:

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62e76a1e0202dcf55faa2b0fd9b21a1cd184dc8
-- 
Thanks,
Zac


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

* Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
  2018-03-30  9:01       ` Zac Medico
@ 2018-03-30 10:42         ` Michał Górny
  2018-03-30 15:16           ` William Hubbs
  0 siblings, 1 reply; 7+ messages in thread
From: Michał Górny @ 2018-03-30 10:42 UTC (permalink / raw)
  To: gentoo-dev, Zac Medico, gentoo-commits

Dnia 30 marca 2018 11:01:33 CEST, Zac Medico <zmedico@gentoo.org> napisał(a):
>On 03/30/2018 01:42 AM, Michał Górny wrote:
>> Dnia 30 marca 2018 09:07:03 CEST, Zac Medico <zmedico@gentoo.org>
>napisał(a):
>>> On 03/29/2018 10:20 PM, Michał Górny wrote:
>>>> Dnia 30 marca 2018 06:30:14 CEST, Zac Medico <zmedico@gentoo.org>
>>> napisał(a):
>>>>> commit:     3f04d4d93d00afa5242a0c9459487c9eea7e9a6f
>>>>> Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>>>> AuthorDate: Fri Mar 30 04:18:05 2018 +0000
>>>>> Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>>>> CommitDate: Fri Mar 30 04:30:05 2018 +0000
>>>>> URL:       
>>>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f04d4d9
>>>>>
>>>>> app-portage/repoman: version bump to 2.3.8
>>>>>
>>>>> This release adds support for plugin module systems.
>>>>>
>>>>> See:
>>> https://wiki.gentoo.org/wiki/Project:Portage/Repoman-Module-specs
>>>>> Package-Manager: Portage-2.3.27_p1, Repoman-2.3.8
>>>>
>>>> Please revert this immediately. This was never finished, had open
>>> concerns that were never addressed and the added Gentoo repository
>>> files were never subject to proper RFC/review that was requested.
>>>
>>> I've disabled this feature by default, and hidden it behind an
>>> --experimental-repository-modules=<y|n> option.
>> 
>> That isn't going to work for me. Given that the yml files were added
>to repository without prior discussion, and contrary to the promises
>given by Portage team such discussion hasn't been started before
>merging the changes to master, I'd like to request removing all those
>files and not reintroducing them until Portage team specifies their
>format and brings it to open discussion.
>
>Yeah I agree that the format really needs a proper specification. I've
>gone ahead and removed them:
>
>https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62e76a1e0202dcf55faa2b0fd9b21a1cd184dc8

Thanks. I hope this will let us start with a clean slate towards making a good format.


-- 
Best regards,
Michał Górny (by phone)


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

* Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
  2018-03-30 10:42         ` Michał Górny
@ 2018-03-30 15:16           ` William Hubbs
  2018-03-30 16:47             ` Zac Medico
  0 siblings, 1 reply; 7+ messages in thread
From: William Hubbs @ 2018-03-30 15:16 UTC (permalink / raw)
  To: gentoo-dev

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

On Fri, Mar 30, 2018 at 12:42:09PM +0200, Michał Górny wrote:
> Dnia 30 marca 2018 11:01:33 CEST, Zac Medico <zmedico@gentoo.org> napisał(a):
> >On 03/30/2018 01:42 AM, Michał Górny wrote:
> >> Dnia 30 marca 2018 09:07:03 CEST, Zac Medico <zmedico@gentoo.org>
> >napisał(a):
> >>> On 03/29/2018 10:20 PM, Michał Górny wrote:
> >>>> Dnia 30 marca 2018 06:30:14 CEST, Zac Medico <zmedico@gentoo.org>
> >>> napisał(a):
> >>>>> commit:     3f04d4d93d00afa5242a0c9459487c9eea7e9a6f
> >>>>> Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
> >>>>> AuthorDate: Fri Mar 30 04:18:05 2018 +0000
> >>>>> Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
> >>>>> CommitDate: Fri Mar 30 04:30:05 2018 +0000
> >>>>> URL:       
> >>>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f04d4d9
> >>>>>
> >>>>> app-portage/repoman: version bump to 2.3.8
> >>>>>
> >>>>> This release adds support for plugin module systems.
> >>>>>
> >>>>> See:
> >>> https://wiki.gentoo.org/wiki/Project:Portage/Repoman-Module-specs
> >>>>> Package-Manager: Portage-2.3.27_p1, Repoman-2.3.8
> >>>>
> >>>> Please revert this immediately. This was never finished, had open
> >>> concerns that were never addressed and the added Gentoo repository
> >>> files were never subject to proper RFC/review that was requested.
> >>>
> >>> I've disabled this feature by default, and hidden it behind an
> >>> --experimental-repository-modules=<y|n> option.
> >> 
> >> That isn't going to work for me. Given that the yml files were added
> >to repository without prior discussion, and contrary to the promises
> >given by Portage team such discussion hasn't been started before
> >merging the changes to master, I'd like to request removing all those
> >files and not reintroducing them until Portage team specifies their
> >format and brings it to open discussion.
> >
> >Yeah I agree that the format really needs a proper specification. I've
> >gone ahead and removed them:
> >
> >https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62e76a1e0202dcf55faa2b0fd9b21a1cd184dc8
> 
> Thanks. I hope this will let us start with a clean slate towards making a good format.

If there is some distro policy that this repoman enhancement violated,
that's fine and I would like to know about it, but I'm not aware of it.

If there isn't, as far as I know, there is no reason for it to be
blocked.

Thanks,

William


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

* Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
  2018-03-30 15:16           ` William Hubbs
@ 2018-03-30 16:47             ` Zac Medico
  0 siblings, 0 replies; 7+ messages in thread
From: Zac Medico @ 2018-03-30 16:47 UTC (permalink / raw)
  To: gentoo-dev


[-- Attachment #1.1: Type: text/plain, Size: 2824 bytes --]

On 03/30/2018 08:16 AM, William Hubbs wrote:
> On Fri, Mar 30, 2018 at 12:42:09PM +0200, Michał Górny wrote:
>> Dnia 30 marca 2018 11:01:33 CEST, Zac Medico <zmedico@gentoo.org> napisał(a):
>>> On 03/30/2018 01:42 AM, Michał Górny wrote:
>>>> Dnia 30 marca 2018 09:07:03 CEST, Zac Medico <zmedico@gentoo.org>
>>> napisał(a):
>>>>> On 03/29/2018 10:20 PM, Michał Górny wrote:
>>>>>> Dnia 30 marca 2018 06:30:14 CEST, Zac Medico <zmedico@gentoo.org>
>>>>> napisał(a):
>>>>>>> commit:     3f04d4d93d00afa5242a0c9459487c9eea7e9a6f
>>>>>>> Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>>>>>> AuthorDate: Fri Mar 30 04:18:05 2018 +0000
>>>>>>> Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
>>>>>>> CommitDate: Fri Mar 30 04:30:05 2018 +0000
>>>>>>> URL:       
>>>>>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f04d4d9
>>>>>>>
>>>>>>> app-portage/repoman: version bump to 2.3.8
>>>>>>>
>>>>>>> This release adds support for plugin module systems.
>>>>>>>
>>>>>>> See:
>>>>> https://wiki.gentoo.org/wiki/Project:Portage/Repoman-Module-specs
>>>>>>> Package-Manager: Portage-2.3.27_p1, Repoman-2.3.8
>>>>>>
>>>>>> Please revert this immediately. This was never finished, had open
>>>>> concerns that were never addressed and the added Gentoo repository
>>>>> files were never subject to proper RFC/review that was requested.
>>>>>
>>>>> I've disabled this feature by default, and hidden it behind an
>>>>> --experimental-repository-modules=<y|n> option.
>>>>
>>>> That isn't going to work for me. Given that the yml files were added
>>> to repository without prior discussion, and contrary to the promises
>>> given by Portage team such discussion hasn't been started before
>>> merging the changes to master, I'd like to request removing all those
>>> files and not reintroducing them until Portage team specifies their
>>> format and brings it to open discussion.
>>>
>>> Yeah I agree that the format really needs a proper specification. I've
>>> gone ahead and removed them:
>>>
>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62e76a1e0202dcf55faa2b0fd9b21a1cd184dc8
>>
>> Thanks. I hope this will let us start with a clean slate towards making a good format.
> 
> If there is some distro policy that this repoman enhancement violated,
> that's fine and I would like to know about it, but I'm not aware of it.

The format is definitely not fully baked, and will likely change, so I
think it's better to wait for it to mature some more.

> If there isn't, as far as I know, there is no reason for it to be
> blocked.

This is not really blocking anything, people can go ahead and use the
repoman --experimental-repository-modules=y option, even add it to
REPOMAN_DEFAULT_OPTS, and it will just work.
-- 
Thanks,
Zac


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

end of thread, other threads:[~2018-03-30 16:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1522384205.3f04d4d93d00afa5242a0c9459487c9eea7e9a6f.zmedico@gentoo>
2018-03-30  5:20 ` [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/ Michał Górny
2018-03-30  7:07   ` Zac Medico
2018-03-30  8:42     ` Michał Górny
2018-03-30  9:01       ` Zac Medico
2018-03-30 10:42         ` Michał Górny
2018-03-30 15:16           ` William Hubbs
2018-03-30 16:47             ` Zac Medico

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox