Author |
Message |
dejan555

Joined: 30 Nov 2008 Posts: 2817 Location: Montenegro
|
Posted: Wed 18 Mar 2009, 17:17 Post subject:
deb2pet & rpm2pet Subject description: Well, somebody had to start this... :) |
|
OK, had to clean up this post, posted rpm2pet and deb2pet in one package, scripts for converting .deb and .rpm packages to dotpets
You need:
unrpm.undeb.pet -> scroll down for attached pet from MU's post
There are more versions of dep2pet, differencies are in GUI usage, and dir2pet usage, see description in attachments below.
Base code I started with:
Code: |
#!/bin/sh
DEB=`Xdialog --title "Select file" --wrap --fselect *.deb 0 0 2>&1`
#added check if file exists
if [ -e "$DEB" ]; then
for i in "$DEB"
do
FOLDR=$(echo $i|sed 's/\.deb$//')
done
mkdir "$FOLDR"
cp "$DEB" "$FOLDR"
cd "$FOLDR"
DEB=`ls | grep ".deb"`
undeb "$DEB"
rm "$DEB"
cd ..
FOLDR=`basename $(echo "$FOLDR")`
rxvt -fg yellow -bg black -cr red -e dir2pet "$FOLDR"
rm -R -f "$FOLDR"
rox
fi
|
Please, test it, modify it, improve it, etc. I just made this so you have something to start with, you go further, I know there are lots of coders here much better then me.
Description |
deb2pet and rpm2pet in one package, usage: Right click on deb or rpm in rox -> Convert to pet
|

Download |
Filename |
deb2pet.rpm2pet-0.0.4.pet |
Filesize |
968 Bytes |
Downloaded |
12981 Time(s) |
Description |
Convert debian packages to dotpets, rox right click version. Right click on deb file -> Convert to pet
|

Download |
Filename |
deb2pet-0.0.3.pet |
Filesize |
795 Bytes |
Downloaded |
4081 Time(s) |
Description |
Convert debian packages to dotpets, simplier version, doesn't ask you anything, convinient for less advanced users.
|

Download |
Filename |
deb2pet-0.0.2.pet |
Filesize |
803 Bytes |
Downloaded |
3120 Time(s) |
Description |
Convert debian packages to dotpets, uses dir2pet, advanced users will like this version.
|

Download |
Filename |
deb2pet-0.0.1.pet |
Filesize |
783 Bytes |
Downloaded |
2639 Time(s) |
_________________ puppy.b0x.me stuff mirrored HERE or HERE
Last edited by dejan555 on Fri 27 Mar 2009, 18:19; edited 10 times in total
|
Back to top
|
|
 |
puppyiso

Joined: 12 Jan 2009 Posts: 595
|
Posted: Wed 18 Mar 2009, 23:48 Post subject:
Seems to have a problem |
|
I tried deb2pet but I cannot get it run. Chose the programs in the graphics menu but nothing happens.
I even checked dependencies. Blender, K3D have dep problem but not with wings 3D. However, it won't start.
I downloaded debian package from Ubuntu package site. More specifically, Hardy 8.04 version.
What am I doing wrong?
Please check the attached images.
Thanks
John S
Description |
|

Download |
Filename |
Dependency check5.png |
Filesize |
114.75 KB |
Downloaded |
2602 Time(s) |
Description |
|

Download |
Filename |
Dependency check4.png |
Filesize |
139.45 KB |
Downloaded |
2278 Time(s) |
|
Back to top
|
|
 |
ttuuxxx

Joined: 05 May 2007 Posts: 11249 Location: Ontario Canada,Sydney Australia
|
Posted: Thu 19 Mar 2009, 00:03 Post subject:
|
|
worked for me good job:)
I would move it to usr/sbin is a better place for it, along beside petget
ttuuxxx
_________________ http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games 
|
Back to top
|
|
 |
dejan555

Joined: 30 Nov 2008 Posts: 2817 Location: Montenegro
|
Posted: Thu 19 Mar 2009, 02:25 Post subject:
|
|
@puppyiso
Seems like the undeb package you downloaded is corrupted, and it won't work without it, I'll see if I can make it a dotpet and attach it here, or if someone can reupload pup to dotpets.de?
@ttuuxxx
Thanks! Glad you like it. Did you also download undeb from the same link?
Assume that you had it installed from earlier?
_________________ puppy.b0x.me stuff mirrored HERE or HERE
|
Back to top
|
|
 |
ttuuxxx

Joined: 05 May 2007 Posts: 11249 Location: Ontario Canada,Sydney Australia
|
Posted: Thu 19 Mar 2009, 02:34 Post subject:
|
|
dejan555 wrote: | @puppyiso
Seems like the undeb package you downloaded is corrupted, and it won't work without it, I'll see if I can make it a dotpet and attach it here, or if someone can reupload pup to dotpets.de?
@ttuuxxx
Thanks! Glad you like it. Did you also download undeb from the same link?
Assume that you had it installed from earlier? |
I had undeb already installed because its a plugin for xarchiver:)
ttuuxxx
_________________ http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games 
|
Back to top
|
|
 |
dejan555

Joined: 30 Nov 2008 Posts: 2817 Location: Montenegro
|
Posted: Thu 19 Mar 2009, 02:43 Post subject:
|
|
Aaaah, so it's not dependent on it then, I can remove the link from the main post? I thought dpkg-deb is plugin for Xarchiver? I know I had to install it for unpacking debs, or it was for rpms only?
_________________ puppy.b0x.me stuff mirrored HERE or HERE
|
Back to top
|
|
 |
