LinuxQuestions.org
Review your favorite Linux distribution.
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 09-22-2018, 04:15 AM   #2191
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,204

Rep: Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997

Again, new xterm-337:

http://invisible-island.net/xterm/xt...html#xterm_337
ftp://ftp.invisible-island.net/xterm/xterm-337.tgz

poppler-0.69.0:

https://poppler.freedesktop.org/
https://poppler.freedesktop.org/poppler-0.69.0.tar.xz
 
Old 09-22-2018, 08:11 AM   #2192
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
Quote:
l/virtuoso-ose-6.1.8-x86_64-9.txz: Removed.
Even KDE4 has migrated away from actually using this for anything. The last
thing in Slackware that was dependent on it was Soprano, which has been
recompiled to no longer use it.
It is still there: http://slackware.osuosl.org/slackwar...8-x86_64-9.txz

Quote:
PACKAGES.TXT; Fri Sep 21 19:07:29 UTC 2018

PACKAGE NAME: virtuoso-ose-6.1.8-x86_64-9.txz
PACKAGE LOCATION: ./slackware64/l
PACKAGE SIZE (compressed): 5416 K
PACKAGE SIZE (uncompressed): 36330 K
PACKAGE DESCRIPTION:
virtuoso-ose: virtuoso-ose (A high-performance object-relational SQL database)
virtuoso-ose:
virtuoso-ose: Virtuoso is a scalable cross-platform server that combines
virtuoso-ose: SQL/RDF/XML Data Management with Web Application Server
virtuoso-ose: and Web Services Platform functionality.
virtuoso-ose:
virtuoso-ose: Homepage: http://virtuoso.openlinksw.com/wiki/main/
virtuoso-ose:

Cheers
 
Old 09-22-2018, 09:37 AM   #2193
chrisretusn
Senior Member
 
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 2,967

Rep: Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545Reputation: 1545
Verified the above regarding virtuoso-ose

Code:
# slackpkg clean-system

Looking for packages to remove. Please wait... DONE

No packages match the pattern for clean-system

# slackpkg search virtuoso

Looking for virtuoso in package list. Please wait... DONE

The list below shows all packages with name matching "virtuoso".

[ Status           ] [ Repository               ] [ Package                                  ]
   installed               slackware64                  virtuoso-ose-6.1.8-x86_64-9
 
Old 09-22-2018, 09:43 AM   #2194
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
GRUB is broken

Binutils 2.31 breaks GRUB:
Code:
grub-install: info: locating grub_memalign at 0x5880 (0x400).
grub-install: info: dealing with the relocation section .rela.text for .text.
grub-install: info: relocating an R_X86_64_PC32 entry to 0x11a71 at the offset 0x3.
grub-install: info: relocating an R_X86_64_PC32 entry to 0x11a62 at the offset 0xa.
grub-install: error: relocation 0x4 is not implemented yet.
Here is the fix: http://git.savannah.gnu.org/cgit/gru...324cd3bde25875

