aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
Commit message (Collapse)AuthorAgeFilesLines
* Call this version 1.7, too many changes for a minorminor releaseV1_7topic/V1_6_XBogdano Arendartchuk2008-11-111-1/+1
|
* Fixed putsrpm, old structure but new colorsBogdano Arendartchuk2008-11-101-0/+2
| | | | | Make it work again and added an alias to "import", as in mdvsys.
* Updated CHANGES regarding the change of the default command itselfBogdano Arendartchuk2008-07-171-0/+1
|
* Updated CHANGESBogdano Arendartchuk2008-07-171-0/+2
|
* Changing the version number to 1.6.90, test releaseBogdano Arendartchuk2008-07-171-1/+1
| | | | | Will release this version in main/testing. Not stable for sure.
* Added reference to --distro on CHANGESBogdano Arendartchuk2008-07-171-0/+1
|
* Put all entries related to 'submit' toghether, the changes are quite ↵Bogdano Arendartchuk2008-07-171-3/+3
| | | | important and they are related
* Updated CHANGES regarding the submit groupsBogdano Arendartchuk2008-07-171-0/+2
|
* Allow specifying distro branches without using complete URLsBogdano Arendartchuk2008-07-171-0/+3
| | | | | | | | Added the configuration option "repository", which will have the URL to the root of the repository. The change also allowed using mirrors in all the read-only commands.
* Don't hide authors with only the first revision SILENTed (#41117)Bogdano Arendartchuk2008-07-171-0/+1
|
* Updated CHANGES to refer the mdv ticket #28352Bogdano Arendartchuk2008-07-171-1/+1
|
* Updated CHANGESBogdano Arendartchuk2008-07-171-0/+1
|
* Allow submitting packages at onceBogdano Arendartchuk2008-07-171-0/+2
| | | | | | | | | It adds a new syntax for repsys submit, in which each package version can be specified using the NAME@REV format. It also required to change create-srpm to accept the new format. It should still be compatible with older clients.
* Added a crappy manual pageBogdano Arendartchuk2008-03-031-0/+1
| | | | | | The only useful thing for the moment is the description of configuration options.
* Updated CHANGES regarding the new configuration option and the new rpmlogBogdano Arendartchuk2008-03-031-0/+4
| | | | | options
* Updated CHANGESBogdano Arendartchuk2008-03-031-0/+3
|
* Added option -d to sync, to download the missing filesBogdano Arendartchuk2008-02-081-0/+1
| | | | | | | It also added a configuration option download-command, in the [global] section to define which command will be used to download. The default is wget.
* Fixed emptylog to be shown when necessaryBogdano Arendartchuk2008-02-061-0/+2
| | | | | | | | | As emptylog started working again another problem arose: the first release in most of the packages is SILENTed and result in a emptlog entry. The problem is that the log gathered from misc/ already contains (in most of the cases, at least) the version-release with the right message.
* Fixed URL normalization to make it compatible with py2.4Bogdano Arendartchuk2008-02-061-0/+1
| | | | | In py2.4 the function urlparse doesn't return a "named" tuple.
* Set the default template path and update the built-in one to matchBogdano Arendartchuk2008-02-051-0/+1
| | | | | default.chlog
* Allow listing targets through SSH submit hostBogdano Arendartchuk2008-02-051-0/+2
| | | | | | It required to add a option --list on create-srpm and change repsys submit to use this option.
* Moved all old defaults to repsys-example.conf and document it betterBogdano Arendartchuk2008-02-051-0/+2
| | | | | | Only a few configuration options in repsys.conf are really useful. Removed the remaining [template] section.
* Added --strict option to getsrpm + equivalent configuration optionBogdano Arendartchuk2008-02-051-0/+4
| | | | | | | | | This option makes repsys to fail if the revision provided by the user does not contain any changed path inside the package URL. This should prevent mistakes such as submitting update packages using the Cooker URL.
* Small changes in help messages:Bogdano Arendartchuk2008-02-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | - Added URL of the repository system Quickstart - Make the help message of ci clearer - Removed reference to --help-plugins - Added a simple description for repsys in main help - Added short description of interesting subcommands in main help - Updated CHANGES - Reformeatted the 'switch' message to make it easier to read - Improved the help message of 'submit', added reference to the status page - Better help message for rpmlog - Added help message for patchspec - Better help message for markrelease - Added a help message for getsrpm - Added help message for getspec - Better help message for 'create' + changed example URL - Added a clearer help message for co - Added some text explaining 'changed' - Better authoremail help - Clearer message about uncommenting config option - Removed all configuration options that are not needed by one external - Putsrpm is not working, remove from help message - Added another usage example for submit
* Make REPSYS_CONF override /etc/repsys.conf and ~/.repsys/configBogdano Arendartchuk2008-02-051-0/+2
| | | | | | This way we can have real control over where to look for configuration file. The old behavior was a problem for testes and things like.
* Fixed the use of file:/// URLs when using just the package nameBogdano Arendartchuk2008-02-051-0/+1
|
* Added option -F to repsys ci, as in svn ciBogdano Arendartchuk2008-02-051-0/+1
|
* Dropped all authenticated access supportBogdano Arendartchuk2007-11-151-0/+7
| | | | | | | | | | | | Subversion authentication has been broken for a long time and the workarounds weren't decent. It will be back in 1.7.x. Also added configuration option svn-command in the global section, allowing to replace the default svn command. And use svn+ssh:// URLs to be in BatchMode, in order to not have any interactivity at all with ssh
* Don't say "invalid command CMD" when this is not the real errorBogdano Arendartchuk2007-11-141-0/+2
| | | | | | | | | | | | | | | Sometimes when a module used by repsys is missing, the given error message is "invalid command CMD", instead of a exception trace showing that there's something wrong with with the repsys setup. This change fixes this issue by counting the number of frames in the exception trace. When the command module is not available there will be only one frame (being the function that is trying to import the command's module), otherwise there will be more frames (because the found module will already be present in the trace). This fix is probably valid for smart too.
* Really fixed generation of unreleased commitsBogdano Arendartchuk2007-11-141-0/+2
| | | | | | | | It was using the previous markrelease revision as reference. The recent broken fix was using "releasesdata[0]" instead of "releasesdata[-1]" which is the newest release revision.
* Make package and revision optional options for submit, againBogdano Arendartchuk2007-11-131-0/+1
| | | | | | | | | This mode has been broken for a long time due to a change in subversion output. The confirmation of the revision being used was removed, as already used by mdvsys. Instead, notify the user and allow him to interrupt the process.
* Fix: don't use versions/ when using -v option of getsrpmBogdano Arendartchuk2007-11-121-0/+3
|
* Added option -o to 'co' to disable the use of mirror when checking outBogdano Arendartchuk2007-11-081-0/+1
|
* Updated CHANGESBogdano Arendartchuk2007-11-081-0/+2
|
* Added the complement to SILENT: CLOGBogdano Arendartchuk2007-11-081-0/+4
| | | | | | When using CLOG, only those lines beginning with this token will be shown. It only works when enabled in repsys.conf.
* updated CHANGES regarding ldapusers changesBogdano Arendartchuk2007-06-181-0/+1
|
* Perform less svn operations in getsrpm and rpmlogBogdano Arendartchuk2007-06-171-0/+1
| | | | | | | | - don't export SPECS/ when current/ is already exported - don't check for the presence of a path that will be exported in the same code, let it raise one exception - complain when no changelogs are found inside SPECS/
* As requested by mrl, don't relocate back to mirror after commitBogdano Arendartchuk2007-06-161-0/+1
|
* added missing entries in CHANGES: rpm-4.4.8, "co", and python2.4 fixBogdano Arendartchuk2007-06-161-0/+3
|
* updated CHANGES regarding compatibility with cheetah-2 and epoch inBogdano Arendartchuk2007-06-121-0/+2
| | | | | changelogs
* Updated changes about previous fixes in mirror supportBogdano Arendartchuk2007-06-051-0/+2
|
* - updated CHANGESAndreas Hasenack2007-05-181-0/+3
|
* Updated CHANGES to v1.6.16 and v1.6.17Bogdano Arendartchuk2007-05-041-0/+18
|
* 1.6.15V1_6_15Bogdano Arendartchuk2007-03-161-0/+6
|
* merge 1.6.2b changesOlivier Blin2006-09-271-0/+6
|
* - 1.6.2a: moved revision-offset parameter to [log] sectionAndreas Hasenack2006-02-171-0/+3
|
* - updated changesBogdano Arendartchuk2006-02-161-0/+12
|
* - added CHANGES file to describe changes (duh)Andreas Hasenack2006-02-021-0/+12