MU

Joined: 24 Aug 2005 Posts: 13647 Location: Karlsruhe, Germany
|
Posted: Thu 19 Mar 2009, 02:50 Post subject:
|
|
try the attached one.
Mark
Description |
|

Download |
Filename |
unrpm.undeb.pet |
Filesize |
56.54 KB |
Downloaded |
4181 Time(s) |
_________________ my recommended links
Last edited by MU on Thu 19 Mar 2009, 02:56; edited 1 time in total
|
Back to top
|
|
 |
dejan555

Joined: 30 Nov 2008 Posts: 2817 Location: Montenegro
|
Posted: Thu 19 Mar 2009, 02:52 Post subject:
|
|
Thanks MU!
_________________ puppy.b0x.me stuff mirrored HERE or HERE
|
Back to top
|
|
 |
dejan555

Joined: 30 Nov 2008 Posts: 2817 Location: Montenegro
|
Posted: Thu 19 Mar 2009, 03:03 Post subject:
|
|
@puppyiso
Try running wings3d from console, it's more likely that it does have some dependencies...
_________________ puppy.b0x.me stuff mirrored HERE or HERE
|
Back to top
|
|
 |
droope

Joined: 31 Jul 2008 Posts: 811 Location: Uruguay, Mercedes
|
Posted: Thu 19 Mar 2009, 16:17 Post subject:
|
|
Hi there!
I tried it and it worked. Looking for some dependencies tho, but that's not your fault.
I've added this to a list of my favourite programs
|
Back to top
|
|
 |
dejan555

Joined: 30 Nov 2008 Posts: 2817 Location: Montenegro
|
Posted: Thu 19 Mar 2009, 16:30 Post subject:
|
|
Thanks droope!
_________________ puppy.b0x.me stuff mirrored HERE or HERE
|
Back to top
|
|
 |
droope

Joined: 31 Jul 2008 Posts: 811 Location: Uruguay, Mercedes
|
Posted: Thu 19 Mar 2009, 17:49 Post subject:
|
|
Too many libraries
i've downloaded like 10. Waaah
|
Back to top
|
|
 |
dejan555

Joined: 30 Nov 2008 Posts: 2817 Location: Montenegro
|
Posted: Thu 19 Mar 2009, 18:23 Post subject:
|
|
Happens in many cases. I usually download the older versions from debian etch, cause they're stable and have less dependencies.
_________________ puppy.b0x.me stuff mirrored HERE or HERE
|
Back to top
|
|
 |
puppyiso

Joined: 12 Jan 2009 Posts: 595
|
Posted: Fri 20 Mar 2009, 00:03 Post subject:
... |
|
I don't think it's the program but it's the xorg thing.
Cause I cannot get any 3D related with any platform (neither Win nor Lin) run.
But I see others are running them with joy. I feel so lonly left alone in this cold dark technological ice age.
No one can break apart from his path from the past. I was and am a graphics guy happy with modelling human figures with 3D apps and making textures with good old trusty Photoshop.
With a great interest in Linux and many terrible experiences with Bill's commercial rip off windows, I want leave windows and am in searching for better computing experience with Linux. However the perfect solution to run any 3D app is yet to be found. Like the song "Yellow ribbon", "I am still in Windows prison"
Having tried for 5 long years asking people how to run Max, Maya, XSI on Linux or run less capable K3D, Wings 3D and Blender in native Linux environment, I now stop to think. What am I doing? Am I chasing a ghost?
I am getting real tired of all this.
When I ran MediaPup with my wife's notebook who takes it with her to school, the wine worked well and ran Wings 3D without a hitch. When I try to run Wings 3D with my very own PuppyLinux 4.12, it refused to run.
My puppy does all the tricks except 3D thing.
I kept asking people who build new puppies wine-built-in-as-standard-and 3d-ready but no one is interested in that. As if it is not needed. No one seems to be in for 3 dimensional modelling and animating even for fun.
At the age of going bald and all gray hair, I sit by the computer feeling hopeless. Maybe Making my very own 3D Puppy is the thing I have to do by myself. Estimating the time left for me, I wonder if I can complete it before I die. I don't even know where to start.(Maybe Barry's How puppy works page?)
Seemingly simple task like a plain vanilla barebone Puppy JUST with wine to work with 3DSMax v7 and Photoshop 7(Photoshop works now) isn't getting any real help.
It IS an irony in this age of information and internet communities, which I have hard time to understand.
Even today, I have to dual boot to run Max for my new Max book and keep fighting with endless array of "new and improved" virus.
People who make virus, spyware,malware, Don't you have better things to do?
Now I have to get back to work.
Thank you for reading.
John S, Author of 3 Max books and a video tutorial book.
|
Back to top
|
|
 |
droope

Joined: 31 Jul 2008 Posts: 811 Location: Uruguay, Mercedes
|
Posted: Fri 20 Mar 2009, 00:46 Post subject:
|
|
Quote: | At the age of going bald and all gray hair, I sit by the computer feeling hopeless. Maybe Making my very own 3D Puppy is the thing I have to do by myself. Estimating the time left for me, I wonder if I can complete it before I die. I don't even know where to start.(Maybe Barry's How puppy works page?) |
Sorry, LOL.
So dramatic!
ONT: Perhaps it's a hardware problem? It seems so, after what I have read.
|
Back to top
|
|
 |
|