From fe6599b039da4a92169d4a9c82500b6611de0726 Mon Sep 17 00:00:00 2001 From: robojerk Date: Mon, 4 Aug 2025 02:02:58 +0000 Subject: [PATCH] fix package name conflicts - update changelog, copyright, and setup.py to use 'mock' consistently --- debian/changelog | 4 ++-- debian/copyright | 6 +++--- setup.py | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/debian/changelog b/debian/changelog index b5c3998..38a9020 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -deb-mock (0.1.0-1) unstable; urgency=medium +mock (0.1.0-1) unstable; urgency=medium * Initial release * Debian package build environment manager @@ -15,4 +15,4 @@ deb-mock (0.1.0-1) unstable; urgency=medium * CI/CD integration with Forgejo Actions * Comprehensive test suite with 30 tests - -- Deb-Mock Team Wed, 22 Jan 2025 12:00:00 +0000 \ No newline at end of file + -- Mock Team Wed, 22 Jan 2025 12:00:00 +0000 \ No newline at end of file diff --git a/debian/copyright b/debian/copyright index c61fb8e..0d2de1f 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,9 +1,9 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: deb-mock +Upstream-Name: mock Source: https://git.raines.xyz/robojerk/deb-mock Files: * -Copyright: 2025 Deb-Mock Team +Copyright: 2025 Mock Team License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -24,7 +24,7 @@ License: MIT SOFTWARE. Files: debian/* -Copyright: 2025 Deb-Mock Team +Copyright: 2025 Mock Team License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index 333da8d..6fe9894 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -Setup script for deb-mock package +Setup script for mock package """ from setuptools import setup, find_packages @@ -12,10 +12,10 @@ def read_readme(): return fh.read() setup( - name="deb-mock", + name="mock", version="0.1.0", - author="Deb-Mock Team", - author_email="team@deb-mock.org", + author="Mock Team", + author_email="team@mock.org", description="A low-level utility to create clean, isolated build environments for Debian packages", long_description=read_readme(), long_description_content_type="text/markdown",