summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-12-20 17:29:28 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-12-20 17:29:28 +0100
commit11810c0a4a8ae5782611076539cfff4b7431048f (patch)
tree89e5bef4ab2a238f67f3ffb69a4a1fe7c66a5146
parent7f9c5b317eb33ffc4be183b50dd636de15f01ae2 (diff)
todo updates
-rw-r--r--TODO2
-rw-r--r--unofficial/modules/TODO3
-rw-r--r--unofficial/modules/yaourt/libs/lib-yaourt-sh24
-rw-r--r--unofficial/modules/yaourt/whatsthis.txt4
4 files changed, 1 insertions, 32 deletions
diff --git a/TODO b/TODO
index 6245a5d..0e6a3d2 100644
--- a/TODO
+++ b/TODO
@@ -15,7 +15,7 @@ ALPHA PHASE: get some people to test and suggest ideas, while fixing bugs and re
* move "/tmp/pacman.conf" to runtime directory and variablize everywhere
* hmm wasn't there a hwdetect/hwd or something in /arch/setup? this seems to have disappeared.
* shouldn't we put /etc/hostname in 'configure system' ? ASKDEV
-* a nice way to be able to "inject" functions without:
+* a nice way to be able to "inject" functions/logic without:
* needing to redefine phases with only 1 entry different (duplicate code is not nice, less maintainable etc)
* override worker functions which are 90% copy-pasted because the parent functionality is mostly okay, but not exactly what we want
useful for: profiles for the automatic procedures, or all other procedures
diff --git a/unofficial/modules/TODO b/unofficial/modules/TODO
deleted file mode 100644
index 3f19b66..0000000
--- a/unofficial/modules/TODO
+++ /dev/null
@@ -1,3 +0,0 @@
-See also the FIXME's and TODO's in the code.
-* dieter/automatic: wait for yaourt --config fix ( http://forums.archlinux.fr/post23171.html#23171 )
-* dieter/automatic: put config files from svn in place first, so that if a package has an update, it can do it's thing.
diff --git a/unofficial/modules/yaourt/libs/lib-yaourt-sh b/unofficial/modules/yaourt/libs/lib-yaourt-sh
deleted file mode 100644
index 56e03df..0000000
--- a/unofficial/modules/yaourt/libs/lib-yaourt-sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-# See http://wiki.archlinux.org/index.php/Yaourt
-
-_runtime_yaourt ()
-{
- if ! list_pacman_repos runtime | grep -q archlinuxfr
- then
- add_pacman_repo runtime archlinuxfr "Server = http://repo.archlinux.fr/$var_ARCH"
- fi
- $PACMAN -Sy yaourt || die_error "_runtime_yaourt Cannot install yaourt" #TODO: library-ize package installation
- YAOURT=${PACMAN//pacman/yaourt}
- YAOURT_TARGET=${PACMAN_TARGET//pacman/yaourt}
-}
-
-
-_yaourt_replace_pacman ()
-{
- show_warning "Security warning!" "Keep in mind that packages on AUR are untrusted! Install them on your own risk"
- _runtime_yaourt
- PACMAN=$YAOURT
- PACMAN_TARGET=$YAOURT_TARGET
-}
-
diff --git a/unofficial/modules/yaourt/whatsthis.txt b/unofficial/modules/yaourt/whatsthis.txt
deleted file mode 100644
index 66a393f..0000000
--- a/unofficial/modules/yaourt/whatsthis.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-I plan to someday write a module that will make yaourt available during
-installation, so you can imediately install packages from AUR on your system
-during installation. This is something that does not belong in core, it's
-for power users only ;-)