[gentoo-commits] repo/gentoo: Branch deleted: undeprecate-ego-sum
commit: Commit: Alec Warner gentoo org> CommitDate: Tue Dec 27 17:12:08 2022 + Branch deleted: undeprecate-ego-sum
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 9d438cde1e0c0f42ec0cf71468e4105b7f17bbfd Author: Alec Warner gentoo org> AuthorDate: Mon Aug 29 14:41:54 2022 + Commit: Alec Warner gentoo org> CommitDate: Mon Aug 29 14:43:10 2022 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=9d438cde Update mirror URLs, add https, remove ftp, per email. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 275a02b..9d71165 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -185,9 +185,9 @@ vim: ft=xml et ts=2 sts=2 sw=2: Dresden University of Technology/AG DSN - http://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo - ftp://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo - rsync://ftp.wh2.tu-dresden.de/gentoo + http://ftp.agdsn.de/gentoo + https://ftp.agdsn.de/gentoo + rsync://ftp.agdsn.de/gentoo University of Applied Sciences, Esslingen
[gentoo-commits] proj/autotools-wrappers: New branch: main
commit: Commit: Alec Warner gentoo org> CommitDate: Sat Jan 29 17:16:19 2022 + New branch: main
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 00ce7f91d6ca07b2d2d72803d29bc5dd4686293e Author: Alec Warner gentoo org> AuthorDate: Fri Sep 17 05:26:24 2021 + Commit: Alec Warner gentoo org> CommitDate: Fri Sep 17 05:27:53 2021 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=00ce7f91 No more AT mirrors. rsync1.at is broken. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 14 -- 1 file changed, 14 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 5bd90a3..216cb5a 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -56,20 +56,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync.br.gentoo.org - - - Any available mirror - rsync.at.gentoo.org - rsync://rsync.at.gentoo.org - - - - Lagis - rsync2.at.gentoo.org - rsync://rsync2.at.gentoo.org - - Any available mirror - rsync.cz.gentoo.org
[gentoo-commits] data/api:master commit in: bin/
commit: f3639b24b860a182d375e5617fa77755b9f9a5a6 Author: Alec Warner gentoo org> AuthorDate: Tue Feb 9 07:15:04 2021 + Commit: Alec Warner gentoo org> CommitDate: Tue Feb 9 07:15:04 2021 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f3639b24 used_free_uidgids.sh: new script to output uid gid information. Signed-off-by: Alec Warner gentoo.org> Signed-off-by: Jaco Kroon iewc.co.za> bin/used_free_uidgids.sh | 260 +++ 1 file changed, 260 insertions(+) diff --git a/bin/used_free_uidgids.sh b/bin/used_free_uidgids.sh new file mode 100755 index 000..b0ed417 --- /dev/null +++ b/bin/used_free_uidgids.sh @@ -0,0 +1,260 @@ +#! /bin/bash +# +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 +# +# Author: Jaco Kroon +# So that you can contact me if you need help with the below insanity. +# +# Configuration options: +# max => maximum value of uid/gid that we're interested in/willing to allocate +# from. Can be set to - to go maximum possible 32-bit value. +# debug => if non-zero outputs some cryptic debug output (will inherit from environment). +# +max=500 +debug=${debug:+1} # set non-zero to enable debug output. + +# +# Basic Design: +# +# There is nothing beautiful about this script, it's downright nasty and I +# (Jaco Kroon ) will be the first to admit that. +# +# For each of the uid and gid ranges, we primarily keep two variables. +# ranges and reason. reason is simply one of USED or RESERVED. Free ranges +# are not mapped into these arrays. +# ranges_ maps a start index onto an end index. So for example, let's say +# uid range 0..10 is USED (allocated, for whatever purposes): +# +# ranges_uid[0]=10 +# reasons_uid[0]=USED +# +# The above says that UID 0 to 10 is USED. +# +# We start with an initially empty set, and then insert into, either merging or +# potentially splitting as we go, by way of the consume function, once completed +# we compact some things and then output. +# + +ranges_uid=() +ranges_gid=() +reason_uid=() +reason_gid=() + +# Colours to be used if output is a TTY. +colour_USED="\e[0;91m" # brightred +colour_FREE="\e[0;92m" # brightgreen +colour_RESERVED="\e[0;94m" # brightblue +colour_RESET="\e[0m" # reset all styles. + +if ! [[ -t 1 ]]; then + colour_USED= + colour_FREE= + colour_RESERVED= + colour_RESET= +fi + +# Find input file if not piped in on stdin, or show a warning about it on +# stderr if we can't find the file. +if [[ -t 0 ]]; then + def_infile="$(dirname "$0")/../files/uid-gid.txt" + if ! [[ -r "${def_infile}" ]] || ! exec <"${def_infile}"; then + echo "Reading from stdin (which happens to be a tty, you should pipe input file to stdin)" >&2 + fi +fi + +consume() +{ + # The basic principle here is that we can either add a new range, or split + # an existing range. Partial overlaps not dealt with, nor range + # extensions. Which would (I believe) negate the need for compact. + # TODO: deal with range merging here, eg, if we have 0..10, and adding 11, then + # we can simply adjust the range to 0..11, for example. + local variant="$1" + local ids="$2" + local type=$([[ "$3" == reserved ]] && echo RESERVED || echo USED) + local range_start="${ids%..*}" + local range_end="${ids#*..}" + declare -n ranges="ranges_${variant}" + declare -n reasons="reason_${variant}" + + [[ -z "${ids}" ]] && return + [[ "${ids}" == - ]] && return + + for k in "${!ranges[@]}"; do + # can the new range be inserted before the next range already in the set? + [[ ${k} -gt ${range_end} ]] && break + [[ ${ranges[k]} -lt ${range_start} ]] && continue + if [[ ${k} -le ${range_start} && ${range_end} -le ${ranges[k]} ]]; then + # new range is contained completely inside. + [[ ${reasons[k]} == ${type} ]] && return # same type. + [[ ${type} == RESERVED ]] && return # USED takes precedence over RESERVED. + + if [[ ${range_end} -lt ${ranges[k]} ]]; then + ranges[range_end+1]=${ranges[k]} + reasons{range_end+1]=${reasons[k]} + fi + [[ ${range_start} -gt ${k} ]] && ranges[k]=$(( range_start - 1 )) + break + else + echo "${range_start}..${range_end} (${type}) overlaps with ${k}..${ranges[k]} (${reas
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 93dbc2868bb29f2a411426c162916d575698fe28 Author: Alec Warner gentoo org> AuthorDate: Thu Nov 5 22:01:54 2020 + Commit: Alec Warner gentoo org> CommitDate: Tue Nov 10 21:51:18 2020 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=93dbc286 No more ftp according to mirrorstats. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 6195f12..6f08fd6 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -142,7 +142,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: University of Applied Sciences, Esslingen https://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ - ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ rsync://ftp-stud.hs-esslingen.de/gentoo/
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 11879b5d1625a85bd6be92c7b2bc66e0add0246a Author: Alec Warner gentoo org> AuthorDate: Thu Nov 5 21:24:05 2020 + Commit: Alec Warner gentoo org> CommitDate: Thu Nov 5 21:24:05 2020 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=11879b5d Enable ipv6 for halifax per their email. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index fc0a8fa..6195f12 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -160,10 +160,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: RWTH Aachen University - https://ftp.halifax.rwth-aachen.de/gentoo/ - http://ftp.halifax.rwth-aachen.de/gentoo/ - ftp://ftp.halifax.rwth-aachen.de/gentoo/ - rsync://ftp.halifax.rwth-aachen.de/gentoo/ + https://ftp.halifax.rwth-aachen.de/gentoo/ + http://ftp.halifax.rwth-aachen.de/gentoo/ + ftp://ftp.halifax.rwth-aachen.de/gentoo/ + rsync://ftp.halifax.rwth-aachen.de/gentoo/
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: d08c4ae93b167922e449980f2c2b819f90e7b597 Author: Alec Warner gentoo org> AuthorDate: Wed Aug 12 17:27:44 2020 + Commit: Alec Warner gentoo org> CommitDate: Wed Aug 12 17:28:17 2020 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=d08c4ae9 Update wheel.sk mirror. Closes: https://bugs.gentoo.org/736539 Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 13263eb..4cde1bb 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -232,9 +232,8 @@ vim: ft=xml et ts=2 sts=2 sw=2: Wheel.sk - https://gentoo.wheel.sk/ - http://gentoo.wheel.sk/ - ftp://gentoo.wheel.sk/pub/linux/gentoo/ + https://mirror.wheel.sk/gentoo + http://mirror.wheel.sk/gentoo Rainside.sk
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 96660100dce782c674392fc65e148223db0b3f07 Author: Alec Warner gentoo org> AuthorDate: Fri May 1 18:44:00 2020 + Commit: Alec Warner gentoo org> CommitDate: Fri May 1 18:44:00 2020 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=96660100 Revert "Unpublish rsync1.de." This reverts commit 57a970516e02233bebb4626bfeec7bfe988b54b8. Whissi has fixed it. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 40ded35..b31568a 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -81,11 +81,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: Any available mirror - rsync.de.gentoo.org rsync://rsync.de.gentoo.org - + rsync://rsync1.de.gentoo.org + I-Node - rsync5.de.gentoo.org rsync://rsync5.de.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 192be883c5f44eba39bc2421f6e091db1025623a Author: Alec Warner gentoo org> AuthorDate: Tue Mar 10 13:49:14 2020 + Commit: Alec Warner gentoo org> CommitDate: Sun Apr 19 02:31:30 2020 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=192be883 Remove rsync25; its no longer functional. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 4 1 file changed, 4 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 051985b..40ded35 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -37,10 +37,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Steadfast Networks - rsync11.us.gentoo.org rsync://rsync11.us.gentoo.org - - Indiana University, Unix Systems Support Group - rsync25.us.gentoo.org - rsync://rsync25.us.gentoo.org - TDS Internet Services - rsync26.us.gentoo.org rsync://rsync26.us.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 96b932c951ec8d11eee6ec3a7f2d20671b2e6e22 Author: Alec Warner gentoo org> AuthorDate: Sun Apr 19 02:27:58 2020 + Commit: Alec Warner gentoo org> CommitDate: Sun Apr 19 02:31:34 2020 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=96b932c9 Upgrade mirror to https, drop FTP. Closes: https://bugs.gentoo.org/715198 Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 5540c73..be6518c 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -266,8 +266,7 @@ vim: ft=xml et ts=2 sts=2 sw=2: Turkish Linux Users Group - Linux Kullanicilari Dernegi(LKD) - ftp://ftp.linux.org.tr/gentoo/ - http://ftp.linux.org.tr/gentoo/ + https://ftp.linux.org.tr/gentoo/ rsync://ftp.linux.org.tr/gentoo-distfiles/
[gentoo-commits] data/api:master commit in: /
commit: ad999ec42f714d19f7397d9a6fa85a9b270c0ea1 Author: Alec Warner gentoo org> AuthorDate: Fri Aug 30 14:54:36 2019 + Commit: Alec Warner gentoo org> CommitDate: Fri Aug 30 14:55:20 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=ad999ec4 Merge branch 'master' of git+ssh://git.gentoo.org/data/api Amending bug annotation on last commit. Signed-off-by: Alec Warner gentoo.org>
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 7994d86307ebec83287f8e613994e0e106af5217 Author: Alec Warner gentoo org> AuthorDate: Fri Aug 30 14:51:45 2019 + Commit: Alec Warner gentoo org> CommitDate: Fri Aug 30 14:54:07 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=7994d863 Remove http mirror. Bug: https://bugs.gentoo.org/693076 Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index aa768df..bada726 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -250,7 +250,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: mdfnet.se ftp://mirror.mdfnet.se/gentoo https://mirror.mdfnet.se/gentoo - http://mirror.mdfnet.se/gentoo
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: b3e60322d5ce4d0131f6378e6b135c7219748d6c Author: Alec Warner gentoo org> AuthorDate: Fri Aug 30 14:51:45 2019 + Commit: Alec Warner gentoo org> CommitDate: Fri Aug 30 14:52:31 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=b3e60322 Remove http mirror. Bug: https://bugs.gentoo.org/660306 Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index aa768df..bada726 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -250,7 +250,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: mdfnet.se ftp://mirror.mdfnet.se/gentoo https://mirror.mdfnet.se/gentoo - http://mirror.mdfnet.se/gentoo
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: be5871fb56dbc3e79935ce2b08726ca1b8de8939 Author: Alec Warner gentoo org> AuthorDate: Wed May 8 14:53:29 2019 + Commit: Alec Warner gentoo org> CommitDate: Wed May 8 14:55:31 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=be5871fb Revert "Remove alexxy.name, its outdated." Undo, alexxy is looking at it. This reverts commit a03a04d0235a98735ed542fd939728b86e72663c. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 4 1 file changed, 4 insertions(+) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 9956449..aa768df 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -376,6 +376,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: http://mirror.yandex.ru/gentoo-distfiles/ ftp://mirror.yandex.ru/gentoo-distfiles/ + + Alexxy.name + https://gentoo-mirror.alexxy.name/ + http://gentoo-mirror.alexxy.name/ Bloodhost.ru
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: b393bebcff3b6728ba877af00b43d5cd34271323 Author: Alec Warner gentoo org> AuthorDate: Wed May 8 14:18:26 2019 + Commit: Alec Warner gentoo org> CommitDate: Wed May 8 14:18:26 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=b393bebc Remove ftp for c3sl, its no longer available. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 08e029e..fd0a18b 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -87,7 +87,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: C3SL, Federal University of Paraná https://gentoo.c3sl.ufpr.br/ http://gentoo.c3sl.ufpr.br/ - ftp://gentoo.c3sl.ufpr.br/gentoo/ rsync://gentoo.c3sl.ufpr.br/gentoo/
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: ece0243786027889d2a20328a0d1ca24c6de6279 Author: Alec Warner gentoo org> AuthorDate: Wed May 8 14:17:56 2019 + Commit: Alec Warner gentoo org> CommitDate: Wed May 8 14:17:56 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=ece02437 Remove leaseweb ftp, its no longer available. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index aa95a19..08e029e 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -207,7 +207,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: LeaseWeb https://mirror.leaseweb.com/gentoo/ http://mirror.leaseweb.com/gentoo/ - ftp://mirror.leaseweb.com/gentoo/ rsync://mirror.leaseweb.com/gentoo/
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: a03a04d0235a98735ed542fd939728b86e72663c Author: Alec Warner gentoo org> AuthorDate: Wed May 8 14:17:24 2019 + Commit: Alec Warner gentoo org> CommitDate: Wed May 8 14:17:24 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a03a04d0 Remove alexxy.name, its outdated. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 4 1 file changed, 4 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index b63094e..aa95a19 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -379,10 +379,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: http://mirror.yandex.ru/gentoo-distfiles/ ftp://mirror.yandex.ru/gentoo-distfiles/ - - Alexxy.name - https://gentoo-mirror.alexxy.name/ - http://gentoo-mirror.alexxy.name/ Bloodhost.ru
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 964c9c5c516f0b6383fe27b6897ca38f0eb1ecb1 Author: Alec Warner gentoo org> AuthorDate: Wed May 8 14:19:30 2019 + Commit: Alec Warner gentoo org> CommitDate: Wed May 8 14:19:30 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=964c9c5c Remove Gtech FTP, its no longer available. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index fd0a18b..9956449 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -34,7 +34,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Georgia Tech - ftp://ftp.gtlib.gatech.edu/pub/gentoo http://www.gtlib.gatech.edu/pub/gentoo rsync://rsync.gtlib.gatech.edu/gentoo
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: f452e8b69e7b34bfd5b31a4499e2a3d57ccdbd96 Author: Alec Warner gentoo org> AuthorDate: Sat Mar 9 08:59:01 2019 + Commit: Alec Warner gentoo org> CommitDate: Sat Mar 9 08:59:35 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f452e8b6 Add ipv6 for muni.cz. Closes: https://bugs.gentoo.org/675704 Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 9c5293b..22bc2aa 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -98,9 +98,9 @@ vim: ft=xml et ts=2 sts=2 sw=2: Masaryk University Brno - http://ftp.fi.muni.cz/pub/linux/gentoo/ - ftp://ftp.fi.muni.cz/pub/linux/gentoo/ - rsync://ftp.fi.muni.cz/pub/linux/gentoo/ + http://ftp.fi.muni.cz/pub/linux/gentoo/ + ftp://ftp.fi.muni.cz/pub/linux/gentoo/ + rsync://ftp.fi.muni.cz/pub/linux/gentoo/ Web4U Mirror
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 11a1c3f562aa28cd4f4a3cc87246a6dc95462925 Author: Alec Warner gentoo org> AuthorDate: Sat Feb 2 16:45:59 2019 + Commit: Alec Warner gentoo org> CommitDate: Sat Feb 2 16:46:44 2019 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=11a1c3f5 Update rsync2.au Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 4 1 file changed, 4 insertions(+) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 0d181d2..051985b 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -206,6 +206,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: Swinburne University of Technology - rsync1.au.gentoo.org rsync://rsync1.au.gentoo.org + + Viktor Villafuerte + rsync://rsync2.au.gentoo.org +
[gentoo-commits] foundation/financials-rfp:master commit in: build/
commit: e7d86d1b23b0df978ea464fa072f7741ed2526c6 Author: Alec Warner gentoo org> AuthorDate: Thu Jan 17 01:33:40 2019 + Commit: Alec Warner gentoo org> CommitDate: Thu Jan 17 01:33:40 2019 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=e7d86d1b Add a copy of the final RFP we submitted. It turns out we cannot upload .pdfs to the wiki. In lieu of that I will commit a copy to the repo to document what we submitted; because I think I can link to it from anongit in various places. Signed-off-by: Alec Warner gentoo.org> build/gentoo-foundation-rfp.pdf | Bin 0 -> 112073 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/build/gentoo-foundation-rfp.pdf b/build/gentoo-foundation-rfp.pdf new file mode 100644 index 000..3aa02b9 Binary files /dev/null and b/build/gentoo-foundation-rfp.pdf differ
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 5227319d4d5be27785450aadeb81247389759acc Author: Alec Warner gentoo org> AuthorDate: Wed Dec 19 03:21:38 2018 + Commit: Alec Warner gentoo org> CommitDate: Wed Dec 19 03:21:38 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=5227319d Remove rsync5.us, its no longer in rotation. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 4 1 file changed, 4 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 581a79d..0d181d2 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -33,10 +33,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Georgia Tech - rsync3.us.gentoo.org rsync://rsync3.us.gentoo.org - - Rochester Institute of Technology - rsync5.us.gentoo.org - rsync://rsync5.us.gentoo.org - Steadfast Networks - rsync11.us.gentoo.org rsync://rsync11.us.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 57a970516e02233bebb4626bfeec7bfe988b54b8 Author: Alec Warner gentoo org> AuthorDate: Sun Dec 16 20:57:50 2018 + Commit: Alec Warner gentoo org> CommitDate: Sun Dec 16 20:57:50 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=57a97051 Unpublish rsync1.de. rsync1.de is constantly at its max load and fails mirror health parameters. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index b2ac7aa..a57a8f4 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -89,10 +89,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: Any available mirror - rsync.de.gentoo.org rsync://rsync.de.gentoo.org - + I-Node - rsync5.de.gentoo.org rsync://rsync5.de.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 669658aad242d2496c564bcd6f643b6e067071fa Author: Alec Warner gentoo org> AuthorDate: Sun Dec 16 20:59:03 2018 + Commit: Alec Warner gentoo org> CommitDate: Sun Dec 16 20:59:03 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=669658aa More clearly document why we removed this mirror. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index a57a8f4..581a79d 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -89,7 +89,8 @@ vim: ft=xml et ts=2 sts=2 sw=2: Any available mirror - rsync.de.gentoo.org rsync://rsync.de.gentoo.org -
[gentoo-commits] proj/gentoo-mirrorstats:master commit in: /
commit: 343409ae01cf6c8cf95f6a59fdeee995aa469e5b Author: Alec Warner gentoo org> AuthorDate: Sat Dec 15 18:57:27 2018 + Commit: Alec Warner gentoo org> CommitDate: Sat Dec 15 18:57:40 2018 + URL: https://gitweb.gentoo.org/proj/gentoo-mirrorstats.git/commit/?id=343409ae Add my GCP mirror IP to the mirmon state. Signed-off-by: Alec Warner gentoo.org> mirmon-rsync.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mirmon-rsync.sh b/mirmon-rsync.sh index c8c5ba0..5df1c73 100755 --- a/mirmon-rsync.sh +++ b/mirmon-rsync.sh @@ -17,6 +17,8 @@ cd /var/www/mirrorstats.gentoo.org/gentoo-mirrorstats/rsync_mirrors for i in ${INFRA}; do echo "gentoo rsync://$i.gentoo.org" >> ./var/g.mirrors done +# Test GCP mirror; added by antarus +echo "gentoo rsync://35.190.132.250" >> ./var/g.mirrors # fatal if the state file is NOT present. [[ -e ./var/mirmon.state ]] || touch ./var/mirmon.state # run mirmon
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 362a0c4a87ef86dc57c78050be0f061fe0457dd3 Author: Alec Warner gentoo org> AuthorDate: Sun Dec 9 13:47:52 2018 + Commit: Alec Warner gentoo org> CommitDate: Sun Dec 9 13:48:20 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=362a0c4a Remove rsync6, its gone. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 4 1 file changed, 4 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 0d2ce4c..b2ac7aa 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -97,10 +97,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: I-Node - rsync5.de.gentoo.org rsync://rsync5.de.gentoo.org - - rwth-aachen.de - rsync6.de.gentoo.org - rsync://rsync6.de.gentoo.org - stealer.net - rsync7.de.gentoo.org rsync://rsync7.de.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: b04c3bbe3668783763109d4986f4ff1ba6501632 Author: Alec Warner gentoo org> AuthorDate: Sun Dec 2 15:28:18 2018 + Commit: Alec Warner gentoo org> CommitDate: Sun Dec 2 15:28:50 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=b04c3bbe Remove UA mirror from list, its outdated by 2 months. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 10 -- 1 file changed, 10 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index f4b1a9d..0d2ce4c 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -194,16 +194,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync3.sk.gentoo.org - - - Any available mirror - rsync.ua.gentoo.org - rsync://rsync.ua.gentoo.org - - - Telcom ISP - rsync3.ua.gentoo.org - rsync://rsync3.ua.gentoo.org - - Any available mirror - rsync.uk.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 5e9faa8b7ca3505975bc1d7576b9c89aec0be320 Author: Alec Warner gentoo org> AuthorDate: Fri Nov 30 13:35:15 2018 + Commit: Alec Warner gentoo org> CommitDate: Fri Nov 30 13:35:15 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=5e9faa8b Remove dead distfiles mirrors. Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 9 - 1 file changed, 9 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 123e13a..2908df3 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -93,10 +93,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: ftp://ftp.fi.muni.cz/pub/linux/gentoo/ rsync://ftp.fi.muni.cz/pub/linux/gentoo/ - - Advokatni Kancelar Kindl & Partneri - http://gentoo.supp.name/ - Web4U Mirror http://gentoo.mirror.web4u.cz/ @@ -114,7 +110,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: OVH http://gentoo.mirrors.ovh.net/gentoo-distfiles/ - ftp://gentoo.mirrors.ovh.net/gentoo-distfiles/ Free @@ -132,10 +127,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: - - rwth-aachen.de - ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/gentoo - Ruhr-Universität Bochum http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: f556b0a4fa43b4bf5d9a4158aa4396f25a819d7b Author: Alec Warner gentoo org> AuthorDate: Fri Nov 30 12:46:20 2018 + Commit: Alec Warner gentoo org> CommitDate: Fri Nov 30 12:46:20 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f556b0a4 Remove IE mirror, its also dead. Remove extra commented regions as well. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 27 --- 1 file changed, 27 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index bf71ed3..f4b1a9d 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -136,33 +136,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync1.fr.gentoo.org - - - - - Any available mirror - rsync.ie.gentoo.org - rsync://rsync.ie.gentoo.org - - - HEAnet - Ireland's National Education and Research Network - - rsync1.ie.gentoo.org - rsync://rsync1.ie.gentoo.org - - Any available mirror - rsync.nl.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 3c410ae36a39a5f9399fdbb9c8e23970a79d374c Author: Alec Warner gentoo org> AuthorDate: Fri Nov 30 12:45:25 2018 + Commit: Alec Warner gentoo org> CommitDate: Fri Nov 30 12:45:25 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=3c410ae3 Remove dead Kazakhstan mirror. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 6 -- 1 file changed, 6 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index a644689..bf71ed3 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -286,12 +286,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync1.kr.gentoo.org - - - Neo Lab's - rsync1.kz.gentoo.org - rsync://rsync1.kz.gentoo.org - - Any available mirror - rsync.ru.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 52601cb2362c6a037208d14cb084c7affb5a9c62 Author: Alec Warner gentoo org> AuthorDate: Mon Nov 26 20:23:34 2018 + Commit: Alec Warner gentoo org> CommitDate: Mon Nov 26 20:24:37 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=52601cb2 Remove dead mirrors. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 16 1 file changed, 16 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index a04a366..a644689 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -37,10 +37,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Rochester Institute of Technology - rsync5.us.gentoo.org rsync://rsync5.us.gentoo.org - - University of Northern Iowa - rsync6.us.gentoo.org - rsync://rsync6.us.gentoo.org - Steadfast Networks - rsync11.us.gentoo.org rsync://rsync11.us.gentoo.org @@ -63,10 +59,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Any available mirror - rsync.br.gentoo.org rsync://rsync.br.gentoo.org - - Laboratory of System Administration - rsync1.br.gentoo.org - rsync://rsync1.br.gentoo.org - @@ -91,10 +83,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: UPC Česká republika, a.s - rsync1.cz.gentoo.org. rsync://rsync1.cz.gentoo.org - - Advokatni Kancelar Kindl & Partneri - rsync2.cz.gentoo.org - rsync://rsync2.cz.gentoo.org - @@ -299,10 +287,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: - - Any available mirror - rsync.kz.gentoo.org - rsync://rsync.kz.gentoo.org - Neo Lab's - rsync1.kz.gentoo.org rsync://rsync1.kz.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: f361f17b96eb1cc24c77c8636428987e977f3b08 Author: Alec Warner gentoo org> AuthorDate: Tue Nov 20 02:47:21 2018 + Commit: Alec Warner gentoo org> CommitDate: Tue Nov 20 02:47:21 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f361f17b Replace rsync3.tw with rsync1.tw Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index e6d9b15..a04a366 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -328,8 +328,8 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync.tw.gentoo.org - isu.edu.tw - rsync3.tw.gentoo.org - rsync://rsync3.tw.gentoo.org + linux.cs.nctu.edu.tw - rsync1.tw.gentoo.org + rsync://rsync1.tw.gentoo.org National Center for High-Performance Computing - rsync6.tw.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 2f005b47ee3ce87121a115996169762ab37fe0fc Author: Alec Warner gentoo org> AuthorDate: Tue Nov 20 02:15:13 2018 + Commit: Alec Warner gentoo org> CommitDate: Tue Nov 20 02:15:26 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=2f005b47 Drop rsync1.uk, its busted. Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 4 1 file changed, 4 deletions(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index fc653c3..e6d9b15 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -248,10 +248,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Any available mirror - rsync.uk.gentoo.org rsync://rsync.uk.gentoo.org - - Qube Managed Services - rsync1.uk.gentoo.org - rsync://rsync1.uk.gentoo.org - Bytemark Hosting - rsync2.uk.gentoo.org rsync://rsync2.uk.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: a5ffa0c25ba347d4d7a955bca371637d3922df31 Author: Alec Warner gentoo org> AuthorDate: Tue Nov 20 02:01:13 2018 + Commit: Alec Warner gentoo org> CommitDate: Tue Nov 20 02:11:53 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a5ffa0c2 Add rsync1.cn Closes: https://bugs.gentoo.org/669404 Signed-off-by: Alec Warner gentoo.org> files/mirrors/rsync.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 58da820..fc653c3 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -273,7 +273,7 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync.cn.gentoo.org - Tsinghua University + Tsinghua University - rsync1.cn.gentoo.org rsync://rsync1.cn.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 1249e454a79a4a59918da01cb544f157e0d081e4 Author: Alec Warner gentoo org> AuthorDate: Fri Nov 9 01:57:40 2018 + Commit: Alec Warner gentoo org> CommitDate: Tue Nov 20 02:11:53 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=1249e454 Add rsync30. Closes: https://bugs.gentoo.org/598120 Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 4 files/mirrors/rsync.xml | 6 -- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 0e22c78..123e13a 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -303,6 +303,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: Netease.com, Inc. http://mirrors.163.com/gentoo/ + + Tsinghua University + https://mirrors.tuna.tsinghua.edu.cn/gentoo + diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index 58fe13c..58da820 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -267,14 +267,16 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync1.au.gentoo.org - Any available mirror - rsync.jp.gentoo.org
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: e41377947b7910422477aafe5fba5733b2b8adda Author: Alec Warner gentoo org> AuthorDate: Fri Nov 9 01:57:40 2018 + Commit: Alec Warner gentoo org> CommitDate: Tue Nov 20 02:04:36 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=e4137794 Add rsync30. Closes: https://bugs.gentoo.org/598120 Signed-off-by: Alec Warner gentoo.org> files/mirrors/distfiles.xml | 4 files/mirrors/rsync.xml | 4 2 files changed, 8 insertions(+) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index e0637b0..0e22c78 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -69,6 +69,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: Pair Networks http://gentoo.mirrors.pair.com/ + + Silicon Valley Web Hosting + http://mirror.sjc02.svwh.net/gentoo/ + diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index ef6d40c..58fe13c 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -53,6 +53,10 @@ vim: ft=xml et ts=2 sts=2 sw=2: TDS Internet Services - rsync26.us.gentoo.org rsync://rsync26.us.gentoo.org + + Silicon Valley Web Hosting - rsync30.us.gentoo.org + rsync://rsync30.us.gentoo.org +
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: e5e1a38845271722d82ff494d803c869455fa1ff Author: Alec Warner gentoo org> AuthorDate: Fri Nov 16 03:43:51 2018 + Commit: Alec Warner gentoo org> CommitDate: Fri Nov 16 03:43:51 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=e5e1a388 Replace date with a firm date in the 2019 new year. We choose Jan 15 to avoid a rush or lack of response during holidays. main.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tex b/main.tex index 10bdb62..d430f86 100644 --- a/main.tex +++ b/main.tex @@ -57,7 +57,7 @@ \section{Main} \label{opening} The Gentoo Foundation is requesting proposals from CPA firms to provide audit, tax, and bookkeeping services for our foundation. -We invite your firm to send us a proposal by . The foundation and its mission are described below. +We invite your firm to send us a proposal by Jan 15 2019. The foundation and its mission are described below. \section{Definitions} \label{sec:definitions}
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: 1aea6b0ff46e504cad72de5bacae5dc532a94c49 Author: Alec Warner gentoo org> AuthorDate: Sat Nov 10 16:31:30 2018 + Commit: Alec Warner gentoo org> CommitDate: Sat Nov 10 16:31:30 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=1aea6b0f Fix items reported by Ulm. main.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tex b/main.tex index 03d41b1..10bdb62 100644 --- a/main.tex +++ b/main.tex @@ -95,7 +95,7 @@ No financial reports have been published by earlier Boards of Trustees since 201 As a result of negligence of previous treasurers and trustees necessary paperwork has not been filed with federal tax authorities (henceforth \textbf{IRS}). A recent treasurer has taken responsibility for cleaning up the historical baggage and performed a massive job of going through historical transactions and recreated a full ledger of transactions. The recent treasurer is not a trained accountant or book-keeper, and the work has been taken on a best-effort basis. -The data of the reconstructed ledger is kept in a format for the open source tool book-keeping tool Ledger\cite{ledger01}. +The data of the reconstructed ledger is kept in a format for the open source book-keeping tool Ledger\cite{ledger01}. Data can easily be exported from this tool and direct knowledge from accountants is not necessary in order to access the books as the current treasurer is available to support the efforts and data can be exported based on the needs of the accountant. The recent treasurer did engage a CPA for several months in 2017, but that CPA was unable to continue for personal reasons. @@ -130,7 +130,7 @@ As the Foundation supports an open source distribution, no proprietary tools sho \section{Proposal} Your proposal should include a fee structure and a timeline estimate of the proposed work. In addition, the Foundation would like the proposal to have a recent Peer Review attached. -\section{Contacting Gentoo Foundation} +\section{Contacting Gentoo} Questions related to creating a proposal can be submitted by email to trust...@gentoo.org. This email address is also the contact point for any submission of a proposal. \begin{thebibliography}{9}
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: 06ca278ed3c335c06d87993e6e9d956fddaea8ea Author: Alec Warner gentoo org> AuthorDate: Fri Nov 9 02:06:58 2018 + Commit: Alec Warner gentoo org> CommitDate: Fri Nov 9 02:06:58 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=06ca278e Fix errors found by vim's spellcheck. main.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tex b/main.tex index a97a57c..03d41b1 100644 --- a/main.tex +++ b/main.tex @@ -121,7 +121,7 @@ This income is used to fund the Gentoo Project activities, including purchases o \subsection{Annual Audit and Tax Filing} While we consider it beneficial to have a verified accounting of the Foundations finances up to 2018; We require annual accounting services to assist in filing taxes; not just for the past years, but on an ongoing basis. -\subsection{Historial Financial Reporting} +\subsection{Historical Financial Reporting} Due to the reconstruction of historical data, a verification of the presented Financial Reports in final form is needed in order to have a confirmed view of the Foundation's finances. \section{Tooling}
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: 162b3f3d621ee5855151a02816826307c7da4752 Author: Alec Warner gentoo org> AuthorDate: Fri Nov 9 02:05:08 2018 + Commit: Alec Warner gentoo org> CommitDate: Fri Nov 9 02:05:08 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=162b3f3d Fix spelling errors provided by Alice. main.tex | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main.tex b/main.tex index f605f6a..a97a57c 100644 --- a/main.tex +++ b/main.tex @@ -57,7 +57,7 @@ \section{Main} \label{opening} The Gentoo Foundation is requesting proposals from CPA firms to provide audit, tax, and bookkeeping services for our foundation. -We invite your firm to send us a propsal by . A description of the foundation and its mission follows. +We invite your firm to send us a proposal by . The foundation and its mission are described below. \section{Definitions} \label{sec:definitions} @@ -90,23 +90,23 @@ The executive of the Foundation is comprised entirely of unpaid volunteers, brok \label{sec:background} The financial state of the Gentoo Foundation is a Foundation with no outstanding invoices and a cash on balance at the end of FY2018 of approximately \$151K USD. -No financial reports have been published by earlier Boards of Trustees since 2012\cite{finrep}, and there are well-founded concerns that the none of the original reports are entirely accurate. +No financial reports have been published by earlier Boards of Trustees since 2012\cite{finrep}, and there are well-founded concerns that none of the original reports are entirely accurate. As a result of negligence of previous treasurers and trustees necessary paperwork has not been filed with federal tax authorities (henceforth \textbf{IRS}). A recent treasurer has taken responsibility for cleaning up the historical baggage and performed a massive job of going through historical transactions and recreated a full ledger of transactions. The recent treasurer is not a trained accountant or book-keeper, and the work has been taken on a best-effort basis. The data of the reconstructed ledger is kept in a format for the open source tool book-keeping tool Ledger\cite{ledger01}. -Data can easily be exported from this tool and direct knowledge from accountants are not necessary in order to access the books as the current treasurer is available to support the efforts and data can be exported based on the needs of the accountant. +Data can easily be exported from this tool and direct knowledge from accountants is not necessary in order to access the books as the current treasurer is available to support the efforts and data can be exported based on the needs of the accountant. The recent treasurer did engage a CPA for several months in 2017, but that CPA was unable to continue for personal reasons. -The CPA did assist in creation of provisional set of financial statements for the Foundation's first financial year, FY2005, which ending June 31, 2005. +The CPA did assist in creation of a provisional set of financial statements for the Foundation's first financial year, FY2005, which ended June 31, 2005. The FY2005 data only contain 3.5 months of transactions, as the first bank account was opened March 2005, nearly 10 months after the incorporation of the Foundation. The CPA also assisted in partially completing IRS Form 990 for FY2005, based on the FY2005 financial statements. Best-effort Financial Reports have been reconstructed until FY2018 available at \cite{gentoo:finances}. Depreciation expenses have been captured, but in-kind donations are still in progress. \subsection{Operations for Fiscal 2018} -The main income source is donations (23.162,01\$), followed by our participantion in the Google Summer of Code program (4,700\$), interest of current accounts (483.64\$) and sale (including royalties for) of Gentoo merchandise (254.50\$). Expenses for FY2018 were \$9,292.95. +The main income source is donations (23.162,01\$), followed by our participation in the Google Summer of Code program (4,700\$), interest of current accounts (483.64\$) and sale (including royalties for) of Gentoo merchandise (254.50\$). Expenses for FY2018 were \$9,292.95. This income is used to fund the Gentoo Project activities, including purchases of infrastructure and marketing material; sponsoring projects related to Gentoo's activities; and sustaining the foundation's own operational expenses. @@ -119,7 +119,7 @@ This income is used to fund the Gentoo Project activities, including purchases o \end{itemize} \subsection{Annual Audit and Tax Filing} -While we consider it beneficial to have a verified accounting of the Foundations finances up to 2018; We also require annual accounting services to assist in filing taxes, not just for the past years, but on an ongoing basis. +While we consider it beneficial to have a verified accounting of th
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: eb2e638a5bc397e7200806cf6d17890fdb751946 Author: Alec Warner gentoo org> AuthorDate: Mon Nov 5 00:02:43 2018 + Commit: Alec Warner gentoo org> CommitDate: Mon Nov 5 00:03:39 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=eb2e638a Updates per mirror-stats; remove dead mirrors. files/mirrors/distfiles.xml | 19 --- 1 file changed, 19 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 38d8410..e0637b0 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -65,11 +65,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: ftp://mirrors.rit.edu/gentoo/ rsync://mirrors.rit.edu/gentoo/ - - University of Northern Iowa - http://gentoo.cs.uni.edu/ - rsync://gentoo.cs.uni.edu/gentoo-distfiles - Pair Networks http://gentoo.mirrors.pair.com/ @@ -182,14 +177,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: http://ftp.ntua.gr/pub/linux/gentoo/ - - - HEAnet - Ireland's National Education and Research Network - http://ftp.heanet.ie/pub/gentoo/ - ftp://ftp.heanet.ie/pub/gentoo/ - rsync://ftp.heanet.ie/pub/gentoo/ - - Evowise.com (Anycast: Milan) @@ -299,10 +286,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: ftp://ftp.mirrorservice.org/sites/distfiles.gentoo.org/ rsync://rsync.mirrorservice.org/distfiles.gentoo.org/ - - Qube Managed Services - http://mirror.qubenet.net/mirror/gentoo/ - @@ -370,8 +353,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Alexxy.name http://gentoo-mirror.alexxy.name/ - ftp://gentoo-mirror.alexxy.name/ - rsync://gentoo-mirror.alexxy.name/ Bloodhost.ru
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: f0853cc309bead7c258ff3e51e311c6e6bd6bf21 Author: Alec Warner gentoo org> AuthorDate: Sat Nov 3 16:27:48 2018 + Commit: Alec Warner gentoo org> CommitDate: Sat Nov 3 16:27:48 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=f0853cc3 Add expenses per trustees thread. main.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tex b/main.tex index e77b647..f605f6a 100644 --- a/main.tex +++ b/main.tex @@ -106,7 +106,7 @@ The CPA also assisted in partially completing IRS Form 990 for FY2005, based on Best-effort Financial Reports have been reconstructed until FY2018 available at \cite{gentoo:finances}. Depreciation expenses have been captured, but in-kind donations are still in progress. \subsection{Operations for Fiscal 2018} -The main income source is donations (23.162,01\$), followed by our participantion in the Google Summer of Code program (4,700\$), interest of current accounts (483.64\$) and sale (including royalties for) of Gentoo merchandise (254.50\$). +The main income source is donations (23.162,01\$), followed by our participantion in the Google Summer of Code program (4,700\$), interest of current accounts (483.64\$) and sale (including royalties for) of Gentoo merchandise (254.50\$). Expenses for FY2018 were \$9,292.95. This income is used to fund the Gentoo Project activities, including purchases of infrastructure and marketing material; sponsoring projects related to Gentoo's activities; and sustaining the foundation's own operational expenses.
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: 921af3f1a85ba4b7d331e20f7b83d483e43eb1be Author: Alec Warner gentoo org> AuthorDate: Thu Nov 1 22:29:57 2018 + Commit: Alec Warner gentoo org> CommitDate: Thu Nov 1 22:29:57 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=921af3f1 Also request a peer review in the RFP. main.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tex b/main.tex index 55868e0..e77b647 100644 --- a/main.tex +++ b/main.tex @@ -128,7 +128,7 @@ Due to the reconstruction of historical data, a verification of the presented Fi As the Foundation supports an open source distribution, no proprietary tools should be required of the Trustees or officers to fulfill necessary operations. If the accountant is using such proprietary systems internally, it must be possible to use a web interface or similar to perform these duties, and it must be possible to export the data in a format that is readable outside such tools. \section{Proposal} -Your proposal should include a fee structure and a timeline estimate of the proposed work. +Your proposal should include a fee structure and a timeline estimate of the proposed work. In addition, the Foundation would like the proposal to have a recent Peer Review attached. \section{Contacting Gentoo Foundation} Questions related to creating a proposal can be submitted by email to trust...@gentoo.org. This email address is also the contact point for any submission of a proposal.
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: 3167093b4580d58c57bff74d0c384b191438cb9c Author: Alec Warner gentoo org> AuthorDate: Thu Nov 1 22:25:32 2018 + Commit: Alec Warner gentoo org> CommitDate: Thu Nov 1 22:25:32 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=3167093b Amend RFP with feedback from Robin. Clarify / Itemize requested services. Move tooling into its own section. main.tex | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/main.tex b/main.tex index 1b7ba7b..55868e0 100644 --- a/main.tex +++ b/main.tex @@ -105,25 +105,27 @@ The CPA also assisted in partially completing IRS Form 990 for FY2005, based on Best-effort Financial Reports have been reconstructed until FY2018 available at \cite{gentoo:finances}. Depreciation expenses have been captured, but in-kind donations are still in progress. -\subsection{Operations} +\subsection{Operations for Fiscal 2018} The main income source is donations (23.162,01\$), followed by our participantion in the Google Summer of Code program (4,700\$), interest of current accounts (483.64\$) and sale (including royalties for) of Gentoo merchandise (254.50\$). This income is used to fund the Gentoo Project activities, including purchases of infrastructure and marketing material; sponsoring projects related to Gentoo's activities; and sustaining the foundation's own operational expenses. \section{Services to be performed.} \label{sec:seek} -First and foremost the Foundation wants to get in good standing with the IRS including paying any back--taxes and penalties necessary. -In order to ensure that accounting is properly handled going forwards it is also expected that accounting and bookkeeping services will be outsourced along with advisory services on proper filings of necessary paperwork including tax-related matters. +\begin{itemize} + \item First and foremost the Foundation wants to get in good standing with the IRS including paying any back--taxes and penalties necessary. This will include assistance filing form 990 (or related forms.) + \item In order to ensure that accounting is properly handled going forwards it is also expected that accounting and bookkeeping services will be outsourced along with advisory services on proper filings of necessary paperwork including tax-related matters. + \item The Foundation would also like to pursue tax-exempt status and would need advice and assistance in obtaining this status with the IRS. +\end{itemize} \subsection{Annual Audit and Tax Filing} -While we consider it beneficial to have a verified accounting of the Foundations finances up to 2018; We also require ongoing annual accounting services to assist in filing taxes, not just for the past years, but on an ongoing basis. +While we consider it beneficial to have a verified accounting of the Foundations finances up to 2018; We also require annual accounting services to assist in filing taxes, not just for the past years, but on an ongoing basis. \subsection{Historial Financial Reporting} Due to the reconstruction of historical data, a verification of the presented Financial Reports in final form is needed in order to have a confirmed view of the Foundation's finances. -\subsection{Tooling} -As the Foundation supports an open source distribution, no proprietary tools should be required of the Trustees or officers to fulfill necessary operations. -If the accountant is using such proprietary systems internally, it must be possible to use a web interface or similar to perform these duties, and it must be possible to export the data in a format that is readable outside such tools. +\section{Tooling} +As the Foundation supports an open source distribution, no proprietary tools should be required of the Trustees or officers to fulfill necessary operations. If the accountant is using such proprietary systems internally, it must be possible to use a web interface or similar to perform these duties, and it must be possible to export the data in a format that is readable outside such tools. \section{Proposal} Your proposal should include a fee structure and a timeline estimate of the proposed work.
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: 26451483dbe1299deec15bec72115759a9e860c1 Author: Alec Warner gentoo org> AuthorDate: Thu Nov 1 20:49:33 2018 + Commit: Alec Warner gentoo org> CommitDate: Thu Nov 1 20:49:33 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=26451483 Clarify briefly the services requested. main.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.tex b/main.tex index f49510d..1b7ba7b 100644 --- a/main.tex +++ b/main.tex @@ -115,10 +115,10 @@ This income is used to fund the Gentoo Project activities, including purchases o First and foremost the Foundation wants to get in good standing with the IRS including paying any back--taxes and penalties necessary. In order to ensure that accounting is properly handled going forwards it is also expected that accounting and bookkeeping services will be outsourced along with advisory services on proper filings of necessary paperwork including tax-related matters. -\subsection{Annual Audit} -While we consider it beneficial to have a verified accounting of the Foundations finances up to 2018; We also require ongoing annual accounting services. +\subsection{Annual Audit and Tax Filing} +While we consider it beneficial to have a verified accounting of the Foundations finances up to 2018; We also require ongoing annual accounting services to assist in filing taxes, not just for the past years, but on an ongoing basis. -\subsection{Financial reporting} +\subsection{Historial Financial Reporting} Due to the reconstruction of historical data, a verification of the presented Financial Reports in final form is needed in order to have a confirmed view of the Foundation's finances. \subsection{Tooling}
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: eb86caab36fc3d318bbf751c6d631c8f6f99c5ac Author: Alec Warner gentoo org> AuthorDate: Thu Nov 1 20:32:51 2018 + Commit: Alec Warner gentoo org> CommitDate: Thu Nov 1 20:32:51 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=eb86caab Update Title. main.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tex b/main.tex index f9c6c11..f49510d 100644 --- a/main.tex +++ b/main.tex @@ -46,7 +46,7 @@ \hyphenation{Gentoo} \begin{document} -\title{Request for proposal: Accounting and advisory services for IRS compliance} +\title{Request for proposal: Accounting Audit and advisory services for IRS compliance} \author{Gentoo Foundation} \date{\today} \maketitle
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: febd40e8aae431232f86f693aecd997b10ba77d3 Author: Alec Warner gentoo org> AuthorDate: Thu Nov 1 20:24:05 2018 + Commit: Alec Warner gentoo org> CommitDate: Thu Nov 1 20:24:05 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=febd40e8 RFP Updates. Formatting closer to a sample RFP I've seen. main.tex | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/main.tex b/main.tex index 5b9b299..f9c6c11 100644 --- a/main.tex +++ b/main.tex @@ -54,14 +54,18 @@ \tableofcontents +\section{Main} +\label{opening} +The Gentoo Foundation is requesting proposals from CPA firms to provide audit, tax, and bookkeeping services for our foundation. +We invite your firm to send us a propsal by . A description of the foundation and its mission follows. + \section{Definitions} \label{sec:definitions} \begin{description} \item[Gentoo Linux] is a Linux distribution as further described in \sref{gentoolinux} - \item[Gentoo Foundation] registered Domestic Nonprofit Corporation in New Mexico. More information in \sref{gentoo:foundation} + \item[Gentoo Foundation] is a registered Domestic Nonprofit Corporation in New Mexico. More information in \sref{gentoo:foundation} \end{description} -\section{Gentoo Linux} \label{gentoolinux} Gentoo Linux\cite{gentoo} is a free, source-based meta distribution that enables a high degree of flexibility and high performance. Gentoo is a rolling release distribution, making upgrading an iterative process rather than jumping large gaps; if something breaks a user can easily roll back just the recent upgrade to get back to a working system. The Gentoo community consists of around 200 developers and a great number of users throughout the globe. @@ -82,16 +86,15 @@ The executive of the Foundation is comprised entirely of unpaid volunteers, brok \item no employees \end{itemize} -\subsection{Current financial status} +\subsection{Current financial status of the Gentoo Foundation} \label{sec:background} -The financial state of the Gentoo Foundation is itself in a decent state with no outstanding invoices and a cash on balance at the end of FY2018 of approximately \$151K USD. +The financial state of the Gentoo Foundation is a Foundation with no outstanding invoices and a cash on balance at the end of FY2018 of approximately \$151K USD. No financial reports have been published by earlier Boards of Trustees since 2012\cite{finrep}, and there are well-founded concerns that the none of the original reports are entirely accurate. As a result of negligence of previous treasurers and trustees necessary paperwork has not been filed with federal tax authorities (henceforth \textbf{IRS}). -A recent treasurer has taken responsibility for cleaning up the historical baggage and performed a massive job of going through historical transactions and recreated a full ledger of transactions. -The recent treasurer is not a trained accountant or book-keeper, and the work has been taken on a best-effort basis. +A recent treasurer has taken responsibility for cleaning up the historical baggage and performed a massive job of going through historical transactions and recreated a full ledger of transactions. The recent treasurer is not a trained accountant or book-keeper, and the work has been taken on a best-effort basis. The data of the reconstructed ledger is kept in a format for the open source tool book-keeping tool Ledger\cite{ledger01}. Data can easily be exported from this tool and direct knowledge from accountants are not necessary in order to access the books as the current treasurer is available to support the efforts and data can be exported based on the needs of the accountant. @@ -107,11 +110,14 @@ The main income source is donations (23.162,01\$), followed by our participantio This income is used to fund the Gentoo Project activities, including purchases of infrastructure and marketing material; sponsoring projects related to Gentoo's activities; and sustaining the foundation's own operational expenses. -\section{Scope of service} +\section{Services to be performed.} \label{sec:seek} First and foremost the Foundation wants to get in good standing with the IRS including paying any back--taxes and penalties necessary. In order to ensure that accounting is properly handled going forwards it is also expected that accounting and bookkeeping services will be outsourced along with advisory services on proper filings of necessary paperwork including tax-related matters. +\subsection{Annual Audit} +While we consider it beneficial to have a verified accounting of the Foundations finances up to 2018; We also require ongoing annual accounting services. + \subsection{Financial reporting} Due to the reconstruction of historical data, a verification of the presented Financial Rep
[gentoo-commits] foundation/financials-rfp:master commit in: /
commit: be4c95a7284127ed4cc16fee36f148521ce4adb7 Author: Alec Warner gentoo org> AuthorDate: Wed Sep 19 00:19:50 2018 + Commit: Alec Warner gentoo org> CommitDate: Wed Sep 19 00:19:50 2018 + URL: https://gitweb.gentoo.org/foundation/financials-rfp.git/commit/?id=be4c95a7 Provide correct number for FY2018 main.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tex b/main.tex index 66bc4f0..5b9b299 100644 --- a/main.tex +++ b/main.tex @@ -84,7 +84,7 @@ The executive of the Foundation is comprised entirely of unpaid volunteers, brok \subsection{Current financial status} \label{sec:background} -The financial state of the Gentoo Foundation is itself in a decent state with no outstanding invoices and a cash on balance at the end of FY2018 of approximately \$119K USD. +The financial state of the Gentoo Foundation is itself in a decent state with no outstanding invoices and a cash on balance at the end of FY2018 of approximately \$151K USD. No financial reports have been published by earlier Boards of Trustees since 2012\cite{finrep}, and there are well-founded concerns that the none of the original reports are entirely accurate.
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 7ece6263d08312e45040ba3d5d3cdef3c8236a67 Author: Alec Warner gentoo org> AuthorDate: Fri Oct 12 13:16:16 2018 + Commit: Alec Warner gentoo org> CommitDate: Fri Oct 12 13:20:20 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=7ece6263 Remove tut.fi, their machine is being decommissioned. files/mirrors/distfiles.xml | 8 files/mirrors/rsync.xml | 10 -- 2 files changed, 18 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index eccb144..38d8410 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -111,14 +111,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://mirror.dkm.cz/gentoo/ - - - tut.fi - http://trumpetti.atm.tut.fi/gentoo/ - ftp://trumpetti.atm.tut.fi/gentoo/ - rsync://trumpetti.atm.tut.fi/gentoo/ - - OVH diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml index b52ac64..ef6d40c 100644 --- a/files/mirrors/rsync.xml +++ b/files/mirrors/rsync.xml @@ -134,16 +134,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://rsync15.de.gentoo.org - - - Any available mirror - rsync.fi.gentoo.org - rsync://rsync.fi.gentoo.org - - - tut.fi - rsync1.fi.gentoo.org - rsync://rsync1.fi.gentoo.org - - Any available mirror - rsync.fr.gentoo.org
[gentoo-commits] proj/gentoo-bugzilla:bugstest commit in: template/en/default/global/
commit: bd60c1a93b9d7a5cba318782bd70fc854035a0dc Author: Alec Warner gentoo org> AuthorDate: Sun Sep 16 04:52:32 2018 + Commit: Alec Warner gentoo org> CommitDate: Sun Sep 16 04:52:32 2018 + URL: https://gitweb.gentoo.org/proj/gentoo-bugzilla.git/commit/?id=bd60c1a9 Add Privacy policy link to bugzilla Footer. Closes: https://bugs.gentoo.org/613942 template/en/default/global/common-links.html.tmpl | 1 + 1 file changed, 1 insertion(+) diff --git a/template/en/default/global/common-links.html.tmpl b/template/en/default/global/common-links.html.tmpl index e256bb619..c003b85b0 100644 --- a/template/en/default/global/common-links.html.tmpl +++ b/template/en/default/global/common-links.html.tmpl @@ -14,6 +14,7 @@ | New–[Ex] | Browse | Search + | https://wiki.gentoo.org/wiki/Foundation:Privacy_Policy";>Privacy Policy |
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 836b130d46a69752b15eb32a2e69fea0b76e3973 Author: Alec Warner gentoo org> AuthorDate: Wed Sep 19 23:31:26 2018 + Commit: Alec Warner gentoo org> CommitDate: Wed Sep 19 23:31:26 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=836b130d Fix University of Utah attribution. Closes: https://bugs.gentoo.org/666594 Closes: https://bugs.gentoo.org/649008 files/mirrors/distfiles.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 3666a57..eccb144 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -44,7 +44,7 @@ vim: ft=xml et ts=2 sts=2 sw=2: http://gentoo.mirrors.tds.net/gentoo - Utah State University + University of Utah http://gentoo.cs.utah.edu/
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: a4dae37b8a9bd817faca63995191b373084ddf1b Author: Alec Warner gentoo org> AuthorDate: Wed Sep 19 00:22:35 2018 + Commit: Alec Warner gentoo org> CommitDate: Wed Sep 19 00:23:48 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a4dae37b Add HTTP to ftp.free.fr per email to mirror-admin. files/mirrors/distfiles.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 4f10974..3666a57 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -128,6 +128,7 @@ vim: ft=xml et ts=2 sts=2 sw=2: Free ftp://ftp.free.fr/mirrors/ftp.gentoo.org/ + http://ftp.free.fr/mirrors/ftp.gentoo.org/ soeasyto.com
[gentoo-commits] foundation/financials-rfp: New branch: master
commit: Commit: Alec Warner gentoo org> CommitDate: Wed Sep 19 00:06:51 2018 + New branch: master
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 5c12fd73e862df3c243d2405253c6d25b132ff87 Author: Alec Warner gentoo org> AuthorDate: Sat Sep 15 23:31:37 2018 + Commit: Alec Warner gentoo org> CommitDate: Sat Sep 15 23:31:37 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=5c12fd73 Add RISE mirror. Closes: https://bugs.gentoo.org/665694 files/mirrors/distfiles.xml | 7 +++ 1 file changed, 7 insertions(+) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index 8de2194..1788c0d 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -344,6 +344,13 @@ vim: ft=xml et ts=2 sts=2 sw=2: ftp://ftp.iij.ad.jp/pub/linux/gentoo/ + + + RISE + ftp://mirror.rise.ph/gentoo + http://mirror.rise.ph/gentoo + + KAIST
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: e34ccbd5a88b99e1eb7ab3b6053106ba832e7f79 Author: Alec Warner gentoo org> AuthorDate: Sat Sep 15 23:26:20 2018 + Commit: Alec Warner gentoo org> CommitDate: Sat Sep 15 23:27:00 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=e34ccbd5 Update mirror for b/601456 Closes: http://bugs.gentoo.org/601456 files/mirrors/distfiles.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index d5cd3f6..8de2194 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -150,8 +150,9 @@ vim: ft=xml et ts=2 sts=2 sw=2: Uni Erlangen-Nürnberg - http://ftp.uni-erlangen.de/pub/mirrors/gentoo - ftp://ftp.uni-erlangen.de/pub/mirrors/gentoo + http://ftp.fau.de/gentoo + ftp://ftp.fau.de/gentoo + rsync://ftp.fau.de/gentoo Dresden University of Technology/AG DSN
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 749fca4e0c880832c496e7930fc46ba9f7c0f619 Author: Alec Warner gentoo org> AuthorDate: Sun Aug 26 14:55:02 2018 + Commit: Alec Warner gentoo org> CommitDate: Sun Aug 26 14:56:59 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=749fca4e Remove dead mirrors: Closes: 663900, 663010, 656280. files/mirrors/distfiles.xml | 18 -- files/mirrors/rsync.xml | 4 2 files changed, 22 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index cc52974..856b43a 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -83,12 +83,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: rsync://gentoo.c3sl.ufpr.br/gentoo/ - - - Vienna Univ. of Technology - http://gd.tuwien.ac.at/opsys/linux/gentoo/ - -
[gentoo-commits] data/api:master commit in: files/mirrors/
commit: 4bc7cfabe46f98d8f0c69e8b89ba0e014f74f7eb Author: Alec Warner gentoo org> AuthorDate: Tue Jul 17 22:22:58 2018 + Commit: Alec Warner gentoo org> CommitDate: Tue Jul 17 22:25:09 2018 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=4bc7cfab Retire cosmos.illinois.edu. Closes: https://bugs.gentoo.org/630124 files/mirrors/distfiles.xml | 5 - 1 file changed, 5 deletions(-) diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml index e510965..cc52974 100644 --- a/files/mirrors/distfiles.xml +++ b/files/mirrors/distfiles.xml @@ -51,11 +51,6 @@ vim: ft=xml et ts=2 sts=2 sw=2: Easynews NNTP Hosting http://gentoo.mirrors.easynews.com/linux/gentoo/ - - University of Illinois-Urbana Champaign - http://cosmos.illinois.edu/pub/gentoo/ - ftp://cosmos.illinois.edu/pub/gentoo/ - Michigan Tech University http://lug.mtu.edu/gentoo/
[gentoo-commits] dev/antarus:master commit in: src/foundation.gentoo.org/golang/members/importers/, sites/foundation_tracker/, ...
commit: ec1187f94a8b0af72a7521cd7ecfd5a1e3b43d63 Author: Alec Warner gentoo org> AuthorDate: Wed Oct 19 01:28:12 2016 + Commit: Alec Warner gentoo org> CommitDate: Wed Oct 19 01:28:12 2016 + URL:https://gitweb.gentoo.org/dev/antarus.git/commit/?id=ec1187f9 Start tracking tools for tracking members. foundation.gentoo.org/golang/members/Makefile | 5 + foundation.gentoo.org/golang/members/list.go | 33 +++ foundation.gentoo.org/golang/members/main.go | 22 + foundation.gentoo.org/golang/members/member.proto | 16 sites/foundation_tracker/Makefile | 5 + sites/foundation_tracker/member.proto | 16 .../golang/members/data/Makefile | 5 + .../golang/members/data/member.pb.go | 105 + .../golang/members/data/member.proto | 26 + .../golang/members/importers/ldap.go | 9 ++ src/foundation.gentoo.org/golang/members/main.go | 22 + .../golang/members/maintenance/memberroll.go | 73 ++ 12 files changed, 337 insertions(+) diff --git a/foundation.gentoo.org/golang/members/Makefile b/foundation.gentoo.org/golang/members/Makefile new file mode 100644 index 000..b050cf8 --- /dev/null +++ b/foundation.gentoo.org/golang/members/Makefile @@ -0,0 +1,5 @@ +member.pb.go: + protoc --go_out ./ member.proto + +clean: + rm member.pb.go diff --git a/foundation.gentoo.org/golang/members/list.go b/foundation.gentoo.org/golang/members/list.go new file mode 100644 index 000..c997f45 --- /dev/null +++ b/foundation.gentoo.org/golang/members/list.go @@ -0,0 +1,33 @@ +package members + +import ( + "flag" + "fmt" + "os" + "strings" + + "github.com/google/subcommands" + "golang.org/x/net/context" +) + +type listCmd struct { + membersListPath string +} + +func (*listCmd) Name() string { return "list" } +func (*listCmd) Synopsis() string { return "list members to stdout." } +func (*listCmd) Usage() string { + return `print --membersListPath /path/to/members` +} + +func (p *listCmd) SetFlags(f *flag.FlagSet) { + f.StringVar(&p.membersListPath, "membersListPath", './members', "path to members list") +} + +func (p *listCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus { + for _, arg := range f.Args() { +fmt.Printf("%s ", arg) + } + fmt.Println() + return subcommands.ExitSuccess +} diff --git a/foundation.gentoo.org/golang/members/main.go b/foundation.gentoo.org/golang/members/main.go new file mode 100644 index 000..c726053 --- /dev/null +++ b/foundation.gentoo.org/golang/members/main.go @@ -0,0 +1,22 @@ +package members + +import ( + "flag" + "os" + "strings" + + "github.com/google/subcommands" + "golang.org/x/net/context" +) + + +func main() { + subcommands.Register(subcommands.HelpCommand(), "") + subcommands.Register(subcommands.FlagsCommand(), "") + subcommands.Register(subcommands.CommandsCommand(), "") + subcommands.Register(&list.ListCmd{}, "") + + flag.Parse() + ctx := context.Background() + os.Exit(int(subcommands.Execute(ctx))) +} diff --git a/foundation.gentoo.org/golang/members/member.proto b/foundation.gentoo.org/golang/members/member.proto new file mode 100644 index 000..22969af --- /dev/null +++ b/foundation.gentoo.org/golang/members/member.proto @@ -0,0 +1,16 @@ +message Member { + // Unique idenfier for each member. + optional int64 id = 1; + + // Email information + repeated string email = 2; + + // Name + repeated string name = 3; + + // microsecond timestamp of joining. + optional int64 join_timestamp_us = 4; + + // microsecond timestamp of any elections member participated in + repeated int64 voted_in_election = 5; +} diff --git a/sites/foundation_tracker/Makefile b/sites/foundation_tracker/Makefile new file mode 100644 index 000..b050cf8 --- /dev/null +++ b/sites/foundation_tracker/Makefile @@ -0,0 +1,5 @@ +member.pb.go: + protoc --go_out ./ member.proto + +clean: + rm member.pb.go diff --git a/sites/foundation_tracker/member.proto b/sites/foundation_tracker/member.proto new file mode 100644 index 000..22969af --- /dev/null +++ b/sites/foundation_tracker/member.proto @@ -0,0 +1,16 @@ +message Member { + // Unique idenfier for each member. + optional int64 id = 1; + + // Email information + repeated string email = 2; + + // Name + repeated string name = 3; + + // microsecond timestamp of joining. + optional int64 join_timestamp_us = 4; + + // microsecond timestamp of any elections member participated in + repeated int64 voted_in_election = 5; +} diff --git a/src/foundation.gentoo.org/golang/members/data/Makefile b/src/
[gentoo-commits] dev/antarus:master commit in: foundation/2016_active_members/
commit: f60a3422abc28d756ba74e7f48141ef2401399db Author: Alec Warner gentoo org> AuthorDate: Tue Oct 18 06:13:47 2016 + Commit: Alec Warner gentoo org> CommitDate: Tue Oct 18 06:13:47 2016 + URL:https://gitweb.gentoo.org/dev/antarus.git/commit/?id=f60a3422 Add documentation for tracking foundation members. Some members are inactive (retired) developers. foundation/2016_active_members/README| 9 + foundation/2016_active_members/dump | 395 +++ foundation/2016_active_members/ldap_search | 357 foundation/2016_active_members/members | 99 +++ foundation/2016_active_members/members_email | 99 +++ 5 files changed, 959 insertions(+) diff --git a/foundation/2016_active_members/README b/foundation/2016_active_members/README new file mode 100644 index 000..9c2a6c7 --- /dev/null +++ b/foundation/2016_active_members/README @@ -0,0 +1,9 @@ +Alec's AI from the trustee's meeting: + +Determine how many members would be removed from the foundation by passing a bylaw +whereby membership in the foundation required membership as Gentoo Staff. + +The answer is that 88/99 existing foundation members are active developers[1]. + +[1] Some might be pending retirement, and so their current status is not reflected +in LDAP. There are 48 pending retirements. A brief look says approximately 5 are foundation members. diff --git a/foundation/2016_active_members/dump b/foundation/2016_active_members/dump new file mode 100644 index 000..1531511 --- /dev/null +++ b/foundation/2016_active_members/dump @@ -0,0 +1,395 @@ +| ago +| Agostino Sarubbo +| 0xBA7BD3507194459F +|- +| alexxy +| Alexey Shvetsov +| 0xF82F92E6 +|- +| alunduil +| Alex Brandt +| 0x8A7DE4BD92FEA28B +|- +| amynka +| Amy Winston +| 0x3B89D45034E69781 +|- +| anarchy +| Jory Pratt +| 0x9019241D +|- +| angelos +| Christoph Mende +| 0x84F20B43 +|- +| antarus +| Alec Warner +| 0xA00637F4 +|- +| audiodef +| Damien Moody +| 0x57000711 +|- +| axs +| Ian Stakenvicius +| 0x7F0008F0 +|- +| betelgeuse +| Petteri Räty +| 0xB8E4ECF0 +|- +| bicatali +| Sebastien Fabbro +| 0x13CB1360 +|- +| bircoph +| Andrew Savchenko +| 0x565953B95372756C +|- +| blueknight +| Yury German +| 0xEEAFED89024C043D +|- +| blueness +| Anthony G. Basile +| 0xD0455535 +|- +| bman +| Aaron Bauman +| 0x246D23A210FB0F3E +|- +| calchan +| Denis Dupeyron +| 0xB16C047F +|- +| cardoe +| Doug Goldstein +| 0xD7DFA8D318FA9AEF +|- +| caster +| Vlastimil Babka +| 0x4E61DE84 +|- +| chiguire +| John Christian Stoddart +| 0x21B3F464 +|- +| creffett +| Chris Reffett +| 0x42618354 +|- +| dabbott +| David Abbott +| 0xF01C4ACC +|- +| darkside +| Jeremy Olexa +| 0x60F8A50F +|- +| dastergon +| Pavlos Ratis +| 0x3A051746 +|- +| dberkholz +| Donnie Berkholz +| 0xB4B5AEDB +|- +| deathwing00 +| Ioannis Aslanidis +| 0x47F370A0 +|- +| desultory +| Dean Stephens +| 0xA8C5D9DB +|- +| dilfridge +| Andreas Hüttel +| 0xA7C53C87 +|- +| djc +| Dirkjan Ochtman +| 0x6B065BFB +|- +| eras +| Eray Aslan +| 0x586A3B1F +|- +| fauli +| Christian Faulhammer +| 0x2B859DE3 +|- +| flameeyes +| Diego Pettenò +| 0x69875563 +|- +| floppym +| Mike Gilbert +| 0xEA4843A4 +|- +| ford_prefect +| Arun Raghavan +| 0x29C3E2EC +|- +| fuzzyray +| Paul Varner +| 0x6B402757 +|- +| graaff +| Hans de Graaff +| 0xFB0878BB +|- +| gregkh +| Greg Kroah-Hartman +| 0xDB2DFB29 +|- +| grobian +| Fabian Groffen +| 0x1F42 +|- +| hattya +| Akinori Hattori +| 0xEC917A6D +|- +| hparker +| Homer Parker +| 0x1D524429 +|- +| hwoarang +| Markos Chandras +| 0xB4AFF2C2 +|- +| igli +| Steven J. Long +| NEED KEY +|- +| jauhien +| Jauhien Piatlicki +| 0xBBEE937DB2EFA1D4 +|- +| jcallen +| Jonathan Callen +| 0x8D2840EA +|- +| je_fro +| Jeffrey Gardner +| 0x4A5D8F23 +|- +| jer +| Jeroen Roovers +| 0xA792A613 +|- +| jkt +| Jan Kundrát +| 0x44722517 +|- +| jlec +| Justin Lecher +| 0x5F4673C782105C98 +|- +| jmbsvicetto +| Jorge Manuel B. S. Vicetto +| 0xF544C802 +|- +| jmorgan +| Jack Morgan +| 0x761D8E0A +|- +| johu +| Johannes Huber +| 0xF3CFD2BD +|- +| josejx +| Joseph Jezak +| 0xB2C045FA +|- +| k_f +| Kristian Fiskerstrand +| 0x0B7F8B60E3EDFAE3 +|- +| kallamej +| Anders Hellgren +| 0x65FE446E +|- +| kensington +| Michael Palimaka +| 0x675D0D2C +|- +| klondike +| Francisco Blas Izquierdo Riera +| 0x65F80660 +|- +| kumba +| Joshua Kinard +| 0x339E0EE2 +|- +| likewhoa +| Fernando V Orocu +| NEED KEY +|- +| lu_zero +| Luca Barbato +| 0x84E90E34 +|- +| mabi +| Matti Bickel +| 0x4849EC6C +|- +| mpagano +| Mike Pagano +| 0xB576E4E3 +|- +| neddyseagoon +| Roy Bamford +| 0x0D7A312C +|- +| neurogeek +| Jesus Rivero +| 0x1F6F0683 +|- +| nightmorph +| Joshua Saddler +| 0x132C5725 +|- +| nimiux +| José María Alonso +| 0xD628E536 +|- +| nirbheek +| Nirbheek Chauhan +| 0x560FDD64 +|- +| ottxor +| Christoph Junghans +| 0xC2000586 +|- +| patrick +| Patrick Lauer +| 0xE52864CE +|- +| perfinion
[gentoo-commits] dev/antarus:master commit in: profiles/, app-misc/cowdancer/files/patches/, app-misc/cowdancer/
commit: b6da74e7903ccd9f292cb98dc222fd12e6444ffa Author: Alec Warner gentoo org> AuthorDate: Tue Oct 18 03:44:17 2016 + Commit: Alec Warner gentoo org> CommitDate: Tue Oct 18 03:44:17 2016 + URL:https://gitweb.gentoo.org/dev/antarus.git/commit/?id=b6da74e7 Delete everything. app-misc/cowdancer/Manifest| 3 --- app-misc/cowdancer/cowdancer-0.13.ebuild | 28 -- .../files/patches/0.13.make_install.patch | 10 profiles/repo_name | 1 - 4 files changed, 42 deletions(-) diff --git a/app-misc/cowdancer/Manifest b/app-misc/cowdancer/Manifest deleted file mode 100644 index e93e045..000 --- a/app-misc/cowdancer/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -AUX patches/0.13.make_install.patch 485 SHA256 f8f945dcbc5f808764fc07c3ab2969a1f1a1a81209f4c8307e7c722a5cf124b8 SHA512 07ce2ebfcf224092a2db9f1e2ed52434f279db9a1a789810194bb3cfc0ad7731e27fc319cd10555a8baa04aabac01afee5f048340e9c8def08fe581114a31c59 WHIRLPOOL 12ecf4b3d148555bdfc57caeae3488382aca477f1fdeb7537ed632df8ac8ae7bb862583de75a49d8659a6e6ddb42dec7d762f9fba7b2e02a1479bab32bfb36a5 -DIST cowdancer_0.13.tar.gz 37954 SHA256 d648134a933f1f02a584304faaac2d2fbcda9fe236e198d531105870deaef57e SHA512 4b5e4b59fb23b53df1ffb84269b610e274e5592b3842933bd882194e96e6ba1beebee4f9a51e44e1b5d15dc82176c2b53563b79ebb88ccc8ea1a90634d8c56d2 WHIRLPOOL a4c33fcc962d24d49faad93dee106eb40edfe78e723e7a4e90812d6dffcae76e667ff33bad2a8d218d5ca5a7b30f5d2552124ce7f1e577b725d4489be9ed3fc3 -EBUILD cowdancer-0.13.ebuild 745 SHA256 3f062933f6404cd9912b66f5aa6922390177ecbd2d92e0f48469da6daaf53a04 SHA512 41601b04aa946ec5f87a10b0cc94562ff16bde96378d7c5a2bf9ad047f136f1cfcf2be756646d7f5a3417094e3f2653f94197df9439fb108c7d4cd49d1a7cb93 WHIRLPOOL bbb6b4e5afed9d09f64a9ebee0504b10aba87f040e88a93b89384524be1ed975da8ad5137fdffc0a6b95059eb18e8f9aa169bf0b8af781341543012e26fbec0f diff --git a/app-misc/cowdancer/cowdancer-0.13.ebuild b/app-misc/cowdancer/cowdancer-0.13.ebuild deleted file mode 100644 index 7567026..000 --- a/app-misc/cowdancer/cowdancer-0.13.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 - -inherit eutils - -DESCRIPTION="Cowdancer allows copy-on-write file access, based on hardlinks." -HOMEPAGE="http://www.netfort.gr.jp/~dancer/software/cowdancer.html"; - -MY_P=${P//-/_} -SRC_URI="http://www.netfort.gr.jp/~dancer/software/downloads/${MY_P}.tar.gz"; -LICENSE="" - -# The tests require the libraries and binaries in a specific location due to -# LD_PRELOADing. Perhaps we should look at the sandbox tests. -RESTRICT="test" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" -DEPEND="" -RDEPEND="${DEPEND}" -S="${WORKDIR}/${PN}" - -src_prepare() { - epatch "${FILESDIR}/patches/${PV}.make_install.patch" || die "Failed to apply patches." -} diff --git a/app-misc/cowdancer/files/patches/0.13.make_install.patch b/app-misc/cowdancer/files/patches/0.13.make_install.patch deleted file mode 100644 index b65cf90..000 --- a/app-misc/cowdancer/files/patches/0.13.make_install.patch +++ /dev/null @@ -1,10 +0,0 @@ Makefile 2013-03-04 21:20:36.864579961 -0800 -+++ Makefile.new 2013-03-04 21:20:32.614581001 -0800 -@@ -10,6 +10,7 @@ - install: $(BINARY) - $(INSTALL_DIR) $(DESTDIR)/usr/lib/cowdancer/ - $(INSTALL_DIR) $(DESTDIR)/usr/share/man/man1/ -+ $(INSTALL_DIR) $(DESTDIR)/usr/bin/ - $(INSTALL_FILE) cow-shell.1 $(DESTDIR)/usr/share/man/man1/cow-shell.1 - $(INSTALL_FILE) libcowdancer.so $(DESTDIR)/usr/lib/cowdancer/libcowdancer.so - $(INSTALL_PROGRAM) cow-shell $(DESTDIR)/usr/bin/cow-shell diff --git a/profiles/repo_name b/profiles/repo_name deleted file mode 100644 index 47e3b04..000 --- a/profiles/repo_name +++ /dev/null @@ -1 +0,0 @@ -antarus
[gentoo-commits] packages:master commit in: dbgenerator/
commit: 0f3cfe188e046e43d4858c40c9b5248e3096de23 Author: Alec Warner gentoo org> AuthorDate: Mon Mar 17 15:34:13 2014 + Commit: Alec Warner gentoo org> CommitDate: Mon Mar 17 15:34:13 2014 + URL:http://sources.gentoo.org/gitweb/?p=packages.git;a=commit;h=0f3cfe18 iter_read_bash moved to bash module. --- dbgenerator/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbgenerator/backend.py b/dbgenerator/backend.py index 1330646..d51f3f8 100644 --- a/dbgenerator/backend.py +++ b/dbgenerator/backend.py @@ -9,7 +9,7 @@ from pkgcore.ebuild.repository import UnconfiguredTree, SlavedTree from pkgcore.restrictions.packages import OrRestriction from pkgcore.util.repo_utils import get_raw_repos, get_virtual_repos from snakeoil.lists import unstable_unique -from snakeoil.fileutils import iter_read_bash +from snakeoil.bash import iter_read_bash from snakeoil.osutils import pjoin import os import errno