On Wed, 7 Aug 2019 at 11:07, Antonio Trande <anto.trande@gmail.com> wrote:
Hi all.

What's wrong?

$ fedpkg clone scons
$ pushd scons
$ fedpkg request-branch epel8
Could not execute request_branch: This package is already an EL package
and is built on all supported arches, therefore, it cannot be in EPEL.
If this is a mistake or you have an exception, please contact the
Release Engineering team.


That error means that RHEL-8 has that package src.rpm already in its set of shipped packages

[smooge@batcave01 latest]$ rpm -qip ./x86_64/RHEL-8-001/non_modular/python3-scons-3.0.1-8.el8.noarch.rpm
Name        : python3-scons
Version     : 3.0.1
Release     : 8.el8
Architecture: noarch
Install Date: (not installed)
Group       : Unspecified
Size        : 3816043
License     : MIT
Signature   : RSA/SHA256, 2018-12-15T01:03:42 UTC, Key ID 199e2f91fd431d51
Source RPM  : scons-3.0.1-8.el8.src.rpm
Build Date  : 2018-08-12T18:04:25 UTC
Build Host  : s390-015.build.eng.bos.redhat.com
Relocations : (not relocatable)
Packager    : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
Vendor      : Red Hat, Inc.
URL         : http://www.scons.org
Summary     : An Open Source software construction tool
Description :
SCons is an Open Source software construction tool--that is, a build
tool; an improved substitute for the classic Make utility; a better way
to build software. SCons is based on the design which won the Software
Carpentry build tool design competition in August 2000.
 
On 01/08/19 19:33, Stephen John Smoogen wrote:
>
> ## Developer request for branching multiple packages
>
> Branching is handled the same way as requesting a branch using `fedpkg
> request-branch`. A maintainer can request an epel8 branch using `fedpkg
> request-branch epel8` which will create a ticket in
> https://pagure.io/releng/fedora-scm-requests/issues and Release
> Engineering will process these requests.
>
> To branch multiple packages please use this or a variant of this script:
> ```
> #!/usr/bin/sh
> # Reminder to get an updated pagure token for releng tickets
> # Usage: epel-8.sh foo bar goo blah blech
> if [ $# -lt 1 ]
> then
>     echo "At least one package name should be provided"
> else
>     TMPDIR=`mktemp -d /tmp/epel8.XXXXXX`
>     pushd "$TMPDIR"
>     for pkg in "$@"
>     do
>         fedpkg clone "$pkg"
>         pushd "$pkg"
>         fedpkg request-branch epel8
>    fedpkg request-branch epel8-playground
>         popd
>     done
>     rm -rfv "$TMPDIR"
> fi
> ```
>
>
> Releng will then work through the tickets in the system which is adding
> branches to the PDC and src.fedoraproject.org
> <http://src.fedoraproject.org>.
>
>

--
---
Antonio Trande
Fedora Project
mailto 'sagitter at fedoraproject dot org'
GPG key: 0x6e0331dd1699e4d7
GPG key server: https://keys.openpgp.org/



--
Stephen J Smoogen.