LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-02-2018, 06:16 AM   #46
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled

edited/patched files - add on directory 'patch'

###
TDE-14.0.5 for Slackware-14.2_x32
###


### 2018.11.04 - UPDATE ###
Code:
-
- updated archive of packages: x32.tar.zx
- deleted older files from directory 'patch'
- add SlackBuild-scripts
### about SlackBuild ###
Code:
-
- build.sh       - start-up script (build as user, 'sudo')
- TDE.SlackBuild - main build script
- TDE.options    - config, everything is described in detail
- scr            - SlackBuild-scripts directory
- src            - source-archives directory
- pkg            - package directory

Last edited by sunjob; 11-05-2018 at 08:16 AM.
 
Old 12-23-2018, 04:24 PM   #47
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled
...

Last edited by sunjob; 12-23-2018 at 04:32 PM.
 
Old 12-23-2018, 04:32 PM   #48
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled
### !!! UPDATE !!!###

TDE-14.0.5 for Slackware 14.1/14.2
 
1 members found this post helpful.
Old 04-05-2019, 03:06 PM   #49
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled
good day!

http://trinitydesktop.org/news.php

on offsite TDE-14.0.6, no source

http://trinitydesktop.org/releases.php
http://mirror.ntmm.org/trinity/releases/

tell me how to download the release version 14.0.6 (tar-file) / source?

thanks

Last edited by sunjob; 04-06-2019 at 06:42 AM.
 
Old 04-05-2019, 05:49 PM   #50
Okie
Senior Member
 
Registered: Mar 2002
Location: Oklahoma
Posts: 1,154

Rep: Reputation: 187Reputation: 187
i like trinity (kde3 fork), and i like Mate (gnome2 fork) i think there are some slackbuilds somewhere so users can build their own trinity desktop, i seen it a while back on github but was too busy to build it, maybe this summer when current goes stable and the dust settles on the next up coming release i will hunt it down and give it a try, i have a few extra SSDs laying around so i can slap a fresh copy of slackware on one for testing and give it a spin, if it all goes well i will post the results,
 
Old 04-06-2019, 02:20 AM   #51
_gin
Member
 
Registered: Aug 2012
Distribution: Oracle Linux
Posts: 106

Rep: Reputation: Disabled
Quote:
Originally Posted by Okie View Post
...i think there are some slackbuilds somewhere so users can build their own trinity desktop
Here is those I'm aware off:

- http://www.giustetti.net/wiki/index....E_introduction
- https://sourceforge.net/projects/tde-slackware
- http://www.inpito.org/trinity.php
- https://github.com/Ray-V/tde-slackbuilds
 
1 members found this post helpful.
Old 04-06-2019, 02:30 AM   #52
_gin
Member
 
Registered: Aug 2012
Distribution: Oracle Linux
Posts: 106

Rep: Reputation: Disabled
Quote:
Originally Posted by sunjob View Post
...tell me how to download the release version 14.0.6 (tar-file)?
thanks
I have no ideas if the tarballs will be available from an http or ftp server but you should be able to download them from the main git server snapshot archives or from the Trinity Gitea working space. I've seen some zip and tar.gz archives over there.

If I were you, I'll just clone the tree, checkout the R14.0.6 tag release and make archives out of the packages.

Last edited by _gin; 04-06-2019 at 12:10 PM.
 
Old 04-06-2019, 04:30 AM   #53
Okie
Senior Member
 
Registered: Mar 2002
Location: Oklahoma
Posts: 1,154

Rep: Reputation: 187Reputation: 187
yup, _gin, that set of slackbuilds by Ray-V is the one i was referring to
 
Old 04-06-2019, 07:47 AM   #54
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled
thanks

keyword "download source code, source tree archive, release 14.0.6"

as usual, before the source was laid out on the "specified" links

to _gin: about SlackBuild-scripts:
https://sourceforge.net/projects/tde-slackware/
it's my resources :о)

add more info:
http://www.slackware.ru/forum/viewtopic.php?f=8&t=1918

...

older ver. download
Code:
#!/bin/sh
VER=${1:-14.0.5}
wget -c http://mirror.ntmm.org/trinity/releases/R$VER/R$VER-complete.tar
...

download source from GIT

