From 67b94db138c0fe639eced55c09d41062ec9ac091 Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Aug 14 2013 17:11:28 +0000 Subject: import redhat-support-tool-0.9.5-8.el7.src.rpm --- diff --git a/.redhat-support-tool.metadata b/.redhat-support-tool.metadata new file mode 100644 index 0000000..55d1ce0 --- /dev/null +++ b/.redhat-support-tool.metadata @@ -0,0 +1 @@ +6a3a8ebd31340851a880cad384ebdb5142054701 SOURCES/redhat-support-tool-0.9.5-8.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/redhat-support-tool.spec b/SPECS/redhat-support-tool.spec new file mode 100644 index 0000000..19a1560 --- /dev/null +++ b/SPECS/redhat-support-tool.spec @@ -0,0 +1,127 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +%global package_version 0.9.5-8 +%global package_name redhat-support-tool + +Name: %{package_name} +Version: 0.9.5 +Release: 8%{?release_suffix}%{?dist} +Summary: Tool for console access to Red Hat subscriber services +Vendor: Red Hat, Inc. +Group: Development/Libraries +License: ASL 2.0 +URL: https://api.access.redhat.com +Source0: http://people.redhat.com/kroberts/projects/redhat-support-tool/%{package_name}-%{package_version}.tar.gz + +BuildRequires: python2-devel +BuildRequires: python-setuptools +BuildArch: noarch +%{!?dist:BuildRequires: buildsys-macros} + +Requires: python +Requires: python-lxml +Requires: python-dateutil +Requires: redhat-support-lib-python >= 0.9.5-3 + +%if 0%{?rhel} && 0%{?rhel} <= 5 +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} +BuildRoot: %{_topdir}/BUILDROOT/%{name}-%{version}-%{release}.%{_arch} +%endif + +%description +This package contains the Red Hat Support Tool. The Red Hat Support Tool +provides console based access to Red Hat's subscriber services. These +services include, but are not limited to, console based access to +knowledge-base solutions, case management, automated diagnostic +services, etc. + +%prep +%setup -q -n %{package_name}-%{package_version} + +%build +%configure \ + --disable-python-syntax-check + +make %{?_smp_mflags} + +# For sample vendor plugin +mkdir -p samples/vendors/ +mv src/redhat_support_tool/vendors/ACMECorp samples/vendors/ + +%install +rm -rf "%{buildroot}" +make %{?_smp_mflags} install DESTDIR="%{buildroot}" + +%files +%doc AUTHORS README README.plugins samples/ +%{python_sitelib}/redhat_support_tool/ +%{_bindir}/redhat-support-tool + +%changelog +* Mon Aug 12 2013 Keith Robertson - 0.9.5-8 +- Resolves: rhbz#983909 + +* Wed Jul 24 2013 Keith Robertson - 0.9.5-6 +- Resolves: rhbz#983903 +- Resolves: rhbz#983896 + +* Mon Jul 22 2013 Keith Robertson - 0.9.5-4 +- Various issues with btextract + +* Tue Jun 11 2013 Keith Robertson - 0.9.5-3 +- Resolves: rhbz#880777 + +* Tue Jun 11 2013 Keith Robertson - 0.9.5-2 +- Various updates including; + - Filtering and pagination of listcases + - casegroup command + - opencase is in the analyze and diagnose commands + +* Thu May 23 2013 Nigel Jones - 0.9.4-1 +- Diagnostics: + - Opening a case will now trigger the case recommendations engine + prior to opening the case. + - Extracted backtraces from kernel vmcores can be passed to + Ask Shadowman at the users request +- Case Handling: + - modifycase can be triggered on a selected case + - Per above, opencase/diagnostics support +- Plugins: + - Ability for Vendor/L3 plugins + - Sample 'ACMECorp' plugin + README.plugins in documentation directory. +- Localization/Internationalization: + - Changes to support non-ASCII character input from character sets used in + Red Hat GSS supported languages. + +* Wed May 1 2013 Nigel Jones - 0.9.3-1 +- Pagination bug fix to fix an offsetting bug that could contribute + to missing, or duplicate results. + +* Fri Apr 26 2013 Nigel Jones - 0.9.2-1 +- Various updates to source, including: + - Pagination of 'listcases' + - Better debugability + - Splitfile abilities to 'addattachment' + - Recommendations support + - Changes to 'downloadall' attachment handling + +* Wed Feb 20 2013 Nigel Jones - 0.9.0-2 +- Import into Red Hat packaging system + +* Fri Apr 13 2012 Keith Robertson - 0.9.0-1 +- Initial build