aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* do new release1.98Per Øyvind Karlsen2010-03-052-1/+5
|
* reapply our changes against latest version from upstreamPer Øyvind Karlsen2010-03-051-43/+330
|
* reverting commit r266103Jérôme Quelin2010-02-102-3/+6
|
* using generated MYMETA.yml would be better. indeed, this creates what'sJérôme Quelin2010-02-102-6/+3
| | | | | been detected.
* adding documentationJérôme Quelin2010-02-101-0/+21
|
* using META.(yml|json) to extract requires if presentJérôme Quelin2010-02-101-2/+9
|
* new script: perl.req-from-metaJérôme Quelin2010-02-102-0/+34
|
* - nuke requires on python-base, packages no longer exist for python 2.6Michael Scherer2010-02-051-1/+1
|
* 1.971.97Anssi Hannula2009-12-122-1/+2
|
* fix package build when the debug package is empty (regression introduded in ↵Anssi Hannula2009-12-122-0/+4
| | | | 1.96)
* release 1.961.96Anssi Hannula2009-12-102-1/+11
|
* Revert controversial %arm and %mips* changes as per advisement fromAnssi Hannula2009-12-101-8/+0
| | | | | | | | Christophe Fergeau, and because we need the perl.prov change released. (reverts 263740, 263741) The macros can be readded later after an agreement has been reached.
* 1990s called, they want their $VERSION backJérôme Quelin2009-12-081-1/+1
| | | | | | | | | | | | | | seriously, the code was only catching version such as: $VERSION = ... $VERSION = ... however, now version are often declared with our or my, with potentially some code before (eg, to load modules on the same line) this will allow perl.prov to assign a version to (almost) all perl(Foo::Bar) provides.
* add %armPer Øyvind Karlsen2009-11-271-0/+2
|
* add %mips, %mipsel & %mipsxPer Øyvind Karlsen2009-11-271-0/+6
|
* replace %sunsparc with %sparc & sparcx (from rpm5.org)Per Øyvind Karlsen2009-11-271-1/+2
|
* support ELF executables only as a.out has been deprecated since ages ago (fixesPer Øyvind Karlsen2009-11-261-2/+2
| | | | | objdump 'File format not recognized' errors)
* don't try finding debug files in buildroot when there's nonePer Øyvind Karlsen2009-11-261-8/+12
|
* disable MIPS n32 ABI support (not used for now)Olivier Blin2009-09-252-41/+9
|
* add support for MIPS n32 binaries in find-requires and find-providesOlivier Blin2009-09-252-9/+41
| | | | | (from Arnaud Patard)
* 1.951.95Olivier Blin2009-09-252-1/+7
|
* add arm support and use -gnueabi instead of -gnu (from Arnaud Patard)Olivier Blin2009-09-251-0/+21
|
* introduce CANONTARGETGNU, to be able to use -gnueabi for ARM (from Arnaud ↵Olivier Blin2009-09-253-1/+4
| | | | Patard)
* add mipsel support (from Arnaud Patard)Olivier Blin2009-09-251-0/+4
|
* 1.941.94Anssi Hannula2009-08-082-1/+2
|
* Update perl_convert_version to keep alphabetic tail in version numberAnssi Hannula2009-08-082-1/+13
| | | | | (Luca Berra).
* 1.931.93Christophe Fergeau2009-07-282-1/+4
|
* update perl_convert_version macroChristophe Fergeau2009-07-281-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.92Christophe Fergeau2009-07-281-1/+1
|
* update NEWSChristophe Fergeau2009-07-281-0/+5
|
* Use git2cl to generate ChangeLog if we detect a git repositoryChristophe Fergeau2009-07-091-0/+13
|
* making sure automatic provides & requires for perl package are using theJérôme Quelin2009-07-072-2/+4
| | | | | | new macro %perl_convert_version cf http://lists.mandriva.com/maintainers/2009-06/msg00050.php
* fix path to debugedit for rpm5Per Øyvind Karlsen2009-06-251-1/+9
|
* install platform specific directories under a dedicated 'platform' directoryPer Øyvind Karlsen2009-05-121-2/+2
|
* 1.911.91Christophe Fergeau2009-02-032-2/+5
|
* Add new perl_convert_version macro to convert cpan version to rpm versionChristophe Fergeau2009-02-031-0/+3
|
* Use fake email address in commit logsChristophe Fergeau2009-02-032-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 Rigaux2009-01-292-1/+12
| | | | | | o commit the tarball with user "unknown" o commit the tarball using the tarball's modification time
* 1.901.90Pascal Rigaux2009-01-292-1/+3
|
* - call patch with -U (aka --unified-reject-files)Pascal Rigaux2009-01-291-1/+1
|
* 1.891.89Pascal Rigaux2009-01-292-1/+5
|
* - when %_with_git_repository is set, define %_after_setup and %_patch to usePascal Rigaux2009-01-295-0/+235
| | | | | the new scripts git-repository--after-tarball and git-repository--apply-patch
* Version 1.88 - 7 January 2009, by Christophe Fergeau1.88Christophe Fergeau2009-01-072-1/+5
| | | | | | - fix ugly warning during invocation of php.req - RPM5 fixes
* add a warning about %defaultbuildrootPascal Rigaux2008-12-151-0/+1
|
* fix broken site_perl regexp which would add versioned requires without epochPer Øyvind Karlsen2008-11-241-1/+1
| | | | | and merge it with vendor_perl regexp
* fix so that redundant unversioned python-base/perl-base is added as dependenciesPer Øyvind Karlsen2008-11-241-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 Karlsen2008-11-231-1/+1
|
* I originally figured that querying rpm database within script weren't supposedPer Øyvind Karlsen2008-11-233-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 extensionsPer Øyvind Karlsen2008-11-231-1/+1
|
* don't hardcore epoch tag in versioned perl-base dependencyPer Øyvind Karlsen2008-11-233-2/+16
|