https://mirror.git.trinitydesktop.or...E/tde/releases
-->
https://mirror.git.trinitydesktop.or...rc/tag/r14.0.6
-->
https://mirror.git.trinitydesktop.or...r14.0.6.tar.gz

download,unpack and "full download" from GIT
Code:
git clone https://mirror.git.trinitydesktop.org/gitea/TDE/tde
cd tde
git submodule init   -- scripts
git submodule update -- scripts
./scripts/switch_all_submodules_to_head_and_clean anonymous
and download-script:

get_tde_ver_git.sh
Code:
#!/bin/sh
set -e; clear
VER=${1:-14.0.6}
echo "VER = $VER" #; exit

 CWD=$(pwd)
 ARC=$CWD/../
NAME=tde
DATE=$(date +"%Y.%m.%d")
TMP=$TMP/tde_$VER.git

# https://mirror.git.trinitydesktop.org/gitea/TDE/tde/releases
# -->
# https://mirror.git.trinitydesktop.org/gitea/TDE/tde/src/tag/r14.0.6
# -->
# https://mirror.git.trinitydesktop.org/gitea/TDE/tde/archive/r14.0.6.tar.gz
#
#
rm   -fr $TMP/tde-$VER
mkdir -p $TMP/tde-$VER
cd       $TMP/tde-$VER
wget -c https://mirror.git.trinitydesktop.org/gitea/TDE/tde/archive/r$VER.tar.gz

tar xvf r$VER.tar.gz
cd tde

git clone https://mirror.git.trinitydesktop.org/gitea/TDE/tde
cd   tde
git submodule init   -- scripts
git submodule update -- scripts
./scripts/switch_all_submodules_to_head_and_clean anonymous

#
# arc
#
cd ../
rm -fr    $NAME/.git
time tar cf - tde | xz -z -k -f -T8 -v -e -c > "$ARC/TDE-${VER}.tar.xz"
cd $CWD; rm -fr $TMP

echo -e "\n### OK ###\n"; beep
--> archive:
TDE-14.0.6.tar.xz - size 2.2Gb
- many "left garbage"
- .git - 2.0 Gb (garbage)
- main - 1.8 Gb (good)
- but older source archive 800Мб

content search "14.0.6" on texts - failed
and I have a suspicion that the downloaded sources are not "stable release 14.0.6"... instead "rolling-current version, on development stage"

the problem is still not solved: how to download the release ver.14.0.6?

p.s.
I apologize for my English, I hope that the context will be clear

Last edited by sunjob; 04-06-2019 at 09:32 AM.
 
Old 04-06-2019, 12:08 PM   #55
_gin
Member
 
Registered: Aug 2012
Distribution: Oracle Linux
Posts: 106

Rep: Reputation: Disabled
@sunjob

When you've got your tree, then you checkout the r14.0.6 tag

Code:
git clone https://mirror.git.trinitydesktop.org/gitea/TDE/tde
cd tde
git submodule init -- scripts
git submodule update -- scripts
./scripts/switch_all_submodules_to_head_and_clean anonymous
git checkout r14.0.6
git submodule foreach --recursive "git checkout r14.0.6"
After that you can make an archive with each modules, there's a script for ( tde/scripts/create_tarball ) if you need.

Last edited by _gin; 04-06-2019 at 12:16 PM.
 
Old 04-06-2019, 02:04 PM   #56
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled
I'll try to download it later (as soon as I get to the develop-computer)

after all, this is not the right method!

first download a sea of garbage, and then choose from the whole heap what are need ...

and question

I do not understand the meaning of download file archive:
https://mirror.git.trinitydesktop.or...r14.0.6.tar.gz

thank you

Last edited by sunjob; 04-06-2019 at 02:38 PM.
 
Old 04-06-2019, 03:40 PM   #57
_gin
Member
 
Registered: Aug 2012
Distribution: Oracle Linux
Posts: 106

Rep: Reputation: Disabled
Quote:
Originally Posted by sunjob View Post
...after all, this is not the right method!
then I suggest you wait for the official tarballs.

Quote:
I do not understand the meaning of download file archive
zip and tar files are archived files.

let's say you want tqt3 for instance.

