From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4CD15158094 for ; Sun, 10 Jul 2022 20:49:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 723CEE09D4; Sun, 10 Jul 2022 20:49:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5272BE09D4 for ; Sun, 10 Jul 2022 20:49:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5873B34103D for ; Sun, 10 Jul 2022 20:49:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BA4F391 for ; Sun, 10 Jul 2022 20:49:04 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1657486128.9ab5d996f33c219ced4c9ca53d66fb2e6e45a691.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: / X-VCS-Repository: proj/gentoolkit X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 9ab5d996f33c219ced4c9ca53d66fb2e6e45a691 X-VCS-Branch: master Date: Sun, 10 Jul 2022 20:49:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d34a773d-1e2c-4d1f-aa34-b81bc4ea96c7 X-Archives-Hash: defcaa777275885a5e268137f21cab3f commit: 9ab5d996f33c219ced4c9ca53d66fb2e6e45a691 Author: Brian Dolbec gentoo org> AuthorDate: Sun Jul 10 20:41:36 2022 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Jul 10 20:48:48 2022 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=9ab5d996 Revert "setup.py: migrate to setuptools" This reverts commit bbbde97b5e625a49a1a66e307931548cb33f260b. setuptools only installs data files to the python pkg directory Signed-off-by: Brian Dolbec gentoo.org> setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 36995de..23e9b36 100755 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ import re import sys import subprocess - -from setuptools import setup, Command +from distutils import core +from distutils.cmd import Command from glob import glob import os @@ -67,7 +67,7 @@ manpages = [ ] -class set_version(Command): +class set_version(core.Command): """Set python __version__ and bash VERSION to our __version__.""" description = "hardcode scripts' version using VERSION from environment" @@ -130,7 +130,7 @@ test_data = { ] } -setup( +core.setup( name="gentoolkit", version=__version__, description="Set of tools that work with and enhance portage.",