Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 213482 Details for
Bug 297541
Repoman could print upstream.workaround if there is a reference to "no-as-needed" in a ebuild
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to repoman
repoman.patch (text/plain), 1.65 KB, created by
Samuli Suominen (RETIRED)
on 2009-12-19 17:16:29 UTC
(
hide
)
Description:
Patch to repoman
Filename:
MIME Type:
Creator:
Samuli Suominen (RETIRED)
Created:
2009-12-19 17:16:29 UTC
Size:
1.65 KB
patch
obsolete
>diff -ur repoman.orig/checks.py repoman/checks.py >--- repoman.orig/checks.py 2009-12-13 20:08:46.000000000 +0200 >+++ repoman/checks.py 2009-12-19 19:16:41.000000000 +0200 >@@ -374,6 +374,12 @@ > re = re.compile(r'^\s*MAKEOPTS=(\'|")?.*-j\s*1\b') > error = errors.EMAKE_PARALLEL_DISABLED_VIA_MAKEOPTS > >+class NoAsNeeded(LineCheck): >+ """Check for calls to the no-as-needed function.""" >+ repoman_check_name = 'upstream.workaround' >+ re = re.compile(r'.*\$\(no-as-needed\)') >+ error = errors.NO_AS_NEEDED >+ > class DeprecatedBindnowFlags(LineCheck): > """Check for calls to the deprecated bindnow-flags function.""" > repoman_check_name = 'ebuild.minorsyn' >@@ -468,7 +474,7 @@ > EbuildUselessCdS, EbuildNestedDie, > EbuildPatches, EbuildQuotedA, EapiDefinition, > IUseUndefined, InheritAutotools, >- EMakeParallelDisabled, EMakeParallelDisabledViaMAKEOPTS, >+ EMakeParallelDisabled, EMakeParallelDisabledViaMAKEOPTS, NoAsNeeded, > DeprecatedBindnowFlags, SrcUnpackPatches, WantAutoDefaultValue, > SrcCompileEconf, Eapi4IncompatibleFuncs, Eapi4GoneVars))) > >Only in repoman.orig: checks.pyc >Only in repoman.orig: checks.pyo >diff -ur repoman.orig/errors.py repoman/errors.py >--- repoman.orig/errors.py 2009-12-13 20:08:46.000000000 +0200 >+++ repoman/errors.py 2009-12-19 19:15:19.000000000 +0200 >@@ -17,3 +17,4 @@ > EMAKE_PARALLEL_DISABLED_VIA_MAKEOPTS = 'Upstream parallel compilation bug (MAKEOPTS=-j1 on line: %d)' > DEPRECATED_BINDNOW_FLAGS = 'Deprecated bindnow-flags call on line: %d' > EAPI_DEFINED_AFTER_INHERIT = 'EAPI defined after inherit on line: %d' >+NO_AS_NEEDED = 'Upstream asneeded linking bug (no-as-needed on line: %d)' >Only in repoman.orig: errors.pyc >Only in repoman.orig: errors.pyo
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 297541
: 213482