-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build results of e9de004 (on 0.2-series)
- Loading branch information
1 parent
1ba5d6b
commit 0b28d6d
Showing
45 changed files
with
574 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/perl | ||
|
||
use warnings; | ||
use strict; | ||
|
||
use PortageXS; | ||
|
||
$|=1; | ||
|
||
my $pxs=PortageXS->new(); | ||
my $color = $pxs->colors; | ||
|
||
if (!-f $ARGV[0]) { | ||
$color->printColored('RED',"Given file does not exist - Aborting!\n"); | ||
} | ||
else { | ||
$color->printColored('LIGHTGREEN',"Searching for '".$ARGV[0]."'.."); | ||
|
||
my @results = $pxs->fileBelongsToPackage($ARGV[0]); | ||
|
||
if ($#results>-1) { | ||
print " done!\n\n"; | ||
$color->printColored('LIGHTGREEN',"The file '".$ARGV[0]."' was installed by these packages:\n"); | ||
print " ".join("\n ",@results)."\n"; | ||
} | ||
else { | ||
$color->printColored('RED',"This file has not been installed by portage.\n"); | ||
} | ||
} | ||
|
||
exit(0); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
use warnings; | ||
use strict; | ||
|
||
use lib '../..'; | ||
use PortageXS; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
use warnings; | ||
use strict; | ||
|
||
use lib '../..'; | ||
use PortageXS; | ||
|
||
my $pxs=PortageXS->new(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
use warnings; | ||
use strict; | ||
|
||
use lib '../..'; | ||
use PortageXS; | ||
|
||
my $pxs=PortageXS->new(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
use warnings; | ||
use strict; | ||
|
||
use lib '../..'; | ||
use PortageXS; | ||
|
||
my $pxs=PortageXS->new(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
use warnings; | ||
use strict; | ||
|
||
use lib '../..'; | ||
use PortageXS; | ||
|
||
my $pxs=PortageXS->new(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
use warnings; | ||
use strict; | ||
|
||
use lib '../..'; | ||
use PortageXS; | ||
|
||
my $pxs=PortageXS->new(); | ||
|
Oops, something went wrong.