1124266
%global intro %{expand:
1124266
This package exists only to obsolete other packages which need to be removed
1124266
from the distribution. Packages are listed here when they become uninstallable
1124266
and must be removed to allow upgrades to proceed cleanly, or when there is some
1124266
other strong reason to uninstall the package from user systems. The package
1124266
being retired (and potentially becoming unavailable in future releases of
1124266
Fedora) is not a reason to include it here, as long as it doesn't cause upgrade
1124266
problems.
1124266
1124266
Note that this package is not installable, but obsoletes other packages by being
1124266
available in the repository.}
1124266
1124266
# Provenpackagers are welcome to modify this package, but please don't
1124266
# obsolete packages unless there's a good reason, as described above.
1124266
# A bugzilla ticket or a link to package retirement commit should be
1124266
# always included.
1124266
1124266
# In particular, when a *subpackage* is removed, but not other
1124266
# subpackages built from the same source, it is usually better to add
1124266
# the Obsoletes to some other sibling subpackage built from the same
1124266
# source package.
1124266
1124266
# Please remember to add all of the necessary information. See below the
1124266
# Source0: line for a description of the format. It is important that
a158a4c
# everything be included; yanking packages from an end-user system is "serious
a158a4c
# business" and should not be done lightly or without making everything as
a158a4c
# clear as possible.
a158a4c
8da748e
Name:       fedora-obsolete-packages
f76112a
# Please keep the version equal to the targeted Fedora release
4701afc
Version:    41
0ddd56f
# The dist number is the version here, it is intentionally not repeated in the release
0ddd56f
%global dist %nil
1100256
Release:    %autorelease
8da748e
Summary:    A package to obsolete retired packages
8da748e
8da748e
# This package has no actual content; there is nothing to license.
eace735
License:    LicenseRef-Fedora-Public-Domain
b13fde5
URL:        https://docs.fedoraproject.org/en-US/packaging-guidelines/#renaming-or-replacing-existing-packages
8da748e
BuildArch:  noarch
8da748e
f76112a
Source0:    README
f76112a
11d8175
# ===============================================================================
11d8175
# Skip down below these convenience macros
11d8175
%define obsolete_ticket() %{lua:
11d8175
    local ticket = rpm.expand('%1')
11d8175
11d8175
    -- May need to declare the master structure
11d8175
    if type(obs) == 'nil' then
11d8175
        obs = {}
11d8175
    end
11d8175
11d8175
    if ticket == '%1' then
11d8175
        rpm.expand('%{error:No ticket provided to obsolete_ticket}')
11d8175
    end
11d8175
11d8175
    if ticket == 'Ishouldfileaticket' then
11d8175
        ticket = nil
11d8175
    end
11d8175
11d8175
    -- Declare a new set of obsoletes
11d8175
    local index = #obs+1
11d8175
    obs[index] = {}
11d8175
    obs[index].ticket = ticket
11d8175
    obs[index].list = {}
11d8175
}
11d8175
11d8175
%define obsolete() %{lua:
11d8175
    local pkg = rpm.expand('%1')
11d8175
    local ver = rpm.expand('%2')
517e481
    local pkg_
517e481
    local ver_
517e481
    local i
517e481
    local j
11d8175
11d8175
    if pkg == '%1' then
11d8175
        rpm.expand('%{error:No package name provided to obsolete}')
11d8175
    end
11d8175
    if ver == '%2' then
11d8175
        rpm.expand('%{error:No version provided to obsolete}')
11d8175
    end
11d8175
11d8175
    if not string.find(ver, '-') then
11d8175
        rpm.expand('%{error:You must provide a version-release, not just a version.}')
11d8175
    end
11d8175
517e481
    print('Obsoletes: ' .. pkg .. ' < ' .. ver)
517e481
517e481
    -- Check if the package wasn't already obsoleted
517e481
    for i = 1,#obs do
517e481
        for j = 1,#obs[i].list do
517e481
            pkg_, ver_ = table.unpack(obs[i].list[j])
517e481
            if pkg == pkg_ then
517e481
                rpm.expand('%{error:' .. pkg ..' obsoleted multiple times (' .. ver_ .. ' and ' .. ver ..').}')
517e481
            end
517e481
        end
517e481
    end
11d8175
11d8175
    -- Append this obsolete to the last set of obsoletes in the list
11d8175
    local list = obs[#obs].list
517e481
    list[#list+1] = {pkg, ver}
11d8175
}
11d8175
11d8175
%define list_obsoletes %{lua:
11d8175
    local i
11d8175
    local j
11d8175
    for i = 1,#obs do
11d8175
        for j = 1,#obs[i].list do
517e481
            pkg, ver = table.unpack(obs[i].list[j])
517e481
            print('  ' .. pkg .. ' < ' .. ver .. '\\n')
11d8175
        end
11d8175
        if obs[i].ticket == nil then
11d8175
            print('  (No ticket was provided!)\\n\\n')
11d8175
        else
11d8175
            print('  (See ' .. obs[i].ticket .. ')\\n\\n')
11d8175
        end
11d8175
    end
11d8175
}
11d8175
11d8175
# ===============================================================================
11d8175
# Add calls to the obsolete_ticket and obsolete macros below, along with a note
1124266
# indicating the Fedora version in which the entries can be removed. This is
1124266
# generally three releases beyond whatever release Rawhide is currently. The
11d8175
# macros make this easy, and will automatically update the package description.
11d8175
1124266
# A link with information is important. Please don't add things here
1124266
# without having a link to a ticket in bugzilla, a link to a package
1124266
# retirement commit, or something similar.
f76112a
6f802d1
# All Obsoletes: entries MUST be versioned (including the release),
6f802d1
# with the version being higher (!)
6f802d1
# than the last version-release of the obsoleted package.
6f802d1
# This allows the package to return to the distribution later.
6f802d1
# The best possible thing to do is to find the last version-release
6f802d1
# which was in the distribution, add one to the release,
6f802d1
# and add that version without using a dist tag.
6f802d1
# This allows a rebuild with a bumped Release: to be installed.
a158a4c
a158a4c
# Template:
e839104
# Remove in F43
11d8175
# %%obsolete_ticket https://bugzilla.redhat.com/show_bug.cgi?id=1234567
11d8175
# %%obsolete foo 3.5-7
60f7aa4
e839104
# Remove in F42
57fc69c
# Retired during F39, prevents upgrade to F40 because requires libruby.so.3.2
57fc69c
%obsolete_ticket https://src.fedoraproject.org/rpms/rubygem-byebug/c/245925a225da471c45cc0eae8d499046a6db7800?branch=rawhide
57fc69c
%obsolete rubygem-byebug 11.1.3-6
57fc69c
%obsolete rubygem-pry-byebug 3.6.0-14
57fc69c
57fc69c
# Remove in F42
57fc69c
# Retired during F39, prevents upgrade to F40 because requires rubygem(shoulda-context) with version constraint
57fc69c
%obsolete_ticket https://src.fedoraproject.org/rpms/rubygem-shoulda/c/ad584cb6c828abf0cfba90769186c9b2613fd946?branch=rawhide
57fc69c
%obsolete rubygem-shoulda 3.6.0-15
57fc69c
57fc69c
# Remove in F42
e839104
%obsolete_ticket https://bugzilla.redhat.com/show_bug.cgi?id=2260493
e839104
%obsolete perl-Test-Apocalypse 1.006-30
e839104
4c68fa4
# Remove in F41
4c68fa4
# TeXLive sometimes just kills off components without notice, so there is no ticket.
4c68fa4
# These items were removed with TeXLive 2023 (first in Fedora 39) and have no replacement.
05ba835
%obsolete_ticket Ishouldfileaticket
4c68fa4
%obsolete texlive-elegantbook svn64122-67
4c68fa4
%obsolete texlive-elegantnote svn62989-67
4c68fa4
%obsolete texlive-elegantpaper svn62989-67
4c68fa4
%obsolete texlive-tablestyles svn34495.0-67
4c68fa4
%obsolete texlive-tablestyles-doc svn34495.0-67
4c68fa4
%obsolete texlive-pgf-cmykshadings svn52635-67
4c68fa4
654b135
# Remove in F41
654b135
%obsolete_ticket https://src.fedoraproject.org/rpms/jython/c/5b613bd06ba08cea22e9906646b3a37aca4280c1?branch=rawhide
654b135
%obsolete jython 2.7.1-17
654b135
fb675e7
# Remove in F41
7279a2b
%obsolete_ticket https://src.fedoraproject.org/rpms/sssd/c/cf3c8f20eeb0e7fe8cc2cfb0d02db9e5f9ddf04e?branch=rawhide
7279a2b
%obsolete sssd-libwbclient 2.3.1-3
7279a2b
%obsolete sssd-libwbclient-devel 2.3.1-3
7279a2b
6da1715
# Remove in F41
33e376d
%obsolete_ticket https://src.fedoraproject.org/rpms/giada/c/bcbd322f7822524ebd7f02cbeb5b04cc8a7cec1d?branch=rawhide
33e376d
%obsolete giada 0.22.0-5
33e376d
33e376d
# Remove in F41
6da1715
# Removed packages with broken dependencies on Python 3.11
6da1715
%obsolete_ticket https://bugzilla.redhat.com/show_bug.cgi?id=2233409
6da1715
%obsolete 5minute 0.2.32-14
c8f81be
%obsolete 9pfs 1.0.9-30
2cef92e
%obsolete actdiag 3.0.0-6
8eda562
%obsolete aiodnsbrute 0.3.3-5
c8f81be
%obsolete andriller 3.3.1-10
6da1715
%obsolete androguard 3.3.5-13
c8f81be
%obsolete androwarn 1.6.1-13
6da1715
%obsolete awake 1.0-31
2cef92e
%obsolete blockdiag 3.0.0-7
c8f81be
%obsolete brd 1.0-25
c8f81be
%obsolete btest 0.57-17
8eda562
%obsolete ccnet 6.1.8-17
8eda562
%obsolete ccnet-devel 6.1.8-17
6da1715
%obsolete datagrepper 1.0.1-3
6da1715
%obsolete datanommer-commands 1.0.3-5
2cef92e
%obsolete dlrn 0.14.0-13
2cef92e
%obsolete dnf-plugin-swidtags 0.8.18-3
6da1715
%obsolete drat-tools 1.0.3-16
8eda562
%obsolete esphomeflasher 1.4.0-7
c8f81be
%obsolete fedora-gather-easyfix 0.2.1-91
2cef92e
%obsolete fontdump 1.3.0-29
c8f81be
%obsolete freecad 1:0.20.2-5
f42b716
%obsolete freecad-data 1:0.20.2-5
c8f81be
%obsolete fuse9p 1.0.9-30
6da1715
%obsolete gdeploy 3.0.0-15
6da1715
%obsolete gnome-activity-journal 1.0.0-8
8eda562
%obsolete heat-cfntools 1.4.2-22
6da1715
%obsolete holland 1.2.10-3
6da1715
%obsolete holland-common 1.2.10-3
6da1715
%obsolete holland-commvault 1.2.10-3
6da1715
%obsolete holland-lvm 1.2.10-3
6da1715
%obsolete holland-mariabackup 1.2.10-3
6da1715
%obsolete holland-mongodump 1.2.10-3
6da1715
%obsolete holland-mysql 1.2.10-3
6da1715
%obsolete holland-mysqldump 1.2.10-3
6da1715
%obsolete holland-mysqllvm 1.2.10-3
6da1715
%obsolete holland-pg_basebackup 1.2.10-3
6da1715
%obsolete holland-pgdump 1.2.10-3
6da1715
%obsolete holland-xtrabackup 1.2.10-3
6da1715
%obsolete imgbased 1.2.5-0.2
8eda562
%obsolete kf5-kapidox 5.111.0-2
8eda562
%obsolete kismon 1.0.2-10
6da1715
%obsolete lnst 15-16
6da1715
%obsolete lnst-ctl 15-16
6da1715
%obsolete lnst-slave 15-16
e86dac6
%obsolete mathics+cython 5.0.2-5
e86dac6
%obsolete mathics+full 5.0.2-5
e86dac6
%obsolete mathics 5.0.2-5
e86dac6
%obsolete mathicsscript+full 5.0.0-2
e86dac6
%obsolete mathicsscript 5.0.0-2
8eda562
%obsolete matrix-synapse+cache-memory 1.80.0-8
8eda562
%obsolete matrix-synapse+url-preview 1.80.0-8
6da1715
%obsolete nodepool 3.13.1-6
6da1715
%obsolete nodepool-builder 3.13.1-6
6da1715
%obsolete nodepool-launcher 3.13.1-6
2cef92e
%obsolete nwdiag 3.0.0-6
8eda562
%obsolete onboard 1.4.1-35
8eda562
%obsolete onboard-data 1.4.1-35
6da1715
%obsolete openscap-daemon 0.1.10-20
c8f81be
%obsolete pico-wizard 0.1.0^git20220929.934dbcf-3
8eda562
%obsolete pipenv 2022.10.25-3
c8f81be
%obsolete pyflowtools 0.3.4.2-15
6da1715
%obsolete pynag 1.1.2-12
6da1715
%obsolete pynag-examples 1.1.2-12
c8f81be
%obsolete python-cypari2-doc 2.1.3-2
8eda562
%obsolete python3-GridDataFormats 1.0.1-5
6da1715
%obsolete python3-Pyped 1.4-26
8eda562
%obsolete python3-SALib 1.4.7-3
c8f81be
%obsolete python3-acora 2.2-15
2cef92e
%obsolete python3-actdiag 3.0.0-6
c8f81be
%obsolete python3-adext 0.3-9
6da1715
%obsolete python3-aioambient 1.3.0-6
6da1715
%obsolete python3-aiocurrencylayer 1.0.4-3
6da1715
%obsolete python3-aioguardian 1.0.4-9
c8f81be
%obsolete python3-aiozeroconf 0.1.8-16
c8f81be
%obsolete python3-airthings 3.2.0-9
c8f81be
%obsolete python3-alarmdecoder 1.13.9-9
c8f81be
%obsolete python3-ansi 0.1.3-30
c8f81be
%obsolete python3-ansible-pygments 0.1.1-5
c8f81be
%obsolete python3-apply-defaults 0.1.4-13
8eda562
%obsolete python3-astropy-helpers 4.0.1-10
2cef92e
%obsolete python3-async-generator 1.10-17
6da1715
%obsolete python3-awake 1.0-31
2cef92e
%obsolete python3-azure-eventhub 5.11.1-3
2cef92e
%obsolete python3-azure-mgmt-automanage 1.0.0-3
2cef92e
%obsolete python3-azure-mgmt-azurestackhci 6.0.0-7
2cef92e
%obsolete python3-azure-mgmt-dashboard 1.0.0-3
2cef92e
%obsolete python3-azure-mgmt-deploymentmanager 1:0.2.0-10
2cef92e
%obsolete python3-azure-mgmt-fluidrelay 1.0.0-3
2cef92e
%obsolete python3-azure-mgmt-hybridcompute 7.0.0-7
2cef92e
%obsolete python3-azure-mgmt-reservations 1:2.0.0-7
6da1715
%obsolete python3-bintrees 2.0.1-31
2cef92e
%obsolete python3-blockdiag 3.0.0-7
c8f81be
%obsolete python3-bloom 0.11.2-4
2cef92e
%obsolete python3-bluepy 1.3.0^20210503git7ad56523-2
8eda562
%obsolete python3-boututils+mayavi 0.1.9-4
c8f81be
%obsolete python3-btlewrap 0.1.0-9
8eda562
%obsolete python3-catch22 0.4.0-12
6da1715
%obsolete python3-certbot-dns-cloudxns 1.32.0-2
c8f81be
%obsolete python3-cle 9.0.9572-5
6da1715
%obsolete python3-clikit 0.6.2-8
6da1715
%obsolete python3-cmdln 2.0.0-25
8eda562
%obsolete python3-colorcet+examples 3.0.1^20221003git809e291-4
6da1715
%obsolete python3-colour-runner 0.0.4-28
8eda562
%obsolete python3-compressed-rtf 1.0.6-3
6da1715
%obsolete python3-coreapi 2.3.3-10
6da1715
%obsolete python3-coreschema 0.0.4-10
6da1715
%obsolete python3-cornice-sphinx 1:0.3-21
6da1715
%obsolete python3-cotyledon-tests 1.7.3-15
c8f81be
%obsolete python3-cypari2 2.1.3-2
c8f81be
%obsolete python3-cypari2-devel 2.1.3-2
6da1715
%obsolete python3-cypy 0.2.0-13
6da1715
%obsolete python3-datanommer-consumer 0.8.1-20
6da1715
%obsolete python3-datanommer-models 1.0.4-5
6da1715
%obsolete python3-django-contact-form 1.4.2-20
6da1715
%obsolete python3-django-robots 3.1.0-18
6da1715
%obsolete python3-django3 3.2.19-2
2cef92e
%obsolete python3-dlrn 0.14.0-13
8eda562
%obsolete python3-dns-lexicon+ddns 3.11.7-3
c8f81be
%obsolete python3-dominate 2.7.0-3
6da1715
%obsolete python3-drat 1.0.3-16
6da1715
%obsolete python3-drf-yasg 1.20.0-8
6da1715
%obsolete python3-drf-yasg+validation 1.20.0-8
6da1715
%obsolete python3-editdistance-s 1.0.0-8
8eda562
%obsolete python3-elpy 1.34.0-10
6da1715
%obsolete python3-fbthrift-devel 2022.07.11.00-3
8eda562
%obsolete python3-fdb 2.0.1-9
c8f81be
%obsolete python3-flask-bootstrap 3.3.7.1-21
8eda562
%obsolete python3-flask-htmlmin 2.2.1-3
6da1715
%obsolete python3-flask-restful 0.3.9-7
6da1715
%obsolete python3-folly-devel 2022.07.11.00-5
2cef92e
%obsolete python3-fontdump 1.3.0-29
6da1715
%obsolete python3-formats 0.1.1-26
c8f81be
%obsolete python3-fpylll 0.5.9-2
6da1715
%obsolete python3-frozen-flask 0.12-25
c8f81be
%obsolete python3-gccinvocation 0.1-33
8eda562
%obsolete python3-geomet 1.0.0-3
8eda562
%obsolete python3-gnocchiclient-tests 7.0.7-9
8eda562
%obsolete python3-google-cloud-access-approval 1.11.3-2
8eda562
%obsolete python3-google-cloud-access-context-manager 0.1.16-4
8eda562
%obsolete python3-google-cloud-api-gateway 1.7.3-2
8eda562
%obsolete python3-google-cloud-apigee-connect 1.7.1-4
8eda562
%obsolete python3-google-cloud-appengine-admin 1.9.4-2
8eda562
%obsolete python3-google-cloud-asset 3.22.0-2
8eda562
%obsolete python3-google-cloud-automl 2.11.4-2
8eda562
%obsolete python3-google-cloud-bigquery 3.14.0-4
8eda562
%obsolete python3-google-cloud-bigquery+bqstorage 3.14.0-4
8eda562
%obsolete python3-google-cloud-bigquery+geopandas 3.14.0-4
8eda562
%obsolete python3-google-cloud-bigquery+ipython 3.14.0-4
8eda562
%obsolete python3-google-cloud-bigquery+tqdm 3.14.0-4
8eda562
%obsolete python3-google-cloud-bigquery-connection 1.13.2-2
8eda562
%obsolete python3-google-cloud-bigquery-datatransfer 3.12.1-2
6da1715
%obsolete python3-google-cloud-bigquery-datatransfer+libcst 3.7.0-2
8eda562
%obsolete python3-google-cloud-bigquery-reservation 1.11.3-2
8eda562
%obsolete python3-google-cloud-bigquery-storage 2.22.0-3
8eda562
%obsolete python3-google-cloud-bigquery-storage+fastavro 2.22.0-3
8eda562
%obsolete python3-google-cloud-bigquery-storage+pandas 2.22.0-3
8eda562
%obsolete python3-google-cloud-bigquery-storage+pyarrow 2.22.0-3
8eda562
%obsolete python3-google-cloud-bigtable 2.21.0-2
8eda562
%obsolete python3-google-cloud-billing 1.11.4-3
8eda562
%obsolete python3-google-cloud-billing-budgets 1.12.1-3
8eda562
%obsolete python3-google-cloud-build 3.21.0-2
8eda562
%obsolete python3-google-cloud-common 1.2.0-4
8eda562
%obsolete python3-google-cloud-container 2.34.0-2
8eda562
%obsolete python3-google-cloud-containeranalysis 2.12.4-3
6da1715
%obsolete python3-google-cloud-containeranalysis+libcst 2.9.0-2
8eda562
%obsolete python3-google-cloud-data-fusion 1.8.3-2
8eda562
%obsolete python3-google-cloud-datacatalog 3.11.1-4
8eda562
%obsolete python3-google-cloud-dataproc 5.7.0-2
6da1715
%obsolete python3-google-cloud-dataproc+libcst 5.0.0-2
8eda562
%obsolete python3-google-cloud-dataproc-metastore 1.13.0-2
8eda562
%obsolete python3-google-cloud-debugger-client 1.7.0-3
8eda562
%obsolete python3-google-cloud-deploy 1.14.0-2
8eda562
%obsolete python3-google-cloud-dlp 3.13.0-3
6da1715
%obsolete python3-google-cloud-dlp+libcst 3.8.0-2
8eda562
%obsolete python3-google-cloud-dms 1.7.2-3
8eda562
%obsolete python3-google-cloud-domains 1.4.1-4
8eda562
%obsolete python3-google-cloud-filestore 1.5.0-4
8eda562
%obsolete python3-google-cloud-firestore 2.13.1-2
8eda562
%obsolete python3-google-cloud-functions 1.13.3-3
8eda562
%obsolete python3-google-cloud-iam 2.12.2-2
8eda562
%obsolete python3-google-cloud-kms 2.19.2-2
8eda562
%obsolete python3-google-cloud-monitoring 2.19.1-2
8eda562
%obsolete python3-google-cloud-org-policy 1.8.3-3
8eda562
%obsolete python3-google-cloud-os-config 1.15.3-2
8eda562
%obsolete python3-google-cloud-private-ca 1.8.2-3
8eda562
%obsolete python3-google-cloud-pubsub 2.14.1-6
8eda562
%obsolete python3-google-cloud-pubsub+libcst 2.14.1-6
8eda562
%obsolete python3-google-cloud-redis 2.13.2-3
6da1715
%obsolete python3-google-cloud-redis+libcst 2.9.0-3
8eda562
%obsolete python3-google-cloud-shell 1.6.1-4
8eda562
%obsolete python3-google-cloud-source-context 1.4.3-3
8eda562
%obsolete python3-google-cloud-spanner 3.40.1-2
8eda562
%obsolete python3-google-cloud-testutils 1.3.3-7
6da1715
%obsolete python3-googletrans 4.0.0~rc1-10
8eda562
%obsolete python3-grafeas 1.8.1-2
c8f81be
%obsolete python3-grako 3.99.9-6
6da1715
%obsolete python3-graphitesend 0.10.0-23
6da1715
%obsolete python3-grpcio-admin 1.48.4-9
6da1715
%obsolete python3-grpcio-csds 1.48.4-9
2cef92e
%obsolete python3-guizero 1.3.0-5
6da1715
%obsolete python3-gzipstream 2.8.6-18
6da1715
%obsolete python3-hs-dbus-signature 0.07-11
8eda562
%obsolete python3-htmlmin 0.1.12-21
c8f81be
%obsolete python3-igor 0.3-27
6da1715
%obsolete python3-imgbased 1.2.5-0.2
6da1715
%obsolete python3-importmagic 0.1.7-24
2cef92e
%obsolete python3-interfile 0.3.1-25
c8f81be
%obsolete python3-ipgetter 0.6-28
6da1715
%obsolete python3-itypes 1.2.0-8
c8f81be
%obsolete python3-jep 3.9.1-9
6da1715
%obsolete python3-jsonmodels 2.4-14
c8f81be
%obsolete python3-jsonrpc-server 0.4.0-9
8eda562
%obsolete python3-jsonschema-spec 0.1.6-4
8eda562
%obsolete python3-jupyter-server-fileid 0.8.0-2
6da1715
%obsolete python3-jupyter-server-ydoc 0.7.0-2
8eda562
%obsolete python3-jupyter-ydoc 0.3.1-2
8eda562
%obsolete python3-kaitaistruct 0.10-4
6da1715
%obsolete python3-krbcontext 0.10-13
c8f81be
%obsolete python3-lacrosse 0.4-10
6da1715
%obsolete python3-lasagne 0.1-26
c8f81be
%obsolete python3-lazr-smtptest 2.0.3-24
c8f81be
%obsolete python3-leveldb 0.201-12
c8f81be
%obsolete python3-liblarch 3.1.0-6
c8f81be
%obsolete python3-liblarch-gtk 3.1.0-6
6da1715
%obsolete python3-libproxy 0.4.18-7
c8f81be
%obsolete python3-libssh2 0.7.1-36
6da1715
%obsolete python3-lightblue 0.1.4-18
c8f81be
%obsolete python3-logging-tree 1.9-8
8eda562
%obsolete python3-luxcorerender 2.7-0.6
6da1715
%obsolete python3-martian 0.15-20
8eda562
%obsolete python3-maya 0.6.1-10
8eda562
%obsolete python3-metaextract 1.0.9-3
c8f81be
%obsolete python3-molecule 4.0.4-7
c8f81be
%obsolete python3-molecule-docker 2.1.0-3
c8f81be
%obsolete python3-molecule-podman 2.0.3-3
c8f81be
%obsolete python3-mraa 2.2.0-11
8eda562
%obsolete python3-mysql-debug 1.4.6-13
6da1715
%obsolete python3-networkmanager 2.2-10
c8f81be
%obsolete python3-nose_fixes 1.3-22
c8f81be
%obsolete python3-notario 0.0.16-16
2cef92e
%obsolete python3-nwdiag 3.0.0-6
6da1715
%obsolete python3-okaara 1.0.37-23
2cef92e
%obsolete python3-openapi-spec-validator+requests 0.5.7-4
8eda562
%obsolete python3-openipmi 2.0.32-7
8eda562
%obsolete python3-openopt 0.5629-12
2cef92e
%obsolete python3-opentelemetry-instrumentation-grpc 1:0.39~b0-17
2cef92e
%obsolete python3-opentelemetry-instrumentation-grpc+instruments 1:0.39~b0-17
6da1715
%obsolete python3-operator-courier 2.1.9-10
c8f81be
%obsolete python3-optcomplete 1.2.1-16
8eda562
%obsolete python3-oslo-sphinx 4.18.0-18
6da1715
%obsolete python3-pacpy 1.0.3.1-17
6da1715
%obsolete python3-pecan-notario 0.0.3-26
8eda562
%obsolete python3-pep517 0.13.0-3
2cef92e
%obsolete python3-petlink 0.3.4-15
6da1715
%obsolete python3-phabricator 0.7.0-21
c8f81be
%obsolete python3-py9p 1.0.9-30
6da1715
%obsolete python3-pyPEG2 2.15.2-25
6da1715
%obsolete python3-pydenticon 0.3.1-19
c8f81be
%obsolete python3-pyftpdlib 1.5.7-2
6da1715
%obsolete python3-pygpu 0.7.6-20
6da1715
%obsolete python3-pygpu-devel 0.7.6-20
2cef92e
%obsolete python3-pyhirte 0.4.0-2
c8f81be
%obsolete python3-pymc3 3.11.4-6
8eda562
%obsolete python3-pymoc 0.5.0-24
6da1715
%obsolete python3-pyngus 2.3.0-15
6da1715
%obsolete python3-pynlpl 1.2.7-15
6da1715
%obsolete python3-pyoptical 0.4-26
c8f81be
%obsolete python3-pyside2 1:5.15.7-3
8eda562
%obsolete python3-pyside2-devel 1:5.15.7-3
6da1715
%obsolete python3-pytelegrambotapi 4.11.0-2
c8f81be
%obsolete python3-pytenable 1.4.12-3
8eda562
%obsolete python3-pytest-bdd5 5.0.0-4
6da1715
%obsolete python3-pytest-beakerlib 0.7.1-21
6da1715
%obsolete python3-pytest-capturelog 0.7-28
6da1715
%obsolete python3-pytest-flake8 1.1.1-5
c8f81be
%obsolete python3-pytest-metadata 1.7.0-11
6da1715
%obsolete python3-pytest-sanic 1.9.1-4
6da1715
%obsolete python3-pytest-toolbox 0.4-13
2cef92e
%obsolete python3-pytest-virtualenv 1.7.0-17
c8f81be
%obsolete python3-pyutil 3.1.0-15
8eda562
%obsolete python3-pyverbs 44.0-4
c8f81be
%obsolete python3-pyvex 9.2.32-3
8eda562
%obsolete python3-pyvhacd 0.0.2-2
6da1715
%obsolete python3-qrencode 1.2~git.1.b75219e-16
8eda562
%obsolete python3-ratelimiter 1.2.0-11
8eda562
%obsolete python3-rdflib-jsonld 0.6.0-8
8eda562
%obsolete python3-red-black-tree-mod 1.21-2
8eda562
%obsolete python3-remctl 3.18-6
c8f81be
%obsolete python3-restfly 1.4.6-5
6da1715
%obsolete python3-restsh 0.2-23
2cef92e
%obsolete python3-rosinstall 0.7.8-18
c8f81be
%obsolete python3-script 1.7.2-30
2cef92e
%obsolete python3-seqdiag 3.0.0-6
c8f81be
%obsolete python3-shiboken2 1:5.15.7-3
c8f81be
%obsolete python3-shiboken2-devel 1:5.15.7-3
6da1715
%obsolete python3-signalfd 0.1-34
6da1715
%obsolete python3-simplemediawiki 1.2.0-0.32
c8f81be
%obsolete python3-simpleparse 2.2.2-12
2cef92e
%obsolete python3-simplewrap 0.3.3-16
6da1715
%obsolete python3-simpy 3.0.9-24
6da1715
%obsolete python3-slip 0.6.4-30
6da1715
%obsolete python3-slip-dbus 0.6.4-30
c8f81be
%obsolete python3-smart-gardena 0.7.10-9
8eda562
%obsolete python3-snipeit 1.2-9
6da1715
%obsolete python3-spdx 2.5.0-11
6da1715
%obsolete python3-spdx-lookup 0.3.2-11
c8f81be
%obsolete python3-sphinx_ansible_theme 0.9.1-5
c8f81be
%obsolete python3-sphinxcontrib-actdiag 2.0.0-9
8eda562
%obsolete python3-sphinxcontrib-applehelp 1.0.2-12
8eda562
%obsolete python3-sphinxcontrib-jsmath 1.0.1-20
c8f81be
%obsolete python3-stdio-mgr 1.0.1-11
8eda562
%obsolete python3-subvertpy 0.10.1-21
c8f81be
%obsolete python3-tambo 0.4.0-23
c8f81be
%obsolete python3-test_server 0.0.31-19
6da1715
%obsolete python3-theano 1.1.2-7
8eda562
%obsolete python3-timeunit 1.1.0-12
6da1715
%obsolete python3-tortilla 0.4.1-26
8eda562
%obsolete python3-twitter 3.5-17
8eda562
%obsolete python3-typed_ast 1.5.5-2
2cef92e
%obsolete python3-uamqp 1.6.0-3
c8f81be
%obsolete python3-upm 2.0.0-15
c8f81be
%obsolete python3-upoints 0.12.2-24
6da1715
%obsolete python3-upt-cpan 0.5-12
6da1715
%obsolete python3-upt-fedora 0.3-11
6da1715
%obsolete python3-upt-pypi 0.4-11
6da1715
%obsolete python3-upt-rubygems 0.2-11
c8f81be
%obsolete python3-uri-templates 0.6-29
8eda562
%obsolete python3-vagrantpy 0.6.0-12
2cef92e
%obsolete python3-vcstools 0.1.42-14
6da1715
%obsolete python3-versiontools 1.9.1-34
6da1715
%obsolete python3-vertica 1.0.5-5
6da1715
%obsolete python3-visionegg-quest 1.1-17
2cef92e
%obsolete python3-woffTools 0.1-0.38
c8f81be
%obsolete python3-wstool 0.1.18-12
8eda562
%obsolete python3-xds-protos 0.0.11-32
6da1715
%obsolete python3-xtermcolor 1.3-28
8eda562
%obsolete python3-y-py 0.5.5-2
c8f81be
%obsolete python3-yamlordereddictloader 0.4.0-16
c8f81be
%obsolete python3-yourls 0.2.0-31
8eda562
%obsolete python3-ypy-websocket 0.8.2-4
6da1715
%obsolete python3-zabbix-api-erigones 1.2.4-20
2cef92e
%obsolete python3-zuul-client 0.0.4-10
6da1715
%obsolete resultsdb 2.2.0-14
6da1715
%obsolete resultsdb_frontend 2.1.2-14
c8f81be
%obsolete sagemath 9.8-2
c8f81be
%obsolete sagemath-core 9.8-2
c8f81be
%obsolete sagemath-data 9.8-2
c8f81be
%obsolete sagemath-data-combinatorial_designs 9.8-2
c8f81be
%obsolete sagemath-data-conway_polynomials 9.8-2
c8f81be
%obsolete sagemath-data-elliptic_curves 9.8-2
c8f81be
%obsolete sagemath-data-elliptic_curves_large 9.8-2
c8f81be
%obsolete sagemath-data-etc 9.8-2
c8f81be
%obsolete sagemath-data-graphs 9.8-2
c8f81be
%obsolete sagemath-data-polytopes_db 9.8-2
c8f81be
%obsolete sagemath-jupyter 9.8-2
c8f81be
%obsolete sagemath-sagetex 9.8-2
6da1715
%obsolete scudcloud 1.65-17
6da1715
%obsolete sendKindle 3-15
2cef92e
%obsolete seqdiag 3.0.0-6
6da1715
%obsolete sgmanager 2.0.0-14
6da1715
%obsolete sugar-paint 70-12
2cef92e
%obsolete swid-tools 0.8.18-3
6da1715
%obsolete thunarx-python 0.5.2-7
6da1715
%obsolete transmageddon 1.5-31
6da1715
%obsolete upt 0.10.3-14
6da1715
%obsolete vitables 3.0.2-17
6da1715
%obsolete vitables-doc 3.0.2-17
6da1715
%obsolete whipper-plugin-eaclogger 0.5.0-11
2cef92e
%obsolete woffTools 0.1-0.38
6da1715
%obsolete yokadi 1.2.0-7
6da1715
f816681
# Remove in F41
c5af0f7
%obsolete_ticket https://src.fedoraproject.org/rpms/R-rgdal/c/c68d42d4e56b976be3a50adcbb65efdfc36b8318?branch=f39
c5af0f7
%obsolete R-rgdal 1.6.7-3
c5af0f7
59ee6cc
# Remove in F42
59ee6cc
%obsolete_ticket https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/LAE5JLO3KYVQVSF776H4QLY6DTAUQHWR/
59ee6cc
%obsolete celestia 1.7.0~320231229.git6899839-6
59ee6cc
%obsolete celestia-data 1.7.0~320231125.gitdb53ae3-4
59ee6cc
ae9381f
# This package won't be installed, but will obsolete other packages
ae9381f
Provides: libsolv-self-destruct-pkg()
ae9381f
1124266
%description %intro
8da748e
11d8175
Currently obsoleted packages:
61a81e0
11d8175
%list_obsoletes
a158a4c
a158a4c
f76112a
%prep
f76112a
%autosetup -c -T
f76112a
cp %SOURCE0 .
f76112a
19dd4ad
8da748e
%files
f76112a
%doc README
8da748e
19dd4ad
8da748e
%changelog
1100256
%autochangelog