Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
45cd4ff9
Kaydet (Commit)
45cd4ff9
authored
Kas 12, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1360200: Use unmangled_version RPM spec field to deal with
file name mangling. Will backport to 2.5.
üst
36cbc08f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+4
-3
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/command/bdist_rpm.py
Dosyayı görüntüle @
45cd4ff9
...
...
@@ -391,6 +391,7 @@ class bdist_rpm (Command):
spec_file
=
[
'
%
define name '
+
self
.
distribution
.
get_name
(),
'
%
define version '
+
self
.
distribution
.
get_version
()
.
replace
(
'-'
,
'_'
),
'
%
define unmangled_version '
+
self
.
distribution
.
get_version
(),
'
%
define release '
+
self
.
release
.
replace
(
'-'
,
'_'
),
''
,
'Summary: '
+
self
.
distribution
.
get_description
(),
...
...
@@ -412,9 +413,9 @@ class bdist_rpm (Command):
# but only after it has run: and we create the spec file before
# running "sdist", in case of --spec-only.
if
self
.
use_bzip2
:
spec_file
.
append
(
'Source0:
%
{name}-
%
{version}.tar.bz2'
)
spec_file
.
append
(
'Source0:
%
{name}-
%
{
unmangled_
version}.tar.bz2'
)
else
:
spec_file
.
append
(
'Source0:
%
{name}-
%
{version}.tar.gz'
)
spec_file
.
append
(
'Source0:
%
{name}-
%
{
unmangled_
version}.tar.gz'
)
spec_file
.
extend
([
'License: '
+
self
.
distribution
.
get_license
(),
...
...
@@ -489,7 +490,7 @@ class bdist_rpm (Command):
# are just text that we drop in as-is. Hmmm.
script_options
=
[
(
'prep'
,
'prep_script'
,
"
%
setup"
),
(
'prep'
,
'prep_script'
,
"
%
setup
-n
%
{name}-
%
{unmangled_version}
"
),
(
'build'
,
'build_script'
,
def_build
),
(
'install'
,
'install_script'
,
(
"
%
s install "
...
...
Misc/NEWS
Dosyayı görüntüle @
45cd4ff9
...
...
@@ -98,6 +98,9 @@ Core and builtins
Library
-------
- Patch #1360200: Use unmangled_version RPM spec field to deal with
file name mangling.
- Patch #1359217: Process 2xx response in an ftplib transfer
that precedes an 1xx response.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment