Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 1.951.95 | Olivier Blin | 2009-09-25 | 2 | -1/+7 |
| | |||||
* | add arm support and use -gnueabi instead of -gnu (from Arnaud Patard) | Olivier Blin | 2009-09-25 | 1 | -0/+21 |
| | |||||
* | introduce CANONTARGETGNU, to be able to use -gnueabi for ARM (from Arnaud ↵ | Olivier Blin | 2009-09-25 | 3 | -1/+4 |
| | | | | Patard) | ||||
* | add mipsel support (from Arnaud Patard) | Olivier Blin | 2009-09-25 | 1 | -0/+4 |
| | |||||
* | 1.941.94 | Anssi Hannula | 2009-08-08 | 2 | -1/+2 |
| | |||||
* | Update perl_convert_version to keep alphabetic tail in version number | Anssi Hannula | 2009-08-08 | 2 | -1/+13 |
| | | | | | (Luca Berra). | ||||
* | 1.931.93 | Christophe Fergeau | 2009-07-28 | 2 | -1/+4 |
| | |||||
* | update perl_convert_version macro | Christophe Fergeau | 2009-07-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch from Jérôme Quelin current %perl_convert_version is defined as: %perl_convert_version() %(perl -Mversion -le %'$v=version->new(%{1})->normal; $v=~s/^v//; print $v') however, this does not work when parsing strange versions such as 1.03a or 6.0.e (yes, those exist). currently we get: $ rpm --eval '%perl_convert_version 1.03a' Bareword found where operator expected at -e line 1, near "1.03a" (Missing operator before a?) syntax error at -e line 1, near "1.03a" Execution of -e aborted due to compilation errors. $ rpm --eval '%perl_convert_version 6.0.e' 0.0.0 therefore, i would like to update it a bit to read: %perl_convert_version() %(perl -Mversion -le %'$v=version->new("%{1}")->normal; $v=~s/^v//; print $v') (note the quotes enclosing the %{1}) using this macro on above examples, we would get 1.30.0 and 6.0.0. not perfect, but at least it doesn't fail, and %mkrel can be used to differentiate them. | ||||
* | 1.921.92 | Christophe Fergeau | 2009-07-28 | 1 | -1/+1 |
| | |||||
* | update NEWS | Christophe Fergeau | 2009-07-28 | 1 | -0/+5 |
| | |||||
* | Use git2cl to generate ChangeLog if we detect a git repository | Christophe Fergeau | 2009-07-09 | 1 | -0/+13 |
| | |||||
* | making sure automatic provides & requires for perl package are using the | Jérôme Quelin | 2009-07-07 | 2 | -2/+4 |
| | | | | | | new macro %perl_convert_version cf http://lists.mandriva.com/maintainers/2009-06/msg00050.php | ||||
* | fix path to debugedit for rpm5 | Per Øyvind Karlsen | 2009-06-25 | 1 | -1/+9 |
| | |||||
* | install platform specific directories under a dedicated 'platform' directory | Per Øyvind Karlsen | 2009-05-12 | 1 | -2/+2 |
| | |||||
* | 1.911.91 | Christophe Fergeau | 2009-02-03 | 2 | -2/+5 |
| | |||||
* | Add new perl_convert_version macro to convert cpan version to rpm version | Christophe Fergeau | 2009-02-03 | 1 | -0/+3 |
| | |||||
* | Use fake email address in commit logs | Christophe Fergeau | 2009-02-03 | 2 | -2/+2 |
| | | | | | | | If the commits don't have an email address looking like a valid email address, then git-rebase (and possibly other git tools) will complain. Use the dummy devel@mandriva.com as the email address of the author of the patch | ||||
* | - git-repository--after-tarball: | Pascal Rigaux | 2009-01-29 | 2 | -1/+12 |
| | | | | | | o commit the tarball with user "unknown" o commit the tarball using the tarball's modification time | ||||
* | 1.901.90 | Pascal Rigaux | 2009-01-29 | 2 | -1/+3 |
| | |||||
* | - call patch with -U (aka --unified-reject-files) | Pascal Rigaux | 2009-01-29 | 1 | -1/+1 |
| | |||||
* | 1.891.89 | Pascal Rigaux | 2009-01-29 | 2 | -1/+5 |
| | |||||
* | - when %_with_git_repository is set, define %_after_setup and %_patch to use | Pascal Rigaux | 2009-01-29 | 5 | -0/+235 |
| | | | | | the new scripts git-repository--after-tarball and git-repository--apply-patch | ||||
* | Version 1.88 - 7 January 2009, by Christophe Fergeau1.88 | Christophe Fergeau | 2009-01-07 | 2 | -1/+5 |
| | | | | | | - fix ugly warning during invocation of php.req - RPM5 fixes | ||||
* | add a warning about %defaultbuildroot | Pascal Rigaux | 2008-12-15 | 1 | -0/+1 |
| | |||||
* | fix broken site_perl regexp which would add versioned requires without epoch | Per Øyvind Karlsen | 2008-11-24 | 1 | -1/+1 |
| | | | | | and merge it with vendor_perl regexp | ||||
* | fix so that redundant unversioned python-base/perl-base is added as dependencies | Per Øyvind Karlsen | 2008-11-24 | 1 | -11/+22 |
| | | | | | | if a versioned is already added (maybe worth doing similar way with other depencies as well? for consistency at least, if for nothing else) | ||||
* | consistently use " at same place with sed while we're at it.. | Per Øyvind Karlsen | 2008-11-23 | 1 | -1/+1 |
| | |||||
* | I originally figured that querying rpm database within script weren't supposed | Per Øyvind Karlsen | 2008-11-23 | 3 | -16/+6 |
| | | | | | | to be done, but as I now see it's done elsewhere, perl-base epoch tag should rather be handled in the script than by autotools | ||||
* | silence warnings about use of GNU make extensions | Per Øyvind Karlsen | 2008-11-23 | 1 | -1/+1 |
| | |||||
* | don't hardcore epoch tag in versioned perl-base dependency | Per Øyvind Karlsen | 2008-11-23 | 3 | -2/+16 |
| | |||||
* | remove install-sh as this is pulled by autotools | Per Øyvind Karlsen | 2008-10-17 | 1 | -323/+0 |
| | |||||
* | use rpmRC enum type rather than int | Per Øyvind Karlsen | 2008-10-17 | 1 | -1/+1 |
| | |||||
* | fix frenchy plural grammar | Per Øyvind Karlsen | 2008-10-17 | 1 | -1/+1 |
| | |||||
* | * pick up c, cpp & ld flags from pkg-config (needed by rpm5) | Per Øyvind Karlsen | 2008-10-17 | 1 | -1/+16 |
| | | | | | * check for rpmio.h & rpmtag.h (needed by rpm5) | ||||
* | fix typo of header name | Per Øyvind Karlsen | 2008-10-17 | 1 | -1/+1 |
| | |||||
* | check for existence of rpmlib.h before including it, otherwise | Per Øyvind Karlsen | 2008-10-17 | 1 | -0/+5 |
| | | | | | include rpmio.h & rpmtag.h (fixes rpm5 build) | ||||
* | only call php.req if they are php files | Guillaume Rousse | 2008-10-05 | 1 | -1/+1 |
| | |||||
* | 1.87: really don't add php dependencies for doc files1.87 | Pascal Rigaux | 2008-09-22 | 1 | -1/+1 |
| | |||||
* | don't do php files filtering from inside php.req, but from find-requires, as ↵ | Guillaume Rousse | 2008-09-20 | 2 | -5/+2 |
| | | | | per other language-specific dependencies | ||||
* | 1.86: php.req: don't add php dependencies for doc files1.86 | Pascal Rigaux | 2008-09-19 | 1 | -1/+1 |
| | |||||
* | don't add php dependencies for doc files | Guillaume Rousse | 2008-09-18 | 1 | -0/+2 |
| | |||||
* | add make_dm_session macro that calls fndSession1.85 | Olivier Blin | 2008-07-21 | 2 | -1/+3 |
| | |||||
* | 1.84: [bugfix] fix %update_icon_cache/%clean_icon_cache1.841.83 | Pascal Rigaux | 2008-07-10 | 2 | -6/+6 |
| | |||||
* | 1.83: intelligent %update_icon_cache/%clean_icon_cache which are null for | Pascal Rigaux | 2008-07-10 | 2 | -3/+16 |
| | | | | | caches handled through filetriggers, but as used to be for other caches | ||||
* | 1.82: find-lang.pl: do not own /usr/share/locales/$lang/LC_MESSAGES to ↵1.82 | Pascal Rigaux | 2008-06-23 | 2 | -3/+8 |
| | | | | | | | | | speed-up rpm Things owned a lot of times is a pathological case in rpm. For example, if you remove file list from poedit, it will install/uninstall much faster (3x faster for both cold start and warm start on a test on my box) | ||||
* | 1.81: fixes deprecated macros that were broken in previous release1.81 | Pascal Rigaux | 2008-06-20 | 2 | -4/+4 |
| | | | | | (%update_icon_cache, %clean_icon_cache, %post_install_gconf_schemas) | ||||
* | 1.80: macros deprecated by rpm filetriggers now return nothing1.80 | Pascal Rigaux | 2008-06-13 | 2 | -55/+18 |
| | |||||
* | 1.79: use lzma by default to compress binary packages (instead of gzip)1.79 | Pascal Rigaux | 2008-06-10 | 1 | -1/+1 |
| | |||||
* | use lzma by default to compress binary packages (instead of gzip) | Pascal Rigaux | 2008-06-10 | 1 | -0/+2 |
| | |||||
* | 1.78 (remove test for %_localstatedir)1.78 | Pascal Rigaux | 2008-06-02 | 1 | -1/+1 |
| |