aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* src_compile: Update wording for the filter-flags() functionMarkos Chandras2014-12-211-1/+1
| | | | | | | | It also affects {C,CPP,CXX,CCAS,F,FC,LD}FLAGS according to the eclass. X-Gentoo-Bug: 462436 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=462436
* Clarify that PDEPEND may be installed after the package in some cases.Ulrich Müller2014-11-152-7/+9
| | | | Bug 424117.
* Merge pull request #24 from maekke/cssMarkos Chandras2014-11-141-14/+7
|\ | | | | use darker color for span.Constant in code examples for bug #515696
| * update color scheme for syntax highlightingMarkus Meier2014-11-131-14/+7
| | | | | | | | | | | | * better contrast * colors based on zellner.vim * drop unused style definition
| * use darker color for span.Constant in code examples for bug #515696Markus Meier2014-11-111-1/+1
|/
* arch/mips: Add Cavium Octeon and CI20 systemsMarkos Chandras2014-11-081-1/+1
|
* Merge pull request #22 from maekke/bootstrapMarkos Chandras2014-11-082-138/+172
|\ | | | | Use Tyrian layout
| * fix Questions/comments columnsMarkus Meier2014-09-061-2/+2
| | | | | | | | As pointed out by Alex Legler switch the columns
| * add missing columns in footer for change in ↵Markus Meier2014-09-061-0/+2
| | | | | | | | 990f1bc87b4bfe02d9ee908d56d27c0b088e2013
| * fix logo usage linkMarkus Meier2014-08-241-1/+1
| |
| * Add 'Questions or comments?' to the footerMarkus Meier2014-08-241-0/+6
| | | | | | | | This will increase the height of the footer and fix the distance of the images
| * use first-header class for <h1> headingsMarkus Meier2014-08-241-1/+1
| |
| * drop <a> in headingsMarkus Meier2014-07-261-3/+3
| |
| * make pre's span.Constant darker to be more readableMarkus Meier2014-07-261-1/+1
| |
| * add Home button to navigation barMarkus Meier2014-07-261-0/+8
| |
| * Add explicit space between arrow and text in navigation barMarkus Meier2014-07-231-5/+5
| |
| * Use bootstrap tablesMarkus Meier2014-07-231-5/+3
| | | | | | | | | | - Use css table class for <table>s - Drop custom <th> magic and use bootstrap native one
| * use bootstrap alerts for important, note, todo and warning tagsMarkus Meier2014-07-232-64/+12
| | | | | | | | - drop replaced css parts
| * Improve navigation a bitMarkus Meier2014-07-221-7/+14
| | | | | | | | | | | | - Add dropdown with available child pages - Use glyphs from bootstrap instead of pure html arrows - Drop parent page menu entry since it's available via breadcrumb
| * Show current page location under the menuMarkus Meier2014-07-221-0/+32
| | | | | | | | | | - Use the breadcrump component of bootstrap - Add printParentDocs template to generate the entries recursively
| * Add jquery and bootstrap .js filesMarkus Meier2014-06-291-0/+2
| |
| * use bootstrap layout from infra-status.g.oMarkus Meier2014-06-291-64/+95
| |
* | Document use dependency defaults on this section of the devmanualAnthony Ryan2014-10-181-3/+16
| |
* | Merge pull request #21 from wking/no-network-accessMarkos Chandras2014-10-181-0/+13
|\ \ | | | | | | ebuild-writing/functions: Don't allow network access
| * | ebuild-writing/functions: Don't allow network accessW. Trevor King2014-09-031-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There have been a number of bugs filed to remove network access from ebuild phases [1,2,...], but until now this policy was undocumented here. We'll have to relax this restriction if the src_fetch [3,4,5] or pkg_fetch [6] proposals being discussed for EAPI-6 are accepted, but neither is currently mentioned in either the PMS [7] or Portage [8]. Portage *does* have a network-sandbox feature [9,10], which applies to all src_* phases except src_unpack (for live ebuilds). I think it should be applied to pkg_* phases too, but Michał thinks they may need networking "for some kind of IPC" [11]. Alexis pointed out that a strict network-sandbox will break distcc [12], but since that network access is the result of enabling a Portage feature (and not initiated by the ebuild or package itself), it falls outside the scope of this policy. [1]: https://bugs.gentoo.org/show_bug.cgi?id=315403 Summary: media-video/jubler fails to build without network [2]: https://bugs.gentoo.org/show_bug.cgi?id=336771 Summary: dev-libs/libevent tests require network access [3]: https://bugs.gentoo.org/show_bug.cgi?id=182028 Summary: [Future EAPI] About managing CVS/SUBVERSION version of software [4]: http://thread.gmane.org/gmane.linux.gentoo.devel/47645/focus=52918 From: Marijn Schouten <hkBst@gentoo.org> Subject: src_fetch (was Re: EAPI 1 (Was: Re: Monthly Gentoo Council Reminder for April)) Date: 2007-11-09 17:41:38 GMT [5]: http://thread.gmane.org/gmane.linux.gentoo.devel/87869 From: Michał Górny <mgorny@gentoo.org> Subject: [EAPI 6] src_fetch() for fetching live sources Date: 2013-08-27 10:01:27 GMT [6]: http://thread.gmane.org/gmane.linux.gentoo.devel/87869/focus=878773 From: Ian Stakenvicius <axs@gentoo.org> Subject: Re: [EAPI 6] src_fetch() for fetching live sources Date: 2013-08-27 14:33:27 GMT [7]: git://git.overlays.gentoo.org/proj/pms.git [8]: git://git.overlays.gentoo.org/proj/portage.git [9]: http://thread.gmane.org/gmane.linux.gentoo.devel/87641 From: Michał Górny <mgorny@gentoo.org> Subject: New developer features in portage: cgroup, network-sandbox, ipc-sandbox Date: 2013-08-20 10:26:03 GMT [10]: http://thread.gmane.org/gmane.linux.gentoo.devel/91131 From: Michał Górny <mgorny@gentoo.org> Subject: RFC: enabling ipc-sandbox & network-sandbox by default Date: 2014-05-11 21:42:38 GMT [11]: http://article.gmane.org/gmane.linux.gentoo.devel/87641 From: Michał Górny <mgorny@gentoo.org> Subject: New developer features in portage: cgroup, network-sandbox, ipc-sandbox Date: 2013-08-20 10:26:03 GMT [12]: http://thread.gmane.org/gmane.linux.gentoo.devel/87641/focus=87658 From: Alexis Ballier <aballier@gentoo.org> Subject: Re: New developer features in portage: cgroup, network-sandbox, ipc-sandbox Date: 2013-08-20 15:04:35 GMT
* | | Merge pull request #23 from wking/doc-useMarkos Chandras2014-10-181-2/+10
|\ \ \ | | | | | | | | ebuild-writing/common-mistakes: Mention the 'doc' USE flag
| * | | ebuild-writing/common-mistakes: Mention the 'doc' USE flagW. Trevor King2014-09-141-2/+10
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When reminding folks to install the docs, also remind them that they should be using the 'doc' USE flag for serious docs. This USE flag is the standard way to enable/disable doc installation, and we don't want ebuilds blindly pulling in doc depenencies regardless of how it's set. Use some of Ulrich Müller's wording [1]. [1]: https://bugs.gentoo.org/show_bug.cgi?id=522800#c3 Thanks-to: Ulrich Müller <ulm@gentoo.org>
* | | Merge pull request #17 from mrueg/masterMarkos Chandras2014-10-181-0/+14
|\ \ \ | |/ / |/| | Add paragraph regarding packages without existing HOMEPAGE
| * | Add paragraph regarding packages without existing HOMEPAGEManuel Rüger2014-07-251-0/+14
| | | | | | | | | | | | | | | See Dev-ML discussion: http://article.gmane.org/gmane.linux.gentoo.devel/92024 As proposed in https://bugs.gentoo.org/show_bug.cgi?id=517644#c6
* | | Merge branch 'master' of git+ssh://git.overlays.gentoo.org/proj/devmanualMarkos Chandras2014-07-242-18/+1
|\ \ \ | | |/ | |/|
| * | ebuild-writing/eapi: Replace REPLACED_BY with REPLACED_BY_VERSIONMike Gilbert2014-06-081-1/+1
| | |
| * | Revert "add "Pkgconfig files" section wrt #445130"Ulrich Müller2014-05-131-17/+0
| |/ | | | | | | | | | | | | | | This reverts commit b0a519807f82c2190129dfa662922c8b061eb368. Per 2014-05-13 council decision. Conflicts: ebuild-writing/common-mistakes/text.xml
* | Merge pull request #13 from creffett/masterMarkos Chandras2014-07-231-1/+12
|\ \ | | | | | | Clarify difference between _p and -r in ebuild names
| * | Further changes to ebuild naming, clarify snapshot naming schemeChris Reffett2014-01-041-3/+7
| | |
| * | Clarify difference between _p and -r in ebuild names wrt bug 414867,Chris Reffett2014-01-041-1/+8
| | | | | | | | | | | | also mention the normal way of naming snapshots
* | | Merge pull request #16 from mrueg/masterMarkos Chandras2014-07-231-0/+1
|\ \ \ | | | | | | | | Add a verification step
| * | | Add a verification step for the signatureManuel Rüger2014-03-161-0/+1
| | | |
* | | | Merge pull request #18 from mudler/masterMarkos Chandras2014-07-231-1/+1
|\ \ \ \ | |_|_|/ |/| | | fixing a small typo in ebuild-writing/misc-files/patches
| * | | fixing a small typo in ebuild-writing/misc-files/patchesmudler2014-07-231-1/+1
|/ / /
* | | src_install: Fix two instances where the language presumed ordered EAPIs.Michael Orlitzky2014-05-051-2/+3
| | | | | | | | | | | | Link: https://bugs.gentoo.org/show_bug.cgi?id=486146#c15
* | | src_install: EAPI names are strings and not numbersMarkos Chandras2014-05-041-1/+1
| | | | | | | | | | | | | | | Thanks to Ulrich Müller <ulm@gentoo.org> Link: https://bugs.gentoo.org/show_bug.cgi?id=486146#c9
* | | Update the src_install reference to favor EAPI >= 4.Michael Orlitzky2014-05-041-40/+42
| | | | | | | | | | | | | | | X-Gentoo-Bug: 486146 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=486146
* | | Fix anchor link to eapiManuel Rüger2014-04-041-1/+1
| | |
* | | update GLEP links to new wiki locationMarkus Meier2014-03-317-11/+11
|/ / | | | | | | | | | | | | GLEPs have been moved to wiki.g.o - update all GLEP links to the new location X-Gentoo-Bug: 504526 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=504526
* | Merge pull request #11 from mrueg/masterMarkos Chandras2014-03-162-0/+262
|\ \ | | | | | | Add README and License file
| * | Add README.mdManuel Rüger2014-03-161-0/+10
| | |
| * | Add LICENSE FileManuel Rüger2013-09-261-0/+252
| | |
* | | remove trunk referenceMarkus Meier2014-03-151-1/+1
| | | | | | | | | | | | | | | | | | | | | remove trunk reference since devmanual is no longer in svn... X-Gentoo-Bug: 498558 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=498558
* | | Merge pull request #15 from xhochy/link-to-toolchain-funcsMarkos Chandras2014-03-081-1/+1
|\ \ \ | | | | | | | | Link to toolchain-funcs.eclass in src_compile/building
| * | | Link to toolchain-funcs.eclass in src_compile/buildingUwe L. Korn2014-03-071-1/+1
|/ / /