summaryrefslogtreecommitdiff
path: root/app-portage/pfl/files
diff options
context:
space:
mode:
Diffstat (limited to 'app-portage/pfl/files')
-rw-r--r--app-portage/pfl/files/e-file-20110906-http-response.patch11
-rw-r--r--app-portage/pfl/files/e-file-20110906-portageq.patch44
-rw-r--r--app-portage/pfl/files/pfl-2.4-reponame.patch11
3 files changed, 0 insertions, 66 deletions
diff --git a/app-portage/pfl/files/e-file-20110906-http-response.patch b/app-portage/pfl/files/e-file-20110906-http-response.patch
deleted file mode 100644
index 672cde5f5375..000000000000
--- a/app-portage/pfl/files/e-file-20110906-http-response.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- bin/e-file 2013-10-14 21:33:54.421701259 +0200
-+++ bin/e-file 2013-10-14 21:34:10.004702370 +0200
-@@ -25,7 +25,7 @@
-
- URL="http://www.portagefilelist.de/index.php/Special:PFLQuery2?file=$1&searchfile=lookup&lookup=file&txt"
-
--curl -s $URL | awk -v isgentoo=$isgentoo '
-+curl -s -f $URL | awk -v isgentoo=$isgentoo '
- BEGIN{
- FOUND=0
- if(isgentoo){
diff --git a/app-portage/pfl/files/e-file-20110906-portageq.patch b/app-portage/pfl/files/e-file-20110906-portageq.patch
deleted file mode 100644
index 2a65519f459b..000000000000
--- a/app-portage/pfl/files/e-file-20110906-portageq.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- bin/e-file
-+++ bin/e-file
-@@ -16,11 +16,11 @@
- exit 1
- fi
-
--if type emerge >/dev/null 2>&1; then
-+if type portageq >/dev/null 2>&1; then
- isgentoo=1
- else
- isgentoo=0
-- echo 'WARNING: "emerge" no found. If your system is not gentoo, a part of function will not available!' >&2
-+ echo 'WARNING: "portageq" no found. If your system is not gentoo, a part of function will not available!' >&2
- fi
-
- URL="http://www.portagefilelist.de/index.php/Special:PFLQuery2?file=$1&searchfile=lookup&lookup=file&txt"
-@@ -29,8 +29,7 @@
- BEGIN{
- FOUND=0
- if(isgentoo){
-- "emerge --info | grep PORTDIR" | getline
-- split($0,PORTDIR,/\"/)
-+ "portageq get_repo_path $(portageq envvar EROOT) gentoo" | getline PORTDIR
- }
- }
- {
-@@ -75,7 +74,7 @@
- }
-
- NF=0
-- cmd="(grep -h HOMEPAGE\\= " PORTDIR[2] "/" pkg "/*.ebuild | tail -n 1)2>/dev/null"
-+ cmd="(grep -h HOMEPAGE\\= " PORTDIR "/" pkg "/*.ebuild | tail -n 1)2>/dev/null"
- cmd | getline
- if(NF==0){
- HOMEPAGE=""
-@@ -85,7 +84,7 @@
- }
-
- NF=0
-- cmd="(grep -h DESCRIPTION " PORTDIR[2] "/" pkg "/*.ebuild | tail -n 1)2>/dev/null"
-+ cmd="(grep -h DESCRIPTION " PORTDIR "/" pkg "/*.ebuild | tail -n 1)2>/dev/null"
- cmd | getline
- if(NF==0){
- DESCRIPTION=""
diff --git a/app-portage/pfl/files/pfl-2.4-reponame.patch b/app-portage/pfl/files/pfl-2.4-reponame.patch
deleted file mode 100644
index a9041d46b329..000000000000
--- a/app-portage/pfl/files/pfl-2.4-reponame.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- pfl/pfl.py (Revision 68)
-+++ pfl/pfl.py (Arbeitskopie)
-@@ -226,6 +226,8 @@
- v = '%s-%s' % (v, r)
-
- repo, = self._vardbapi.aux_get(cpv, ['repository'])
-+ if len(repo) == 0:
-+ repo, = self._vardbapi.aux_get(cpv, ['REPOSITORY'])
-
- # timestamp of merge
- mergedstamp = self._vardbapi.aux_get(cpv, ['_mtime_'])[0]