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
cae9e673
Kaydet (Commit)
cae9e673
authored
Agu 25, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #970015: Replace - by _ in version and release.
üst
cf525241
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+2
-2
NEWS
Misc/NEWS
+2
-1
No files found.
Lib/distutils/command/bdist_rpm.py
Dosyayı görüntüle @
cae9e673
...
...
@@ -332,8 +332,8 @@ class bdist_rpm (Command):
# definitions and headers
spec_file
=
[
'
%
define name '
+
self
.
distribution
.
get_name
(),
'
%
define version '
+
self
.
distribution
.
get_version
(),
'
%
define release '
+
self
.
release
,
'
%
define version '
+
self
.
distribution
.
get_version
()
.
replace
(
'-'
,
'_'
)
,
'
%
define release '
+
self
.
release
.
replace
(
'-'
,
'_'
)
,
''
,
'Summary: '
+
self
.
distribution
.
get_description
(),
]
...
...
Misc/NEWS
Dosyayı görüntüle @
cae9e673
...
...
@@ -57,7 +57,8 @@ Extension modules
Library
-------
-
bdist_rpm
now
includes
version
and
release
in
the
BuildRoot
.
-
bdist_rpm
now
includes
version
and
release
in
the
BuildRoot
,
and
replaces
-
by
``
_
``
in
version
and
release
.
-
distutils
build
/
build_scripts
now
has
an
-
e
option
to
specify
the
path
to
the
Python
interpreter
for
installed
scripts
.
...
...
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