summaryrefslogtreecommitdiffstats
path: root/find-provides-without-python-sonames.sh
diff options
context:
space:
mode:
authorMiro Hrončok <miro@hroncok.cz>2016-08-11 17:52:49 +0200
committerMiro Hrončok <miro@hroncok.cz>2016-09-26 10:20:04 +0200
commita8b851431c296a5eba88cc299caf59aa541b57f3 (patch)
tree4c94a5b7302e897970c4de8cf055005a8ac0a541 /find-provides-without-python-sonames.sh
parentfb10582e725c62e6ceac44e9930923d191b5ae8e (diff)
downloadpython34-a8b851431c296a5eba88cc299caf59aa541b57f3.tar.gz
python34-a8b851431c296a5eba88cc299caf59aa541b57f3.tar.xz
python34-a8b851431c296a5eba88cc299caf59aa541b57f3.zip
Remove custom provides generator to get rid of python(abi)
The original reason for the custom generator is no longer valid Fixes https://github.com/fedora-python/python34/issues/1
Diffstat (limited to 'find-provides-without-python-sonames.sh')
-rwxr-xr-xfind-provides-without-python-sonames.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/find-provides-without-python-sonames.sh b/find-provides-without-python-sonames.sh
deleted file mode 100755
index 7a9e224..0000000
--- a/find-provides-without-python-sonames.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-# The standard find-provides script
-# adds provides lines for all SONAME directives in all shared libraries,
-# even if those libraries are not in the LD_LIBRARY_PATH
-
-# This leads to the rpm having a redundant Provides "foo.so" for all of the
-# various foo.so Python c modules
-
-# So we strip out all /usr/lib/python lines first, before running them through
-# the standard script:
-grep -v "/usr/lib/python" | grep -v "/usr/lib64/python" | \
- /usr/lib/rpm/redhat/find-provides
-
-exit 0