From 74db20592869396232ca35456f4e2c63c7d937b3 Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Wed, 7 Aug 2013 13:32:22 -0700 Subject: Remove inferior package version, fix makefile format The problem with version is that it breaks remake without reconf. Version should instead be handled by the makefile. --- attoconf/lib/install.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'attoconf/lib/install.py') diff --git a/attoconf/lib/install.py b/attoconf/lib/install.py index 2bbc7c7..b32ebe0 100644 --- a/attoconf/lib/install.py +++ b/attoconf/lib/install.py @@ -20,15 +20,12 @@ from __future__ import print_function, division, absolute_import import os from ..classy import ClassyProject -from ..types import shell_word, version, filepath, quoted_string +from ..types import shell_word, filepath, quoted_string def package(build, PACKAGE): pass -def package_version(build, VERSION): - pass - def package_name(build, NAME): pass @@ -187,11 +184,10 @@ class Install(ClassyProject): @classmethod def slots(cls): return super(Install, cls).slots() + ( - 'package', 'package_version', 'package_name') + 'package', 'package_name') - def set_package(self, package, version, name): + def set_package(self, package, name): self.package = package - self.package_version = version self.package_name = name def general(self): @@ -200,11 +196,6 @@ class Install(ClassyProject): type=shell_word, check=package, help='Short name of this package (don\'t change!)', hidden=True) - self.add_option('--package-version', init=self.package_version, - type=version, check=package_version, - help='Version of this package (change in configure)', - hidden=True, - help_var='VERSION') self.add_option('--package-name', init=self.package_name, type=quoted_string, check=package_name, help='Long name of this package (don\'t change)', -- cgit v1.2.3-70-g09d2