backend/logrotate java/code
by Tomas Lestach
backend/logrotate/spacewalk-backend-tools | 1
java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java | 2
java/code/src/com/redhat/rhn/frontend/action/common/DownloadFile.java | 31 +++++++---
java/code/src/com/redhat/rhn/manager/channel/ChannelManager.java | 20 ++----
4 files changed, 33 insertions(+), 21 deletions(-)
New commits:
commit 5226d5c49b68bb205e23c68dbfb53645f61e0442
Author: Tomas Lestach <tlestach(a)redhat.com>
Date: Wed Nov 27 16:51:56 2013 +0100
1010205 - fix displaying of reposync log on WebUI
diff --git a/backend/logrotate/spacewalk-backend-tools b/backend/logrotate/spacewalk-backend-tools
index 43011c1..4d90f06 100644
--- a/backend/logrotate/spacewalk-backend-tools
+++ b/backend/logrotate/spacewalk-backend-tools
@@ -16,6 +16,7 @@
rotate 5
copytruncate
compress
+ delaycompress
notifempty
missingok
size=10M
diff --git a/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java b/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java
index b1773f2..a75dc40 100644
--- a/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java
+++ b/java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java
@@ -596,7 +596,7 @@ public class EditChannelAction extends RhnAction implements Listable {
c.getLastSynced());
}
request.setAttribute("last_sync", lastSync);
- if (ChannelManager.getLatestSyncLogFile(c) != null) {
+ if (!ChannelManager.getLatestSyncLogFiles(c).isEmpty()) {
request.setAttribute("log_url",
DownloadManager.getChannelSyncLogDownloadPath(c,
ctx.getLoggedInUser()));
diff --git a/java/code/src/com/redhat/rhn/frontend/action/common/DownloadFile.java b/java/code/src/com/redhat/rhn/frontend/action/common/DownloadFile.java
index 2cae11f..94e16e9 100644
--- a/java/code/src/com/redhat/rhn/frontend/action/common/DownloadFile.java
+++ b/java/code/src/com/redhat/rhn/frontend/action/common/DownloadFile.java
@@ -54,10 +54,10 @@ import org.apache.struts.actions.DownloadAction;
import java.io.BufferedReader;
import java.io.File;
-import java.io.FileReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.io.OutputStreamWriter;
+import java.io.RandomAccessFile;
import java.net.URL;
import java.net.URLConnection;
import java.text.SimpleDateFormat;
@@ -100,6 +100,8 @@ public class DownloadFile extends DownloadAction {
private static final String CONTENT_TYPE_OCTET_STREAM = "application/octet-stream";
private static final String CONTENT_TYPE_TEXT_PLAIN = "text/plain";
private static final String CONTENT_TYPE_TEXT_XML = "text/xml";
+ private static final Long DOWNLOAD_REPO_LOG_LENGTH = 102400L;
+ private static final Long DOWNLOAD_REPO_LOG_MIN_LENGTH = 10L;
/** {@inheritDoc} */
@Override
@@ -445,14 +447,27 @@ public class DownloadFile extends DownloadAction {
else if (type.equals(DownloadManager.DOWNLOAD_TYPE_REPO_LOG)) {
Channel c = ChannelFactory.lookupById(fileId);
ChannelManager.verifyChannelAdmin(user, fileId);
- File file = new File(ChannelManager.getLatestSyncLogFile(c));
-
StringBuilder output = new StringBuilder();
- BufferedReader input = new BufferedReader(new FileReader(file));
- String line;
- while ((line = input.readLine()) != null) {
- output.append(line);
- output.append("\n");
+ for (String fileName : ChannelManager.getLatestSyncLogFiles(c)) {
+ RandomAccessFile file = new RandomAccessFile(fileName, "r");
+ long fileLength = file.length();
+ if (fileLength > DOWNLOAD_REPO_LOG_LENGTH) {
+ file.seek(fileLength - DOWNLOAD_REPO_LOG_LENGTH);
+ // throw away text till end of the actual line
+ file.readLine();
+ }
+ else {
+ file.seek(0);
+ }
+ String line;
+ while ((line = file.readLine()) != null) {
+ output.append(line);
+ output.append("\n");
+ }
+ file.close();
+ if (output.length() > DOWNLOAD_REPO_LOG_MIN_LENGTH) {
+ break;
+ }
}
setTextContentInfo(response, output.length());
diff --git a/java/code/src/com/redhat/rhn/manager/channel/ChannelManager.java b/java/code/src/com/redhat/rhn/manager/channel/ChannelManager.java
index d7af019..658f41f 100644
--- a/java/code/src/com/redhat/rhn/manager/channel/ChannelManager.java
+++ b/java/code/src/com/redhat/rhn/manager/channel/ChannelManager.java
@@ -2647,7 +2647,7 @@ public class ChannelManager extends BaseManager {
* @param c channel
* @return the string of the filename (fully qualified)
*/
- public static String getLatestSyncLogFile(Channel c) {
+ public static List<String> getLatestSyncLogFiles(Channel c) {
String logPath = Config.get().getString(ConfigDefaults.SPACEWALK_REPOSYNC_LOG_PATH,
"/var/log/rhn/reposync/");
@@ -2655,19 +2655,15 @@ public class ChannelManager extends BaseManager {
File dir = new File(logPath);
List<String> possibleList = new ArrayList<String>();
String[] dirList = dir.list();
- if (dirList == null) {
- return null; // the log directory does not exist
- }
- for (String file : dirList) {
- if (file.contains(c.getLabel())) {
- possibleList.add(file);
+ if (dirList != null) {
+ for (String file : dirList) {
+ if (file.startsWith(c.getLabel()) && !file.endsWith(".gz")) {
+ possibleList.add(logPath + file);
+ }
}
+ Collections.sort(possibleList);
}
- if (possibleList.isEmpty()) {
- return null;
- }
- Collections.sort(possibleList);
- return logPath + possibleList.get(possibleList.size() - 1);
+ return possibleList;
}
9 years, 10 months
Changes to 'refs/tags/tito-0.4.18-1.1'
by Michael Mraka
Tag 'tito-0.4.18-1.1' created by Michael Mraka <michael.mraka(a)redhat.com> at 2013-11-28 15:28 +0000
Tagging package [tito] version [0.4.18-1.1] in directory [spec-tree/tito/].
Changes since rhn-client-tools-2.1.11-1:
Jan Dobes (1):
bootstrap tuning - add value parameter to make certain list actions work
Matej Kollar (1):
bootstrap tuning: make non-link text in header more visible
Michael Mraka (3):
spec for tito package
support local releasers.conf overwrite
Automatic commit of package [tito] minor release [0.4.18-1.1].
Tomas Kasparek (2):
bootstrap tuning - use same icon for 'no updates' as in legend and other places
bootstrap tuning - style submit buttons
---
branding/css/spacewalk-theme.less | 7
java/code/src/com/redhat/rhn/frontend/taglibs/ListDisplayTag.java | 8
java/code/webapp/WEB-INF/includes/header.jsp | 2
java/code/webapp/WEB-INF/pages/common/fragments/systems/group_listdisplay.jspf | 2
rel-eng/packages/tito | 1
spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch | 24
spec-tree/tito/tito.props | 3
spec-tree/tito/tito.spec | 416 ++++++++++
8 files changed, 458 insertions(+), 5 deletions(-)
---
9 years, 10 months
3 commits - rel-eng/packages spec-tree/tito
by Michael Mraka
rel-eng/packages/tito | 1
spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch | 24
spec-tree/tito/tito.props | 3
spec-tree/tito/tito.spec | 416 ++++++++++
4 files changed, 444 insertions(+)
New commits:
commit 023f64fa2c2121ddff5490a48c3df2150184aa3a
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Thu Nov 28 16:28:48 2013 +0100
Automatic commit of package [tito] minor release [0.4.18-1.1].
diff --git a/rel-eng/packages/tito b/rel-eng/packages/tito
new file mode 100644
index 0000000..288995b
--- /dev/null
+++ b/rel-eng/packages/tito
@@ -0,0 +1 @@
+0.4.18-1.1 spec-tree/tito/
diff --git a/spec-tree/tito/tito.props b/spec-tree/tito/tito.props
new file mode 100644
index 0000000..8c63ded
--- /dev/null
+++ b/spec-tree/tito/tito.props
@@ -0,0 +1,3 @@
+[buildconfig]
+tagger = tito.tagger.ReleaseTagger
+builder = spacewalkx.builderx.NoTgzBuilder
diff --git a/spec-tree/tito/tito.spec b/spec-tree/tito/tito.spec
index e85964b..34d722b 100644
--- a/spec-tree/tito/tito.spec
+++ b/spec-tree/tito/tito.spec
@@ -2,7 +2,7 @@
Name: tito
Version: 0.4.18
-Release: 1%{?dist}
+Release: 1.1%{?dist}
Summary: A tool for managing rpm based git projects
Group: Development/Tools
@@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Thu Nov 28 2013 Michael Mraka <michael.mraka(a)redhat.com> 0.4.18-1.1
+- support for local releaser.conf overwrite
+
* Thu Nov 14 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.18-1
- Merge the FiledVersionTagger into the base VersionTagger.
(dgoodwin(a)redhat.com)
commit d1bc583bcaab060399cbc4da21718b72d8892988
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Fri Nov 22 15:14:45 2013 +0100
support local releasers.conf overwrite
diff --git a/spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch b/spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch
new file mode 100644
index 0000000..84d1366
--- /dev/null
+++ b/spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch
@@ -0,0 +1,24 @@
+From 2ba7cf86f8ef21fbd37446778a0269dd68f98912 Mon Sep 17 00:00:00 2001
+From: Michael Mraka <michael.mraka(a)redhat.com>
+Date: Fri, 22 Nov 2013 14:27:07 +0100
+Subject: [PATCH] support local releasers.conf overwrite
+
+---
+ src/tito/cli.py | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/src/tito/cli.py b/src/tito/cli.py
+index 4c42b42..4aec245 100644
+--- a/src/tito/cli.py
++++ b/src/tito/cli.py
+@@ -499,7 +499,7 @@ class ReleaseModule(BaseCliModule):
+ rel_eng_dir = os.path.join(find_git_root(), "rel-eng")
+ filename = os.path.join(rel_eng_dir, RELEASERS_CONF_FILENAME)
+ config = ConfigParser.ConfigParser()
+- config.read(filename)
++ config.read([filename, RELEASERS_CONF_FILENAME])
+ return config
+
+ def _legacy_builder_hack(self, releaser_config):
+--
+1.7.1
commit d6998640467f5c959a6fd154a2c6d90897881a89
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Fri Nov 22 15:11:12 2013 +0100
spec for tito package
diff --git a/spec-tree/tito/tito.spec b/spec-tree/tito/tito.spec
new file mode 100644
index 0000000..e85964b
--- /dev/null
+++ b/spec-tree/tito/tito.spec
@@ -0,0 +1,413 @@
+%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name: tito
+Version: 0.4.18
+Release: 1%{?dist}
+Summary: A tool for managing rpm based git projects
+
+Group: Development/Tools
+License: GPLv2
+URL: http://rm-rf.ca/tito
+Source0: http://rm-rf.ca/files/tito/tito-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: python-devel
+BuildRequires: python-setuptools
+BuildRequires: asciidoc
+BuildRequires: libxslt
+
+Requires: python-setuptools
+Requires: rpm-build
+Requires: rpmlint
+Requires: GitPython >= 0.2.0
+Requires: fedpkg
+Requires: fedora-cert
+Requires: fedora-packager
+Requires: rpmdevtools
+Requires: rpm-python
+Requires: yum-utils
+
+%description
+Tito is a tool for managing tarballs, rpms, and builds for projects using
+git.
+
+%prep
+%setup -q -n tito-%{version}
+
+
+%build
+%{__python} setup.py build
+# convert manages
+a2x -d manpage -f manpage titorc.5.asciidoc
+a2x -d manpage -f manpage tito.8.asciidoc
+a2x -d manpage -f manpage tito.props.5.asciidoc
+a2x -d manpage -f manpage releasers.conf.5.asciidoc
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+rm -f $RPM_BUILD_ROOT%{python_sitelib}/*egg-info/requires.txt
+# manpages
+%{__mkdir_p} %{buildroot}%{_mandir}/man5
+%{__mkdir_p} %{buildroot}%{_mandir}/man8
+%{__gzip} -c titorc.5 > %{buildroot}/%{_mandir}/man5/titorc.5.gz
+%{__gzip} -c tito.8 > %{buildroot}/%{_mandir}/man8/tito.8.gz
+%{__gzip} -c tito.props.5 > %{buildroot}/%{_mandir}/man5/tito.props.5.gz
+%{__gzip} -c releasers.conf.5 > %{buildroot}/%{_mandir}/man5/releasers.conf.5.gz
+%{__gzip} -c build.py.props.5 > %{buildroot}/%{_mandir}/man5/build.py.props.5.gz
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc README.mkd AUTHORS COPYING
+%doc %{_mandir}/man5/titorc.5.gz
+%doc %{_mandir}/man5/tito.props.5.gz
+%doc %{_mandir}/man5/releasers.conf.5.gz
+%doc %{_mandir}/man5/build.py.props.5.gz
+%doc %{_mandir}/man8/tito.8.gz
+%{_bindir}/tito
+%{_bindir}/tar-fixup-stamp-comment.pl
+%{_bindir}/test-setup-specfile.pl
+%{_bindir}/generate-patches.pl
+%dir %{python_sitelib}/tito
+%{python_sitelib}/tito/*
+%{python_sitelib}/tito-*.egg-info
+
+
+%changelog
+* Thu Nov 14 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.18-1
+- Merge the FiledVersionTagger into the base VersionTagger.
+ (dgoodwin(a)redhat.com)
+- add Copr releaser (msuchy(a)redhat.com)
+- Fix broken asciidoc. (dgoodwin(a)redhat.com)
+- Fix old versions in yum repodata. (dgoodwin(a)redhat.com)
+- adding the FiledVersionTagger class that we are using internally
+ (vbatts(a)redhat.com)
+- tito report man page missing options (admiller(a)redhat.com)
+- Implement OBS releaser (msuchy(a)redhat.com)
+
+* Fri Aug 02 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.17-1
+- Fix permissions after a Fedora/Brew build. (dgoodwin(a)redhat.com)
+- Comment out old nightly releaser. (dgoodwin(a)redhat.com)
+- add newline to sys.stderr.write (msuchy(a)redhat.com)
+
+* Tue Jul 09 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.16-1
+- Fix KojiGitReleaser method arguments. (dgoodwin(a)redhat.com)
+
+* Mon Jul 08 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.15-1
+- docs clean up and additions for build_targets (admiller(a)redhat.com)
+
+* Mon Jul 08 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.14-1
+- resolve tito build failure on git 1.7.3.5 or older (jumanjiman(a)gmail.com)
+- Add more debugging facilities (jumanjiman(a)gmail.com)
+
+* Thu Jun 13 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.13-1
+- allow multiline blacklist/whitelist (lzap+git(a)redhat.com)
+- warn when no %%changelog section is present (msuchy(a)redhat.com)
+- Fix DistributionReleaser with GemBuilder (inecas(a)redhat.com)
+- Fix gem builder (necasik(a)gmail.com)
+- import error_out from tito.common (msuchy(a)redhat.com)
+- use correct path in rel-eng/packages if package reside in git-root for
+ DistributionBuilder (msuchy(a)redhat.com)
+- add missing import of commands (msuchy(a)redhat.com)
+- check if option in config exist (msuchy(a)redhat.com)
+- add example for remote_git_name (msuchy(a)redhat.com)
+- allow to override name of remote dist-git repo (msuchy(a)redhat.com)
+- add to releaser self.config which will contains values from global and pkg
+ config (msuchy(a)redhat.com)
+- use correct path in rel-eng/packages if package reside in git-root
+ (msuchy(a)redhat.com)
+
+* Fri Apr 26 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.12-1
+- mark build.py.props as obsolete (msuchy(a)redhat.com)
+- mark spacewalk.releng namespace as obsolete (msuchy(a)redhat.com)
+- various enhancement to man pages (msuchy(a)redhat.com)
+- document KojiReleaser and do not mark it as experimental any more
+ (msuchy(a)redhat.com)
+- document DEBUG environment variable (msuchy(a)redhat.com)
+- document environment variable EDITOR for tagger (msuchy(a)redhat.com)
+- Fix bad copy paste in releaser. (dgoodwin(a)redhat.com)
+- document scl option for rsync releaser (msuchy(a)redhat.com)
+- document RSYNC_USERNAME (msuchy(a)redhat.com)
+- add SCL support to RsyncReleaser (msuchy(a)redhat.com)
+- remove empty lines from rpm output (msuchy(a)redhat.com)
+- use SCL for KojiReleaser (msuchy(a)redhat.com)
+- move scl rpmbuild options to function and allow to build rpm using SC
+ (msuchy(a)redhat.com)
+- new option --scl which will allows you to build srpm for software collection
+ (msuchy(a)redhat.com)
+- fix the whitespace - tabs->spaces (lmeyer(a)redhat.com)
+- add --yes on tito release to keep from requiring input (lmeyer(a)redhat.com)
+- Enable tito release --test for git releasers * Store the --test flag on the
+ releaser and pass it to the builder * With --test in effect, have the builder
+ update the spec file * When the builder does so it also updates the
+ build_version to include git hash (lmeyer(a)redhat.com)
+- Add ability to customize rsync arguments (skane(a)kavi.com)
+- Fix broken extraction of bugzilla numbers from commits. (dgoodwin(a)redhat.com)
+- Re-add write permission fedpkg takes away. (dgoodwin(a)redhat.com)
+- Ensure rsync preserves timestamps and permissions (skane(a)kavi.com)
+- document SCRATCH environment variable (msuchy(a)redhat.com)
+- look for spec file in project directory (msuchy(a)redhat.com)
+- document NO_AUTO_INSTALL option (msuchy(a)redhat.com)
+- 31 - if build fails due missing dependecies, suggest to run yum-builddep
+ (msuchy(a)redhat.com)
+- document ONLY_TAGS variable (msuchy(a)redhat.com)
+- Do not create patch if there are binary files (msuchy(a)redhat.com)
+- Raise error if there are two spec files (msuchy(a)redhat.com)
+- Make increase_version _ aware and return original string upon failures
+ (skane(a)kavi.com)
+- merge common code from tagger and builder (msuchy(a)redhat.com)
+- allow tagger to get values from package config and override values in
+ global_config (msuchy(a)redhat.com)
+- Allow user to define which package need to be installed before tagging.
+ (msuchy(a)redhat.com)
+- Fixed check for existing tag (mbacovsk(a)redhat.com)
+- do not fail if spec does not have any source (msuchy(a)redhat.com)
+- Add install instructions (sean(a)practicalweb.co.uk)
+- NoTgzBuilder - do not guess source, get it correctly from spec file
+ (msuchy(a)redhat.com)
+
+* Thu Jan 17 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.11-1
+- add a --scratch option for KojiReleaser (aronparsons(a)gmail.com)
+- Fix no_build error in KojiReleaser.
+
+* Wed Nov 28 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.10-1
+- Add --no-build; this will allow scripted DistGit commits and
+ koji/brew chain-builds (admiller(a)redhat.com)
+- Added gembuilder, cleaned up pep8 (admiller(a)redhat.com)
+- Add a Travis configuration (jbowes(a)repl.ca)
+- Update README.mkd (misc(a)zarb.org)
+- fix: RsyncReleaser doesn't handle multiple rsync locations
+ (jesusr(a)redhat.com)
+- remove tabs and trailing whitespace. add whitespace between methods
+ (jesusr(a)redhat.com)
+- Handle stderr noise getting from remote server (inecas(a)redhat.com)
+- Can now specify a build target for fedora and distgit releasers
+ (mstead(a)redhat.com)
+
+* Tue Sep 04 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.9-1
+- Stop passing --installdeps for mock builds. (dgoodwin(a)redhat.com)
+- YumRepoReleaser feature: createrepo command can now be specified from
+ releasers.conf with the 'createrepo_command' config option
+ (palli(a)opensource.is)
+- Created new releaser called RsyncReleaser. Based heavily on YumRepoReleaser.
+ Refactored YumRepoReleaser to inherit most code from RsyncReleaser.
+ (palli(a)opensource.is)
+- Optionally print stacktrace whenever error_out is hit (bleanhar(a)redhat.com)
+- encourage users to push only their new tag (jbowes(a)redhat.com)
+- Attempt to copy local Sources during releases. (dgoodwin(a)redhat.com)
+
+* Mon Apr 02 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.8-1
+- Fix MockBuilder for packages that use non-standard builders normally.
+ (dgoodwin(a)redhat.com)
+- interpret '0' as False for changelog_with_email setting. (msuchy(a)redhat.com)
+
+* Thu Mar 15 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.7-1
+- Fix issues with DistributionBuilder constructor (dgoodwin(a)redhat.com)
+
+* Wed Mar 14 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.6-1
+- Issue 39: Create /tmp/tito if it doesn't already exist. (dgoodwin(a)redhat.com)
+- Add support for test build releases. (dgoodwin(a)redhat.com)
+- Stop passing all CLI args to builders. (dgoodwin(a)redhat.com)
+- Add mock builder speedup argument. (mstead(a)redhat.com)
+- Add support for no-value args in builder. (mstead(a)redhat.com)
+- Fix rsync options for yum repo releases. (jesusr(a)redhat.com)
+- Add support for customizable changelog formats (jeckersb(a)redhat.com)
+
+* Tue Jan 24 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.5-1
+- Extract bz's and prompt to modify commit message in git releasers.
+ (dgoodwin(a)redhat.com)
+
+* Mon Jan 23 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.4-1
+- Issue #35: EDITOR with arguments produces backtrace (jeckersb(a)redhat.com)
+- remove unused fedora_cert reading (jesusr(a)redhat.com)
+- Drop to shell when dist-git merge errors encountered. (dgoodwin(a)redhat.com)
+- Use proper temp dirs for releasing. (dgoodwin(a)redhat.com)
+- Fix git release diff command. (dgoodwin(a)redhat.com)
+
+* Thu Dec 15 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.3-1
+- Escape percent character in changelog. (msuchy(a)redhat.com)
+- Fix distribution builder missing args in constructor.
+ (msuchy(a)redhat.com)
+- Add release to usage, alphabetize list. (jesusr(a)redhat.com)
+- PEP8 cleanup. (jesusr(a)redhat.com)
+- No need to maintain timestamps: remove -t and -O from rsync command.
+ (jesusr(a)redhat.com)
+- Chdir to yum_temp_dir after creating, avoids rsync's getcwd error
+ (jesusr(a)redhat.com)
+- Use -O during rsync commands to fix time setting errors. (dgoodwin(a)rm-rf.ca)
+
+* Mon Nov 28 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.2-1
+- Clean out old versions of RPMs when generating yum repos. (dgoodwin(a)rm-rf.ca)
+- Update manpage to show multiple rsync paths. (dgoodwin(a)rm-rf.ca)
+
+* Fri Nov 25 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.1-1
+- Allow one build to go to multiple yum repo URLs. (dgoodwin(a)redhat.com)
+- Fix --no-cleanup for release module. (dgoodwin(a)redhat.com)
+- Add a BrewDownloadBuilder. (dgoodwin(a)redhat.com)
+- Use proper temp directories to build. (dgoodwin(a)redhat.com)
+- Fix permissions when rsync'ing yum repositories. (dgoodwin(a)redhat.com)
+- Switch to CLI fedpkg command instead of module. (dgoodwin(a)rm-rf.ca)
+
+* Wed Nov 09 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.0-1
+- Fix import error with new fedpkg version. (dgoodwin(a)rm-rf.ca)
+- Add a KojiGitReleaser. (dgoodwin(a)rm-rf.ca)
+- Adding --use-version to allow Tito to force a version to use.
+ (awood(a)redhat.com)
+- Support SCRATCH=1 env variable for koji releaser. (dgoodwin(a)rm-rf.ca)
+- Support ONLY_TAGS env variable for koji releaser. (dgoodwin(a)rm-rf.ca)
+- List releasers option. (dgoodwin(a)rm-rf.ca)
+- Documentation update. (dgoodwin(a)rm-rf.ca)
+- Allow releaseing to multiple targets at once, and add --all-starting-with.
+ (dgoodwin(a)rm-rf.ca)
+- Make auto-install available to all builders. (dgoodwin(a)rm-rf.ca)
+- Allow setting specific builder and passing builder args on CLI. (dgoodwin@rm-
+ rf.ca)
+- Add new mechanism for passing custom arguments to builders. (dgoodwin@rm-
+ rf.ca)
+- HACKING tips updated. (dgoodwin(a)rm-rf.ca)
+- Add a rsync username env variable for yum repo releaser. (dgoodwin(a)rm-rf.ca)
+- Restructure release CLI. (dgoodwin(a)redhat.com)
+- Parsing spec files and bumping their versions or releases is now in Python.
+ (awood(a)redhat.com)
+
+* Wed Oct 05 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.3-1
+- Clarify some initial project layout documentation. (dgoodwin(a)rm-rf.ca)
+- match based on the tag for the package we are building (mmccune(a)redhat.com)
+- Teach tito how to checkout EUS branches (msuchy(a)redhat.com)
+- Remove release parameter from _update_package_metadata() (msuchy(a)redhat.com)
+- Avoid traceback if rpmbuild fails (jumanjiman(a)gmail.com)
+- Make Fedora git builds a little more tolerant if you need to re-run.
+ (dgoodwin(a)redhat.com)
+- Fix the binary spew in SOURCES on some weird tags. (dgoodwin(a)redhat.com)
+- Do not print traceback when user lacks write permission (jumanjiman(a)gmail.com)
+- Fix Fedora git releaser to use more reliable commands. (dgoodwin(a)rm-rf.ca)
+- Remove the old tito build --release code. (dgoodwin(a)rm-rf.ca)
+- Allow custom releasers to be loaded and used. (dgoodwin(a)rm-rf.ca)
+- Introduce new CLI module for releases. (dgoodwin(a)rm-rf.ca)
+- Use fedpkg switch branch for git releases. (dgoodwin(a)rm-rf.ca)
+- Do not print traceback when user hit Ctrl+C (msuchy(a)redhat.com)
+- '0' is True, we want it as false (msuchy(a)redhat.com)
+
+* Tue Apr 26 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.2-1
+- add debug logging (jesusr(a)redhat.com)
+
+* Tue Apr 26 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.1-1
+- flip condition so new files are added and existing files are copied
+ (msuchy(a)redhat.com)
+- fix traceback if git_email is not specified (miroslav(a)suchy.cz)
+- Refactor release code out of the builder class. (dgoodwin(a)rm-rf.ca)
+- Configure tito for Fedora git builds. (dgoodwin(a)rm-rf.ca)
+- Complete Fedora git build process. (dgoodwin(a)rm-rf.ca)
+- if remote.origin is not set, assume --offline and print warning, but proceed
+ (msuchy(a)redhat.com)
+- Source can be tar.bz2 (msuchy(a)redhat.com)
+- Source can be without number (msuchy(a)redhat.com)
+- add man page for tito.props(5) (msuchy(a)redhat.com)
+- document KOJI_OPTIONS options of titorc (msuchy(a)redhat.com)
+- add option HIDE_EMAIL to .titorc, which will hide your email in first line of
+ changelog entry (msuchy(a)redhat.com)
+- pass user_config to tagger class (msuchy(a)redhat.com)
+- issue 18 - do not print TB if user.name, user.email is not set
+ (msuchy(a)redhat.com)
+- Upload sources and confirm commit during git release. (dgoodwin(a)redhat.com)
+- First draft of Fedora Git releasing. (dgoodwin(a)redhat.com)
+- Add a --dry-run option for build --release. (dgoodwin(a)redhat.com)
+- Allow user config setting for sub-packages to skip during auto-install.
+ (dgoodwin(a)redhat.com)
+- Hookup bugzilla extraction during cvs release. (dgoodwin(a)redhat.com)
+- Plus and dot chars in git email handled correctly now (lzap+git(a)redhat.com)
+- put emails in changelog only if changelog_with_email is set to 1 in
+ [globalconfig] section of config (msuchy(a)redhat.com)
+- use _changelog_remove_cherrypick() for rheltagger (msuchy(a)redhat.com)
+- Add code for extracting bugzilla IDs from CVS diff or git log.
+ (dgoodwin(a)redhat.com)
+- Prompt user to edit CVS commit messages. (dgoodwin(a)redhat.com)
+- Fix no auto changelog option. (dgoodwin(a)redhat.com)
+- add tagger for Red Hat Enterprise Linux (msuchy(a)redhat.com)
+- Fix test builds in koji. (dgoodwin(a)rm-rf.ca)
+- Documentation update. (dgoodwin(a)rm-rf.ca)
+- Add missing dep on libxslt. (dgoodwin(a)rm-rf.ca)
+
+* Wed Jan 05 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.0-1
+- implement --only-tags option for builder class (msuchy(a)redhat.com)
+- implement --list-tags option for builder (msuchy(a)redhat.com)
+- add option --scratch to builder class (msuchy(a)redhat.com)
+- do not throw traceback if you hit Ctrl+C during Auto-instaling
+ (msuchy(a)redhat.com)
+- allow child taggers to control commit message (msuchy(a)redhat.com)
+- add new tagger: zStreamTagger - bump up release part after dist tag
+ (msuchy(a)redhat.com)
+- Better error-reporting when spec file has errors (jumanjiman(a)gmail.com)
+- if we grep rpmbuild output for some string, we have to switch to C locale
+ (miroslav(a)suchy.cz)
+- Adding more helpfull error message to show user what is busted
+ (mmccune(a)redhat.com)
+- Fix rpm command suggestion for broken specs. (dgoodwin(a)rm-rf.ca)
+- add manpage source: tito(8) (jumanjiman(a)gmail.com)
+- add manpage source: titorc(5) (jumanjiman(a)gmail.com)
+- adding rpm-build as a Requires. Seems pretty critical (mmccune(a)redhat.com)
+- Add missing dep on python-setuptools. (dgoodwin(a)rm-rf.ca)
+
+* Wed Jun 02 2010 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.2.0-1
+- Restrict building to a minimum version of tito. (msuchy(a)redhat.com)
+- Added option to pass custom options to rpmbuild. (dgoodwin(a)rm-rf.ca)
+- Add tito-dev script to run directly from source. (dgoodwin(a)rm-rf.ca)
+- Better output after tagging. (dgoodwin(a)rm-rf.ca)
+- Display rpms build on successful completion. (dgoodwin(a)rm-rf.ca)
+- Added tito tag --undo. (dgoodwin(a)rm-rf.ca)
+- Bump versions in setup.py during tagging if possible. (dgoodwin(a)rm-rf.ca)
+- Added lib_dir setting for custom taggers/builders. (dgoodwin(a)rm-rf.ca)
+- Add option to auto-install rpms after build. (dgoodwin(a)rm-rf.ca)
+- Remove check for changelog with today's date. (dgoodwin(a)rm-rf.ca)
+- Allow user to specify an changelog string for new packages.
+ (jesusr(a)redhat.com)
+- Use latest commit instead of HEAD for --test. (jesusr(a)redhat.com)
+- Allow tito to understand pkg names with macros. (jesusr(a)redhat.com)
+- Use short sha1 when generating filenames. (jesusr(a)redhat.com)
+- Commit packages dir during tito init. (jesusr(a)redhat.com)
+- More detailed error message if spec has errors. (mmccune(a)redhat.com)
+
+* Wed Jun 02 2010 Devan Goodwin <dgoodwin(a)rm-rf.ca>
+- Restrict building to a minimal version of tito. (msuchy(a)redhat.com)
+- Added option to pass custom options to rpmbuild. (dgoodwin(a)rm-rf.ca)
+- Add tito-dev script to run directly from source. (dgoodwin(a)rm-rf.ca)
+- Better output after tagging. (dgoodwin(a)rm-rf.ca)
+- Display rpms build on successful completion. (dgoodwin(a)rm-rf.ca)
+- Added tito tag --undo. (dgoodwin(a)rm-rf.ca)
+- Bump versions in setup.py during tagging if possible. (dgoodwin(a)rm-rf.ca)
+- Added lib_dir setting for custom builders/taggers. (dgoodwin(a)rm-rf.ca)
+- Add option to auto-install rpms after build. (dgoodwin(a)rm-rf.ca)
+- Remove check for changelog with today's date. (dgoodwin(a)rm-rf.ca)
+- Allow user to specify an changelog string for new packages.
+ (jesusr(a)redhat.com)
+- Use latest commit instead of HEAD for --test. (jesusr(a)redhat.com)
+- Allow tito to understand pkg names with macros. (jesusr(a)redhat.com)
+- Use short sha1 when generating filenames. (jesusr(a)redhat.com)
+- Commit packages dir during tito init. (jesusr(a)redhat.com)
+- More detailed error message if spec is bad. (mmccune(a)redhat.com)
+
+* Thu Oct 01 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.1.1-2
+- Add AUTHORS and COPYING to doc.
+- Add BuildRequires on python-setuptools.
+
+* Tue Aug 25 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.1.1-1
+- Bumping to 0.1.0 for first release.
+
+* Mon Aug 24 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.0.4-1
+- Hack to fix import of tagger/builder on Python 2.4. (dgoodwin(a)rm-rf.ca)
+
+* Thu Aug 06 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.0.3-1
+- Introduce --output option for destination/tmp directory. (dgoodwin(a)rm-rf.ca)
+- Use tito.props for project specific config filename. (dgoodwin(a)rm-rf.ca)
+- Add multi-project repo tagging tests. (dgoodwin(a)rm-rf.ca)
+- Add support for offline (standalone) git repos. (dgoodwin(a)rm-rf.ca)
+- Fix reports for single project git repos. (dgoodwin(a)rm-rf.ca)
+- Add README documentation. (dgoodwin(a)rm-rf.ca)
+
+* Wed Jul 22 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.0.1-1
+- Initial packaging.
9 years, 10 months
branding/css java/code
by mkollar
branding/css/spacewalk-theme.less | 2 +-
java/code/webapp/WEB-INF/includes/header.jsp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 78f697722a2cc3b7758c5505db2eeef408f99719
Author: Matej Kollar <mkollar(a)redhat.com>
Date: Thu Nov 28 15:24:01 2013 +0100
bootstrap tuning: make non-link text in header more visible
diff --git a/branding/css/spacewalk-theme.less b/branding/css/spacewalk-theme.less
index 2592cc7..204afac 100644
--- a/branding/css/spacewalk-theme.less
+++ b/branding/css/spacewalk-theme.less
@@ -160,7 +160,7 @@ header {
display: inline-block;
border-radius: 0 0 4px 4px
}
- .nav-pills li > a {
+ .nav-pills li > a, .spacewalk-header-non-link {
padding: .3em 1em;
font-size: .85em;
color: #fff;
diff --git a/java/code/webapp/WEB-INF/includes/header.jsp b/java/code/webapp/WEB-INF/includes/header.jsp
index 965f755..11193c7 100644
--- a/java/code/webapp/WEB-INF/includes/header.jsp
+++ b/java/code/webapp/WEB-INF/includes/header.jsp
@@ -32,7 +32,7 @@
<a href="/rhn/account/UserDetails.do"><i class="fa fa-user"></i><c:out escapeXml="true" value="${requestScope.session.user.login}" /></a>
</li>
<li class="hidden-sm hidden-xs hidden-md">
- <i class="fa fa-sitemap"></i><c:out escapeXml="true" value="${requestScope.session.user.org.name}" />
+ <span class="spacewalk-header-non-link"><i class="fa fa-sitemap"></i><c:out escapeXml="true" value="${requestScope.session.user.org.name}" /></span>
</li>
<li>
<a href="/rhn/account/UserPreferences.do"><i class="fa fa-cogs"></i></a>
9 years, 10 months
branding/css
by Tomáš Kašpárek
branding/css/spacewalk-theme.less | 5 +++++
1 file changed, 5 insertions(+)
New commits:
commit 3d7d638eee4b065e444a1705d12891e8ffded14f
Author: Tomas Kasparek <tkasparek(a)redhat.com>
Date: Thu Nov 28 15:08:14 2013 +0100
bootstrap tuning - style submit buttons
diff --git a/branding/css/spacewalk-theme.less b/branding/css/spacewalk-theme.less
index 402ae19..2592cc7 100644
--- a/branding/css/spacewalk-theme.less
+++ b/branding/css/spacewalk-theme.less
@@ -119,6 +119,11 @@ p {
transition: width 2s, height 2s, transform 2s;
-webkit-transition: width 2s, height 2s, -webkit-transform 2s;
}
+
+ input[type="submit"] {
+ .btn;
+ .btn-default;
+ }
}
/* fixing the footer to the bottom */
9 years, 10 months
java/code
by Jan Dobes
java/code/src/com/redhat/rhn/frontend/taglibs/ListDisplayTag.java | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
New commits:
commit 34a271e910250384d8ff1fe7fb21549c3ffd7d9e
Author: Jan Dobes <jdobes(a)redhat.com>
Date: Thu Nov 28 11:18:19 2013 +0100
bootstrap tuning - add value parameter to make certain list actions work
e.g.
/rhn/systems/provisioning/preservation/PreservationList.do
/rhn/configuration/file/ManageRevision.do?cfid=?
diff --git a/java/code/src/com/redhat/rhn/frontend/taglibs/ListDisplayTag.java b/java/code/src/com/redhat/rhn/frontend/taglibs/ListDisplayTag.java
index 2a6a416..f79e865 100644
--- a/java/code/src/com/redhat/rhn/frontend/taglibs/ListDisplayTag.java
+++ b/java/code/src/com/redhat/rhn/frontend/taglibs/ListDisplayTag.java
@@ -628,7 +628,9 @@ public class ListDisplayTag extends ListDisplayTagBase {
(HttpServletRequest) pageContext.getRequest(), getMixins())) {
out.println("<button class=\"btn btn-default\"" +
- " type=\"submit\" name=\"dispatch\">" +
+ " type=\"submit\" name=\"dispatch\" value=\"" +
+ LocalizationService.getInstance().getMessage(getButton()) +
+ "\">" +
LocalizationService.getInstance().getMessage(getButton()) +
"</button>");
}
@@ -636,7 +638,9 @@ public class ListDisplayTag extends ListDisplayTagBase {
(HttpServletRequest) pageContext.getRequest(), getMixins())) {
out.println("<button class=\"btn btn-default\"" +
- " type=\"submit\" name=\"dispatch\">" +
+ " type=\"submit\" name=\"dispatch\" value=\"" +
+ LocalizationService.getInstance().getMessage(getButton2()) +
+ "\">" +
LocalizationService.getInstance().getMessage(getButton2()) +
"</button>");
}
9 years, 10 months
java/code
by Tomáš Kašpárek
java/code/webapp/WEB-INF/pages/common/fragments/systems/group_listdisplay.jspf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit ef788cc6d32c21fc54ac2a0ea8efbb512bd84daf
Author: Tomas Kasparek <tkasparek(a)redhat.com>
Date: Thu Nov 28 10:16:56 2013 +0100
bootstrap tuning - use same icon for 'no updates' as in legend and other places
diff --git a/java/code/webapp/WEB-INF/pages/common/fragments/systems/group_listdisplay.jspf b/java/code/webapp/WEB-INF/pages/common/fragments/systems/group_listdisplay.jspf
index bd73bd0..485be22 100644
--- a/java/code/webapp/WEB-INF/pages/common/fragments/systems/group_listdisplay.jspf
+++ b/java/code/webapp/WEB-INF/pages/common/fragments/systems/group_listdisplay.jspf
@@ -38,7 +38,7 @@
<i class="fa fa-warning text-warning" title="<bean:message key='grouplist.jsp.updates'/>"></i>
</c:when>
<c:otherwise>
- <i class="fa fa-check-square-o text-primary" title="<bean:message key='grouplist.jsp.noerrata'/>"></i>
+ <i class="fa fa-check-circle fa-1-5x text-success" title="<bean:message key='grouplist.jsp.noerrata'/>"></i>
</c:otherwise>
</c:choose>
9 years, 10 months
Changes to 'master-bootstrap-css-fixes'
by Silvio Moioli
New branch 'master-bootstrap-css-fixes' available with the following commits:
commit cf53bf537512f4c9e74751ec453a712c683af80f
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Wed Nov 27 15:54:59 2013 +0100
/rhn/systems/customdata/DeleteCustomKey.do?cikid=1
style form
commit 6ffc8e3da46d4c3786841d9080cf3a4940034fdc
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Wed Nov 27 15:26:47 2013 +0100
/rhn/systems/customdata/DeleteCustomKey.do
use rhn:toolbar instead of handwriten html
commit 0ee5f4e09290aff37715580c2146cc2258a1bbc1
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Wed Nov 27 15:05:29 2013 +0100
/rhn/systems/customdata/UpdateCustomKey.do
Use rhn:toolbar instead of custom html
commit 691bc34c009a02edc5d74d0ae0af27421536f63c
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Wed Nov 27 14:49:41 2013 +0100
/rhn/systems/customdata/CustomDataList.do
use rhn:toolbar instead of custom html
commit 09d53ed2de9bb02980a373756935bcbfe3d8c62c
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Wed Nov 27 12:04:22 2013 +0100
Use the toolbar jsp tag to get the right html/styles
commit bd8e7cd810173f900ee95b07f9f98c1b8c2da18f
Author: Michael Calmer <mc(a)suse.de>
Date: Wed Nov 27 12:29:28 2013 +0100
import missing taglib
commit 7918e0735bbe4f0eac5cfe0a8fec277f6e3c87bd
Author: Michael Calmer <mc(a)suse.de>
Date: Wed Nov 27 12:16:37 2013 +0100
fix tooltip
commit 43d36bdeec74e17e29fad9a6486ebbe8c273dd48
Author: Johannes Renner <jrenner(a)suse.de>
Date: Wed Nov 27 11:52:22 2013 +0100
Re-add the 'name' attribute to form
commit 29198b74ab0f42e3ccbf92733c42f7ca67cce50d
Author: Johannes Renner <jrenner(a)suse.de>
Date: Wed Nov 27 11:49:09 2013 +0100
Optionally show a legal note on login/relogin
commit 20f1a3d802a606e53d9a5dbcfc2753854affdf6b
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Wed Nov 27 09:41:16 2013 +0100
fix a non-reinitialized variable in release()
commit 40b22d4338eee49d68d02608523dce82d29c12f7
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Wed Nov 27 09:40:51 2013 +0100
Decorators are specified in the body so the decorators we output in
doStartTag will never be shown. Also one has to have extra care that
decorators are only added during the ENUMERATE command, so we move the
output of the beginning of the list to this state.
commit 55fdd4461d6cdc6ab0d13aa5a6c37c40903c41ff
Author: Silvio Moioli <smoioli(a)suse.de>
Date: Tue Nov 26 15:37:48 2013 +0100
DataSetManipulator: backward/forward icons fixed
commit fb83e2827a45099ea9cb2a2fec63d0c8dc8a9a3f
Author: Silvio Moioli <smoioli(a)suse.de>
Date: Tue Nov 26 15:10:57 2013 +0100
Do not rely on form IDs, as <html:form> does not output them
Now that the XHTML mode has been switched off, Struts' <html:form> tags
will output the name attribute instead of the id attribute in <form>
tags. Javascript code has been adapted accordingly.
commit 95c6f86eef976242094ffe1840d329a1b9ed864e
Author: Duncan Mac-Vicar P <dmacvicar(a)suse.de>
Date: Tue Nov 26 11:24:25 2013 +0100
Set the current list for decorators as they are added in addDecorator()
Even if counter-intuitive, some decorators like ElaboratorDecorator do
side effects when setCurrentList is called, so we can't call it
"just to be sure".
On the other hand, decorators are added at different points, one
as an attribute to the list tag, others after the columns therefore
there is no clear place where to set the current list, why not do it
when they are about to be added.
commit e9757d61193b6b4a1bd3c6c68e371ad40c48f333
Author: Silvio Moioli <smoioli(a)suse.de>
Date: Tue Nov 26 08:32:05 2013 +0100
ssm/index.do: table replaced with panels
commit b9911e49f61647cd5c9f764980c70e5c31a76501
Author: Silvio Moioli <smoioli(a)suse.de>
Date: Tue Nov 26 07:46:16 2013 +0100
ssm/index.do: Font Awesome icon replaced
commit 9f3f5b59302ebf5c80291dd31d9929bc18d45655
Author: Michael Calmer <mc(a)suse.de>
Date: Mon Nov 25 17:04:24 2013 +0100
Use translated welcome message
commit 738bb79b52676c3d76fcc96181cc9658538f9c98
Author: Silvio Moioli <smoioli(a)suse.de>
Date: Fri Nov 22 12:50:50 2013 +0100
Acl check restored
commit 732e256411e49d67a8bde862a721d2f2d76d46a2
Author: Silvio Moioli <smoioli(a)suse.de>
Date: Fri Nov 22 11:55:45 2013 +0100
Header system deletion link fixed
9 years, 10 months
Changes to 'refs/tags/rhn-client-tools-2.1.11-1'
by Milan Zazrivec
Tag 'rhn-client-tools-2.1.11-1' created by Milan Zazrivec <mzazrivec(a)redhat.com> at 2013-11-27 14:59 +0000
Tagging package [rhn-client-tools] version [2.1.11-1] in directory [client/rhel/rhn-client-tools/].
Changes since spacewalk-branding-2.1.9-1:
Milan Zazrivec (2):
1035330 - run TUI registration when executed from setuptool
Automatic commit of package [rhn-client-tools] release [2.1.11-1].
---
client/rhel/rhn-client-tools/rhn-client-tools.spec | 5 ++++-
client/rhel/rhn-client-tools/setuptool.d/99rhn_register | 2 +-
rel-eng/packages/rhn-client-tools | 2 +-
3 files changed, 6 insertions(+), 3 deletions(-)
---
9 years, 10 months
2 commits - client/rhel rel-eng/packages
by Milan Zazrivec
client/rhel/rhn-client-tools/rhn-client-tools.spec | 5 ++++-
client/rhel/rhn-client-tools/setuptool.d/99rhn_register | 2 +-
rel-eng/packages/rhn-client-tools | 2 +-
3 files changed, 6 insertions(+), 3 deletions(-)
New commits:
commit 099d7a82c0baa18eba701b3d9fce1f26bdcc1396
Author: Milan Zazrivec <mzazrivec(a)redhat.com>
Date: Wed Nov 27 15:59:39 2013 +0100
Automatic commit of package [rhn-client-tools] release [2.1.11-1].
diff --git a/client/rhel/rhn-client-tools/rhn-client-tools.spec b/client/rhel/rhn-client-tools/rhn-client-tools.spec
index 1b97940..d73f5b6 100644
--- a/client/rhel/rhn-client-tools/rhn-client-tools.spec
+++ b/client/rhel/rhn-client-tools/rhn-client-tools.spec
@@ -4,7 +4,7 @@ Group: System Environment/Base
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
URL: https://fedorahosted.org/spacewalk
Name: rhn-client-tools
-Version: 2.1.10
+Version: 2.1.11
Release: 1%{?dist}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
@@ -357,6 +357,9 @@ make -f Makefile.rhn-client-tools test
%endif
%changelog
+* Wed Nov 27 2013 Milan Zazrivec <mzazrivec(a)redhat.com> 2.1.11-1
+- 1035330 - run TUI registration when executed from setuptool
+
* Wed Oct 09 2013 Milan Zazrivec <mzazrivec(a)redhat.com> 2.1.10-1
- 1017249 - TUI rhn_register: string polish
- 1017249 - GUI rhn_register: string polish
diff --git a/rel-eng/packages/rhn-client-tools b/rel-eng/packages/rhn-client-tools
index aca9d37..3ad5abc 100644
--- a/rel-eng/packages/rhn-client-tools
+++ b/rel-eng/packages/rhn-client-tools
@@ -1 +1 @@
-2.1.10-1 client/rhel/rhn-client-tools/
+2.1.11-1 client/rhel/rhn-client-tools/
commit 7938a28df64b0a45ccfa516efeaaef967fd56482
Author: Milan Zazrivec <mzazrivec(a)redhat.com>
Date: Wed Nov 27 15:56:35 2013 +0100
1035330 - run TUI registration when executed from setuptool
setup (part of setuptool package) is a TUI application, it doesn't
make sense to execute the registration in GUI mode here.
diff --git a/client/rhel/rhn-client-tools/setuptool.d/99rhn_register b/client/rhel/rhn-client-tools/setuptool.d/99rhn_register
index 9a85330..d6f59ef 100644
--- a/client/rhel/rhn-client-tools/setuptool.d/99rhn_register
+++ b/client/rhel/rhn-client-tools/setuptool.d/99rhn_register
@@ -1 +1 @@
-/usr/sbin/rhn_register|RHN Register
+/usr/sbin/rhn_register --nox|RHN Register
9 years, 10 months