Code:
diff --git a/util/grub-mkimagexx.c b/util/grub-mkimagexx.c
index a2bb054..39d7efb 100644
--- a/util/grub-mkimagexx.c
+++ b/util/grub-mkimagexx.c
@@ -841,6 +841,7 @@ SUFFIX (relocate_addresses) (Elf_Ehdr *e, Elf_Shdr *sections,
 		  break;
 
 		case R_X86_64_PC32:
+		case R_X86_64_PLT32:
 		  {
 		    grub_uint32_t *t32 = (grub_uint32_t *) target;
 		    *t32 = grub_host_to_target64 (grub_target_to_host32 (*t32)
diff --git a/util/grub-module-verifier.c b/util/grub-module-verifier.c
index 9179285..a79271f 100644
--- a/util/grub-module-verifier.c
+++ b/util/grub-module-verifier.c
@@ -19,6 +19,7 @@ struct grub_module_verifier_arch archs[] = {
       -1
     }, (int[]){
       R_X86_64_PC32,
+      R_X86_64_PLT32,
       -1
     }
   },
Tested here.

Cheers
 
2 members found this post helpful.
Old 09-22-2018, 07:07 PM   #2195
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
Originally Posted by USUARIONUEVO View Post
Hi , i got a missing dependency when run pip check

pip check & pip3 check , returns same missing.
Only for me ?

Quote:
mako 1.0.7 requires markupsafe, which is not installed.
 
Old 09-22-2018, 07:49 PM   #2196
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
python-setuptools-40.4.2
https://files.pythonhosted.org/packa...ols-40.4.2.zip
 
Old 09-22-2018, 07:51 PM   #2197
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
ModemManager-1.8.2
https://www.freedesktop.org/software...r-1.8.2.tar.xz
 
Old 09-23-2018, 02:15 AM   #2198
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,204

Rep: Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997
help2man-1.47.7:

http://ftp.gnu.org/gnu/help2man/help2man-1.47.7.tar.xz
 
Old 09-23-2018, 02:03 PM   #2199
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Thats crazy , another setuptools release.

python-setuptools-40.4.3
https://files.pythonhosted.org/packa...ols-40.4.3.zip
 
1 members found this post helpful.
Old 09-23-2018, 02:33 PM   #2200
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
pip list --outdated
Package Version Latest Type
---------- -------- -------- -----
Cython 0.28.2 0.28.5 wheel
M2Crypto 0.27.0 0.30.1 sdist
pycairo 1.16.3 1.17.1 sdist
pycurl 7.43.0.1 7.43.0.2 sdist
pygobject 3.28.3 3.30.1 sdist
pyparsing 2.2.0 2.2.1 wheel
setuptools 40.2.0 40.4.3 wheel
typing 3.6.4 3.6.6 wheel
urwid 1.0.3 2.0.1 sdist

Cython-0.28.5
https://files.pythonhosted.org/packa...-0.28.5.tar.gz

M2Crypto-0.30.1
https://files.pythonhosted.org/packa...-0.30.1.tar.gz

pycairo-1.17.1
https://files.pythonhosted.org/packa...-1.17.1.tar.gz

pycurl-7.43.0.2
https://files.pythonhosted.org/packa....43.0.2.tar.gz

PyGObject-3.30.1
https://files.pythonhosted.org/packa...-3.30.1.tar.gz

pyparsing-2.2.1
https://files.pythonhosted.org/packa...g-2.2.1.tar.gz

setuptools-40.4.3
https://files.pythonhosted.org/packa...ols-40.4.3.zip

typing-3.6.6
https://files.pythonhosted.org/packa...g-3.6.6.tar.gz

urwid-2.0.1
https://files.pythonhosted.org/packa...d-2.0.1.tar.gz
 
Old 09-23-2018, 03:53 PM   #2201
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
meson-0.48.0
https://github.com/mesonbuild/meson/...-0.48.0.tar.gz
 
Old 09-23-2018, 09:51 PM   #2202
baldzhang
Member
 
Registered: Aug 2012
Posts: 58

Rep: Reputation: Disabled
a small mkinitrd patch

I use this to build a basic initrd.gz for customized kernel package, hope it's useful for any one else.

usage:
Code:
MODULE_ROOT=/path/to/new/module/install/root mkinitrd -c -k <custom-kernel-release> -m ahci -o /initrd/output/path/initrd.gz
MODULE_ROOT is where the new kernel modules installed. it's the same path as 'INSTALL_MOD_PATH' when run 'make modules_install'
note: not include the '/lib/modules' part

Code:
--- mkinitrd.orig	2018-06-03 10:30:31.000000000 +0800
+++ mkinitrd	2018-07-16 13:39:59.906800289 +0800
@@ -445,7 +445,7 @@
 fi
 
 # If kernel modules are needed but the kernel version is absent, exit now:
-if [ ! -d /lib/modules/$KERNEL_VERSION ]; then
+if [ ! -d $MODULE_ROOT/lib/modules/$KERNEL_VERSION ]; then
   echo "ERROR: No /lib/modules/$KERNEL_VERSION kernel modules tree found for kernel \"$KERNEL_VERSION\""
   exit 1
 fi
@@ -656,7 +656,7 @@
 done
 
 # Make sure modules.builtin and modules.order are there (for kmod):
-cp /lib/modules/$KERNEL_VERSION/modules.{builtin,order} \
+cp $MODULE_ROOT/lib/modules/$KERNEL_VERSION/modules.{builtin,order} \
    $SOURCE_TREE/lib/modules/$KERNEL_VERSION
 
 # If an executable $SOURCE_TREE/load_kernel_modules already exists, then
 
2 members found this post helpful.
Old 09-24-2018, 12:52 PM   #2203
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,204

Rep: Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997
librsvg-2.44.4:

http://ftp.gnome.org/pub/gnome/sourc...vg-2.44.4.news
http://ftp.gnome.org/pub/gnome/sourc...-2.44.4.tar.xz
 
Old 09-24-2018, 04:17 PM   #2204
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,471
Blog Entries: 2

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
If here is no reason to have rfkill soft blocked interfaces when networking is enabled, put rfkill unblock all in /etc/rc.d/rc.inet1

Or at least make it handle soft blocks?
 
1 members found this post helpful.
Old 09-24-2018, 05:27 PM   #2205
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
gvfs-1.38.1
https://download.gnome.org/sources/g...-1.38.1.tar.xz

vte-0.54.1
https://download.gnome.org/sources/v...-0.54.1.tar.xz
 
  


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
[SOLVED] Requests for -current (20151216) rworkman Slackware 3441 12-28-2017 03:50 PM

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

All times are GMT -5. The time now is 04:48 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