Re: GitPython update blocked by rpkg - how can this be resolved?

2016-11-11 Thread Barry
Barry > On 10 Nov 2016, at 15:21, Chenxiong Qi wrote: > > > >> On 11/10/2016 09:42 PM, Barry Scott wrote: >> In this bug >> >>https://bugzilla.redhat.com/show_bug.cgi?id=1360797 >> >> It is implied that rpkg has an unspecified problem w

Re: GitPython update blocked by rpkg - how can this be resolved?

2016-11-11 Thread Barry
> On 10 Nov 2016, at 14:07, Josh Boyer wrote: > >> On Thu, Nov 10, 2016 at 8:42 AM, Barry Scott wrote: >> In this bug >> >>https://bugzilla.redhat.com/show_bug.cgi?id=1360797 >> >> It is implied that rpkg has an unspecified problem with Gi

Re: GitPython update blocked by rpkg - how can this be resolved?

2016-11-15 Thread Barry
> On 14 Nov 2016, at 13:25, Peter Robinson wrote: > > On Mon, Nov 14, 2016 at 1:23 PM, Peter Robinson wrote: >>>>> On 11/10/2016 09:42 PM, Barry Scott wrote: >>>>> In this bug >>>>> >>>>> https://bugzilla.redhat.co

Re: However

2019-12-09 Thread Barry
I would use git blame to find out the reason. Barry > On 9 Dec 2019, at 13:18, Martha Simons wrote: > > (I know that this question might be more reasonable on a kernel list, > but a while back I posted the question twice and got no answers.) > > The acct struct is defined i

Re: default bash history (non)preservation

2023-04-13 Thread Barry
sed. Am I misunderstanding? For lots of reasons it became recommended that all gui terminal sessions should be login sessions. One reason being that .bash_profile may not be run in a sub process. Barry > > I did find something that might work in that case, at this link. > > htt

Re: default bash history (non)preservation

2023-04-13 Thread Barry
> On 13 Apr 2023, at 16:13, Barry wrote: > >  > >>> On 12 Apr 2023, at 16:40, stan via devel >>> wrote: >>> >>> On Wed, 12 Apr 2023 10:39:44 +0200 >>> Vít Ondruch wrote: >>> >>> Dne 11. 04. 23 v 18:02 s

Fedora magazine site down

2023-04-21 Thread Barry
 I see wordpress error page for https://fedoramagazine.org/There has been a critical error on this website.Learn more about troubleshooting WordPress.Barry___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@

Re: F39 Proposal: Make Toolbx a release-blocking deliverable and have release-blocking test criteria (System-Wide Change)

