diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index d4f8597..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-jackson-databind-jackson-databind-*/
-/jackson-databind-*.tar.gz
-/*.src.rpm
diff --git a/.packit.yaml b/.packit.yaml
deleted file mode 100644
index bb69ead..0000000
--- a/.packit.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
----
-downstream_package_name: jackson-databind
-specfile_path: jackson-databind.spec
-upstream_package_name: jackson-databind
-upstream_project_url: https://github.com/FasterXML/jackson-databind
-upstream_tag_template: jackson-databind-{version}
-
-actions:
- post-upstream-clone:
- - "wget https://src.fedoraproject.org/rpms/jackson-databind/raw/main/f/jackson-databind.spec -O jackson-databind.spec"
-
-jobs:
-- job: pull_from_upstream
- trigger: release
- dist_git_branches:
- - fedora-development
-
-# We cannot do koji_build/bodhi_update jobs yet as we need to use
-# a side-tag and this is no supported yet. We can add them is this
-# issue gets resolved: https://github.com/packit/packit/issues/1870
diff --git a/README.packit b/README.packit
deleted file mode 100644
index d529207..0000000
--- a/README.packit
+++ /dev/null
@@ -1,3 +0,0 @@
-This repository is maintained by packit.
-https://packit.dev/
-The file was generated using packit 0.87.1.
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..b28c00c
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+jackson-databind package is retired on branch c10s for CS-2365
\ No newline at end of file
diff --git a/jackson-databind.spec b/jackson-databind.spec
deleted file mode 100644
index e0480df..0000000
--- a/jackson-databind.spec
+++ /dev/null
@@ -1,346 +0,0 @@
-Name: jackson-databind
-Version: 2.16.1
-Release: 4%{?dist}
-Summary: General data-binding package for Jackson (2.x)
-License: Apache-2.0 and LGPL-2.0-or-later
-
-URL: https://github.com/FasterXML/jackson-databind
-Source0: %{url}/archive/%{name}-%{version}.tar.gz
-
-BuildRequires: maven-local
-BuildRequires: mvn(com.fasterxml.jackson.core:jackson-annotations) >= %{version}
-BuildRequires: mvn(com.fasterxml.jackson.core:jackson-core) >= %{version}
-BuildRequires: mvn(com.fasterxml.jackson:jackson-base:pom:) >= %{version}
-BuildRequires: mvn(com.google.code.maven-replacer-plugin:replacer)
-Buildrequires: mvn(junit:junit)
-BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
-BuildRequires: mvn(org.mockito:mockito-core)
-
-BuildArch: noarch
-%if 0%{?fedora} || 0%{?rhel} >= 10
-ExclusiveArch: %{java_arches} noarch
-%endif
-
-%description
-The general-purpose data-binding functionality and tree-model for Jackson Data
-Processor. It builds on core streaming parser/generator package, and uses
-Jackson Annotations for configuration.
-
-%prep
-%setup -q -n %{name}-%{name}-%{version}
-
-# Remove plugins unnecessary for RPM builds
-%pom_remove_plugin ":maven-enforcer-plugin"
-%pom_remove_plugin "org.jacoco:jacoco-maven-plugin"
-%pom_remove_plugin "org.moditect:moditect-maven-plugin"
-%pom_remove_plugin "de.jjohannes:gradle-module-metadata-maven-plugin"
-%pom_xpath_set "//pom:javac.src.version" "11"
-%pom_xpath_set "//pom:javac.target.version" "11"
-%pom_xpath_inject "//pom:properties" " 11"
-%pom_xpath_inject "//pom:properties" " 1.6"
-
-%pom_change_dep org.junit:junit-bom junit:junit
-
-cp -p src/main/resources/META-INF/NOTICE .
-sed -i 's/\r//' LICENSE NOTICE
-
-# unavailable test deps
-%pom_remove_dep javax.measure:jsr-275
-rm src/test/java/com/fasterxml/jackson/databind/introspect/NoClassDefFoundWorkaroundTest.java
-%pom_xpath_remove pom:classpathDependencyExcludes
-%pom_xpath_remove '//pom:compilerArgs/pom:arg[contains(text(),"enable-preview")]'
-
-# TestTypeFactoryWithClassLoader fails to compile
-# - it's the only test that uses powermock, so drop the powermock dependencies
-# - mockito is only transitively pulled in by powermock, so add it back
-%pom_remove_dep org.powermock:
-%pom_add_dep org.mockito:mockito-core::test
-rm src/test/java/com/fasterxml/jackson/databind/type/TestTypeFactoryWithClassLoader.java
-
-# Off test that require connection with the web
-rm src/test/java/com/fasterxml/jackson/databind/TestJDKSerialization.java
-
-%mvn_file : %{name}
-
-%build
-%mvn_build -f -j -- -Dmaven.test.failure.ignore=true
-
-%install
-%mvn_install
-
-%files -f .mfiles
-%doc README.md release-notes/*
-%license LICENSE NOTICE
-
-%changelog
-* Mon Jun 24 2024 Troy Dawson - 2.16.1-4
-- Bump release for June 2024 mass rebuild
-
-* Wed Jan 24 2024 Fedora Release Engineering - 2.16.1-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Mon Jan 22 2024 Marco Fargetta - 2.16.1-2
-- Force the java bytecode version to java11
-
-* Mon Jan 22 2024 Marco Fargetta - 2.16.1-1
-- [maven-release-plugin] prepare release jackson-databind-2.16.1 (Tatu Saloranta)
-- Prepare for 2.16.1 release (Tatu Saloranta)
-- Add passing test to close #3277 (#4259) (Kim, Joo Hyuk)
-- Add failing test for #4218 (Tatu Saloranta)
-- Post-merge clean up for #4229 (Tatu Saloranta)
-- Fix regression from #4008, optimize `ObjectNode.findValue(s)` and `findParent(s)` (#4230) (Kim, Joo Hyuk)
-- Minor update to release notes wrt #3133 (Tatu Saloranta)
-- Update release notes wrt #3133 fix (Tatu Saloranta)
-- Add now-passing test for #3133 (#4231) (Kim, Joo Hyuk)
-- Fix #4200: use annotations for delegating `@JsonCreator` (#4228) (Tatu Saloranta)
-- Tiny cleanup to eliminate bit of dead code (Tatu Saloranta)
-- Minor tweak post #4216 (Tatu Saloranta)
-- Allow primitive array deserializer to be captured by `DeserializerModifier` (#4219) (Kim, Joo Hyuk)
-- typo fix (release notes) (Tatu Saloranta)
-- Back to snapshot deps (Tatu Saloranta)
-- [maven-release-plugin] prepare for next development iteration (Tatu Saloranta)
-
-* Sat Jan 20 2024 Fedora Release Engineering - 2.16.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Mon Dec 04 2023 Marco Fargetta - 2.16.0-2
-- Fix pom file to work with java 11
-
-* Wed Nov 22 2023 Chris Kelley - 2.16.0-1
-- [maven-release-plugin] prepare release jackson-databind-2.16.0 (Tatu Saloranta)
-- Prepare for 2.16.0 release (Tatu Saloranta)
-- Post-commit fixes to #1770 (Tatu Saloranta)
-- issue-1770 - big number not returned as DecimalNode (#4191) (PJ Fanning)
-- minor test comment improvement (Tatu Saloranta)
-- Remove a test for closed issue; no plans to change behavior currently, no benefit from failing test. (Tatu Saloranta)
-- Update release notes wrt #4185 (Tatu Saloranta)
-- Fix for 4185 (#4189) (Kim, Joo Hyuk)
-- test cleanup (Tatu Saloranta)
-- Fix #4184: setCurrentValue() for empty POJO called at wrong time (#4186) (Tatu Saloranta)
-- Bump the github-actions group with 2 updates (#4183) (dependabot[bot])
-- DeserializationContext changed to allow null (#4179) (wrongwrong)
-- Minor clean up (Tatu Saloranta)
-- Exception when deserialization of private `record` with default constructor (fix for #4175) (#4178) (Kim, Joo Hyuk)
-- Move test for #4175 under failing/ for 2.16 (as it's failing) (Tatu Saloranta)
-- Add test for #4715 in 2.15 (passing) (Tatu Saloranta)
-- Update release notes wrt #1172 (Tatu Saloranta)
-- Test `JsonView` works with `JsonCreator` (#4173) (Kim, Joo Hyuk)
-- Minor test improvement (Tatu Saloranta)
-- Create win.yml for windows CI (#4172) (PJ Fanning)
-- Bump the github-actions group with 2 updates (#4171) (dependabot[bot])
-- Try fixing #4168 wrt linefeed diff (#4170) (Tatu Saloranta)
-- Back to snapshot dep (Tatu Saloranta)
-- [maven-release-plugin] prepare for next development iteration (Tatu Saloranta)
-
-* Mon Nov 06 2023 Chris Kelley - 2.15.3-1
-- [maven-release-plugin] prepare release jackson-databind-2.15.3 (Tatu Saloranta)
-- Prepare for 2.15.3 release (Tatu Saloranta)
-- Minor refactoring wrt #4149 (Tatu Saloranta)
-- Create TestMixedCollections.java (#4149) (PJ Fanning)
-- Update release notes wrt #4121 (Tatu Saloranta)
-- Preserve the original component type in merging to the array (#4121) (Yury Molchan)
-- Introduce more efficient Form-Based GitHub Issue Templates (#4042) (Kim, Joo Hyuk)
-- Improve JavaDoc and Test for config ACCEPT_EMPTY_STRING_AS_NULL_OBJECT wrt special cases (#4012) (Kim, Joo Hyuk)
-- Update Maven wrapper version (Tatu Saloranta)
-- Minor javadoc improvement (Tatu Saloranta)
-- Update release notes wrt #3968 fix (Tatu Saloranta)
-- Ignore ConstructorDetector.SingleArgConstructor.PROPERTIES preference for Records. (#3969) (Sim Yih Tsern)
-- to 2.15.3-SNAPSHOT (Tatu Saloranta)
-- [maven-release-plugin] prepare for next development iteration (Tatu Saloranta)
-
-* Thu Jul 20 2023 Fedora Release Engineering - 2.15.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Mon Jun 19 2023 Chris Kelley - 2.15.2-1
-- Update to version 2.15.2
-
-* Tue Jan 31 2023 Chris Kelley - 2.14.2-1
-- Update to version 2.14.2
-
-* Thu Jan 19 2023 Fedora Release Engineering - 2.14.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Wed Nov 23 2022 Chris Kelley - 2.14.1-1
-- Update to version 2.14.1
-
-* Tue Nov 08 2022 Chris Kelley - 2.14.0-1
-- Update to version 2.14
-- Update to use SPDX licence
-
-* Thu Jul 21 2022 Fedora Release Engineering - 2.11.4-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Fri Jul 08 2022 Jiri Vanek - 2.11.4-7
-- Rebuilt for Drop i686 JDKs
-
-* Sat Feb 05 2022 Jiri Vanek - 2.11.4-6
-- Rebuilt for java-17-openjdk as system jdk
-
-* Thu Jan 20 2022 Fedora Release Engineering - 2.11.4-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Thu Jul 22 2021 Fedora Release Engineering - 2.11.4-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Fri May 21 2021 Dogtag PKI Team - 2.11.4-3
-- Disable tests
-- Drop jackson-databind-javadoc
-
-* Tue Jan 26 2021 Fedora Release Engineering - 2.11.4-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Mon Jan 18 2021 Fabio Valentini - 2.11.4-1
-- Update to version 2.11.4.
-
-* Wed Oct 14 2020 Fabio Valentini - 2.11.3-1
-- Update to version 2.11.3.
-
-* Sun Aug 09 2020 Fabio Valentini - 2.11.2-2
-- Drop useless powermock build dependency.
-
-* Sat Aug 08 2020 Fabio Valentini - 2.11.2-1
-- Update to version 2.11.2.
-
-* Tue Jul 28 2020 Fedora Release Engineering - 2.11.1-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Fri Jul 10 2020 Jiri Vanek - 2.11.1-2
-- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
-
-* Mon Jul 06 2020 Fabio Valentini - 2.11.1-1
-- Update to version 2.11.1.
-
-* Mon May 25 2020 Fabio Valentini - 2.11.0-1
-- Update to version 2.11.0.
-
-* Fri May 08 2020 Fabio Valentini - 2.10.4-1
-- Update to version 2.10.4.
-
-* Tue Mar 03 2020 Fabio Valentini - 2.10.3-1
-- Update to version 2.10.3.
-
-* Wed Jan 29 2020 Fedora Release Engineering - 2.10.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Fri Jan 17 2020 Fabio Valentini - 2.10.2-1
-- Update to version 2.10.2.
-
-* Wed Nov 13 2019 Fabio Valentini - 2.10.1-1
-- Update to version 2.10.1.
-
-* Thu Oct 3 2019 Alexander Scheel - 2.10.0-1
-- Update to latest upstream release
-- Fixes: CVE-2019-14540
-- Fixes: CVE-2019-16335
-- Fixes: CVE-2019-16942
-- Fixes: CVE-2019-16943
-- Resolves: rhbz#1758168
-- Resolves: rhbz#1758172
-- Resolves: rhbz#1758183
-
-* Thu Sep 12 2019 Alexander Scheel - 2.9.9.3-1
-- Update to latest upstream release; fixes CVE-2019-12384
-
-* Thu Jul 25 2019 Fedora Release Engineering - 2.9.8-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Wed Feb 06 2019 Mat Booth - 2.9.8-1
-- Update to latest upstream release, fixes CVE-2018-14718 CVE-2018-147189
- CVE-2018-19360 CVE-2018-19361 CVE-2018-19362 CVE-2018-12022 CVE-2018-12023
- CVE-2018-14720 CVE-2018-14721
-
-* Fri Feb 01 2019 Fedora Release Engineering - 2.9.4-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Fri Jul 13 2018 Fedora Release Engineering - 2.9.4-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Mon Mar 26 2018 Mat Booth - 2.9.4-3
-- Add patch to fix CVE-2018-7489
-
-* Wed Feb 07 2018 Fedora Release Engineering - 2.9.4-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
-
-* Wed Jan 24 2018 Mat Booth - 2.9.4-1
-- Update to latest upstream release
-- Drop upstreamed CVE patches
-
-* Mon Jan 22 2018 Mat Booth - 2.9.3-1
-- Update to latest upstream release
-
-* Mon Jan 15 2018 Mat Booth - 2.7.6-7
-- Better patch for CVE-2017-17485
-
-* Thu Jan 11 2018 Mat Booth - 2.7.6-6
-- Backport a patch to fix CVE-2017-17485
-
-* Fri Nov 03 2017 Mat Booth - 2.7.6-5
-- Backport a patch to fix CVE-2017-15095
-
-* Wed Jul 26 2017 Fedora Release Engineering - 2.7.6-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
-
-* Thu Jul 20 2017 Mat Booth - 2.7.6-3
-- Backport a patch to fix CVE-2017-7525
-
-* Fri Feb 10 2017 Fedora Release Engineering - 2.7.6-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Mon Aug 22 2016 gil cattaneo 2.7.6-1
-- update to 2.7.6
-
-* Fri Jun 24 2016 gil cattaneo 2.6.7-1
-- update to 2.6.7
-
-* Thu May 26 2016 gil cattaneo 2.6.6-1
-- update to 2.6.6
-
-* Thu Feb 04 2016 Fedora Release Engineering - 2.6.3-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Sun Oct 25 2015 gil cattaneo 2.6.3-1
-- update to 2.6.3
-
-* Mon Sep 28 2015 gil cattaneo 2.6.2-1
-- update to 2.6.2
-
-* Wed Jun 17 2015 Fedora Release Engineering - 2.5.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Sat Jan 31 2015 gil cattaneo 2.5.0-1
-- update to 2.5.0
-
-* Sat Sep 20 2014 gil cattaneo 2.4.2-1
-- update to 2.4.2
-
-* Wed Jul 23 2014 gil cattaneo 2.4.1.3-1
-- update to 2.4.1.3
-
-* Thu Jul 03 2014 gil cattaneo 2.4.1.1-1
-- update to 2.4.1.1
-
-* Sat Jun 07 2014 Fedora Release Engineering - 2.2.2-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Fri Mar 28 2014 Michael Simacek - 2.2.2-4
-- Use Requires: java-headless rebuild (#1067528)
-
-* Sat Aug 03 2013 Fedora Release Engineering - 2.2.2-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Mon Jul 22 2013 gil cattaneo 2.2.2-2
-- review fixes
-
-* Tue Jul 16 2013 gil cattaneo 2.2.2-1
-- 2.2.2
-- renamed jackson-databind
-
-* Tue May 07 2013 gil cattaneo 2.2.1-1
-- 2.2.1
-
-* Wed Oct 24 2012 gil cattaneo 2.1.0-1
-- update to 2.1.0
-- renamed jackson2-databind
-
-* Thu Sep 13 2012 gil cattaneo 2.0.6-1
-- initial rpm
diff --git a/sources b/sources
deleted file mode 100644
index 8dc6845..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (jackson-databind-2.16.1.tar.gz) = 3f23fb124cea2e551786e0317143ea0596d1bf4cb6aff5dc7e78dff81d3bd206662b59ad75d299e2e1280af2037645c30163b52cb6825e49d3effe9403ad7e85