aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* v1.105 - support to extract perl runtime requires from meta spec 21.105Jérôme Quelin2010-07-143-2/+7
|
* 1.104 - revert "strip -g" change for shared libraries1.104Christophe Fergeau2010-04-273-2/+6
|
* strip shared libraries with the '-g' option1.103Per Øyvind Karlsen2010-04-163-2/+5
|
* handle build dir with spaces when finding debug infoOlivier Blin2010-04-161-1/+1
|
* Version 1.1021.102Michael Scherer2010-04-072-1/+5
|
* - do not requires python 2.X branch for python 3.X rpm, requires instead ↵Michael Scherer2010-04-071-1/+3
| | | | python 3.X
* version 1.1011.101Jérôme Quelin2010-03-262-1/+5
|
* call perl.req-from-meta with the reight meta file when there are otherJérôme Quelin2010-03-261-1/+1
| | | | | meta.json/meta.yml files shipped in the dist.
* enable rubygems(...) providesPer Øyvind Karlsen2010-03-231-2/+2
|
* really check that the debug directory we want to search through exists, not ↵Per Øyvind Karlsen2010-03-231-1/+1
| | | | only the parent
* add rubygem(...) dependency extractor (disabled for now)Per Øyvind Karlsen2010-03-214-1/+98
|
* cutting v1.1001.100Jérôme Quelin2010-03-142-1/+6
|
* skip plain, regular comments. how comes this has not been spotted earlier? ↵Jérôme Quelin2010-03-121-1/+1
| | | | (sigh)
* meta file is listed as an absolute path, not relative to BUILD rootJérôme Quelin2010-03-121-1/+1
|
* allow for for only stripping files without creating debug package contents ↵1.99Per Øyvind Karlsen2010-03-093-3/+8
| | | | by setting DISABLE_DEBUG environment variable.
* 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
|