2023-05-08 Thread Barry
gt; * Name: [[User:Rishi|Debarshi Ray]], [[User:Sumantrom|Sumantro Mukherjee]] > * Email: debars...@redhat.com, sumuk...@redhat.com > > > > == Detailed Description == > Currently, there is no formal requirement for > [https://containertoolbx.org/ Toolbx] to be usable when a n

Re: more distinct default bash prompt?

2023-05-22 Thread Barry
able in both dark or light terminals. > > What do people think overall? Are there other pros and cons of a color prompt? > Any better ideas or direction? So long as you do this in such a way that if i set PS1 you do not override my config. please do not set PROMPT_COMMAND either. Barry >

Re: more distinct default bash prompt?

2023-05-25 Thread Barry
mode is in used or not means default colour choices can make text difficult to read. Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fe

Re: Deprecation of the aspell package

2023-05-29 Thread Barry
separately, and talk to it via pipes. > Hopefully, it's easy for the application to do that without leaking other > file descriptors. I found the hunspell C++ API usable. See https://github.com/barry-scott/BarrysEmacs/blob/master/Editor/Source/

Re: Two Years of Fedora Releases

2023-06-23 Thread Barry
incremental engineering is also less resource intensive for devs and qa. One reason is because you have access to people that remember why things have changed and can help with upgrade issues. Barry ___ devel mailing list -- devel@lists.fedorapr

Re: Orphaned packages looking for new maintainers

2022-12-19 Thread Barry
Why is pysvn on the list? I the pysvn maintainer and i am active. I am also the upstream maintainer. Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct

Re: F42 Change Proposal: Enable Drm Panic (system-wide)

2024-07-15 Thread Barry
does not get a chance to journal the logs. We see this when supporting users on https://discussion.fedoraproject.org/ regularly. I think you are saying that if drm panic is enabled we cannot see logs that would allow debugging an issue? Barry -- __

Re: F42 Change Proposal: Enable Drm Panic (system-wide)

2024-07-15 Thread Barry
> drm_panic. > It's not ideal, but that should at least allows to see those logs. And if the kernel hangs without panic then we have a blank screen to stare at right? This is going to make Fedora very hard to support and push users to another distro with

Re: F42 Change Proposal: Enable Drm Panic (system-wide)

2024-07-16 Thread Barry
last kernel log might be > unrelated. Not our experience on https://discussion.fedoraproject.org/ as I said. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fe

Re: F42 Change Proposal: Enable Drm Panic (system-wide)

2024-07-16 Thread Barry
your own, and > report if there are other corner cases to fix. Let us know when you have this test kernel to play with. Also would like a way to trigger a panic to test the bsod. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To

Re: F42 Change Proposal: Enable Drm Panic (system-wide)

2024-07-16 Thread Barry
> On 16 Jul 2024, at 12:49, Jocelyn Falempe wrote: > > i915, amdgpu, and nvidia are not yet supported, so you need to blacklist > them, in order to use simpledrm, if you want to see the panic screen. Let me know when amdgpu or i915 are supported then I can

Re: F42 Change Proposal: Enable Drm Panic (system-wide)

2024-07-16 Thread Barry
> On 16 Jul 2024, at 22:19, Michel Lind wrote: > > Server does not install Plymouth either AIUI; compare I have not installed server for a few releases, but have always dns removed plymouth* as one of my first config changes. Barry --

Re: Incorrect code or Python regression?

2024-07-21 Thread Barry
singleton. So “is” fails but when == coerces to int it is True. You would need to print out both values to see if this is the case. I would have coded == in this case. I am curious where you read that “is” is recommended? Barry -- ___ devel mai

Re: Incorrect code or Python regression?

2024-07-21 Thread Barry
with “is” is a side effect of cpython’s implementation which make small int’s seem to be singletons. If this is correct then the test is wrong and must use ==. I will test tomorrow. Barry -- ___ devel mailing list -- devel@lists.fedoraproje

Re: Incorrect code or Python regression?

2024-07-22 Thread Barry
> On 22 Jul 2024, at 08:14, Miro Hrončok wrote: > > They have the same repr, type, int value. They have different IDs. I think that shows the “is” use is a bug and the fix is to use ==. Barry -- ___ devel mailing list

Re: Incorrect code or Python regression?

2024-07-22 Thread Barry
> On 22 Jul 2024, at 16:35, Paul Howarth wrote: > > On Sun, 21 Jul 2024 21:48:55 +0100 > Barry wrote: > >>>> On 21 Jul 2024, at 10:22, Paul Howarth wrote: >>> >>> Hence the check is: >>> >>> except UnsupportedAlgorith

Re: [SPDX] packages that are "not valid neither as Callaway nor as SPDX"

2024-09-08 Thread Barry
ed issues like this in the past, rpmspec needs the rpm macro dependencies to be installed. I assume if you install all the fedora rpm macro packages this will your script to run over all spec files. Barry -- ___ devel mailing list -- devel@lists.fedora

Re: more distinct default bash prompt?

2023-07-08 Thread Barry
> On 8 Jul 2023, at 19:56, Kushal Das wrote: > > White background is a good choice for accessibility iirc. Isn’t is contrast that matters not any particular background? Personal I find white background is not a good accessibility choice for m

Re: Mounting USB Storage devices with "sync" option ?

2024-02-02 Thread Barry
hat a reference to caches within the drive and not the buffer cache in the kernel? It is the kernel buffer cache flushing that eject/umount triggers getting written out. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe

Re: Heads-up / for discussion: dnf not working with 1G of RAM or less

2022-08-29 Thread Barry
pdate the rest. So it’s only 1GiB systems that are effected. I also have a 1GiB digital ocean VM that happens to not see this issue. I suspect it may be certain packages that make this more likely to fail. Barry > > After some consideration I don't think it makes sense to take thi

Re: F38 proposal: Reproducible builds: Clamp build mtimes to $SOURCE_DATE_EPOCH (System-Wide Change proposal)

2022-11-11 Thread Barry
hangelog` entry because the `%source_date_epoch_from_changelog` > macro is set to `1` Change log has the date of a change but no time. What time of day and timezone is used? 00:00:00 UTC? Barry > . We will also set the > `%clamp_mtime_to_source_date_epoch` macro to `1`. As a result, when >

Re: Fedora Linux 40 Beta Released

2024-03-26 Thread Barry
Why is the version of this announcement missing all the details here? https://discussion.fedoraproject.org/t/fedora-linux-40-beta-released/109684 Barry > On 26 Mar 2024, at 14:21, Samyak Jain wrote: > > Fedora Linux 40 Beta Released > ---

Re: Fedora Linux 40 Beta Released

2024-03-27 Thread Barry
> On 26 Mar 2024, at 15:09, Kevin Fenzi wrote: > > I think it was being edited when you looked? > > It seems to have the details now? Or is there something missing? All there now. Original visible was just one line. Barry -- ___ dev

Re: xz backdoor

2024-03-29 Thread Barry
Has this shipped on f40 beta? Barry > On 29 Mar 2024, at 18:08, Richard W.M. Jones wrote: > >  >> On Fri, Mar 29, 2024 at 07:00:37PM +0100, Kevin Kofler via devel wrote: >> Hi, >> >> wow: https://www.openwall.com/lists/oss-security/2024/ >> >>

Re: Help Needed for a tricky bug for Fedora Linux 40

2024-04-09 Thread Barry
On 8 Apr 2024, at 23:31, Aoife Moloney wrote:There is a bug in the Fedora Blocker Bugs app that has a lot of us stumped on how to resolve it, so I wanted to highlight it in the hopes that someone might know how to either fix it or maybe even verify if a few of the ideas that have been suggested wo

Re: RC 1.14 fails in VirtualBox, has problems in UTM

2024-04-22 Thread Barry
> On 19 Apr 2024, at 16:57, Adam Williamson wrote: > > On VMWare it plays but is distorted, > don't know why. Maybe a known issue with vmware, I have been told. Something to do with needing to reclock the audio stream. Barry --

Re: F41 Change Proposal: Anaconda as native Wayland application (System Wide)

2024-05-31 Thread Barry
> On 31 May 2024, at 09:36, Aoife Moloney wrote: > > Anaconda is required to migrate to Wayland native application to drop > dependencies from the installation ISO images which are deprecated. Do you expect this to be an issue for users with nvidia

Re: F41 Change Proposal: Anaconda as native Wayland application (System Wide)

2024-05-31 Thread Barry
ps set maybe a problem. Lots of users end up using the rpmfusion nvidia drivers to get a working DE. See the almost daily nvidia support we handle on fedora discuss. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an ema

Re: dnf transaction with a command line?

2024-07-01 Thread Barry
> On 1 Jul 2024, at 11:50, Neal Gompa wrote: > > Yes, when a non command-line action occurs, it is blank. Notably, when > PackageKit or DNF Daemon are used. Thanks for confirmation. The OP found a journal log from PackageKit for the time of the rem

Re: future of dual booting Windows and Fedora, redux

2022-07-29 Thread Barry
does not work at all which forces use of windows video conferencing tools. Windows keeps interferring with the multi monitor layout. I am waiting of work to approve use of fedora without windows. Barry > ___ > devel mailing list -- devel@list

Re: Mass spec change: Replace Python 3 version globs (3.?) with macros to support 3.10

2020-10-29 Thread Barry
rivial reason as packagers that assumed, wrongly, that version can only have single digits. Barry > > -- > José Abílio > ___ > devel mailing list -- devel@lists.fedoraproject.org > To unsubscribe send an email to devel-le...@lists

Re: mock, %{buildroot}, fc35

2022-02-03 Thread Barry
> >> (needless to say, pass the same `-r` and `--uniqueext` options as the >> original build. you can see what the default chroot is by looking at >> what /etc/mock/default.cfg symlinks to). I usually add find %{buildroot} In the %install section so that the

Re: dnf install removes /etc/systemd/system/multi-user.wants/myservice.target symlink

2022-02-07 Thread Barry
tarting the services they install :-) Yes myservice and ods-prx are the same. Yes preset is nice providing defaults for the admin. But this is for production system and it must be symlinked. Are you saying that there is code in dnf/rpm that is undoing the symlinking becuase the preset is not in

Re: Problem with SSL in Fedora 36

2022-03-13 Thread Barry
; https://fedoraproject.org/wiki/Changes/OpenSSL3.0 > It’s not in use yet (last I heard). I suggest that you use the openssl s_client command to connect to the ip and port to see what happens. And ask openssl it’s version I am expecting you

Re: Problem with SSL in Fedora 36

2022-03-13 Thread Barry
> On 13 Mar 2022, at 13:58, Barry wrote: > >  > > >>> On 13 Mar 2022, at 09:44, José Abílio Matos wrote: >>> >>  >> In one, and just one, of my email accounts the upgrade to F36 failed with >> this: >> >> The und

Re: No daemon-reload or restart with %systemd_postun_with_restart

2022-03-24 Thread Barry
t; %systemd_preun testsystemd.service >>> %postun >>> %systemd_postun_with_restart testsystemd.service >>> %files >>> /lib/systemd/system/* >> >> I couldn't reproduce it, but I also made some changes to use more macros. I >> added

Re: F37 proposal: Python: Add -P to default shebangs (System-Wide Change proposal)

2022-05-11 Thread Barry
use of python. There is an expectation that if I have a.py and b.py in the current directory then this must work. In a.py: import b Then I can just do: $ python a.py Barry > > Be well, > --Robbie > ___ > devel mailing list -- devel@lists.

Re: f41 dnf builddeps fails to parse systemd.spec

2024-10-08 Thread Barry
> On 8 Oct 2024, at 21:08, Miroslav Suchý wrote: > > Dne 08. 10. 24 v 7:09 odp. Barry Scott napsal(a): >> Now I have systemd .src.rpm installed next I needed the build deps >> so that I can do a rpmbuild. > > Are you sure you want to install it on your workst

Re: Applications with AppData and not visible in the software center

2024-10-15 Thread Barry
ng such a fix for my Qt based projects. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-cond

Re: f41 rpm -i ~/systemd-256.6-1.fc41.src.rpm fails

2024-10-05 Thread Barry
o so i have to do this dance). I have never heard of ima plugin and did not install it deliberately. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora C

Re: Moving away from the term "karma" in Bodhi

2024-11-13 Thread Barry
> On 11 Nov 2024, at 08:16, Zbigniew Jędrzejewski-Szmek > wrote: > > That's a great idea. If we are to change, please do 'kudos' rather > 'rating'/'feedback'/'evaluation'. I wonder is Go and No-Go would work as a replacement?

Re: dracut image missing after installing 6.12.5 kernel, where to report it?

2024-12-28 Thread Barry
me > installing 6.12.4 and 6.12.5 kernels. > I have downgraded dkms to 3.0.13-2.fc41 and initramfs was generated as > expected. Looks like a bug exists already too: > https://bugzilla.redhat.com/show_bug.cgi?id=282 This is affecting a lot of users as evidenced by re

Re: Python distro deps for builds using venv

2025-02-11 Thread Barry
the --system-site-packages option that may fix things for you. You may be hitting an upstream that is not thinking about distro packaging issues. Barry > > Peter > > [1] https://src.fedoraproject.org/rpms/libgpiod > [2] https://koji.fedoraproject.org/koji/taskinfo?taskID=129138

Re: f42: hostname vs. sendmail (vs. systemd depsolver) bug?

2025-04-20 Thread Barry
that are stored *externally* to the machine(s). In which case I would check that the sendmail service does not start until after the network online target. Which I assume will then see the fqdn from dhcp. Barry -- ___ devel mailing list -- deve

Re: f42: hostname vs. sendmail (vs. systemd depsolver) bug?

2025-04-20 Thread Barry
t; retrying the `hostname` command. I wonder if this is user error? On all my servers I set the FQDN using hostnamctl. hostnamctl hostname foo.example.com --static I always see the correct FQDN, and dhcp will allocate the ip address. Barry -- _

Re: Fedora 42 breaks new windows installations

2025-02-17 Thread Barry
ented way to completely reset every setting in the uefi bios. This removed all uefi variables and put all settings to their defaults. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedor

Re: Custom postgresl-16.9 build does not properly start

2025-07-20 Thread Barry
> On 20 Jul 2025, at 10:46, Michael J. Baars > wrote: > > Help would be appreciated :) This is mailing list for developing fedora, not intended for support questions. Support is usually done on https://discussion.fedoraproject

Yum/Bugzilla feature requests

2011-09-02 Thread Barry Fishman
o close my bug report by merging it into the earlier bug report. I think such an ability by the original submitter would help the people working on fixing bug, (and bug submitters,) by prefiltering the individual bug reports to which they needed to look at. -- Barry Fishman -- devel mailing

Re: Yum/Bugzilla feature requests

2011-09-03 Thread Barry Fishman
On 2011-09-03 09:35:21 EDT, Jorge Gallegos wrote: > On Sep 2, 2011 11:19 AM, "Barry Fishman" wrote: >> I found no way in bugzilla to close my bug report by merging it into >> the earlier bug report. I think such an ability by the original >> submitter would help t

Re: How to debug live CD image?

2020-05-30 Thread Barry Scott
> On 24 May 2020, at 13:21, Vitaly Zaitsev via devel > wrote: > > On 24.05.2020 11:47, Barry Scott wrote: >> I have tested with both the Workstation image and >> the KDE spin image. Both get stuck at the same place. > > Can you check latest respins[1]? > &g

Re: How to debug live CD image?

2020-05-31 Thread Barry Scott
> On 30 May 2020, at 14:12, Vitaly Zaitsev via devel > wrote: > > On 30.05.2020 15:04, Barry Scott wrote: >> I use the KDE respin and it hangs at the same place. >> I waited over an hour to see if will continue. >> >> How can I help debug this? > &g

It seems that gdb cannot find debuginfo on f32

2020-06-07 Thread Barry Scott
or /usr/bin/python3.8... (No debugging symbols found in .gnu_debugdata for /usr/bin/python3.8) Missing separate debuginfos, use: dnf debuginfo-install python3-3.8.3-1.fc32.x86_64 (gdb) Am I doing something wrong? Should I raise a BZ? Barry ___

Re: It seems that gdb cannot find debuginfo on f32

2020-06-14 Thread Barry Scott
> On 14 Jun 2020, at 08:48, Jan Kratochvil wrote: > > On Sun, 07 Jun 2020 17:22:33 +0200, Barry Scott wrote: >> python3-debuginfo.x86_64 3.8.3-1.fc32 >> >> @updates-debuginfo > ... >> Reading symbols f

Self Introduction: Barry Scott

2015-11-02 Thread Barry Scott
would like to see Workbench packaged for Fedora and I am willing to be the Fedora Packager for Workbench. Barry -- devel mailing list devel@lists.fedoraproject.org https://admin.fedoraproject.org/mailman/listinfo/devel Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

ntp-4.2.6p5-11.fc19.src.rpm does not rpmbuild...

2013-10-17 Thread Barry Scott
ist? "preserve-case") (begin (define optname-from "_^") (define optname-to "--") ) ) (if (exist? "option-info") (string-append "\n.PP\n" (get "option-info") "\n") ) = Is this b

Re: ntp-4.2.6p5-11.fc19.src.rpm does not rpmbuild...

2013-10-18 Thread Barry Scott
On Thu 17 Oct 2013 17:56:57 Barry Scott wrote: > I need to patch ntp for my uses. But I find that the src rpm will not build > on F19. > > > cd . && env > PATH="/home/bscott/rpmbuild/BUILD/ntp-4.2.6p5/ntpd:/home/bscott/bin:/usr/loc > al/bin:/bin:/usr/bin:/usr/l

Re: ntp-4.2.6p5-11.fc19.src.rpm does not rpmbuild...

2013-11-05 Thread Barry Scott
On Fri 18 Oct 2013 17:59:31 Miroslav Lichvar wrote: > On Fri, Oct 18, 2013 at 02:14:40PM +0100, Barry Scott wrote: > > On Thu 17 Oct 2013 17:56:57 Barry Scott wrote: > > > I need to patch ntp for my uses. But I find that the src rpm will not > > > build > > &

GitPython update blocked by rpkg - how can this be resolved?

2016-11-10 Thread Barry Scott
ython, preventing user of GitPython getting the bugs fixes and (as far as I am aware) backwards compatible improvements. Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org

What is force erasing python 2 packages like moin?

2020-05-10 Thread Barry Scott
around this. Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedora

Re: What is force erasing python 2 packages like moin?

2020-05-10 Thread Barry Scott
> On 10 May 2020, at 17:45, Igor Raits wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA512 > > On Sun, 2020-05-10 at 17:31 +0100, Barry Scott wrote: >> I know that python2 is a dead language, but I have a need to use some >> python 2 code >> on o

user services run during system-upgrade

2020-05-24 Thread Barry Scott
e who should look at this, but feel that it should not be ignored. Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/

How to debug live CD image?

2020-05-24 Thread Barry Scott
t reported it before. I have tested with both the Workstation image and the KDE spin image. Both get stuck at the same place. How do I go about debugging what is going on? Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscri

Re: How to debug live CD image?

2020-05-27 Thread Barry Scott
> On 24 May 2020, at 21:55, Paul Dufresne via devel > wrote: > > Le 20-05-24 à 05 h 47, Barry Scott a écrit : >> ... >> But I cannot boot a live CD image as it gets stuck >> in "Monitoring of LVM2 mirrors, ...". This is not a >> new problem I hav

Re: Qt 5.14 update plans?

2019-12-14 Thread Barry Scott
builds. Christian Tismer has been on the python dev list looking for help to fix a ref count leak in PySide with python3.8. Not sure if that is resolved yet. Barry > > Thanks, > Richard > ___ > devel mailing list -- devel@lists.f

How do I add bohdi revelant tag?

2019-12-24 Thread Barry Scott
-testing', 'f23-updates-testing', 'f26-updates-testing', 'f27-updates-testing', 'f30-updates-testing', 'f28-updates-testing', 'f31-updates-testing', 'f32-updates-testing', 'f29-updates-testing', 'epel8-modular-upda

fedpkg update - Could not generate update request for f31

2019-07-21 Thread Barry Scott
generate update request: Cannot find release associated with build: python-pycxx-7.1.3-1.fc31, tags: ['f31'] I guess there is something I need to understand/fix to get this to update. Barry ___ devel mailing list -- devel@lists.fedoraproj

Re: RFC: Python minimization in Fedora

2020-01-18 Thread Barry Scott
ns and cache those results as well. I'll failed to track down the discussion on python dev. I recall wanting to reduce the file size by storing line number data for traceback outside of the .pyc. Barry ___ devel mailing list -- devel@lists.fedoraproject

Re: Retiring pysvn (was Re: Orphaning pysvn (and non-responsive maintainer: ravenoak))

2019-02-15 Thread Barry Scott
about this. I'm the author of pysvn. I'd be willing to maintain the fedora package of pysvn. What do you need me to do? I am an active user and developer on Fedora and I create and maintain a numbers of RPMs in my work and personal projects. Barry > > ReviewBoard (optiona

Re: Retiring pysvn (was Re: Orphaning pysvn (and non-responsive maintainer: ravenoak))

2019-02-19 Thread Barry Scott
> On 18 Feb 2019, at 18:08, Kevin Fenzi wrote: > > On 2/15/19 5:56 AM, Barry Scott wrote: >> >> >>> On 13 Feb 2019, at 13:52, Stephen Gallagher wrote: >>> >>> On Tue, Feb 5, 2019 at 10:01 AM Stephen Gallagher >>> wrote: >>

Re: Retiring pysvn (was Re: Orphaning pysvn (and non-responsive maintainer: ravenoak))

2019-02-19 Thread Barry Scott
Sorry this was supposed to go only to Kevin. Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List

Re: Retiring pysvn (was Re: Orphaning pysvn (and non-responsive maintainer: ravenoak))

2019-02-25 Thread Barry Scott
> On 25 Feb 2019, at 13:07, Stephen Gallagher wrote: > > On Tue, Feb 19, 2019 at 1:59 PM Barry Scott wrote: > >> Just heard about this. I'm the author of pysvn. >> >> I'd be willing to maintain the fedora package of >> pysvn. What do you

Self introduction: Barry Scott

2019-03-04 Thread Barry Scott
first task will be to update pysvn to its 1.9.9 release but that requires pycxx to be updated to its 7.1.2 release to pick up a needed fix. I have a review up for the changes to python-pycxx at https://bugzilla.redhat.com/show_bug.cgi?id=1685102 Barry ___

Re: Broken modules on rawhide

2019-03-04 Thread Barry Scott
I see the same messages and its from a mock build. How does this relate to upgrades? Barry > On 27 Feb 2019, at 11:30, Lukas Ruzicka wrote: > > Why people disable the repo, I do not know. I might have a slight notion. > > However, you cannot upgrade from Fedora 29 to Fedora

Re: [HEADS UP] Fedora 39 Python 3.12 rebuilds to start in a side tag this week

2023-06-18 Thread Barry Scott
ils. For pysvn fix a SEGV when the process exits. Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-o

Re: [HEADS UP] Fedora 39 Python 3.12 rebuilds to start in a side tag this week

2023-06-18 Thread Barry Scott
> On 18 Jun 2023, at 17:41, Miro Hrončok wrote: > > On 18. 06. 23 15:17, Barry Scott wrote: >>> On 17 Jun 2023, at 10:50, Miro Hrončok wrote: >>> >>> Please avoid further rawhide builds of them until the side tag is merged. >> I have been fixing

Re: [HEADS UP] Fedora 39 Python 3.12 rebuilds to start in a side tag this week

2023-06-18 Thread Barry Scott
> On 18 Jun 2023, at 17:41, Miro Hrončok wrote: > > On 18. 06. 23 15:17, Barry Scott wrote: >>> On 17 Jun 2023, at 10:50, Miro Hrončok wrote: >>> >>> Please avoid further rawhide builds of them until the side tag is merged. >> I have been fixing

Re: Orphaned packages looking for new maintainers

2022-12-19 Thread Barry Scott
> On 19 Dec 2022, at 17:40, Ben Cotton wrote: > > On Mon, Dec 19, 2022 at 12:36 PM Barry wrote: >> >> Why is pysvn on the list? I the pysvn maintainer and i am active. >> I am also the upstream maintainer. > > The "main admin" is

Re: F39 proposal: Replace DNF with DNF5 (System-Wide Change proposal)

2022-12-20 Thread Barry Scott
What is the confusion that you are trying to avoid? The only issue that I recall from earlier in the thread is that dnf version 5 is not feature complete enough to replace dnf version 4. Is there any database that is corrupted if dnf v4 and dnf v5 commands are mixed on a system? Barry __

Re: SPDX Statistics - Flock edition

2023-08-06 Thread Barry Scott
o terminal defined for 'B' at line 1 col 1 BSD ^ Expecting: {'__ANON_79', 'SWL', '__ANON_91', '__ANON_128', 'TTWL', '__ANON_8', '__ANON_253', 'LATEX2E', '__ANON_104', '__ANON_

FAS 2FA recovery keys?

2023-09-12 Thread Barry Scott
I have been updating my FAS account security. When I setup 2FA I was not offer any recovery keys. In the event that I lose FreeOTP on my phone how do I recover? Barry ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email

Re: FAS 2FA recovery keys?

2023-09-12 Thread Barry Scott
> On 12 Sep 2023, at 10:32, Michael J Gruber wrote: > > Am Di., 12. Sept. 2023 um 11:22 Uhr schrieb Barry Scott > : >> >> I have been updating my FAS account security. >> When I setup 2FA I was not offer any recovery keys. > > You can r

Re: F40 Change Proposal: Optimized Binaries for the AMD64 Architecture (System-Wide)

2023-12-28 Thread Barry Scott
mlink the "right" version of a program/library from the micro architecture dir into /usr/bin and /usr/lib maybe? Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject

Where to add new ssh key to my FAS account?

2024-01-10 Thread Barry Scott
I have been changing from SSH RSA key to using ed25519 based keys. I cannot recall, or track down docs on where to upload my new ssh key to for my FAS account. Can you point me in the right direction please? Barry -- ___ devel mailing list -- devel

Re: fedora-distro-aliases - The easiest way to get numbers of active Fedora releases

2024-01-17 Thread Barry Scott
eleases in. Thanks for this tool! Now I'm off to update my tools to use this. > > The package is already in Fedora, give it a shot, And its called python3-fedora-distro-aliases Barry > Jakub > > > -- > ___

Re: Mounting USB Storage devices with "sync" option ?

2024-02-02 Thread Barry Scott
ieve, is not a common occurrence any more. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-con

Re: Mounting USB Storage devices with "sync" option ?

2024-02-02 Thread Barry Scott
date on this stuff. What I understand is that the drive will be told via the appropriate SCSI(?) command that it must not reorder the writes. Failure to implement that command means the drive will not have WHQL from Microsoft. Without WHQL its very hard to sell a drive in the market p

Re: Login issues to lists.* and src.*? Any outages?

2024-02-24 Thread Barry Scott
https://discussion.fedoraproject.org When I click to login and try to use my FAS ID I end up on Here https://id.fedoraproject.org/login/pam with the error: Gateway Timeout The gateway did not receive a timely response from the upstream server or application. But I can and did l

Re: dmesg restricted to root in Rawhide

2024-02-28 Thread Barry Scott
> On 28 Feb 2024, at 10:24, Karel Zak wrote: > > You can restore the original behavior by using: > ># sysctl kernel.dmesg_restrict=0 > > However, be aware of the security consequences ;-) Given I can get the same information from journalctl -k what is th

Re: Donate 1 minute of your time to test upgrades from F39 to F40

2024-03-07 Thread Barry Scott
27;--skip-broken' to skip uninstallable packages) Fedora Server as router - Intel CPU - No problems. Fedora Server as router - RaspberryPi - No problems. Fedora Server as file server/imapl server/prometheus - Intel CPU - No problems Fedora KODI media player - Intel CPU

Why install rsyslog by default?

2022-08-25 Thread Barry Scott
I just found that rsyslog is installed and by default creating legacy log files in /var/log like messages and secure. Now that journald has been in Fedora for so long this is useful default to install rsyslog? Barry ___ devel mailing list -- devel

Re: Why install rsyslog by default?

2022-08-25 Thread Barry Scott
> On 25 Aug 2022, at 16:05, Robert Marcano via devel > wrote: > > On 8/25/22 11:02 AM, Barry Scott wrote: >> I just found that rsyslog is installed and by default creating legacy >> log files in /var/log like messages and secure. >> Now that journald has been

Re: bad error on console / shell ... any idea ! ?

2024-03-30 Thread Barry Scott
ssemble_comp_words_by_ref: command not found > terminate called after throwing an instance of 'std::invalid_argument' > what(): stoi I hear that this is a known issue with dnf5 at the moment. Just to check, you are aware that dnf5 is still being developed? Barry -- ___

Re: Guidance on individual packages requiring x86_64-v2 baseline ?

2024-06-13 Thread Barry Scott
this called an x64-64 micro-architecture? Armed with a spec it might be possible to search on ark.intel.com <http://ark.intel.com/>. Barry -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists

  1   2   >