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
641d6481
Kaydet (Commit)
641d6481
authored
Eyl 10, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #808115: Add script support to bdist_rpm.py.
üst
1f7d6a63
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+25
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/command/bdist_rpm.py
Dosyayı görüntüle @
641d6481
...
@@ -95,6 +95,31 @@ class bdist_rpm (Command):
...
@@ -95,6 +95,31 @@ class bdist_rpm (Command):
"RPM 3 compatibility mode (default)"
),
"RPM 3 compatibility mode (default)"
),
(
'rpm2-mode'
,
None
,
(
'rpm2-mode'
,
None
,
"RPM 2 compatibility mode"
),
"RPM 2 compatibility mode"
),
# Add the hooks necessary for specifying custom scripts
(
'prep-script='
,
None
,
"Specify a script for the PREP phase of RPM building"
),
(
'build-script='
,
None
,
"Specify a script for the BUILD phase of RPM building"
),
(
'pre-install='
,
None
,
"Specify a script for the pre-INSTALL phase of RPM building"
),
(
'install-script='
,
None
,
"Specify a script for the INSTALL phase of RPM building"
),
(
'post-install='
,
None
,
"Specify a script for the post-INSTALL phase of RPM building"
),
(
'pre-uninstall='
,
None
,
"Specify a script for the pre-UNINSTALL phase of RPM building"
),
(
'post-uninstall='
,
None
,
"Specify a script for the post-UNINSTALL phase of RPM building"
),
(
'clean-script='
,
None
,
"Specify a script for the CLEAN phase of RPM building"
),
(
'verify-script='
,
None
,
"Specify a script for the VERIFY phase of the RPM build"
),
]
]
boolean_options
=
[
'keep-temp'
,
'use-rpm-opt-flags'
,
'rpm3-mode'
]
boolean_options
=
[
'keep-temp'
,
'use-rpm-opt-flags'
,
'rpm3-mode'
]
...
...
Misc/NEWS
Dosyayı görüntüle @
641d6481
...
@@ -22,6 +22,8 @@ Extension modules
...
@@ -22,6 +22,8 @@ Extension modules
Library
Library
-------
-------
- bdist_rpm now supports command line options {pre,post}-install,
{pre,post}-uninstall, and {prep,build,install,clean,verify}-script.
- SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support
- SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support
decoding incomplete input (when the input stream is temporarily exhausted).
decoding incomplete input (when the input stream is temporarily exhausted).
``codecs.StreamReader`` now implements buffering, which enables proper
``codecs.StreamReader`` now implements buffering, which enables proper
...
...
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