here are the archive files from the main git server:
http://mirror.git.trinitydesktop.org...t3-r14.0.6.zip
http://mirror.git.trinitydesktop.org...r14.0.6.tar.gz

or from the Trinity gitea working space:
https://mirror.git.trinitydesktop.or...ve/r14.0.6.zip
https://mirror.git.trinitydesktop.or...r14.0.6.tar.gz

You can even download It from the Debian repositories:
http://mirror.ppa.trinitydesktop.org....6.orig.tar.xz

Does that suit your needs?
I fairly don't know because I didn't have a look on your scripts.
Even if the sources are not yet officially availables as tarballs, there's several way to get them either through git command ( the sea of garbage ) either from the main git server (or gitea).

Last edited by _gin; 04-06-2019 at 04:47 PM.
 
Old 04-06-2019, 03:57 PM   #58
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled
Quote:
then I suggest you wait for the official tarballs.
I decided that "everything", they will not be... move to rolling/git ...

...

Quote:
... either from the main git server (or gitea) ...
for this I asked a question!

...

Quote:
zip and tar files are archived files.
this is understandable (obviously)!

I do not understand the meaning of downloading these files (download and view their contents, small files - in fact this is not an archive with full source...but this "frame" git-storage)

directory this tree (archive contents) - created further by commands
Code:
git clone ...
...

Quote:
https://mirror.git.trinitydesktop.or...r14.0.6.tar.gz
+
Does that suit your needs?
That is, download the entire set of TDE ... file per file ... file by file ...?
I'd rather shoot myself!
add:
This is while we know the names of the packages in the list! if a new library or some other new package is added?

Quote:
I fairly don't know because I didn't have a look on your scripts.
on my SlackBuilds - standard archive is used
Code:
#!/bin/sh
VER=${1:-14.0.5}
wget -c http://mirror.ntmm.org/trinity/releases/R$VER/R$VER-complete.tar
1. unpack R$VER-complete.tar
2. start build TDE process

...

Quote:
Even if the sources are not yet officially availables as tarballs, there's several way to get them either through git command ( the sea of garbage ) either from the main git server (or gitea).
Yes, it is possible to get the INITIAL CODE, apparently, but, for a simple human / user, this is VERY NOT CONVENIENT (I think so)

Usually, it is convenient to use the "regular archive"
Code:
http://mirror.ntmm.org/trinity/releases/R$VER/R$VER-complete.tar
...

archive creation scripts - error

Code:
./create_all_tarballs
There is not active upstream branch.  Exiting...

./create_tarball
There is not active upstream branch.  Exiting...
...

THANK

Last edited by sunjob; 04-07-2019 at 02:25 PM.
 
Old 06-22-2019, 09:32 AM   #59
sunjob
Member
 
Registered: Nov 2015
Posts: 74

Original Poster
Rep: Reputation: Disabled
### UPDATE ###

good day / night

ready TDE14.0.6 / Slacklware-14.2 (packages, SlackBuild, vbox-images)

urgently need testers, search finders and, most importantly, strong and courageous people to fix two very dirty bugs (very disturbing)

URL-vbox images here
URL-trouble here

I will be grateful for the help

tnanks

Last edited by sunjob; 06-23-2019 at 03:16 AM.
 
Old 06-22-2019, 10:22 AM   #60
_gin
Member
 
Registered: Aug 2012
Distribution: Oracle Linux
Posts: 106

Rep: Reputation: Disabled
Hi, so out of curiosity, how did you get TDE-14.0.6 then?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Trinity Desktop for Slackware(64) 14.1 + Multilib System Stragonian Slackware 17 03-27-2018 12:26 AM
LXer: TDE needs your help! LXer Syndicated Linux News 0 03-13-2014 12:42 PM
FFMPEG for APACHE 2.4.6 (x64), PHP 5.5 (x64), MYSQL 5.6 (x64) on WINDOWS 8 (x64) Punctual Programming 3 08-07-2013 05:20 PM
Trinity Desktop for Slackware-13.37 i486 and x86_64 Stragonian Slackware 24 07-31-2013 05:48 PM
Slackware 13.37 x64 & Windows 7 x64 Dual Boot Issues toolman30044 Slackware 4 08-08-2011 02:39 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:42 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration