From Fedora Project Wiki
(remove FESCo election) |
(cleanup) |
||
Line 3: | Line 3: | ||
|REAL-NAME=Till Maas | |REAL-NAME=Till Maas | ||
|image= | |image= | ||
|birthday= | |birthday=16. 02. | ||
|birthplace= | |birthplace= | ||
|HOME=[https://www.openstreetmap.org/index.html?mlat=50.7759&mlon=6.085&zoom=3 Aachen, Germany] | |HOME=[https://www.openstreetmap.org/index.html?mlat=50.7759&mlon=6.085&zoom=3 Aachen, Germany] | ||
Line 12: | Line 12: | ||
|IRC=tyll | |IRC=tyll | ||
|irc-channels={{fpchat|#fedora-releng}} {{fpchat|#fedora-admin}} {{fpchat|#fedora-apps}} {{fpchat|#fedora-devel}} {{fpchat|#epel}} {{fpchat|#fedora-de}} | |irc-channels={{fpchat|#fedora-releng}} {{fpchat|#fedora-admin}} {{fpchat|#fedora-apps}} {{fpchat|#fedora-devel}} {{fpchat|#epel}} {{fpchat|#fedora-de}} | ||
|twitteruser= | |twitteruser=TillMaas | ||
|rhce-cert= | |||
|rhct-cert= | |||
|gtalk= | |||
|jabber=till@jabber.ccc.de | |jabber=till@jabber.ccc.de | ||
}} | }} | ||
Line 29: | Line 32: | ||
* [https://communityblog.fedoraproject.org/fesco-elections-interview-till-maas-till/ FESCo Election 2017 Interview] | * [https://communityblog.fedoraproject.org/fesco-elections-interview-till-maas-till/ FESCo Election 2017 Interview] | ||
* | * Database dumps: https://infrastructure.fedoraproject.org/infra/db-dumps/ | ||
** interesting mails | ** interesting mails | ||
* https://www.redhat.com/archives/fedora-extras-list/2006-July/msg00712.html - fomit-frame-pointers | * https://www.redhat.com/archives/fedora-extras-list/2006-July/msg00712.html - fomit-frame-pointers | ||
Line 38: | Line 39: | ||
* https://www.redhat.com/archives/fedora-extras-list/2006-August/msg00108.html - create snapshot with autotools | * https://www.redhat.com/archives/fedora-extras-list/2006-August/msg00108.html - create snapshot with autotools | ||
** Review | ** Review | ||
* [[TillMaas/ReviewChecklist]] | * [[TillMaas/ReviewChecklist]] (outdated) | ||
** external references | ** external references | ||
* http://standards.freedesktop.org/menu-spec/latest/ - desktop-file groups | * http://standards.freedesktop.org/menu-spec/latest/ - desktop-file groups | ||
Line 48: | Line 49: | ||
== Code == | == Code == | ||
* rerun | * rerun autotools | ||
<pre> | <pre> | ||
libtoolize --automake --copy --force | libtoolize --automake --copy --force | ||
Line 59: | Line 60: | ||
<code>AM_MAINTAINER_MODE</code> | <code>AM_MAINTAINER_MODE</code> | ||
== koji links == | == koji links == | ||
Line 66: | Line 65: | ||
* https://koji.fedoraproject.org/scratch/ | * https://koji.fedoraproject.org/scratch/ | ||
* koji download-build | * koji download-build | ||
== SELinux == | == SELinux == | ||
Line 104: | Line 83: | ||
* <code>rpm -ql foo-devel | grep /usr/include | xargs grep -h 'include ' | sort | uniq</code> | * <code>rpm -ql foo-devel | grep /usr/include | xargs grep -h 'include ' | sort | uniq</code> | ||
* <code>rpm -ql foo-python | grep python | xargs grep -h 'import ' | sort | uniq</code> | * <code>rpm -ql foo-python | grep python | xargs grep -h 'import ' | sort | uniq</code> | ||
Revision as of 13:20, 4 February 2018
Till Maas | |
---|---|
[[Image:|center|250px|Till Maas]] | |
Fedora Information | |
FAS name: | till |
Fedora email: | till@fedoraproject.org |
IRC nick: | tyll |
IRC channels: | #fedora-releng[?] #fedora-admin[?] #fedora-apps[?] #fedora-devel[?] #epel[?] #fedora-de[?] |
Fedorapeople page: | https://till.fedorapeople.org |
Badges (206) | |
- Languages: German, English
- Occupation: Penetration Tester
- Packages Fedorapeople Performed Review Requests Open Review Requests UpdatesFavourite Editor Blog ohloh profile
Fedora Overview
- FESCo Election 2017 Interview
- Database dumps: https://infrastructure.fedoraproject.org/infra/db-dumps/
- interesting mails
- https://www.redhat.com/archives/fedora-extras-list/2006-July/msg00712.html - fomit-frame-pointers
- https://www.redhat.com/archives/fedora-extras-list/2006-August/msg00071.html - %lang %doc
- https://www.redhat.com/archives/fedora-extras-list/2006-August/msg00108.html - create snapshot with autotools
- Review
- TillMaas/ReviewChecklist (outdated)
- external references
- http://standards.freedesktop.org/menu-spec/latest/ - desktop-file groups
- http://standards.freedesktop.org/desktop-entry-spec/latest/ - desktop files
- http://standards.freedesktop.org/icon-theme-spec/latest/ - icons
- TillMaas/ForwardTest
- TillMaas/Sandbox: My sandbox
- Fedora Banners in Germany: Height: 110 cm, 17 cm diameter, 7.5 kg weight
Code
- rerun autotools
libtoolize --automake --copy --force aclocal-1.9 autoheader automake-1.9 --add-missing --force-missing --copy autoconf
- make configure not to reconfigure itself: In configure.in (or configure.ac) add after AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
koji links
- https://koji.fedoraproject.org/packages/wyrd
- https://koji.fedoraproject.org/scratch/
- koji download-build
SELinux
- restorecon relabels files with type file_t (which means the file has no label)
- mount -o context=system_u:object_r:tmp_t:s0 /dev/mapper/tmp /tmp - correct context for /tmp filesystem
Debuginfo Packages
%global debug_package %{nil}
- Packaging/Debuginfo
RPM Comment/Macro Weirdness
- https://www.redhat.com/archives/fedora-devel-list/2008-February/msg00165.html
- http://www.redhat.com/advice/tips/rpm_revisited.html
Subpackage Requires
rpm -ql foo-devel | grep /usr/include | xargs grep -h 'include ' | sort | uniq
rpm -ql foo-python | grep python | xargs grep -h 'import ' | sort | uniq